@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,212 +1,214 @@
|
|
|
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="-4.140000000000002,-7.364455349999998 -4.140000000000002,-6.844727674999999 -4.890000000000002,-6.844727674999999 -4.890000000000002,-6.324999999999998" data-type="line" data-label="" points="250.80997685780403,437.0830547698637 250.80997685780403,422.11532537927485 229.210593983029,422.11532537927485 229.210593983029,407.147595988686" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.3400000000000025,-7.364455349999998 -3.6400000000000023,-7.364455349999998" data-type="line" data-label="" points="245.0501414245307,437.0830547698637 265.2095654409874,437.0830547698637" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.05,-8.329999999999998 -11.25,-8.329999999999998 -11.25,-8.529999999999998 -11.25,-8.129999999999999 -11.05,-8.129999999999999" data-type="line" data-label="" points="51.80766263821033,464.8899462072512 46.04782720493705,464.8899462072512 46.04782720493705,470.6497816405245 46.04782720493705,459.1301107739779 51.80766263821033,459.1301107739779" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.05,-8.129999999999999 -8.850000000000001,-8.129999999999999 -8.850000000000001,-8.329999999999998 -9.05,-8.329999999999998" data-type="line" data-label="" points="109.40601697094371,459.1301107739779 115.16585240421702,459.1301107739779 115.16585240421702,464.8899462072512 109.40601697094371,464.8899462072512" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,-0.09999999999999959 -1.5050000000000008,-0.09999999999999964" data-type="line" data-label="" points="346.13525327847776,227.87271812805352 326.6958086911803,227.87271812805352" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.130000000000001,3.2594553499999996 -2.505000000000001,3.2594553499999996 -2.505000000000001,2.3 -1.8800000000000003,2.3 -1.8800000000000003,2.92" data-type="line" data-label="" points="279.89714579583443,131.12316832090517 297.8966315248136,131.12316832090517 297.8966315248136,158.75469292877352 315.8961172537928,158.75469292877352 315.8961172537928,140.89920308562614" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,0.10000000000000042 1.8449999999999998,0.10000000000000016" data-type="line" data-label="" points="403.73360761121114,222.11288269478018 423.1730521985086,222.11288269478018" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,1.3500000000000003 1.1699999999999995,0.7250000000000003 1.3699999999999994,0.7250000000000003 1.3699999999999994,0.10000000000000042" data-type="line" data-label="" points="403.73360761121114,186.11391123682182 403.73360761121114,204.113396965801 409.4934430444845,204.113396965801 409.4934430444845,222.11288269478018" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.08000000000000074,1.6894553499999998 0.5449999999999994,1.6894553499999998 0.5449999999999994,1.1500000000000004 1.1699999999999995,1.1500000000000004" data-type="line" data-label="" points="367.7346361532528,176.33787647210085 385.73412188223193,176.33787647210085 385.73412188223193,191.87374667009516 403.73360761121114,191.87374667009516" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.210000000000001,-2.1794553499999987 4.210000000000001,-1.659727674999999 3.460000000000001,-1.659727674999999 3.460000000000001,-1.1399999999999992 3.660000000000001,-1.1399999999999992" data-type="line" data-label="" points="491.28310619696583,287.7593211622525 491.28310619696583,272.79159177166366 469.6837233221909,272.79159177166366 469.6837233221909,257.82386238107483 475.4435587554642,257.82386238107483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999982,-6.119999999999999 1.8449999999999984,-6.119999999999999" data-type="line" data-label="" points="403.7336076112111,401.24376466958086 423.1730521985086,401.24376466958086" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999973,-7.469999999999999 1.1699999999999973,-6.794999999999999 1.3699999999999983,-6.794999999999999 1.3699999999999983,-6.119999999999999" data-type="line" data-label="" points="403.7336076112111,440.1226538441759 403.7336076112111,420.6832092568784 409.4934430444844,420.6832092568784 409.4934430444844,401.24376466958086" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.4199999999999973,-7.699455349999998 2.174727674999997,-7.699455349999998 2.174727674999997,-7.269999999999999 1.1699999999999973,-7.269999999999999" data-type="line" data-label="" points="439.73257906916945,446.73077912059654 432.6689379274877,446.73077912059654 432.6689379274877,434.36281841090255 403.7336076112111,434.36281841090255" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.3100000000000005,-0.09999999999999964 -2.6350000000000007,-0.09999999999999964" data-type="line" data-label="" points="274.71329390588846,227.87271812805352 294.1527384931859,227.87271812805352" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.660000000000001,1.6800000000000002 -2.9850000000000003,1.6800000000000002" data-type="line" data-label="" points="264.63358189766006,176.61018277192085 284.0730264849576,176.61018277192085" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.9499999999999997,1.35 2.9499999999999997,0.7250000000000005 3.175,0.7250000000000005 3.175,0.10000000000000053 2.9749999999999996,0.10000000000000053" data-type="line" data-label="" points="454.9961429673438,186.11391123682182 454.9961429673438,204.113396965801 461.47595782977635,204.113396965801 461.47595782977635,222.11288269478018 455.716122396503,222.11288269478018" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.41,-2.92 2.4099999999999997,-2.244999999999999" data-type="line" data-label="" points="439.44458729750585,309.08639773720756 439.4445872975058,289.64695314991" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.249999999999997,-6.119999999999999 2.9749999999999983,-6.119999999999999" data-type="line" data-label="" points="492.43507328362045,401.24376466958086 455.71612239650295,401.24376466958086" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.200000000000001,-10.398910699999997 -7.400000000000001,-10.398910699999997 -7.400000000000001,-10.198910699999997 -7.200000000000001,-10.198910699999997" data-type="line" data-label="" points="162.68449472872206,524.4728719979428 156.9246592954487,524.4728719979428 156.9246592954487,518.7130365646696 162.68449472872206,518.7130365646696" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.200000000000001,-10.198910699999997 -5.000000000000001,-10.198910699999997 -5.000000000000001,-10.398910699999997 -5.200000000000001,-10.398910699999997" data-type="line" data-label="" points="220.2828490614554,518.7130365646696 226.04268449472875,518.7130365646696 226.04268449472875,524.4728719979428 220.2828490614554,524.4728719979428" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.760000000000001,1.6800000000000002 -4.960000000000001,1.6800000000000002 -4.960000000000001,-0.09999999999999964 -4.410000000000001,-0.09999999999999964" data-type="line" data-label="" points="232.95448701465673,176.61018277192085 227.1946515813834,176.61018277192085 227.1946515813834,227.87271812805352 243.03419902288508,227.87271812805352" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,2.45 1.1699999999999995,2.6500000000000004 2.9499999999999997,2.6500000000000004 2.9499999999999997,2.4500000000000006" data-type="line" data-label="" points="403.73360761121114,154.4348163538185 403.73360761121114,148.67498092054515 454.9961429673438,148.67498092054515 454.9961429673438,154.43481635381846" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.5994553499999995,-1.3305446499999976 -7.5994553499999995,-0.42804464999999814 -8.965,-0.42804464999999814 -8.965,0.4744553500000013" data-type="line" data-label="" points="151.1805093340191,263.3113915145281 151.1805093340191,237.3201341218822 111.8539470300849,237.3201341218822 111.8539470300849,211.3288767292363" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3494553499999995,-4.019999999999998 -6.3494553499999995,-4.219999999999998 -7.5994553499999995,-4.219999999999998 -7.5994553499999995,-2.430544649999999" data-type="line" data-label="" points="187.17948079197743,340.7654926202108 187.17948079197743,346.52532805348415 151.1805093340191,346.52532805348415 151.1805093340191,294.9904863975315" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.65,-5.8199999999999985 -6.450000000000001,-5.8199999999999985 -6.450000000000001,-6.914727674999998 -7.950000000000001,-6.914727674999998 -7.950000000000001,-8.009455349999998 -7.750000000000001,-8.009455349999998" data-type="line" data-label="" points="178.52404217022374,392.60401151967085 184.28387760349705,392.60401151967085 184.28387760349705,424.13126778092055 141.08511185394704,424.13126778092055 141.08511185394704,455.6585240421702 146.84494728722038,455.6585240421702" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.650000000000002,-5.8199999999999985 -9.5625,-5.8199999999999985 -9.5625,-5.024999999999999 -10.475,-5.024999999999999 -10.475,-5.224999999999998" data-type="line" data-label="" points="120.92568783749033,392.60401151967085 94.6464386731808,392.60401151967085 94.6464386731808,369.7086656724093 68.3671895088712,369.7086656724093 68.3671895088712,375.46850110568266" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999982,-5.92 1.5074999999999983,-5.92 1.5074999999999983,-5.329999999999999 2.41,-5.329999999999999 2.41,-4.02" data-type="line" data-label="" points="403.7336076112111,395.4839292363076 413.45332990485986,395.4839292363076 413.45332990485986,378.4924147081512 439.44458729750585,378.4924147081512 439.44458729750585,340.76549262021086" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.890000000000002,-5.224999999999999 -4.890000000000002,-3.8324999999999996 -1.86945535,-3.8324999999999996 -1.86945535,-2.44" data-type="line" data-label="" points="229.210593983029,375.46850110568266 229.210593983029,335.36564690151715 316.1997944973001,335.36564690151715 316.1997944973001,295.26279269735153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.808910699999998,-0.6049999999999982 -9.808910699999998,0.4744553500000017 -7.965000000000001,0.4744553500000017" data-type="line" data-label="" points="87.5500132681924,242.41630259706864 87.5500132681924,211.3288767292363 140.65312419645156,211.3288767292363" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3494553499999995,-2.919999999999998 -6.3494553499999995,-1.6794553499999996 -4.2194553500000005,-1.6794553499999996" data-type="line" data-label="" points="187.17948079197743,309.0863977372075 187.17948079197743,273.3597325790692 248.5217281563384,273.3597325790692" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,0.3272767499999982 7.265,0.3272767499999982 7.265,1.3167320999999976 5.765,1.3167320999999976 5.765,2.3061874499999973 5.965,2.3061874499999973" data-type="line" data-label="" points="573.5047570069427,215.5674993057342 579.264592440216,215.5674993057342 579.264592440216,187.07199938287488 536.065826690666,187.07199938287488 536.065826690666,158.57649946001555 541.8256621239393,158.57649946001555" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,-1.6516339500000008 7.265,-1.6516339500000008 7.265,-0.6621786000000013 5.765,-0.6621786000000013 5.765,0.3272767499999982 5.965,0.3272767499999982" data-type="line" data-label="" points="573.5047570069427,272.55849915145285 579.264592440216,272.55849915145285 579.264592440216,244.06299922859353 536.065826690666,244.06299922859353 536.065826690666,215.5674993057342 541.8256621239393,215.5674993057342" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,-0.49999999999999944 3.4400000000000004,-0.49999999999999944 3.4400000000000004,-3.4794553499999985 4.210000000000001,-3.4794553499999985 4.210000000000001,-3.2794553499999983" data-type="line" data-label="" points="403.73360761121114,239.39238899460017 469.1077397788635,239.39238899460017 469.1077397788635,325.1982514785292 491.28310619696583,325.1982514785292 491.28310619696583,319.43841604525585" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,-3.63054465 7.265,-3.63054465 7.265,-2.6410893000000004 5.765,-2.6410893000000004 5.765,-1.6516339500000008 5.965,-1.6516339500000008" data-type="line" data-label="" points="573.5047570069427,329.54949899717155 579.264592440216,329.54949899717155 579.264592440216,301.05399907431223 536.065826690666,301.05399907431223 536.065826690666,272.55849915145285 541.8256621239393,272.55849915145285" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.119455350000001,-1.6794553499999991 -2.9194553500000007,-1.6794553499999991 -2.9194553500000007,-1.3399999999999994 -1.8694553500000004,-1.3399999999999994" data-type="line" data-label="" points="280.20082303934174,273.3597325790692 285.9606584726151,273.3597325790692 285.9606584726151,263.58369781434817 316.1997944973001,263.58369781434817" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8694553500000004,-1.3399999999999994 -1.8694553500000004,-0.7199999999999995 -1.3050000000000008,-0.7199999999999995 -1.3050000000000008,-0.09999999999999964 -1.5050000000000008,-0.09999999999999964" data-type="line" data-label="" points="316.1997944973001,263.58369781434817 316.1997944973001,245.72820797120085 332.4556441244536,245.72820797120085 332.4556441244536,227.87271812805352 326.6958086911803,227.87271812805352" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,-1.0999999999999996 1.9909999999999992,-1.0999999999999994 1.9909999999999992,-0.6999999999999995 1.1699999999999995,-0.6999999999999995" data-type="line" data-label="" points="403.73360761121114,256.6718952944202 427.3777320647982,256.67189529442015 427.3777320647982,245.1522244278735 403.73360761121114,245.1522244278735" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,-0.8999999999999996 -1.0300000000000005,-0.8999999999999996 -1.0300000000000005,-0.49999999999999967 -0.8300000000000005,-0.49999999999999967" data-type="line" data-label="" points="346.13525327847776,250.91205986114684 340.3754178452044,250.91205986114684 340.3754178452044,239.39238899460017 346.13525327847776,239.39238899460017" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,0.10000000000000042 -1.3425000000000005,0.10000000000000042 -1.3425000000000005,1.6800000000000002 -1.8550000000000004,1.6800000000000002" data-type="line" data-label="" points="346.13525327847776,222.11288269478018 331.37567498071485,222.11288269478018 331.37567498071485,176.61018277192085 316.61609668295193,176.61018277192085" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.760000000000001,-1.1399999999999992 5.024,-1.1399999999999992 5.024,-3.83054465 5.549999999999997,-3.83054465 5.549999999999997,-6.119999999999999 5.349999999999997,-6.119999999999999" data-type="line" data-label="" points="507.12265363846757,257.82386238107483 514.7256364103883,257.82386238107483 514.7256364103883,335.3093344304449 529.8740035998972,335.3093344304449 529.8740035998972,401.24376466958086 524.1141681666238,401.24376466958086" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8800000000000003,2.3 -1.6550000000000002,2.3 -1.6550000000000002,1.6799999999999997" data-type="line" data-label="" points="315.8961172537928,158.75469292877352 322.3759321162253,158.75469292877352 322.3759321162253,176.61018277192085" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.850000000000001,-8.329999999999998 -8.59,-8.329999999999998" data-type="line" data-label="" points="115.16585240421702,464.8899462072512 122.6536384674724,464.8899462072512" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.965000000000001,0.4744553500000013 -5.7540000000000004,0.4744553500000013 -5.7540000000000004,0.27345535000000126" data-type="line" data-label="" points="198.2514785291849,211.3288767292363 204.32810491128828,211.3288767292363 204.32810491128828,217.117511339676" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.6400000000000023,-7.564455349999998 -3.851000000000002,-7.564455349999998 -3.851000000000002,-7.765455349999998" data-type="line" data-label="" points="265.2095654409874,442.842890203137 259.132939058884,442.842890203137 259.132939058884,448.63152481357673" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000018,-6.02 -2.041000000000002,-6.02 -2.041000000000002,-6.321" data-type="line" data-label="" points="346.13525327847776,398.3638469529442 311.2594497300077,398.3638469529442 311.2594497300077,407.0323992800206" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.808910699999998,-2.9149999999999983 -9.808910699999998,-2.8139999999999983 -10.259910699999997,-2.8139999999999983" data-type="line" data-label="" points="87.5500132681924,308.9424018513757 87.5500132681924,306.03368495757263 74.56158436616107,306.03368495757263" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8800000000000003,4.0200000000000005 -1.8800000000000003,4.121 -2.0810000000000004,4.121" data-type="line" data-label="" points="315.8961172537928,109.2201082026228 315.8961172537928,106.31139130881976 310.1074826433531,106.31139130881976" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999973,-8.57 1.1699999999999973,-8.671 0.9689999999999974,-8.671" data-type="line" data-label="" points="403.7336076112111,471.8017487271793 403.7336076112111,474.7104656209823 397.94497300077137,474.7104656209823" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-6.200000000000001" data-y="-10.298910699999997" x="162.68449472872203" y="512.9532011313961" width="57.59835433273335" height="17.279506299820127" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-10.05" data-y="-8.229999999999999" x="51.80766263821033" y="453.37027534070455" width="57.59835433273338" height="17.279506299820014" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-7.650000000000001" data-y="-5.8199999999999985" x="120.92568783749034" y="386.8441760863975" width="57.59835433273341" height="11.519670866546676" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-6.965000000000001" data-y="0.4744553500000013" x="140.65312419645153" y="205.56904129596296" width="57.59835433273335" height="11.519670866546676" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-2.6400000000000023" data-y="-7.464455349999998" x="265.2095654409874" y="431.32321933659034" width="57.59835433273332" height="17.279506299820014" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="0.16999999999999948" data-y="-0.49999999999999956" x="346.13525327847776" y="216.35304726150682" width="57.59835433273338" height="46.0786834661867" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="0.16999999999999815" data-y="-6.02" x="346.13525327847776" y="386.8441760863975" width="57.59835433273332" height="23.03934173309341" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-9.6714107" data-y="-3.464999999999999" x="75.45435885831839" y="308.9424018513757" width="32.1110825404989" height="31.67909488300336" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="-10.337499999999999" data-y="-5.774999999999999" x="56.27153509899725" y="375.4685011056827" width="32.1110825404989" height="31.67909488300336" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="-9.551410699999998" data-y="-1.154999999999999" x="75.45435885831844" y="242.4163025970686" width="39.02288506042686" height="31.679094883003415" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="-4.597500000000002" data-y="-5.774999999999999" x="223.6104399074312" y="375.4685011056827" width="28.0478267935201" height="31.67909488300336" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="-7.200000000000001" data-y="-8.009455349999998" x="146.8449472872204" y="444.4425304191309" width="31.67909488300333" height="22.43198724607862" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="-7.306955349999999" data-y="-1.8805446499999983" x="145.58035525842132" y="263.31139151452805" width="28.0478267935201" height="31.679094883003415" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="-4.890000000000002" data-y="-7.364455349999998" x="213.37104654152733" y="424.7150940601697" width="31.67909488300333" height="24.735921419387978" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="6.515" data-y="-3.63054465" x="541.8256621239393" y="318.3335053741322" width="31.67909488300336" height="22.431987246078677" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="6.515" data-y="-1.6516339500000008" x="541.8256621239393" y="261.34250552841354" width="31.67909488300336" height="22.431987246078677" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="6.515" data-y="0.3272767499999982" x="541.8256621239393" y="204.3515056826949" width="31.67909488300336" height="22.43198724607865" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="6.515" data-y="2.3061874499999973" x="541.8256621239393" y="147.36050583697624" width="31.67909488300336" height="22.43198724607862" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="-5.9969553499999995" data-y="-3.469999999999998" x="181.5793267163796" y="309.08639773720756" width="31.503728053484167" height="31.6790948830033" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="-3.6694553500000007" data-y="-1.6794553499999991" x="248.52172815633838" y="260.99177186937527" width="31.67909488300333" height="24.73592141938792" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="-3.6800000000000006" data-y="3.2594553499999996" x="248.21805091283107" y="118.75520761121118" width="31.67909488300336" height="24.735921419387992" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="-0.6300000000000008" data-y="1.6894553499999998" x="336.0555412702494" y="163.96991576240686" width="31.67909488300336" height="24.735921419387978" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="4.502500000000001" data-y="-2.7294553499999985" x="485.68295212136803" y="287.7593211622525" width="28.04782679352013" height="31.67909488300336" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="2.9699999999999975" data-y="-7.699455349999998" x="439.7325790691694" y="435.5147854975572" width="31.67909488300336" height="22.43198724607862" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="-1.5869553500000007" data-y="-1.8899999999999997" x="310.5996404217023" y="263.58369781434817" width="27.47184325019282" height="31.67909488300336" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="-1.6475000000000004" data-y="3.47" x="310.29596317819494" y="109.22010820262281" width="24.59192553355615" height="31.679094883003344" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="1.4024999999999994" data-y="1.9000000000000004" x="398.1334535356133" y="154.43481635381846" width="24.59192553355615" height="31.67909488300333" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_27" data-x="4.210000000000001" data-y="-1.1399999999999992" x="475.44355875546415" y="245.45590167138084" width="31.67909488300336" height="24.735921419387978" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_28" data-x="1.4524999999999972" data-y="-8.02" x="398.1334535356132" y="440.12265384417583" width="27.47184325019282" height="31.679094883003415" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_29" data-x="-2.0700000000000007" data-y="-0.09999999999999964" x="294.1527384931859" y="210.88120359989716" width="32.54307019799438" height="33.98302905631269" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_30" data-x="-3.8600000000000008" data-y="-0.09999999999999962" x="243.03419902288505" y="216.6567245050142" width="31.679094883003387" height="22.43198724607865" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_31" data-x="-2.4200000000000004" data-y="1.6800000000000002" x="284.0730264849576" y="159.6186682437645" width="32.543070197994325" height="33.98302905631269" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_32" data-x="-4.210000000000001" data-y="1.6800000000000002" x="232.95448701465676" y="165.39418914888154" width="31.67909488300333" height="22.43198724607865" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_33" data-x="2.4099999999999997" data-y="0.10000000000000009" x="423.17305219850857" y="205.12136816662385" width="32.54307019799438" height="33.98302905631266" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_34" data-x="3.2424999999999997" data-y="1.9000000000000004" x="449.395988891746" y="154.43481635381846" width="28.04782679352013" height="31.67909488300336" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_35" data-x="2.6525" data-y="-1.6799999999999993" x="430.08485471843665" y="257.1038829519157" width="32.68706608382615" height="32.543070197994325" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_36" data-x="2.7525000000000004" data-y="-3.4699999999999998" x="433.84443322190805" y="309.08639773720756" width="30.927744510156856" height="31.6790948830033" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_37" data-x="2.4099999999999984" data-y="-6.119999999999999" x="423.1730521985086" y="384.2522501414245" width="32.543070197994325" height="33.98302905631266" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="schematic_component_38" data-x="4.799999999999997" data-y="-6.119999999999999" x="492.4350732836204" y="388.87580395988687" width="31.67909488300336" height="24.735921419387978" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="MY_18650_02" data-x="-6.140000000000001" data-y="-10.728910699999997" x="174.20416559526873" y="531.3846745178708" width="38.01491385960401" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="J_BAT_POS" data-x="-6.260000000000001" data-y="-9.868910699999997" x="174.20416559526873" y="506.6173821547955" width="31.10311133967599" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="MY_18650_02" data-x="-9.99" data-y="-8.659999999999998" x="63.327333504757036" y="471.8017487271792" width="38.014913859604064" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="J_BAT_NEG" data-x="-10.11" data-y="-7.799999999999999" x="63.32733350475709" y="447.0344563641039" width="31.10311133967599" height="5.18385188994597" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="BAT54WS" data-x="-7.830000000000002" data-y="-6.149999999999999" x="132.445358704037" y="399.5158140395988" width="24.191308819748002" height="5.18385188994597" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="D_PROT" data-x="-7.890000000000002" data-y="-5.489999999999998" x="132.445358704037" y="380.50835710979686" width="20.735407559783994" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="BAT54WS" data-x="-7.145000000000001" data-y="0.14445535000000126" x="152.1727950629982" y="218.24067924916432" width="24.191308819748002" height="5.183851889945998" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="D_SENSE_CLAMP" data-x="-6.785000000000001" data-y="0.8044553500000013" x="152.1727950629982" y="199.2332223193623" width="44.926716379532024" height="5.183851889945998" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="LM4040D25FTA" data-x="-2.5200000000000022" data-y="-7.894455349999998" x="276.72923630753405" y="449.754692723065" width="41.47081511956799" height="5.18385188994597" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="U_REF" data-x="-2.940000000000002" data-y="-7.034455349999998" x="276.72923630753405" y="424.9874003599897" width="17.279506299820014" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="LMV339IDR" data-x="0.10999999999999943" data-y="-1.4299999999999997" x="357.65492414502444" y="263.58369781434817" width="31.103111339676047" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="U1" data-x="-0.3100000000000006" data-y="0.4300000000000005" x="357.65492414502444" y="210.01722828490614" width="6.911802519928017" height="5.183851889945998" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="LMV331IDBVR" data-x="0.22999999999999798" data-y="-6.55" x="357.65492414502444" y="411.0354849061456" width="38.01491385960401" height="5.18385188994597" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="U2" data-x="-0.31000000000000194" data-y="-5.489999999999999" x="357.65492414502444" y="380.50835710979686" width="6.91180251992796" height="5.183851889946027" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03472321428571429"/></g><g><rect data-type="rect" data-label="netId: BAT_RAW
|
|
4
|
-
globalConnNetId: connectivity_net12" data-x="-7.880000000000001" data-y="-10.398910699999997" x="
|
|
5
|
-
globalConnNetId: connectivity_net12" data-x="-4.520000000000001" data-y="-10.198910699999997" x="
|
|
6
|
-
globalConnNetId: connectivity_net12" data-x="-5.970000000000001" data-y="-5.8199999999999985" x="
|
|
7
|
-
globalConnNetId: connectivity_net1" data-x="-6.3494553499999995" data-y="-4.459999999999998" x="
|
|
8
|
-
globalConnNetId: connectivity_net1" data-x="-11.25" data-y="-8.769999999999998" x="
|
|
9
|
-
globalConnNetId: connectivity_net1" data-x="-8.59" data-y="-8.569999999999999" x="
|
|
10
|
-
globalConnNetId: connectivity_net1" data-x="-5.7540000000000004" data-y="0.03345535000000127" x="
|
|
11
|
-
globalConnNetId: connectivity_net1" data-x="-3.851000000000002" data-y="-8.005455349999998" x="
|
|
12
|
-
globalConnNetId: connectivity_net1" data-x="1.4109999999999994" data-y="-0.2999999999999995" x="
|
|
13
|
-
globalConnNetId: connectivity_net1" data-x="-2.041000000000002" data-y="-6.561" x="
|
|
14
|
-
globalConnNetId: connectivity_net1" data-x="-9.808910699999998" data-y="-4.256" x="
|
|
15
|
-
globalConnNetId: connectivity_net1" data-x="-10.475" data-y="-6.566" x="
|
|
16
|
-
globalConnNetId: connectivity_net1" data-x="-9.808910699999998" data-y="-1.9459999999999995" x="
|
|
17
|
-
globalConnNetId: connectivity_net13" data-x="-9.
|
|
18
|
-
globalConnNetId: connectivity_net13" data-x="-1.3110000000000004" data-y="-0.2999999999999996" x="
|
|
19
|
-
globalConnNetId: connectivity_net13" data-x="1.0274999999999983" data-y="-5.329999999999999" x="
|
|
20
|
-
globalConnNetId: connectivity_net13" data-x="-10.739910699999998" data-y="-2.8139999999999983" x="
|
|
21
|
-
globalConnNetId: connectivity_net13" data-x="-
|
|
22
|
-
globalConnNetId: connectivity_net13" data-x="-2.
|
|
23
|
-
globalConnNetId: connectivity_net13" data-x="
|
|
24
|
-
globalConnNetId: connectivity_net13" data-x="
|
|
25
|
-
globalConnNetId: connectivity_net13" data-x="
|
|
26
|
-
globalConnNetId: connectivity_net13" data-x="
|
|
27
|
-
globalConnNetId:
|
|
28
|
-
globalConnNetId: connectivity_net14" data-x="
|
|
29
|
-
globalConnNetId: connectivity_net14" data-x="
|
|
30
|
-
globalConnNetId: connectivity_net14" data-x="-
|
|
31
|
-
globalConnNetId:
|
|
32
|
-
globalConnNetId:
|
|
33
|
-
globalConnNetId:
|
|
34
|
-
globalConnNetId:
|
|
35
|
-
globalConnNetId: connectivity_net15" data-x="
|
|
36
|
-
globalConnNetId: connectivity_net15" data-x="
|
|
37
|
-
globalConnNetId:
|
|
38
|
-
globalConnNetId: connectivity_net16" data-x="
|
|
39
|
-
globalConnNetId: connectivity_net16" data-x="
|
|
40
|
-
globalConnNetId:
|
|
41
|
-
globalConnNetId: connectivity_net17" data-x="
|
|
42
|
-
globalConnNetId: connectivity_net17" data-x="
|
|
43
|
-
globalConnNetId:
|
|
44
|
-
globalConnNetId: connectivity_net18" data-x="
|
|
45
|
-
globalConnNetId:
|
|
46
|
-
globalConnNetId: connectivity_net5" data-x="2.
|
|
47
|
-
globalConnNetId:
|
|
48
|
-
globalConnNetId:
|
|
49
|
-
globalConnNetId: connectivity_net19" data-x="-
|
|
50
|
-
globalConnNetId: connectivity_net19" data-x="5.
|
|
51
|
-
globalConnNetId: connectivity_net19" data-x="
|
|
52
|
-
globalConnNetId:
|
|
53
|
-
globalConnNetId:
|
|
54
|
-
globalConnNetId:
|
|
55
|
-
globalConnNetId:
|
|
56
|
-
globalConnNetId:
|
|
57
|
-
globalConnNetId:
|
|
58
|
-
|
|
59
|
-
x-" data-x="-7.200000000000001" data-y="-10.
|
|
60
|
-
x
|
|
61
|
-
x+" data-x="-5.200000000000001" data-y="-10.
|
|
62
|
-
x
|
|
63
|
-
x-" data-x="-11.05" data-y="-8.
|
|
64
|
-
x
|
|
65
|
-
x+" data-x="-9.05" data-y="-8.
|
|
66
|
-
x
|
|
67
|
-
x
|
|
68
|
-
x
|
|
69
|
-
x
|
|
70
|
-
x
|
|
71
|
-
x-" data-x="-3.6400000000000023" data-y="-7.
|
|
72
|
-
x
|
|
73
|
-
x
|
|
74
|
-
x-" data-x="-0.8300000000000005" data-y="
|
|
75
|
-
x-" data-x="-0.8300000000000005" data-y="-0.
|
|
76
|
-
x-" data-x="-0.8300000000000005" data-y="-0.
|
|
77
|
-
x-" data-x="-0.8300000000000005" data-y="-0.
|
|
78
|
-
x-" data-x="-0.8300000000000005" data-y="-0.
|
|
79
|
-
x-" data-x="-0.8300000000000005" data-y="-
|
|
80
|
-
x
|
|
81
|
-
x+" data-x="1.1699999999999995" data-y="-
|
|
82
|
-
x+" data-x="1.1699999999999995" data-y="-0.
|
|
83
|
-
x+" data-x="1.1699999999999995" data-y="-0.
|
|
84
|
-
x+" data-x="1.1699999999999995" data-y="-0.
|
|
85
|
-
x+" data-x="1.1699999999999995" data-y="-0.
|
|
86
|
-
x+" data-x="1.1699999999999995" data-y="0.
|
|
87
|
-
x
|
|
88
|
-
x-" data-x="-0.8300000000000018" data-y="-
|
|
89
|
-
x-" data-x="-0.8300000000000018" data-y="-6.
|
|
90
|
-
x
|
|
91
|
-
x+" data-x="1.1699999999999982" data-y="-
|
|
92
|
-
|
|
93
|
-
y
|
|
94
|
-
y
|
|
95
|
-
y
|
|
96
|
-
y
|
|
97
|
-
y
|
|
98
|
-
y
|
|
99
|
-
y
|
|
100
|
-
|
|
101
|
-
x
|
|
102
|
-
|
|
103
|
-
y
|
|
104
|
-
|
|
105
|
-
x
|
|
106
|
-
x-" data-x="5.
|
|
107
|
-
x
|
|
108
|
-
x
|
|
109
|
-
x
|
|
110
|
-
x
|
|
111
|
-
x
|
|
112
|
-
x
|
|
113
|
-
x
|
|
114
|
-
|
|
115
|
-
y
|
|
116
|
-
|
|
117
|
-
x
|
|
118
|
-
x
|
|
119
|
-
x
|
|
120
|
-
x
|
|
121
|
-
x
|
|
122
|
-
|
|
123
|
-
y
|
|
124
|
-
|
|
125
|
-
x
|
|
126
|
-
|
|
127
|
-
y
|
|
128
|
-
y+" data-x="-1.
|
|
129
|
-
y
|
|
130
|
-
y
|
|
131
|
-
y
|
|
132
|
-
|
|
133
|
-
x
|
|
134
|
-
|
|
135
|
-
y
|
|
136
|
-
|
|
137
|
-
x
|
|
138
|
-
x
|
|
139
|
-
x
|
|
140
|
-
x
|
|
141
|
-
x
|
|
142
|
-
x
|
|
143
|
-
x
|
|
144
|
-
x+" data-x="
|
|
145
|
-
x
|
|
146
|
-
|
|
147
|
-
y
|
|
148
|
-
y-" data-x="2.
|
|
149
|
-
y
|
|
150
|
-
y
|
|
151
|
-
y
|
|
152
|
-
|
|
153
|
-
x
|
|
154
|
-
x
|
|
155
|
-
x
|
|
156
|
-
|
|
157
|
-
orientation: x
|
|
158
|
-
orientation: x+" data-x="-
|
|
159
|
-
orientation:
|
|
160
|
-
orientation: y-" data-x="-
|
|
161
|
-
orientation: y-" data-x="-
|
|
162
|
-
orientation: y-" data-x="-
|
|
163
|
-
orientation: y-" data-x="-
|
|
164
|
-
orientation:
|
|
165
|
-
orientation:
|
|
166
|
-
orientation: y-" data-x="-
|
|
167
|
-
orientation: y-" data-x="-
|
|
168
|
-
orientation: y-" data-x="-
|
|
169
|
-
orientation:
|
|
170
|
-
orientation: x-" data-x="-
|
|
171
|
-
orientation: x-" data-x="
|
|
172
|
-
orientation: x-" data-x="
|
|
173
|
-
orientation: x-" data-x="-
|
|
174
|
-
orientation: x-" data-x="-
|
|
175
|
-
orientation: x-" data-x="
|
|
176
|
-
orientation: x
|
|
177
|
-
orientation: x-" data-x="
|
|
178
|
-
orientation: x
|
|
179
|
-
orientation: x-" data-x="
|
|
180
|
-
orientation:
|
|
181
|
-
orientation: x-" data-x="-
|
|
182
|
-
orientation:
|
|
183
|
-
orientation:
|
|
184
|
-
orientation: x+" data-x="-
|
|
185
|
-
orientation: y
|
|
186
|
-
orientation: x
|
|
187
|
-
orientation:
|
|
188
|
-
orientation: x
|
|
189
|
-
orientation: x
|
|
190
|
-
orientation: x+" data-x="
|
|
191
|
-
orientation: x-" data-x="-
|
|
192
|
-
orientation: x+" data-x="
|
|
193
|
-
orientation: x
|
|
194
|
-
orientation: x
|
|
195
|
-
orientation: x+" data-x="
|
|
196
|
-
orientation: x
|
|
197
|
-
orientation: x+" data-x="
|
|
198
|
-
orientation:
|
|
199
|
-
orientation: x+" data-x="1.1699999999999995" data-y="
|
|
200
|
-
orientation:
|
|
201
|
-
orientation: x
|
|
202
|
-
orientation: x-" data-x="
|
|
203
|
-
orientation: x
|
|
204
|
-
orientation: x
|
|
205
|
-
orientation:
|
|
206
|
-
orientation:
|
|
207
|
-
orientation:
|
|
208
|
-
orientation:
|
|
209
|
-
orientation:
|
|
3
|
+
<rect width="100%" height="100%" fill="white"/><g><polyline data-points="-4.140000000000002,-7.364455349999998 -4.140000000000002,-6.844727674999999 -4.890000000000002,-6.844727674999999 -4.890000000000002,-6.324999999999998" data-type="line" data-label="" points="258.29600925972517,434.5729958230587 258.29600925972517,419.9261487594988 237.15967993558445,419.9261487594988 237.15967993558445,405.2793016959388" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.3400000000000025,-7.364455349999998 -3.6400000000000023,-7.364455349999998" data-type="line" data-label="" points="252.65965477328763,434.5729958230587 272.38689547581896,434.5729958230587" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.05,-8.329999999999998 -11.25,-8.329999999999998 -11.25,-8.529999999999998 -11.25,-8.129999999999999 -11.05,-8.129999999999999" data-type="line" data-label="" points="63.55996175330881,461.783755422475 57.92360726687133,461.783755422475 57.92360726687133,467.4201099089124 57.92360726687133,456.14740093603746 63.55996175330881,456.14740093603746" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.05,-8.129999999999999 -8.850000000000001,-8.129999999999999 -8.850000000000001,-8.329999999999998 -9.05,-8.329999999999998" data-type="line" data-label="" points="119.92350661768404,456.14740093603746 125.55986110412152,456.14740093603746 125.55986110412152,461.783755422475 119.92350661768404,461.783755422475" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,-0.09999999999999959 -1.5050000000000008,-0.09999999999999964" data-type="line" data-label="" points="351.5776760102662,229.84776830557095 332.55497961853956,229.84776830557095" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.130000000000001,3.2594553499999996 -2.505000000000001,3.2594553499999996 -2.505000000000001,2.3 -1.8800000000000003,2.3 -1.8800000000000003,2.92" data-type="line" data-label="" points="286.75959941623466,135.1723621357758 304.3732071863519,135.1723621357758 304.3732071863519,162.21151446832073 321.98681495646923,162.21151446832073 321.98681495646923,144.7388155603644" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,0.10000000000000042 1.8449999999999998,0.10000000000000016" data-type="line" data-label="" points="407.94122087464143,224.21141381913344 426.96391726636807,224.21141381913344" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,1.3500000000000003 1.1699999999999995,0.7250000000000003 1.3699999999999994,0.7250000000000003 1.3699999999999994,0.10000000000000042" data-type="line" data-label="" points="407.94122087464143,188.98419827889893 407.94122087464143,206.59780604901619 413.5775753610789,206.59780604901619 413.5775753610789,224.21141381913344" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.08000000000000074,1.6894553499999998 0.5449999999999994,1.6894553499999998 0.5449999999999994,1.1500000000000004 1.1699999999999995,1.1500000000000004" data-type="line" data-label="" points="372.7140053344069,179.41774485431034 390.3276131045242,179.41774485431034 390.3276131045242,194.62055276533644 407.94122087464143,194.62055276533644" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.210000000000001,-2.1794553499999987 4.210000000000001,-1.659727674999999 3.460000000000001,-1.659727674999999 3.460000000000001,-1.1399999999999992 3.660000000000001,-1.1399999999999992" data-type="line" data-label="" points="493.6138090684918,288.45050576216596 493.6138090684918,273.803658698606 472.47747974435106,273.803658698606 472.47747974435106,259.1568116350461 478.1138342307886,259.1568116350461" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999982,-6.119999999999999 1.8449999999999984,-6.119999999999999" data-type="line" data-label="" points="407.9412208746414,399.5020383473404 426.963917266368,399.5020383473404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999973,-7.469999999999999 1.1699999999999973,-6.794999999999999 1.3699999999999983,-6.794999999999999 1.3699999999999983,-6.119999999999999" data-type="line" data-label="" points="407.9412208746414,437.5474311307936 407.9412208746414,418.52473473906696 413.5775753610789,418.52473473906696 413.5775753610789,399.5020383473404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.4199999999999973,-7.699455349999998 2.174727674999997,-7.699455349999998 2.174727674999997,-7.269999999999999 1.1699999999999973,-7.269999999999999" data-type="line" data-label="" points="443.1684364148759,444.01388958784156 436.2562275678123,444.01388958784156 436.2562275678123,431.9110766443561 407.9412208746414,431.9110766443561" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.3100000000000005,-0.09999999999999964 -2.6350000000000007,-0.09999999999999964" data-type="line" data-label="" points="281.68688037844095,229.84776830557095 300.7095767701676,229.84776830557095" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.660000000000001,1.6800000000000002 -2.9850000000000003,1.6800000000000002" data-type="line" data-label="" points="271.82326002717525,179.68421337627703 290.8459564189019,179.68421337627703" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.9499999999999997,1.35 2.9499999999999997,0.7250000000000005 3.175,0.7250000000000005 3.175,0.10000000000000053 2.9749999999999996,0.10000000000000053" data-type="line" data-label="" points="458.10477580393535,188.98419827889893 458.10477580393535,206.59780604901619 464.4456746011776,206.59780604901619 464.4456746011776,224.21141381913344 458.80932011474005,224.21141381913344" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.41,-2.92 2.4099999999999997,-2.244999999999999" data-type="line" data-label="" points="442.8866186905541,309.32036656434 442.8866186905541,290.2976701726134" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.249999999999997,-6.119999999999999 2.9749999999999983,-6.119999999999999" data-type="line" data-label="" points="494.7410799657792,399.5020383473404 458.80932011474,399.5020383473404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.200000000000001,-10.398910699999997 -7.400000000000001,-10.398910699999997 -7.400000000000001,-10.198910699999997 -7.200000000000001,-10.198910699999997" data-type="line" data-label="" points="172.05978561723109,520.0893259523929 166.42343113079357,520.0893259523929 166.42343113079357,514.4529714659554 172.05978561723109,514.4529714659554" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.200000000000001,-10.198910699999997 -5.000000000000001,-10.198910699999997 -5.000000000000001,-10.398910699999997 -5.200000000000001,-10.398910699999997" data-type="line" data-label="" points="228.4233304816063,514.4529714659554 234.05968496804385,514.4529714659554 234.05968496804385,520.0893259523929 228.4233304816063,520.0893259523929" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.760000000000001,1.6800000000000002 -4.960000000000001,1.6800000000000002 -4.960000000000001,-0.09999999999999964 -4.410000000000001,-0.09999999999999964" data-type="line" data-label="" points="240.82331035176887,179.68421337627703 235.18695586533136,179.68421337627703 235.18695586533136,229.84776830557095 250.68693070303453,229.84776830557095" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,2.45 1.1699999999999995,2.6500000000000004 2.9499999999999997,2.6500000000000004 2.9499999999999997,2.4500000000000006" data-type="line" data-label="" points="407.94122087464143,157.98424860349257 407.94122087464143,152.34789411705503 458.10477580393535,152.34789411705503 458.10477580393535,157.98424860349255" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.5994553499999995,-1.3305446499999976 -7.5994553499999995,-0.42804464999999814 -8.965,-0.42804464999999814 -8.965,0.4744553500000013" data-type="line" data-label="" points="160.8024258467113,264.52669759951687 160.8024258467113,239.09264797946756 122.31895727442,239.09264797946756 122.31895727442,213.65859835941825" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3494553499999995,-4.019999999999998 -6.3494553499999995,-4.219999999999998 -7.5994553499999995,-4.219999999999998 -7.5994553499999995,-2.430544649999999" data-type="line" data-label="" points="196.0296413869458,340.3203162397464 196.0296413869458,345.95667072618386 160.8024258467113,345.95667072618386 160.8024258467113,295.5266472749233" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.65,-5.8199999999999985 -6.450000000000001,-5.8199999999999985 -6.450000000000001,-6.914727674999998 -7.950000000000001,-6.914727674999998 -7.950000000000001,-8.009455349999998 -7.750000000000001,-8.009455349999998" data-type="line" data-label="" points="187.5597604549343,391.04750661768406 193.1961149413718,391.04750661768406 193.1961149413718,421.8988728297519 150.9234562930904,421.8988728297519 150.9234562930904,452.7502390418197 156.5598107795279,452.7502390418197" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.650000000000002,-5.8199999999999985 -8.850000000000001,-5.8199999999999985 -8.850000000000001,-5.024999999999999 -4.890000000000002,-5.024999999999999 -4.890000000000002,-5.224999999999999" data-type="line" data-label="" points="131.19621559055904,391.04750661768406 125.55986110412152,391.04750661768406 125.55986110412152,368.6429975340949 237.15967993558445,368.6429975340949 237.15967993558445,374.27935202053243" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999982,-5.92 1.5074999999999983,-5.92 1.5074999999999983,-5.329999999999999 2.41,-5.329999999999999 2.41,-4.02" data-type="line" data-label="" points="407.9412208746414,393.8656838609029 417.4525690705047,393.8656838609029 417.4525690705047,377.2384381259121 442.8866186905541,377.2384381259121 442.8866186905541,340.3203162397464" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.808910699999998,-0.6049999999999982 -9.808910699999998,0.4744553500000017 -7.965000000000001,0.4744553500000017" data-type="line" data-label="" points="98.53605797393192,244.07956338382567 98.53605797393192,213.65859835941825 150.5007297066076,213.65859835941825" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3494553499999995,-2.919999999999998 -6.3494553499999995,-1.6794553499999996 -4.2194553500000005,-1.6794553499999996" data-type="line" data-label="" points="196.0296413869458,309.32036656433996 196.0296413869458,274.35961954607217 256.05681666750536,274.35961954607217" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,0.3272767499999982 7.265,0.3272767499999982 7.265,1.3167320999999976 5.765,1.3167320999999976 5.765,2.3061874499999973 5.965,2.3061874499999973" data-type="line" data-label="" points="574.0727693623874,217.80635217150632 579.7091238488249,217.80635217150632 579.7091238488249,189.92174666599578 537.4364652005435,189.92174666599578 537.4364652005435,162.03714116048525 543.072819686981,162.03714116048525" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,-1.6516339500000008 7.265,-1.6516339500000008 7.265,-0.6621786000000013 5.765,-0.6621786000000013 5.765,0.3272767499999982 5.965,0.3272767499999982" data-type="line" data-label="" points="574.0727693623874,273.5755631825274 579.7091238488249,273.5755631825274 579.7091238488249,245.69095767701683 537.4364652005435,245.69095767701683 537.4364652005435,217.80635217150632 543.072819686981,217.80635217150632" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,-0.49999999999999944 3.4400000000000004,-0.49999999999999944 3.4400000000000004,-3.4794553499999985 4.210000000000001,-3.4794553499999985 4.210000000000001,-3.2794553499999983" data-type="line" data-label="" points="407.94122087464143,241.120477278446 471.91384429570735,241.120477278446 471.91384429570735,325.08680992400986 493.6138090684918,325.08680992400986 493.6138090684918,319.4504554375723" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.0649999999999995,-3.63054465 7.265,-3.63054465 7.265,-2.6410893000000004 5.765,-2.6410893000000004 5.765,-1.6516339500000008 5.965,-1.6516339500000008" data-type="line" data-label="" points="574.0727693623874,329.34477419354846 579.7091238488249,329.34477419354846 579.7091238488249,301.4601686880379 537.4364652005435,301.4601686880379 537.4364652005435,273.5755631825274 543.072819686981,273.5755631825274" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.119455350000001,-1.6794553499999991 -2.9194553500000007,-1.6794553499999991 -2.9194553500000007,-1.3399999999999994 -1.8694553500000004,-1.3399999999999994" data-type="line" data-label="" points="287.0567663429117,274.35961954607217 292.69312082934925,274.35961954607217 292.69312082934925,264.7931661214836 322.2839818831463,264.7931661214836" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8694553500000004,-1.3399999999999994 -1.8694553500000004,-0.7199999999999995 -1.3050000000000008,-0.7199999999999995 -1.3050000000000008,-0.09999999999999964 -1.5050000000000008,-0.09999999999999964" data-type="line" data-label="" points="322.2839818831463,264.7931661214836 322.2839818831463,247.32046721352728 338.19133410497705,247.32046721352728 338.19133410497705,229.84776830557095 332.55497961853956,229.84776830557095" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999995,-1.0999999999999996 1.9909999999999992,-1.0999999999999994 1.9909999999999992,-0.6999999999999995 1.1699999999999995,-0.6999999999999995" data-type="line" data-label="" points="407.94122087464143,258.02954073775857 431.07845604146746,258.02954073775857 431.07845604146746,246.75683176488351 407.94122087464143,246.75683176488351" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,-0.8999999999999996 -1.0300000000000005,-0.8999999999999996 -1.0300000000000005,-0.49999999999999967 -0.8300000000000005,-0.49999999999999967" data-type="line" data-label="" points="351.5776760102662,252.39318625132105 345.94132152382866,252.39318625132105 345.94132152382866,241.120477278446 351.5776760102662,241.120477278446" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000005,0.10000000000000042 -1.3425000000000005,0.10000000000000042 -1.3425000000000005,1.6800000000000002 -1.8550000000000004,1.6800000000000002" data-type="line" data-label="" points="351.5776760102662,224.21141381913344 337.13451763877003,224.21141381913344 337.13451763877003,179.68421337627703 322.6913592672739,179.68421337627703" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.760000000000001,-1.1399999999999992 5.024,-1.1399999999999992 5.024,-3.83054465 5.549999999999997,-3.83054465 5.549999999999997,-6.119999999999999 5.349999999999997,-6.119999999999999" data-type="line" data-label="" points="509.11378390619495,259.1568116350461 516.5537718282925,259.1568116350461 516.5537718282925,334.98112867998594 531.3773841276231,334.98112867998594 531.3773841276231,399.5020383473404 525.7410296411856,399.5020383473404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8800000000000003,2.3 -1.6550000000000002,2.3 -1.6550000000000002,1.6799999999999997" data-type="line" data-label="" points="321.98681495646923,162.21151446832073 328.3277137537114,162.21151446832073 328.3277137537114,179.68421337627703" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.850000000000001,-8.329999999999998 -8.59,-8.329999999999998" data-type="line" data-label="" points="125.55986110412152,461.783755422475 132.88712193649036,461.783755422475" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.965000000000001,0.4744553500000013 -5.7540000000000004,0.4744553500000013 -5.7540000000000004,0.27345535000000126" data-type="line" data-label="" points="206.86427457098281,213.65859835941825 212.8106285541744,213.65859835941825 212.8106285541744,219.32313461828795" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.6400000000000023,-7.564455349999998 -3.851000000000002,-7.564455349999998 -3.851000000000002,-7.765455349999998" data-type="line" data-label="" points="272.38689547581896,440.20935030949624 266.4405414926274,440.20935030949624 266.4405414926274,445.87388656836595" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8300000000000018,-6.02 -2.041000000000002,-6.02 -2.041000000000002,-6.321" data-type="line" data-label="" points="351.57767601026615,396.6838611041216 317.44954959488695,396.6838611041216 317.44954959488695,405.1665746062101" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.808910699999998,-2.9149999999999983 -9.808910699999998,-2.8139999999999983 -10.259910699999997,-2.8139999999999983" data-type="line" data-label="" points="98.53605797393192,309.17945770217904 98.53605797393192,306.3330986865281 85.82607860701529,306.3330986865281" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.475,-5.224999999999998 -10.475,-5.123999999999998 -10.925999999999998,-5.123999999999998" data-type="line" data-label="" points="79.76448090181674,374.27935202053243 79.76448090181674,371.4329930048815 67.05450153490011,371.4329930048815" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8694553500000004,-2.44 -1.8694553500000004,-2.541 -2.0704553500000005,-2.541" data-type="line" data-label="" points="322.2839818831463,295.79311579689 322.2839818831463,298.6394748125409 316.6194456242766,298.6394748125409" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8800000000000003,4.0200000000000005 -1.8800000000000003,4.121 -2.0810000000000004,4.121" data-type="line" data-label="" points="321.98681495646923,113.738865884958 321.98681495646923,110.89250686930706 316.3222786975995,110.89250686930706" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.1699999999999973,-8.57 1.1699999999999973,-8.671 0.9689999999999974,-8.671" data-type="line" data-label="" points="407.9412208746414,468.54738080620007 407.9412208746414,471.393739821851 402.27668461577167,471.393739821851" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-6.200000000000001" data-y="-10.298910699999997" x="172.05978561723109" y="508.8166169795179" width="56.36354486437523" height="16.909063459312563" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-10.05" data-y="-8.229999999999999" x="63.559961753308784" y="450.5110464495999" width="56.36354486437523" height="16.90906345931262" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-7.650000000000001" data-y="-5.8199999999999985" x="131.19621559055906" y="385.4111521312466" width="56.36354486437526" height="11.272708972875023" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-6.965000000000001" data-y="0.4744553500000013" x="150.5007297066076" y="208.02224387298074" width="56.36354486437523" height="11.272708972875023" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-2.6400000000000023" data-y="-7.464455349999998" x="272.38689547581896" y="428.93664133662116" width="56.36354486437523" height="16.90906345931262" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="0.16999999999999948" data-y="-0.49999999999999956" x="351.57767601026615" y="218.5750593326959" width="56.36354486437523" height="45.090835891500205" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="0.16999999999999815" data-y="-6.02" x="351.57767601026615" y="385.4111521312466" width="56.36354486437523" height="22.545417945750046" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-9.6714107" data-y="-3.464999999999999" x="86.69971355241304" y="309.1794577021791" width="31.422676261889194" height="30.999949675406413" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="-10.337499999999999" data-y="-5.774999999999999" x="67.9281364802979" y="374.27935202053243" width="31.42267626188925" height="30.999949675406413" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="-9.551410699999998" data-y="-1.154999999999999" x="86.69971355241312" y="244.0795633838257" width="38.186301645614236" height="30.999949675406384" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="-4.597500000000002" data-y="-5.774999999999999" x="231.6795835136631" y="374.2793520205325" width="27.4465297166725" height="30.999949675406356" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="-7.200000000000001" data-y="-8.009455349999998" x="156.55981077952788" y="441.77469699562175" width="30.999949675406384" height="21.951084092395945" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="-7.306955349999999" data-y="-1.8805446499999983" x="155.32232942478996" y="264.52669759951687" width="27.446529716672444" height="30.999949675406413" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="-4.890000000000002" data-y="-7.364455349999998" x="221.65970509788127" y="422.47018287957326" width="30.999949675406356" height="24.205625886970893" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="6.515" data-y="-3.63054465" x="543.0728196869811" y="318.3692321473505" width="30.999949675406356" height="21.951084092395945" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="6.515" data-y="-1.6516339500000008" x="543.0728196869811" y="262.6000211363295" width="30.999949675406356" height="21.951084092395888" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="6.515" data-y="0.3272767499999982" x="543.0728196869811" y="206.83081012530835" width="30.999949675406356" height="21.951084092395917" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="6.515" data-y="2.3061874499999973" x="543.0728196869811" y="151.06159911428728" width="30.999949675406356" height="21.951084092395917" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="-5.9969553499999995" data-y="-3.469999999999998" x="190.54954496502444" y="309.3203665643399" width="30.828342408535008" height="30.999949675406413" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="-3.6694553500000007" data-y="-1.6794553499999991" x="256.0568166675054" y="262.2568066025867" width="30.999949675406356" height="24.205625886970893" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="-3.6800000000000006" data-y="3.2594553499999996" x="255.7596497408283" y="123.06954919229034" width="30.999949675406356" height="24.205625886970935" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="-0.6300000000000008" data-y="1.6894553499999998" x="341.71405565900045" y="167.31493191082487" width="30.999949675406413" height="24.20562588697095" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="4.502500000000001" data-y="-2.7294553499999985" x="488.1337126465705" y="288.45050576216596" width="27.446529716672444" height="30.999949675406356" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="2.9699999999999975" data-y="-7.699455349999998" x="443.1684364148759" y="433.0383475416436" width="30.999949675406356" height="21.951084092395945" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="-1.5869553500000007" data-y="-1.8899999999999997" x="316.8038854612249" y="264.7931661214835" width="26.882894268028792" height="30.999949675406413" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="-1.6475000000000004" data-y="3.47" x="316.50671853454776" y="113.73886588495799" width="24.064717024810022" height="30.9999496754064" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="1.4024999999999994" data-y="1.9000000000000004" x="402.46112445272" y="157.98424860349257" width="24.064717024810022" height="30.999949675406356" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_27" data-x="4.210000000000001" data-y="-1.1399999999999992" x="478.1138342307886" y="247.05399869156062" width="30.999949675406356" height="24.20562588697095" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_28" data-x="1.4524999999999972" data-y="-8.02" x="402.4611244527199" y="437.5474311307936" width="26.882894268028792" height="30.99994967540647" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_29" data-x="-2.0700000000000007" data-y="-0.09999999999999964" x="300.7095767701676" y="213.22052257058027" width="31.845402848371975" height="33.25449146998139" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_30" data-x="-3.8600000000000008" data-y="-0.09999999999999962" x="250.6869307030345" y="218.872226259373" width="30.999949675406413" height="21.951084092395917" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_31" data-x="-2.4200000000000004" data-y="1.6800000000000002" x="290.8459564189019" y="163.05696764128635" width="31.845402848372032" height="33.25449146998139" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_32" data-x="-4.210000000000001" data-y="1.6800000000000002" x="240.8233103517689" y="168.70867133007908" width="30.999949675406384" height="21.951084092395888" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_33" data-x="2.4099999999999997" data-y="0.10000000000000009" x="426.96391726636807" y="207.58416808414276" width="31.845402848371975" height="33.25449146998136" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_34" data-x="3.2424999999999997" data-y="1.9000000000000004" x="452.62467938201394" y="157.98424860349257" width="27.4465297166725" height="30.999949675406384" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_35" data-x="2.6525" data-y="-1.6799999999999993" x="433.7275426500931" y="258.45226732424135" width="31.98631171053296" height="31.845402848372032" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_36" data-x="2.7525000000000004" data-y="-3.4699999999999998" x="437.40652226863267" y="309.32036656434" width="30.264706959891328" height="30.999949675406356" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_37" data-x="2.4099999999999984" data-y="-6.119999999999999" x="426.96391726636807" y="382.87479261234967" width="31.845402848371975" height="33.25449146998142" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="schematic_component_38" data-x="4.799999999999997" data-y="-6.119999999999999" x="494.74107996577914" y="387.39922540385487" width="30.999949675406413" height="24.205625886971006" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="MY_18650_02" data-x="-6.140000000000001" data-y="-10.728910699999997" x="183.33249459010614" y="526.8529513361179" width="37.19993961048763" height="5.072719037793718" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="J_BAT_POS" data-x="-6.260000000000001" data-y="-9.868910699999997" x="183.33249459010614" y="502.61662704443654" width="30.43631422676262" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="MY_18650_02" data-x="-9.99" data-y="-8.659999999999998" x="74.83267072618386" y="468.54738080619995" width="37.19993961048766" height="5.072719037793831" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="J_BAT_NEG" data-x="-10.11" data-y="-7.799999999999999" x="74.83267072618392" y="444.3110565145187" width="30.43631422676259" height="5.072719037793718" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="BAT54WS" data-x="-7.830000000000002" data-y="-6.149999999999999" x="142.4689245634341" y="397.8111320014091" width="23.672688843037577" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="D_PROT" data-x="-7.890000000000002" data-y="-5.489999999999998" x="142.4689245634341" y="379.2111621961652" width="20.29087615117504" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="BAT54WS" data-x="-7.145000000000001" data-y="0.14445535000000126" x="161.77343867948258" y="220.42222374314326" width="23.672688843037605" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="D_SENSE_CLAMP" data-x="-6.785000000000001" data-y="0.8044553500000013" x="161.77343867948258" y="201.82225393789946" width="43.9635649942127" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="LM4040D25FTA" data-x="-2.5200000000000022" data-y="-7.894455349999998" x="283.65960444869404" y="446.9729756932212" width="40.58175230235014" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="U_REF" data-x="-2.940000000000002" data-y="-7.034455349999998" x="283.65960444869404" y="422.7366514015399" width="16.909063459312506" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="LMV339IDR" data-x="0.10999999999999943" data-y="-1.4299999999999997" x="362.8503849831412" y="264.79316612148364" width="30.436314226762647" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="U1" data-x="-0.3100000000000006" data-y="0.4300000000000005" x="362.8503849831412" y="212.37506939761465" width="6.763625383725014" height="5.072719037793746" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="LMV331IDBVR" data-x="0.22999999999999798" data-y="-6.55" x="362.8503849831412" y="409.08384097428416" width="37.199939610487604" height="5.0727190377937745" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="U2" data-x="-0.31000000000000194" data-y="-5.489999999999999" x="362.8503849831412" y="379.2111621961653" width="6.763625383725014" height="5.072719037793718" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_RAW
|
|
4
|
+
globalConnNetId: connectivity_net12" data-x="-7.880000000000001" data-y="-10.398910699999997" x="139.36892959589346" y="517.2711487091742" width="27.05450153490014" height="5.636354486437426" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_RAW
|
|
5
|
+
globalConnNetId: connectivity_net12" data-x="-4.520000000000001" data-y="-10.198910699999997" x="234.05968496804383" y="511.6347942227367" width="27.054501534900112" height="5.636354486437597" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_RAW
|
|
6
|
+
globalConnNetId: connectivity_net12" data-x="-5.970000000000001" data-y="-5.8199999999999985" x="193.19611494137177" y="388.22932937446535" width="27.05450153490014" height="5.636354486437426" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
7
|
+
globalConnNetId: connectivity_net1" data-x="-6.3494553499999995" data-y="-4.459999999999998" x="190.1114691761864" y="345.9566707261838" width="11.836344421518788" height="13.527250767450084" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
8
|
+
globalConnNetId: connectivity_net1" data-x="-11.25" data-y="-8.769999999999998" x="52.00543505611191" y="467.4201099089124" width="11.836344421518845" height="13.527250767450141" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
9
|
+
globalConnNetId: connectivity_net1" data-x="-8.59" data-y="-8.569999999999999" x="126.96894972573094" y="461.78375542247494" width="11.836344421518845" height="13.527250767450028" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
10
|
+
globalConnNetId: connectivity_net1" data-x="-5.7540000000000004" data-y="0.03345535000000127" x="206.892456343415" y="219.32313461828795" width="11.836344421518788" height="13.527250767450056" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
11
|
+
globalConnNetId: connectivity_net1" data-x="-3.851000000000002" data-y="-8.005455349999998" x="260.522369281868" y="445.873886568366" width="11.836344421518845" height="13.527250767450028" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
12
|
+
globalConnNetId: connectivity_net1" data-x="1.4109999999999994" data-y="-0.2999999999999995" x="407.9694026470736" y="232.66594554878975" width="13.527250767450028" height="5.6363544864375115" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
13
|
+
globalConnNetId: connectivity_net1" data-x="-2.041000000000002" data-y="-6.561" x="311.53137738412755" y="405.16657460621" width="11.836344421518788" height="13.527250767450084" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
14
|
+
globalConnNetId: connectivity_net1" data-x="-9.808910699999998" data-y="-4.256" x="92.6178857631725" y="340.2075891500176" width="11.836344421518845" height="13.527250767450084" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
15
|
+
globalConnNetId: connectivity_net1" data-x="-10.475" data-y="-6.566" x="73.84630869105732" y="405.307483468371" width="11.836344421518845" height="13.527250767450028" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: GND
|
|
16
|
+
globalConnNetId: connectivity_net1" data-x="-9.808910699999998" data-y="-1.9459999999999995" x="92.6178857631725" y="275.1076948316643" width="11.836344421518845" height="13.527250767450028" fill="#00000066" stroke="#000000" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
17
|
+
globalConnNetId: connectivity_net13" data-x="-9.330000000000002" data-y="-5.024999999999999" x="98.50535956922138" y="365.8248202908761" width="27.054501534900112" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
18
|
+
globalConnNetId: connectivity_net13" data-x="-1.3110000000000004" data-y="-0.2999999999999996" x="324.4949927029339" y="232.66594554878975" width="27.054501534900055" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
19
|
+
globalConnNetId: connectivity_net13" data-x="1.0274999999999983" data-y="-5.329999999999999" x="390.3980675356046" y="374.42026088269336" width="27.054501534900112" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
20
|
+
globalConnNetId: connectivity_net13" data-x="-10.739910699999998" data-y="-2.8139999999999983" x="58.77157707211521" y="303.51492144330933" width="27.054501534900112" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
21
|
+
globalConnNetId: connectivity_net13" data-x="-11.405999999999999" data-y="-5.123999999999998" x="40.00000000000003" y="368.6148157616627" width="27.054501534900112" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
22
|
+
globalConnNetId: connectivity_net13" data-x="-2.5504553500000005" data-y="-2.541" x="289.56494408937647" y="295.82129756932216" width="27.054501534900112" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
23
|
+
globalConnNetId: connectivity_net13" data-x="-2.5610000000000004" data-y="4.121" x="289.2677771626994" y="108.0743296260883" width="27.054501534900055" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
24
|
+
globalConnNetId: connectivity_net13" data-x="0.6899999999999995" data-y="2.6500000000000004" x="380.88671933974126" y="149.52971687383626" width="27.054501534900112" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
25
|
+
globalConnNetId: connectivity_net13" data-x="5.504" data-y="-1.1399999999999992" x="516.5537718282925" y="256.3386343918273" width="27.054501534900055" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
26
|
+
globalConnNetId: connectivity_net13" data-x="0.48899999999999744" data-y="-8.671" x="375.22218308087156" y="468.57556257863223" width="27.054501534900112" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: BAT_POS
|
|
27
|
+
globalConnNetId: connectivity_net13" data-x="-5.440000000000001" data-y="1.6800000000000002" x="208.13245433043124" y="176.8660361330583" width="27.05450153490014" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: SENSE_DIV
|
|
28
|
+
globalConnNetId: connectivity_net14" data-x="-8.19945535" data-y="-0.8792946499999978" x="126.98429892808618" y="248.99149554627343" width="33.8181269186251" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: SENSE_DIV
|
|
29
|
+
globalConnNetId: connectivity_net14" data-x="1.2726249999999995" data-y="-1.7000999999999997" x="408.0151980272759" y="258.0323589150018" width="5.63635448643754" height="33.818126918625126" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: SENSE_DIV
|
|
30
|
+
globalConnNetId: connectivity_net14" data-x="-1.4310000000000018" data-y="-6.22" x="317.73136731920886" y="399.50203834734043" width="33.818126918625126" height="5.636354486437426" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: SENSE_DIV
|
|
31
|
+
globalConnNetId: connectivity_net14" data-x="-6.049000000000001" data-y="-8.009455349999998" x="187.5879422273665" y="449.932061798601" width="33.8181269186251" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: U_REF.CAT to RTH_TOP.pin1
|
|
32
|
+
globalConnNetId: connectivity_net0" data-x="-3.9900000000000024" data-y="-7.139455349999999" x="259.7050978813345" y="421.89119822857435" width="5.63635448643754" height="12.681797594484351" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: U1.OUT2 to RHYS2.pin1
|
|
33
|
+
globalConnNetId: connectivity_net3" data-x="-0.31750000000000056" data-y="0.8900000000000003" x="337.13451763877003" y="199.12963635448648" width="57.77263348598461" height="5.6363544864375115" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: LED1.cathode to U1.OUT1
|
|
34
|
+
globalConnNetId: connectivity_net2" data-x="-1.1675000000000006" data-y="-0.3249999999999996" x="339.2481505711841" y="229.84776830557098" width="5.63635448643754" height="12.681797594484436" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_20
|
|
35
|
+
globalConnNetId: connectivity_net15" data-x="-1.1910000000000003" data-y="-0.6999999999999996" x="331.258618086659" y="243.93865452166477" width="20.29087615117504" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_20
|
|
36
|
+
globalConnNetId: connectivity_net15" data-x="7.426" data-y="2.3061874499999973" x="574.1009511348196" y="159.21896391726648" width="20.290876151175098" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_20
|
|
37
|
+
globalConnNetId: connectivity_net15" data-x="-5.989455349999999" data-y="-2.299727674999999" x="196.0296413869458" y="289.0218158119873" width="20.290876151175098" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_40
|
|
38
|
+
globalConnNetId: connectivity_net16" data-x="-1.1910000000000003" data-y="-1.0999999999999996" x="331.258618086659" y="255.2113634945398" width="20.29087615117504" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_40
|
|
39
|
+
globalConnNetId: connectivity_net16" data-x="7.625" data-y="0.3272767499999982" x="579.7091238488249" y="214.98817492828755" width="20.290876151175098" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_40
|
|
40
|
+
globalConnNetId: connectivity_net16" data-x="-4.591000000000001" data-y="3.2594553499999996" x="235.44059181722102" y="132.35418489255704" width="20.290876151175098" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_60
|
|
41
|
+
globalConnNetId: connectivity_net17" data-x="1.5309999999999993" data-y="-0.8999999999999995" x="407.9694026470736" y="249.5750090081023" width="20.290876151175098" height="5.6363544864375115" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_60
|
|
42
|
+
globalConnNetId: connectivity_net17" data-x="7.625" data-y="-1.6516339500000008" x="579.7091238488249" y="270.7573859393086" width="20.290876151175098" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_60
|
|
43
|
+
globalConnNetId: connectivity_net17" data-x="-1.5410000000000008" data-y="1.6894553499999998" x="321.39499773539325" y="176.59956761109157" width="20.290876151175098" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_80
|
|
44
|
+
globalConnNetId: connectivity_net18" data-x="3.8000000000000003" data-y="-0.49999999999999944" x="471.91384429570735" y="238.30230003522723" width="20.29087615117504" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_80
|
|
45
|
+
globalConnNetId: connectivity_net18" data-x="7.625" data-y="-3.63054465" x="579.7091238488249" y="326.5265969503297" width="20.290876151175098" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: LED4.cathode to U1.OUT4
|
|
46
|
+
globalConnNetId: connectivity_net5" data-x="2.1959999999999993" data-y="-0.09999999999999953" x="407.9694026470736" y="227.0295910623522" width="57.77263348598461" height="5.6363544864375115" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: LED4.cathode to U1.OUT4
|
|
47
|
+
globalConnNetId: connectivity_net5" data-x="2.4099999999999997" data-y="-0.8889999999999993" x="440.0684414473353" y="245.74228795732478" width="5.636354486437483" height="12.681797594484408" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: LED3.cathode to U1.OUT3
|
|
48
|
+
globalConnNetId: connectivity_net4" data-x="1.3949999999999996" data-y="1.0375000000000003" x="407.94122087464143" y="194.9728249207388" width="12.681797594484408" height="5.63635448643754" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_100
|
|
49
|
+
globalConnNetId: connectivity_net19" data-x="-1.2510000000000017" data-y="-5.819999999999999" x="327.8768053947964" y="388.22932937446535" width="23.672688843037577" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_100
|
|
50
|
+
globalConnNetId: connectivity_net19" data-x="-5.861000000000002" data-y="-7.364455349999998" x="197.95883448241148" y="431.75481857983993" width="23.672688843037577" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_100
|
|
51
|
+
globalConnNetId: connectivity_net19" data-x="5.544" data-y="-3.63054465" x="519.3719490715113" y="326.5265969503297" width="23.672688843037577" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: TH_100
|
|
52
|
+
globalConnNetId: connectivity_net19" data-x="3.9409999999999976" data-y="-7.699455349999998" x="474.19656786271446" y="441.19571234462285" width="23.672688843037577" height="5.636354486437483" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: LED5.cathode to U2.OUT
|
|
53
|
+
globalConnNetId: connectivity_net6" data-x="1.3949999999999974" data-y="-7.1324999999999985" x="407.9412208746413" y="425.2179056917115" width="12.681797594484408" height="5.63635448643754" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: RLED1.pin2 to LED1.anode
|
|
54
|
+
globalConnNetId: connectivity_net7" data-x="-2.9725000000000006" data-y="0.12500000000000036" x="288.3800513310855" y="217.16597071108654" width="5.636354486437483" height="12.681797594484408" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: RLED2.pin2 to LED2.anode
|
|
55
|
+
globalConnNetId: connectivity_net8" data-x="-3.3225000000000007" data-y="1.9050000000000002" x="278.5164309798198" y="167.0024157817926" width="5.63635448643754" height="12.681797594484436" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: RLED3.pin2 to LED3.anode
|
|
56
|
+
globalConnNetId: connectivity_net9" data-x="3.175" data-y="1.0375000000000003" x="458.10477580393535" y="194.9728249207388" width="12.681797594484465" height="5.63635448643754" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: RLED4.pin2 to LED4.anode
|
|
57
|
+
globalConnNetId: connectivity_net10" data-x="2.6350000000000002" data-y="-2.5824999999999996" x="442.8866186905541" y="296.99084112525793" width="12.681797594484408" height="5.63635448643754" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><rect data-type="rect" data-label="netId: RLED5.pin2 to LED5.anode
|
|
58
|
+
globalConnNetId: connectivity_net11" data-x="3.612499999999998" data-y="-5.895" x="473.95702279704085" y="386.82024075285597" width="5.63635448643754" height="12.681797594484408" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.03548392857142857"/></g><g><circle data-type="point" data-label="J_BAT_POS.1
|
|
59
|
+
x-" data-x="-7.200000000000001" data-y="-10.198910699999997" cx="172.05978561723109" cy="514.4529714659554" r="3" fill="hsl(96, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_POS.2
|
|
60
|
+
x-" data-x="-7.200000000000001" data-y="-10.398910699999997" cx="172.05978561723109" cy="520.0893259523929" r="3" fill="hsl(96, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_POS.3
|
|
61
|
+
x+" data-x="-5.200000000000001" data-y="-10.398910699999997" cx="228.4233304816063" cy="520.0893259523929" r="3" fill="hsl(96, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_POS.4
|
|
62
|
+
x+" data-x="-5.200000000000001" data-y="-10.198910699999997" cx="228.4233304816063" cy="514.4529714659554" r="3" fill="hsl(104, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_NEG.1
|
|
63
|
+
x-" data-x="-11.05" data-y="-8.129999999999999" cx="63.55996175330881" cy="456.14740093603746" r="3" fill="hsl(8, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_NEG.2
|
|
64
|
+
x-" data-x="-11.05" data-y="-8.329999999999998" cx="63.55996175330881" cy="461.783755422475" r="3" fill="hsl(8, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_NEG.3
|
|
65
|
+
x+" data-x="-9.05" data-y="-8.329999999999998" cx="119.92350661768404" cy="461.783755422475" r="3" fill="hsl(8, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J_BAT_NEG.4
|
|
66
|
+
x+" data-x="-9.05" data-y="-8.129999999999999" cx="119.92350661768404" cy="456.14740093603746" r="3" fill="hsl(8, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_PROT.1
|
|
67
|
+
x-" data-x="-8.650000000000002" data-y="-5.8199999999999985" cx="131.19621559055904" cy="391.04750661768406" r="3" fill="hsl(13, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_PROT.2
|
|
68
|
+
x+" data-x="-6.65" data-y="-5.8199999999999985" cx="187.5597604549343" cy="391.04750661768406" r="3" fill="hsl(14, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_SENSE_CLAMP.1
|
|
69
|
+
x-" data-x="-7.965000000000001" data-y="0.4744553500000013" cx="150.5007297066076" cy="213.65859835941825" r="3" fill="hsl(112, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_SENSE_CLAMP.2
|
|
70
|
+
x+" data-x="-5.965000000000001" data-y="0.4744553500000013" cx="206.86427457098281" cy="213.65859835941825" r="3" fill="hsl(112, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U_REF.1
|
|
71
|
+
x-" data-x="-3.6400000000000023" data-y="-7.364455349999998" cx="272.38689547581896" cy="434.5729958230587" r="3" fill="hsl(196, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U_REF.2
|
|
72
|
+
x-" data-x="-3.6400000000000023" data-y="-7.564455349999998" cx="272.38689547581896" cy="440.20935030949624" r="3" fill="hsl(197, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U_REF.3
|
|
73
|
+
x+" data-x="-1.6400000000000023" data-y="-7.464455349999998" cx="328.7504403401942" cy="437.3911730662775" r="3" fill="hsl(198, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.1
|
|
74
|
+
x-" data-x="-0.8300000000000005" data-y="0.10000000000000042" cx="351.5776760102662" cy="224.21141381913344" r="3" fill="hsl(319, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.2
|
|
75
|
+
x-" data-x="-0.8300000000000005" data-y="-0.09999999999999959" cx="351.5776760102662" cy="229.84776830557095" r="3" fill="hsl(320, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.3
|
|
76
|
+
x-" data-x="-0.8300000000000005" data-y="-0.2999999999999996" cx="351.5776760102662" cy="235.4841227920085" r="3" fill="hsl(321, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.4
|
|
77
|
+
x-" data-x="-0.8300000000000005" data-y="-0.49999999999999967" cx="351.5776760102662" cy="241.120477278446" r="3" fill="hsl(322, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.5
|
|
78
|
+
x-" data-x="-0.8300000000000005" data-y="-0.6999999999999996" cx="351.5776760102662" cy="246.75683176488354" r="3" fill="hsl(323, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.6
|
|
79
|
+
x-" data-x="-0.8300000000000005" data-y="-0.8999999999999996" cx="351.5776760102662" cy="252.39318625132105" r="3" fill="hsl(324, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.7
|
|
80
|
+
x-" data-x="-0.8300000000000005" data-y="-1.0999999999999996" cx="351.5776760102662" cy="258.02954073775857" r="3" fill="hsl(325, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.8
|
|
81
|
+
x+" data-x="1.1699999999999995" data-y="-1.0999999999999996" cx="407.94122087464143" cy="258.02954073775857" r="3" fill="hsl(326, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.9
|
|
82
|
+
x+" data-x="1.1699999999999995" data-y="-0.8999999999999995" cx="407.94122087464143" cy="252.39318625132105" r="3" fill="hsl(327, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.10
|
|
83
|
+
x+" data-x="1.1699999999999995" data-y="-0.6999999999999995" cx="407.94122087464143" cy="246.75683176488351" r="3" fill="hsl(217, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.11
|
|
84
|
+
x+" data-x="1.1699999999999995" data-y="-0.49999999999999944" cx="407.94122087464143" cy="241.120477278446" r="3" fill="hsl(218, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.12
|
|
85
|
+
x+" data-x="1.1699999999999995" data-y="-0.2999999999999995" cx="407.94122087464143" cy="235.4841227920085" r="3" fill="hsl(219, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.13
|
|
86
|
+
x+" data-x="1.1699999999999995" data-y="-0.09999999999999953" cx="407.94122087464143" cy="229.84776830557095" r="3" fill="hsl(220, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.14
|
|
87
|
+
x+" data-x="1.1699999999999995" data-y="0.10000000000000042" cx="407.94122087464143" cy="224.21141381913344" r="3" fill="hsl(221, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U2.1
|
|
88
|
+
x-" data-x="-0.8300000000000018" data-y="-5.819999999999999" cx="351.57767601026615" cy="391.0475066176841" r="3" fill="hsl(200, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U2.2
|
|
89
|
+
x-" data-x="-0.8300000000000018" data-y="-6.02" cx="351.57767601026615" cy="396.6838611041216" r="3" fill="hsl(201, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U2.3
|
|
90
|
+
x-" data-x="-0.8300000000000018" data-y="-6.22" cx="351.57767601026615" cy="402.32021559055914" r="3" fill="hsl(202, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U2.4
|
|
91
|
+
x+" data-x="1.1699999999999982" data-y="-6.119999999999999" cx="407.9412208746414" cy="399.5020383473404" r="3" fill="hsl(203, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U2.5
|
|
92
|
+
x+" data-x="1.1699999999999982" data-y="-5.92" cx="407.9412208746414" cy="393.8656838609029" r="3" fill="hsl(204, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1.1
|
|
93
|
+
y+" data-x="-9.808910699999998" data-y="-2.9149999999999983" cx="98.53605797393192" cy="309.17945770217904" r="3" fill="hsl(121, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1.2
|
|
94
|
+
y-" data-x="-9.808910699999998" data-y="-4.015" cx="98.53605797393192" cy="340.17940737758545" r="3" fill="hsl(122, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C2.1
|
|
95
|
+
y+" data-x="-10.475" data-y="-5.224999999999998" cx="79.76448090181674" cy="374.27935202053243" r="3" fill="hsl(2, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C2.2
|
|
96
|
+
y-" data-x="-10.475" data-y="-6.324999999999999" cx="79.76448090181674" cy="405.27930169593884" r="3" fill="hsl(3, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C_SENSE.1
|
|
97
|
+
y+" data-x="-9.808910699999998" data-y="-0.6049999999999982" cx="98.53605797393192" cy="244.07956338382567" r="3" fill="hsl(69, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C_SENSE.2
|
|
98
|
+
y-" data-x="-9.808910699999998" data-y="-1.7049999999999996" cx="98.53605797393192" cy="275.07951305923206" r="3" fill="hsl(70, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RREF.1
|
|
99
|
+
y+" data-x="-4.890000000000002" data-y="-5.224999999999999" cx="237.15967993558445" cy="374.27935202053243" r="3" fill="hsl(308, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RREF.2
|
|
100
|
+
y-" data-x="-4.890000000000002" data-y="-6.324999999999998" cx="237.15967993558445" cy="405.2793016959388" r="3" fill="hsl(309, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="R_TOP.1
|
|
101
|
+
x-" data-x="-7.750000000000001" data-y="-8.009455349999998" cx="156.5598107795279" cy="452.7502390418197" r="3" fill="hsl(155, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="R_TOP.2
|
|
102
|
+
x+" data-x="-6.650000000000001" data-y="-8.009455349999998" cx="187.5597604549343" cy="452.7502390418197" r="3" fill="hsl(156, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="R_BOT.1
|
|
103
|
+
y+" data-x="-7.5994553499999995" data-y="-1.3305446499999976" cx="160.8024258467113" cy="264.52669759951687" r="3" fill="hsl(21, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="R_BOT.2
|
|
104
|
+
y-" data-x="-7.5994553499999995" data-y="-2.430544649999999" cx="160.8024258467113" cy="295.5266472749233" r="3" fill="hsl(22, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_TOP.1
|
|
105
|
+
x+" data-x="-4.3400000000000025" data-y="-7.364455349999998" cx="252.65965477328763" cy="434.5729958230587" r="3" fill="hsl(191, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_TOP.2
|
|
106
|
+
x-" data-x="-5.440000000000002" data-y="-7.364455349999998" cx="221.65970509788127" cy="434.5729958230587" r="3" fill="hsl(192, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_100.1
|
|
107
|
+
x-" data-x="5.965" data-y="-3.63054465" cx="543.072819686981" cy="329.34477419354846" r="3" fill="hsl(3, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_100.2
|
|
108
|
+
x+" data-x="7.0649999999999995" data-y="-3.63054465" cx="574.0727693623874" cy="329.34477419354846" r="3" fill="hsl(4, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_80.1
|
|
109
|
+
x-" data-x="5.965" data-y="-1.6516339500000008" cx="543.072819686981" cy="273.5755631825274" r="3" fill="hsl(292, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_80.2
|
|
110
|
+
x+" data-x="7.0649999999999995" data-y="-1.6516339500000008" cx="574.0727693623874" cy="273.5755631825274" r="3" fill="hsl(293, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_60.1
|
|
111
|
+
x-" data-x="5.965" data-y="0.3272767499999982" cx="543.072819686981" cy="217.80635217150632" r="3" fill="hsl(110, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_60.2
|
|
112
|
+
x+" data-x="7.0649999999999995" data-y="0.3272767499999982" cx="574.0727693623874" cy="217.80635217150632" r="3" fill="hsl(111, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_40.1
|
|
113
|
+
x-" data-x="5.965" data-y="2.3061874499999973" cx="543.072819686981" cy="162.03714116048525" r="3" fill="hsl(288, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_40.2
|
|
114
|
+
x+" data-x="7.0649999999999995" data-y="2.3061874499999973" cx="574.0727693623874" cy="162.03714116048525" r="3" fill="hsl(289, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_20.1
|
|
115
|
+
y+" data-x="-6.3494553499999995" data-y="-2.919999999999998" cx="196.0296413869458" cy="309.32036656433996" r="3" fill="hsl(106, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RTH_20.2
|
|
116
|
+
y-" data-x="-6.3494553499999995" data-y="-4.019999999999998" cx="196.0296413869458" cy="340.3203162397464" r="3" fill="hsl(107, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS1.1
|
|
117
|
+
x+" data-x="-3.119455350000001" data-y="-1.6794553499999991" cx="287.0567663429117" cy="274.35961954607217" r="3" fill="hsl(260, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS1.2
|
|
118
|
+
x-" data-x="-4.2194553500000005" data-y="-1.6794553499999991" cx="256.05681666750536" cy="274.35961954607217" r="3" fill="hsl(261, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS2.1
|
|
119
|
+
x+" data-x="-3.130000000000001" data-y="3.2594553499999996" cx="286.75959941623466" cy="135.1723621357758" r="3" fill="hsl(141, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS2.2
|
|
120
|
+
x-" data-x="-4.23" data-y="3.2594553499999996" cx="255.7596497408283" cy="135.1723621357758" r="3" fill="hsl(142, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS3.1
|
|
121
|
+
x+" data-x="-0.08000000000000074" data-y="1.6894553499999998" cx="372.7140053344069" cy="179.41774485431034" r="3" fill="hsl(22, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS3.2
|
|
122
|
+
x-" data-x="-1.1800000000000008" data-y="1.6894553499999998" cx="341.7140556590005" cy="179.41774485431034" r="3" fill="hsl(23, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS4.1
|
|
123
|
+
y+" data-x="4.210000000000001" data-y="-2.1794553499999987" cx="493.6138090684918" cy="288.45050576216596" r="3" fill="hsl(263, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS4.2
|
|
124
|
+
y-" data-x="4.210000000000001" data-y="-3.2794553499999983" cx="493.6138090684918" cy="319.4504554375723" r="3" fill="hsl(264, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS5.1
|
|
125
|
+
x-" data-x="2.4199999999999973" data-y="-7.699455349999998" cx="443.1684364148759" cy="444.01388958784156" r="3" fill="hsl(144, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RHYS5.2
|
|
126
|
+
x+" data-x="3.519999999999998" data-y="-7.699455349999998" cx="474.16838609028224" cy="444.01388958784156" r="3" fill="hsl(145, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU1.1
|
|
127
|
+
y-" data-x="-1.8694553500000004" data-y="-2.44" cx="322.2839818831463" cy="295.79311579689" r="3" fill="hsl(61, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU1.2
|
|
128
|
+
y+" data-x="-1.8694553500000004" data-y="-1.3399999999999994" cx="322.2839818831463" cy="264.7931661214836" r="3" fill="hsl(62, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU2.1
|
|
129
|
+
y+" data-x="-1.8800000000000003" data-y="4.0200000000000005" cx="321.98681495646923" cy="113.738865884958" r="3" fill="hsl(302, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU2.2
|
|
130
|
+
y-" data-x="-1.8800000000000003" data-y="2.92" cx="321.98681495646923" cy="144.7388155603644" r="3" fill="hsl(303, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU3.1
|
|
131
|
+
y+" data-x="1.1699999999999995" data-y="2.45" cx="407.94122087464143" cy="157.98424860349257" r="3" fill="hsl(183, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU3.2
|
|
132
|
+
y-" data-x="1.1699999999999995" data-y="1.3500000000000003" cx="407.94122087464143" cy="188.98419827889893" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU4.1
|
|
133
|
+
x+" data-x="4.760000000000001" data-y="-1.1399999999999992" cx="509.11378390619495" cy="259.1568116350461" r="3" fill="hsl(64, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU4.2
|
|
134
|
+
x-" data-x="3.660000000000001" data-y="-1.1399999999999992" cx="478.1138342307886" cy="259.1568116350461" r="3" fill="hsl(65, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU5.1
|
|
135
|
+
y-" data-x="1.1699999999999973" data-y="-8.57" cx="407.9412208746414" cy="468.54738080620007" r="3" fill="hsl(305, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RPU5.2
|
|
136
|
+
y+" data-x="1.1699999999999973" data-y="-7.469999999999999" cx="407.9412208746414" cy="437.5474311307936" r="3" fill="hsl(306, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED1.1
|
|
137
|
+
x-" data-x="-2.6350000000000007" data-y="-0.09999999999999964" cx="300.7095767701676" cy="229.84776830557095" r="3" fill="hsl(57, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED1.2
|
|
138
|
+
x+" data-x="-1.5050000000000008" data-y="-0.09999999999999964" cx="332.55497961853956" cy="229.84776830557095" r="3" fill="hsl(58, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED1.1
|
|
139
|
+
x-" data-x="-4.410000000000001" data-y="-0.09999999999999964" cx="250.68693070303453" cy="229.84776830557095" r="3" fill="hsl(139, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED1.2
|
|
140
|
+
x+" data-x="-3.3100000000000005" data-y="-0.09999999999999964" cx="281.68688037844095" cy="229.84776830557095" r="3" fill="hsl(140, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED2.1
|
|
141
|
+
x-" data-x="-2.9850000000000003" data-y="1.6800000000000002" cx="290.8459564189019" cy="179.68421337627703" r="3" fill="hsl(298, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED2.2
|
|
142
|
+
x+" data-x="-1.8550000000000004" data-y="1.6800000000000002" cx="322.6913592672739" cy="179.68421337627703" r="3" fill="hsl(299, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED2.1
|
|
143
|
+
x-" data-x="-4.760000000000001" data-y="1.6800000000000002" cx="240.82331035176887" cy="179.68421337627703" r="3" fill="hsl(20, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED2.2
|
|
144
|
+
x+" data-x="-3.660000000000001" data-y="1.6800000000000002" cx="271.82326002717525" cy="179.68421337627703" r="3" fill="hsl(21, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED3.1
|
|
145
|
+
x+" data-x="2.9749999999999996" data-y="0.10000000000000002" cx="458.80932011474005" cy="224.21141381913344" r="3" fill="hsl(179, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED3.2
|
|
146
|
+
x-" data-x="1.8449999999999998" data-y="0.10000000000000016" cx="426.96391726636807" cy="224.21141381913344" r="3" fill="hsl(180, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED3.1
|
|
147
|
+
y+" data-x="2.9499999999999997" data-y="2.4500000000000006" cx="458.10477580393535" cy="157.98424860349255" r="3" fill="hsl(261, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED3.2
|
|
148
|
+
y-" data-x="2.9499999999999997" data-y="1.35" cx="458.10477580393535" cy="188.98419827889893" r="3" fill="hsl(262, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED4.1
|
|
149
|
+
y-" data-x="2.4099999999999997" data-y="-2.244999999999999" cx="442.8866186905541" cy="290.2976701726134" r="3" fill="hsl(60, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED4.2
|
|
150
|
+
y+" data-x="2.4099999999999997" data-y="-1.1149999999999993" cx="442.8866186905541" cy="258.45226732424135" r="3" fill="hsl(61, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED4.1
|
|
151
|
+
y-" data-x="2.41" data-y="-4.02" cx="442.8866186905541" cy="340.3203162397464" r="3" fill="hsl(142, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED4.2
|
|
152
|
+
y+" data-x="2.41" data-y="-2.92" cx="442.8866186905541" cy="309.32036656434" r="3" fill="hsl(143, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED5.1
|
|
153
|
+
x+" data-x="2.9749999999999983" data-y="-6.119999999999999" cx="458.80932011474" cy="399.5020383473404" r="3" fill="hsl(301, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LED5.2
|
|
154
|
+
x-" data-x="1.8449999999999984" data-y="-6.119999999999999" cx="426.963917266368" cy="399.5020383473404" r="3" fill="hsl(302, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED5.1
|
|
155
|
+
x+" data-x="5.349999999999997" data-y="-6.119999999999999" cx="525.7410296411856" cy="399.5020383473404" r="3" fill="hsl(23, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RLED5.2
|
|
156
|
+
x-" data-x="4.249999999999997" data-y="-6.119999999999999" cx="494.7410799657792" cy="399.5020383473404" r="3" fill="hsl(24, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
157
|
+
orientation: x-" data-x="-7.400000000000001" data-y="-10.398910699999997" cx="166.42343113079357" cy="520.0893259523929" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
158
|
+
orientation: x+" data-x="-5.000000000000001" data-y="-10.198910699999997" cx="234.05968496804385" cy="514.4529714659554" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
159
|
+
orientation: x+" data-x="-6.450000000000001" data-y="-5.8199999999999985" cx="193.1961149413718" cy="391.04750661768406" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
160
|
+
orientation: y-" data-x="-6.3494553499999995" data-y="-4.219999999999998" cx="196.0296413869458" cy="345.95667072618386" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
161
|
+
orientation: y-" data-x="-11.25" data-y="-8.529999999999998" cx="57.92360726687133" cy="467.4201099089124" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
162
|
+
orientation: y-" data-x="-8.59" data-y="-8.329999999999998" cx="132.88712193649036" cy="461.783755422475" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
163
|
+
orientation: y-" data-x="-5.7540000000000004" data-y="0.27345535000000126" cx="212.8106285541744" cy="219.32313461828795" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
164
|
+
orientation: y-" data-x="-3.851000000000002" data-y="-7.765455349999998" cx="266.4405414926274" cy="445.87388656836595" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
165
|
+
orientation: x+" data-x="1.1699999999999995" data-y="-0.2999999999999995" cx="407.94122087464143" cy="235.4841227920085" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
166
|
+
orientation: y-" data-x="-2.041000000000002" data-y="-6.321" cx="317.44954959488695" cy="405.1665746062101" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
167
|
+
orientation: y-" data-x="-9.808910699999998" data-y="-4.015" cx="98.53605797393192" cy="340.17940737758545" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
168
|
+
orientation: y-" data-x="-10.475" data-y="-6.324999999999999" cx="79.76448090181674" cy="405.27930169593884" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
169
|
+
orientation: y-" data-x="-9.808910699999998" data-y="-1.7049999999999996" cx="98.53605797393192" cy="275.07951305923206" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
170
|
+
orientation: x-" data-x="-8.850000000000001" data-y="-5.024999999999999" cx="125.55986110412152" cy="368.6429975340949" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
171
|
+
orientation: x-" data-x="-0.8300000000000005" data-y="-0.2999999999999996" cx="351.5776760102662" cy="235.4841227920085" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
172
|
+
orientation: x-" data-x="1.5074999999999983" data-y="-5.329999999999999" cx="417.4525690705047" cy="377.2384381259121" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
173
|
+
orientation: x-" data-x="-10.259910699999997" data-y="-2.8139999999999983" cx="85.82607860701529" cy="306.3330986865281" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
174
|
+
orientation: x-" data-x="-10.925999999999998" data-y="-5.123999999999998" cx="67.05450153490011" cy="371.4329930048815" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
175
|
+
orientation: x-" data-x="-2.0704553500000005" data-y="-2.541" cx="316.6194456242766" cy="298.6394748125409" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
176
|
+
orientation: x-" data-x="-2.0810000000000004" data-y="4.121" cx="316.3222786975995" cy="110.89250686930706" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
177
|
+
orientation: x-" data-x="1.1699999999999995" data-y="2.6500000000000004" cx="407.94122087464143" cy="152.34789411705503" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
178
|
+
orientation: x+" data-x="5.024" data-y="-1.1399999999999992" cx="516.5537718282925" cy="259.1568116350461" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
179
|
+
orientation: x-" data-x="0.9689999999999974" data-y="-8.671" cx="402.27668461577167" cy="471.393739821851" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
180
|
+
orientation: x-" data-x="-4.960000000000001" data-y="1.6800000000000002" cx="235.18695586533136" cy="179.68421337627703" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
181
|
+
orientation: x-" data-x="-7.5994553499999995" data-y="-0.8792946499999978" cx="160.8024258467113" cy="251.8096727894922" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
182
|
+
orientation: y-" data-x="1.2726249999999995" data-y="-1.0999999999999996" cx="410.8333752704947" cy="258.02954073775857" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
183
|
+
orientation: x-" data-x="-0.8300000000000018" data-y="-6.22" cx="351.57767601026615" cy="402.32021559055914" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
184
|
+
orientation: x+" data-x="-6.650000000000001" data-y="-8.009455349999998" cx="187.5597604549343" cy="452.7502390418197" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
185
|
+
orientation: y+" data-x="-3.9900000000000024" data-y="-7.364455349999998" cx="262.52327512455327" cy="434.5729958230587" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
186
|
+
orientation: x+" data-x="-1.3425000000000005" data-y="0.8900000000000003" cx="337.13451763877003" cy="201.94781359770522" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
187
|
+
orientation: y-" data-x="-1.1675000000000006" data-y="-0.09999999999999962" cx="342.0663278144029" cy="229.84776830557095" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
188
|
+
orientation: x-" data-x="-0.8300000000000005" data-y="-0.6999999999999996" cx="351.5776760102662" cy="246.75683176488354" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
189
|
+
orientation: x+" data-x="7.0649999999999995" data-y="2.3061874499999973" cx="574.0727693623874" cy="162.03714116048525" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
190
|
+
orientation: x+" data-x="-6.3494553499999995" data-y="-2.299727674999999" cx="196.0296413869458" cy="291.8399930552061" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
191
|
+
orientation: x-" data-x="-0.8300000000000005" data-y="-1.0999999999999996" cx="351.5776760102662" cy="258.02954073775857" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
192
|
+
orientation: x+" data-x="7.265" data-y="0.3272767499999982" cx="579.7091238488249" cy="217.80635217150632" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
193
|
+
orientation: x-" data-x="-4.23" data-y="3.2594553499999996" cx="255.7596497408283" cy="135.1723621357758" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
194
|
+
orientation: x+" data-x="1.1699999999999995" data-y="-0.8999999999999995" cx="407.94122087464143" cy="252.39318625132105" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
195
|
+
orientation: x+" data-x="7.265" data-y="-1.6516339500000008" cx="579.7091238488249" cy="273.5755631825274" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
196
|
+
orientation: x-" data-x="-1.1800000000000008" data-y="1.6894553499999998" cx="341.7140556590005" cy="179.41774485431034" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
197
|
+
orientation: x+" data-x="3.4400000000000004" data-y="-0.49999999999999944" cx="471.91384429570735" cy="241.120477278446" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
198
|
+
orientation: x+" data-x="7.265" data-y="-3.63054465" cx="579.7091238488249" cy="329.34477419354846" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
199
|
+
orientation: x+" data-x="1.1699999999999995" data-y="-0.09999999999999953" cx="407.94122087464143" cy="229.84776830557095" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
200
|
+
orientation: y+" data-x="2.4099999999999997" data-y="-1.1149999999999993" cx="442.8866186905541" cy="258.45226732424135" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
201
|
+
orientation: x+" data-x="1.1699999999999995" data-y="1.0375000000000003" cx="407.94122087464143" cy="197.79100216395756" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
202
|
+
orientation: x-" data-x="-0.8300000000000018" data-y="-5.819999999999999" cx="351.57767601026615" cy="391.0475066176841" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
203
|
+
orientation: x-" data-x="-5.440000000000002" data-y="-7.364455349999998" cx="221.65970509788127" cy="434.5729958230587" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
204
|
+
orientation: x-" data-x="5.965" data-y="-3.63054465" cx="543.072819686981" cy="329.34477419354846" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
205
|
+
orientation: x+" data-x="3.519999999999998" data-y="-7.699455349999998" cx="474.16838609028224" cy="444.01388958784156" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
206
|
+
orientation: x+" data-x="1.1699999999999973" data-y="-7.1324999999999985" cx="407.9412208746414" cy="428.0360829349303" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
207
|
+
orientation: y+" data-x="-2.9725000000000006" data-y="-0.09999999999999964" cx="291.19822857430427" cy="229.84776830557095" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
208
|
+
orientation: y+" data-x="-3.3225000000000007" data-y="1.6800000000000002" cx="281.3346082230386" cy="179.68421337627703" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
209
|
+
orientation: x+" data-x="2.9499999999999997" data-y="1.0375000000000003" cx="458.10477580393535" cy="197.79100216395756" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
210
|
+
orientation: x+" data-x="2.41" data-y="-2.5824999999999996" cx="442.8866186905541" cy="299.8090183684767" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
|
|
211
|
+
orientation: y+" data-x="3.612499999999998" data-y="-6.119999999999999" cx="476.7752000402596" cy="399.5020383473404" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g id="crosshair" style="display: none"><line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5"/><line id="crosshair-v" x1="0" x2="640" stroke="#666" stroke-width="0.5"/><text id="coordinates" font-family="monospace" font-size="12" fill="#666"></text></g><script><![CDATA[
|
|
210
212
|
document.currentScript.parentElement.addEventListener('mousemove', (e) => {
|
|
211
213
|
const svg = e.currentTarget;
|
|
212
214
|
const rect = svg.getBoundingClientRect();
|
|
@@ -228,7 +230,7 @@ orientation: y+" data-x="3.612499999999998" data-y="-6.119999999999999" cx="474.
|
|
|
228
230
|
v.setAttribute('y2', '640');
|
|
229
231
|
|
|
230
232
|
// Calculate real coordinates using inverse transformation
|
|
231
|
-
const matrix = {"a":28.
|
|
233
|
+
const matrix = {"a":28.18177243218761,"c":0,"e":374.9685471289819,"b":0,"d":-28.18177243218761,"f":227.0295910623522};
|
|
232
234
|
// Manually invert and apply the affine transform
|
|
233
235
|
// Since we only use translate and scale, we can directly compute:
|
|
234
236
|
// x' = (x - tx) / sx
|
|
@@ -263,321 +265,328 @@ orientation: y+" data-x="3.612499999999998" data-y="-6.119999999999999" cx="474.
|
|
|
263
265
|
.port-label { fill: rgb(0, 100, 100); }
|
|
264
266
|
.component-name { fill: rgb(0, 100, 100); }
|
|
265
267
|
|
|
266
|
-
</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 476.6992304183559 602.7692086835651 L 476.6992304183559 576.847484568255 L 439.29253837240594 576.847484568255 L 439.29253837240594 550.9257604529449" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 476.6992304183559 602.7692086835651 L 476.6992304183559 576.847484568255 L 439.29253837240594 576.847484568255 L 439.29253837240594 550.9257604529449" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 466.7241125394359 602.7692086835651 L 501.6370251156559 602.7692086835651" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 466.7241125394359 602.7692086835651 L 501.6370251156559 602.7692086835651" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 132.05890770167002 650.9263171891179 L 122.08378982275008 650.9263171891179 L 122.08378982275008 660.9014350680378 L 122.08378982275008 640.9511993101979 L 132.05890770167002 640.9511993101979" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 132.05890770167002 650.9263171891179 L 122.08378982275008 650.9263171891179 L 122.08378982275008 660.9014350680378 L 122.08378982275008 640.9511993101979 L 132.05890770167002 640.9511993101979" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 231.81008649087 640.9511993101979 L 241.78520436979 640.9511993101979 L 241.78520436979 650.9263171891179 L 231.81008649087 650.9263171891179" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 231.81008649087 640.9511993101979 L 241.78520436979 640.9511993101979 L 241.78520436979 650.9263171891179 L 231.81008649087 650.9263171891179" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 641.787431314482 240.45021647155997 L 608.121408473127 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 641.787431314482 240.45021647155997 L 608.121408473127 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 527.073575706902 72.89540084546778 L 558.245819078527 72.89540084546778 L 558.245819078527 120.74880192452001 L 589.418062450152 120.74880192452001 L 589.418062450152 89.82593649986799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 527.073575706902 72.89540084546778 L 558.245819078527 72.89540084546778 L 558.245819078527 120.74880192452001 L 589.418062450152 120.74880192452001 L 589.418062450152 89.82593649986799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 741.538610103682 230.47509859263997 L 775.204632945037 230.47509859264" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.538610103682 230.47509859263997 L 775.204632945037 230.47509859264" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 741.538610103682 168.13061184939 L 741.538610103682 199.30285522101497 L 751.513727982602 199.30285522101497 L 751.513727982602 230.47509859263997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.538610103682 168.13061184939 L 741.538610103682 199.30285522101497 L 751.513727982602 199.30285522101497 L 751.513727982602 230.47509859263997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 679.194123360432 151.20007619498978 L 710.366366732057 151.20007619498978 L 710.366366732057 178.10572972831 L 741.538610103682 178.10572972831" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 679.194123360432 151.20007619498978 L 710.366366732057 151.20007619498978 L 710.366366732057 178.10572972831 L 741.538610103682 178.10572972831" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 893.1604018632661 344.16427767256414 L 893.1604018632661 318.24255355725404 L 855.7537098173161 318.24255355725404 L 855.7537098173161 292.32082944194394 L 865.7288276962361 292.32082944194394" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 893.1604018632661 344.16427767256414 L 893.1604018632661 318.24255355725404 L 855.7537098173161 318.24255355725404 L 855.7537098173161 292.32082944194394 L 865.7288276962361 292.32082944194394" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 741.5386101036819 540.701264627052 L 775.204632945037 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.5386101036819 540.701264627052 L 775.204632945037 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 741.5386101036819 608.0333103097619 L 741.5386101036819 574.367287468407 L 751.513727982602 574.367287468407 L 751.513727982602 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.5386101036819 608.0333103097619 L 741.5386101036819 574.367287468407 L 751.513727982602 574.367287468407 L 751.513727982602 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_12__stack1"><path d="M 803.883096846932 619.4775311307561 L 791.649995075373 619.4775311307561 L 791.649995075373 598.0581924308419 L 741.5386101036819 598.0581924308419" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 803.883096846932 619.4775311307561 L 791.649995075373 619.4775311307561 L 791.649995075373 598.0581924308419 L 741.5386101036819 598.0581924308419" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_13__stack1"><path d="M 518.0959696158741 240.45021647155997 L 551.761992457229 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 518.0959696158741 240.45021647155997 L 551.761992457229 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_14__stack1"><path d="M 500.639513327764 151.671667349172 L 534.305536169119 151.671667349172" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 500.639513327764 151.671667349172 L 534.305536169119 151.671667349172" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_15__stack1"><path d="M 830.3171592260701 168.13061184939 L 830.3171592260701 199.30285522101497 L 841.539166839855 199.30285522101497 L 841.539166839855 230.47509859263997 L 831.564048960935 230.47509859263997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 830.3171592260701 168.13061184939 L 830.3171592260701 199.30285522101497 L 841.539166839855 199.30285522101497 L 841.539166839855 230.47509859263997 L 831.564048960935 230.47509859263997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_16__stack1"><path d="M 803.384340952986 381.099378564332 L 803.384340952986 347.43335572297696" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 803.384340952986 381.099378564332 L 803.384340952986 347.43335572297696" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_17__stack1"><path d="M 895.1554254390498 540.701264627052 L 831.564048960935 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 895.1554254390498 540.701264627052 L 831.564048960935 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_18__stack1"><path d="M 324.07992687088 754.1144577564123 L 314.10480899196 754.1144577564123 L 314.10480899196 744.1393398774923 L 324.07992687088 744.1393398774923" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 324.07992687088 754.1144577564123 L 314.10480899196 754.1144577564123 L 314.10480899196 744.1393398774923 L 324.07992687088 744.1393398774923" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_19__stack1"><path d="M 423.83110566007997 744.1393398774923 L 433.80622353900003 744.1393398774923 L 433.80622353900003 754.1144577564123 L 423.83110566007997 754.1144577564123" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 423.83110566007997 744.1393398774923 L 433.80622353900003 744.1393398774923 L 433.80622353900003 754.1144577564123 L 423.83110566007997 754.1144577564123" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_20__stack1"><path d="M 445.776364993704 151.671667349172 L 435.801247114784 151.671667349172 L 435.801247114784 240.45021647155997 L 463.232821281814 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 445.776364993704 151.671667349172 L 435.801247114784 151.671667349172 L 435.801247114784 240.45021647155997 L 463.232821281814 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_21__stack1"><path d="M 741.538610103682 113.26746351533 L 741.538610103682 103.29234563640998 L 830.3171592260701 103.29234563640998 L 830.3171592260701 113.26746351532996" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.538610103682 113.26746351533 L 741.538610103682 103.29234563640998 L 830.3171592260701 103.29234563640998 L 830.3171592260701 113.26746351532996" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_22__stack1"><path d="M 304.15685585280386 301.82435616668164 L 304.15685585280386 256.8116367380552 L 236.04951158941105 256.8116367380552 L 236.04951158941105 211.7989173094287" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 304.15685585280386 301.82435616668164 L 304.15685585280386 256.8116367380552 L 236.04951158941105 256.8116367380552 L 236.04951158941105 211.7989173094287" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_23__stack1"><path d="M 366.50134259605386 435.96252689839184 L 366.50134259605386 445.9376447773119 L 304.15685585280386 445.9376447773119 L 304.15685585280386 356.68750450074174" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 366.50134259605386 435.96252689839184 L 366.50134259605386 445.9376447773119 L 304.15685585280386 445.9376447773119 L 304.15685585280386 356.68750450074174" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_24__stack1"><path d="M 351.51150103791 525.7385878086719 L 361.48661891682997 525.7385878086719 L 361.48661891682997 580.3387758258771 L 286.67323482493 580.3387758258771 L 286.67323482493 634.9389638430821 L 296.64835270385 634.9389638430821" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 351.51150103791 525.7385878086719 L 361.48661891682997 525.7385878086719 L 361.48661891682997 580.3387758258771 L 286.67323482493 580.3387758258771 L 286.67323482493 634.9389638430821 L 296.64835270385 634.9389638430821" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_25__stack1"><path d="M 251.76032224870994 525.7385878086719 L 206.24884692613756 525.7385878086719 L 206.24884692613756 486.08749423996494 L 160.73737160356507 486.08749423996494 L 160.73737160356507 496.0626121188849" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 251.76032224870994 525.7385878086719 L 206.24884692613756 525.7385878086719 L 206.24884692613756 486.08749423996494 L 160.73737160356507 486.08749423996494 L 160.73737160356507 496.0626121188849" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_26__stack1"><path d="M 741.5386101036819 530.726146748132 L 758.3716215243594 530.726146748132 L 758.3716215243594 501.299549005318 L 803.384340952986 501.299549005318 L 803.384340952986 435.96252689839196" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.5386101036819 530.726146748132 L 758.3716215243594 530.726146748132 L 758.3716215243594 501.299549005318 L 803.384340952986 501.299549005318 L 803.384340952986 435.96252689839196" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_27__stack1"><path d="M 439.29253837240594 496.0626121188849 L 439.29253837240594 426.61085388690447 L 589.9439830838618 426.61085388690447 L 589.9439830838618 357.159095654924" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 439.29253837240594 496.0626121188849 L 439.29253837240594 426.61085388690447 L 589.9439830838618 426.61085388690447 L 589.9439830838618 357.159095654924" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_28__stack1"><path d="M 193.9589680305017 265.6373891158329 L 193.9589680305017 211.79891730942867 L 285.925100984011 211.79891730942867" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 193.9589680305017 265.6373891158329 L 193.9589680305017 211.79891730942867 L 285.925100984011 211.79891730942867" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_29__stack1"><path d="M 366.50134259605386 381.0993785643319 L 366.50134259605386 319.2264829752642 L 472.7363480065518 319.2264829752642" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 366.50134259605386 381.0993785643319 L 366.50134259605386 319.2264829752642 L 472.7363480065518 319.2264829752642" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_30__stack1"><path d="M 1035.555209584849 219.13953673070094 L 1045.530327463769 219.13953673070094 L 1045.530327463769 169.78986796981073 L 970.7169433718691 169.78986796981073 L 970.7169433718691 120.44019920892052 L 980.692061250789 120.44019920892052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1035.555209584849 219.13953673070094 L 1045.530327463769 219.13953673070094 L 1045.530327463769 169.78986796981073 L 970.7169433718691 169.78986796981073 L 970.7169433718691 120.44019920892052 L 980.692061250789 120.44019920892052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_31__stack1"><path d="M 1035.555209584849 317.83887425248133 L 1045.530327463769 317.83887425248133 L 1045.530327463769 268.4892054915911 L 970.7169433718691 268.4892054915911 L 970.7169433718691 219.13953673070094 L 980.692061250789 219.13953673070094" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1035.555209584849 317.83887425248133 L 1045.530327463769 317.83887425248133 L 1045.530327463769 268.4892054915911 L 970.7169433718691 268.4892054915911 L 970.7169433718691 219.13953673070094 L 980.692061250789 219.13953673070094" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_32__stack1"><path d="M 741.538610103682 260.40045222939995 L 854.756198029424 260.40045222939995 L 854.756198029424 409.0025438855441 L 893.1604018632661 409.0025438855441 L 893.1604018632661 399.0274260066241" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.538610103682 260.40045222939995 L 854.756198029424 260.40045222939995 L 854.756198029424 409.0025438855441 L 893.1604018632661 409.0025438855441 L 893.1604018632661 399.0274260066241" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_33__stack1"><path d="M 1035.555209584849 416.53821177426175 L 1045.530327463769 416.53821177426175 L 1045.530327463769 367.18854301337154 L 970.7169433718691 367.18854301337154 L 970.7169433718691 317.83887425248133 L 980.692061250789 317.83887425248133" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1035.555209584849 416.53821177426175 L 1045.530327463769 416.53821177426175 L 1045.530327463769 367.18854301337154 L 970.7169433718691 367.18854301337154 L 970.7169433718691 317.83887425248133 L 980.692061250789 317.83887425248133" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_34__stack1"><path d="M 527.5994963406117 319.22648297526416 L 537.5746142195318 319.22648297526416 L 537.5746142195318 302.29594732086395 L 589.9439830838618 302.29594732086395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 527.5994963406117 319.22648297526416 L 537.5746142195318 319.22648297526416 L 537.5746142195318 302.29594732086395 L 589.9439830838618 302.29594732086395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_35__stack1"><path d="M 589.9439830838618 302.29594732086395 L 589.9439830838618 271.37308189621194 L 618.096526352047 271.37308189621194 L 618.096526352047 240.45021647155997 L 608.121408473127 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 589.9439830838618 302.29594732086395 L 589.9439830838618 271.37308189621194 L 618.096526352047 271.37308189621194 L 618.096526352047 240.45021647155997 L 608.121408473127 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_36__stack1"><path d="M 741.538610103682 290.32580586615995 L 782.4864689966486 290.32580586615995 L 782.4864689966486 270.37557010831995 L 741.538610103682 270.37557010831995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.538610103682 290.32580586615995 L 782.4864689966486 290.32580586615995 L 782.4864689966486 270.37557010831995 L 741.538610103682 270.37557010831995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_37__stack1"><path d="M 641.787431314482 280.35068798723995 L 631.812313435562 280.35068798723995 L 631.812313435562 260.4004522294 L 641.787431314482 260.4004522294" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 641.787431314482 280.35068798723995 L 631.812313435562 280.35068798723995 L 631.812313435562 260.4004522294 L 641.787431314482 260.4004522294" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_38__stack1"><path d="M 641.787431314482 230.47509859263997 L 616.2261917497495 230.47509859263997 L 616.2261917497495 151.671667349172 L 590.664952185017 151.671667349172" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 641.787431314482 230.47509859263997 L 616.2261917497495 230.47509859263997 L 616.2261917497495 151.671667349172 L 590.664952185017 151.671667349172" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_39__stack1"><path d="M 920.5919760302961 292.32082944194394 L 933.7591316304704 292.32082944194394 L 933.7591316304704 426.5133296531818 L 959.9936916520298 426.5133296531818 L 959.9936916520298 540.701264627052 L 950.0185737731099 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 920.5919760302961 292.32082944194394 L 933.7591316304704 292.32082944194394 L 933.7591316304704 426.5133296531818 L 959.9936916520298 426.5133296531818 L 959.9936916520298 540.701264627052 L 950.0185737731099 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_40__stack1"><path d="M 589.418062450152 120.74880192452001 L 600.6400700639371 120.74880192452001 L 600.6400700639371 151.67166734917203" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 589.418062450152 120.74880192452001 L 600.6400700639371 120.74880192452001 L 600.6400700639371 151.67166734917203" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_41__stack1"><path d="M 241.78520436979 650.9263171891179 L 254.75285761238604 650.9263171891179" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 241.78520436979 650.9263171891179 L 254.75285761238604 650.9263171891179" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_42__stack1"><path d="M 385.67627977321104 211.7989173094287 L 396.2000291354716 211.7989173094287 L 396.2000291354716 221.8239107777433" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 385.67627977321104 211.7989173094287 L 396.2000291354716 211.7989173094287 L 396.2000291354716 221.8239107777433" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_43__stack1"><path d="M 501.6370251156559 612.7443265624851 L 491.1132757533953 612.7443265624851 L 491.1132757533953 622.7693200307997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 501.6370251156559 612.7443265624851 L 491.1132757533953 612.7443265624851 L 491.1132757533953 622.7693200307997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_44__stack1"><path d="M 641.787431314482 535.713705687592 L 581.3880925576213 535.713705687592 L 581.3880925576213 550.7262580953666" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 641.787431314482 535.713705687592 L 581.3880925576213 535.713705687592 L 581.3880925576213 550.7262580953666" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_45__stack1"><path d="M 193.9589680305017 380.8500006173589 L 193.9589680305017 375.8125660885043 L 171.46507721353714 375.8125660885043" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 193.9589680305017 380.8500006173589 L 193.9589680305017 375.8125660885043 L 171.46507721353714 375.8125660885043" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_46__stack1"><path d="M 589.418062450152 34.96278816580798 L 589.418062450152 29.92535363695339 L 579.3930689818374 29.92535363695339" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 589.418062450152 34.96278816580798 L 589.418062450152 29.92535363695339 L 579.3930689818374 29.92535363695339" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_47__stack1"><path d="M 741.5386101036819 662.896458643822 L 741.5386101036819 667.9338931726766 L 731.5136166353673 667.9338931726766" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.5386101036819 662.896458643822 L 741.5386101036819 667.9338931726766 L 731.5136166353673 667.9338931726766" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="241.78520436979" cy="650.9263171891179" r="1.4962676818379999" 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_4__stack1"><circle cx="608.121408473127" cy="240.45021647155997" r="1.4962676818379999" 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"><circle cx="589.418062450152" cy="120.74880192452001" r="1.4962676818379999" 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_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"/><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="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_12__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_13__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_14__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_15__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_16__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_17__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_18__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_19__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_20__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_21__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_22__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_23__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"><circle cx="589.9439830838618" cy="302.29594732086395" r="1.4962676818379999" 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_35__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_36__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_37__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_38__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_39__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_40__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_41__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_42__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_43__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_44__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_45__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_46__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_47__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="344.03016262872" y="734.1642219985722" width="59.85070727351996" height="29.92535363676018" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="344.03016262872" y="734.1642219985722" width="59.85070727351996" height="29.92535363676018" fill="transparent"/><text class="sch-text" x="373.95551626548" y="749.1268988169523" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 373.95551626548, 749.1268988169523)">J_BAT_POS</text><line class="component-pin sch-component-pin sch-port-line" x1="344.03016262872" y1="744.1393398774923" x2="324.07992687088" y2="744.1393398774923" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="323.082415082988" y="743.1418280896003" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="334.0550447498" y="743.1418280896004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="344.03016262872" y1="754.1144577564123" x2="324.07992687088" y2="754.1144577564123" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="323.082415082988" y="753.1169459685203" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="334.0550447498" y="753.1169459685203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="403.88086990223997" y1="754.1144577564123" x2="423.83110566007997" y2="754.1144577564123" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="422.833593872188" y="753.1169459685203" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.85598778115997" y="753.1169459685203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="403.88086990223997" y1="744.1393398774923" x2="423.83110566007997" y2="744.1393398774923" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="422.833593872188" y="743.1418280896003" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.85598778115997" y="743.1418280896004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="152.00914345951003" y="630.9760814312779" width="59.85070727351996" height="29.925353636760065" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="152.00914345951003" y="630.9760814312779" width="59.85070727351996" height="29.925353636760065" fill="transparent"/><text class="sch-text" x="181.93449709627004" y="645.9387582496579" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 181.93449709627004, 645.9387582496579)">J_BAT_NEG</text><line class="component-pin sch-component-pin sch-port-line" x1="152.00914345951003" y1="640.9511993101979" x2="132.05890770167002" y2="640.9511993101979" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="131.06139591377803" y="639.9536875223059" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="142.03402558058997" y="639.9536875223059" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="152.00914345951003" y1="650.9263171891179" x2="132.05890770167002" y2="650.9263171891179" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="131.06139591377803" y="649.9288054012259" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="142.03402558058997" y="649.9288054012259" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="211.85985073303" y1="650.9263171891179" x2="231.81008649087" y2="650.9263171891179" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="230.812574702978" y="649.9288054012259" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="221.83496861195005" y="649.9288054012259" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="211.85985073303" y1="640.9511993101979" x2="231.81008649087" y2="640.9511993101979" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="230.812574702978" y="639.9536875223059" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="221.83496861195005" y="639.9536875223059" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</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="251.7603222487099" y="512.3105445101257" width="99.75117878920005" height="25.896940647196175" fill="transparent"/><path class="sch-component-symbol-path" d="M 315.06395494185614 525.7385878086718 L 290.1261602445561 538.2074851573219" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 290.1261602445561 512.3105445101257 L 315.06395494185614 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 290.1261602445561 538.2074851573219 L 290.1261602445561 512.3105445101257" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 315.06395494185614 512.3105445101257 L 315.06395494185614 538.2074851573219" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 290.1261602445561 525.7385878086718 L 251.7603222487099 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 351.51150103790997 525.7385878086718 L 316.0231008917523 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="300.6767656934138" y="503.6782309610603" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">D_PROT</text><text class="sch-component-text" x="301.63591164330995" y="555.4721122554527" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></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="285.92510098401095" y="198.37087401088255" width="99.75117878920003" height="25.896940647196146" fill="transparent"/><path class="sch-component-symbol-path" d="M 349.2287336771571 211.7989173094287 L 324.2909389798571 224.2678146580787" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 324.2909389798571 198.37087401088255 L 349.2287336771571 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 324.2909389798571 224.2678146580787 L 324.2909389798571 198.37087401088255" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 349.2287336771571 198.37087401088255 L 349.2287336771571 224.2678146580787" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 324.2909389798571 211.7989173094287 L 285.92510098401095 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 385.676279773211 211.7989173094287 L 350.1878796270533 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="334.8415444287148" y="189.73856046181717" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">D_SENSE_CLAMP</text><text class="sch-component-text" x="335.80069037861097" y="241.53244175620947" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="521.5872608734959" y="592.7940908046452" width="59.850707273520015" height="29.92535363675995" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="521.5872608734959" y="592.7940908046452" width="59.850707273520015" height="29.92535363675995" fill="transparent"/><text class="sch-text" x="551.512614510256" y="607.7567676230251" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 551.512614510256, 607.7567676230251)">U_REF</text><line class="component-pin sch-component-pin sch-port-line" x1="521.5872608734959" y1="602.7692086835651" x2="501.6370251156559" y2="602.7692086835651" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="500.6395133277639" y="601.7716968956731" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="511.61214299457595" y="601.7716968956731" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="521.5872608734959" y1="612.7443265624851" x2="501.6370251156559" y2="612.7443265624851" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="500.6395133277639" y="611.7468147745931" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="511.61214299457595" y="611.7468147745931" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="581.4379681470159" y1="607.7567676230251" x2="600.3906921169639" y2="607.7567676230251" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="601.3882039048559" cy="607.7567676230251" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="600.3906921169639" y="606.7592558351331" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="591.413086025936" y="606.7592558351331" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component chip sch-component-body" x="661.737667072322" y="220.49998071371996" width="59.850707273520015" height="79.80094303135999" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="661.737667072322" y="220.49998071371996" width="59.850707273520015" height="79.80094303135999" fill="transparent"/><text class="sch-text" x="691.663020709082" y="260.4004522294" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 691.663020709082, 260.4004522294)">U1</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="230.47509859263997" x2="641.787431314482" y2="230.47509859263997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="640.78991952659" y="229.47758680474797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="229.47758680474797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="240.45021647155997" x2="641.787431314482" y2="240.45021647155997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><rect x="640.78991952659" y="239.45270468366797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="239.45270468366797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="250.42533435047997" x2="642.784943102374" y2="250.42533435047997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="641.787431314482" cy="250.42533435047997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="640.78991952659" y="249.42782256258798" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="249.42782256258798" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="260.4004522294" x2="641.787431314482" y2="260.4004522294" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_3__stack1"><rect x="640.78991952659" y="259.402940441508" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="259.402940441508" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="270.37557010831995" x2="642.784943102374" y2="270.37557010831995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="641.787431314482" cy="270.37557010831995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="640.78991952659" y="269.37805832042795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="269.37805832042795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="280.35068798723995" x2="641.787431314482" y2="280.35068798723995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_5__stack1"><rect x="640.78991952659" y="279.35317619934796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="279.35317619934796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="290.32580586615995" x2="642.784943102374" y2="290.32580586615995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="641.787431314482" cy="290.32580586615995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="640.78991952659" y="289.32829407826796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.762549193402" y="289.32829407826796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="290.32580586615995" x2="741.538610103682" y2="290.32580586615995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_7__stack1"><rect x="740.54109831579" y="289.32829407826796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="289.32829407826796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">8</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="280.35068798723995" x2="740.54109831579" y2="280.35068798723995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="741.538610103682" cy="280.35068798723995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="740.54109831579" y="279.35317619934796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="279.35317619934796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">9</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="270.37557010831995" x2="741.538610103682" y2="270.37557010831995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_9__stack1"><rect x="740.54109831579" y="269.37805832042795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="269.37805832042795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">10</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="260.40045222939995" x2="741.538610103682" y2="260.40045222939995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_10__stack1"><rect x="740.54109831579" y="259.40294044150795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="259.40294044150795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">11</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="250.42533435047997" x2="740.54109831579" y2="250.42533435047997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="741.538610103682" cy="250.42533435047997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="740.54109831579" y="249.42782256258798" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="249.42782256258798" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">12</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="240.45021647155997" x2="740.54109831579" y2="240.45021647155997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="741.538610103682" cy="240.45021647155997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="740.54109831579" y="239.45270468366797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="239.45270468366797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">13</text><line class="component-pin sch-component-pin sch-port-line" x1="721.588374345842" y1="230.47509859263997" x2="741.538610103682" y2="230.47509859263997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_13__stack1"><rect x="740.54109831579" y="229.47758680474797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.5634922247621" y="229.47758680474797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">14</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component chip sch-component-body" x="661.737667072322" y="515.763469929752" width="59.8507072735199" height="39.90047151568001" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="661.737667072322" y="515.763469929752" width="59.8507072735199" height="39.90047151568001" fill="transparent"/><text class="sch-text" x="691.6630207090819" y="535.713705687592" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 691.6630207090819, 535.713705687592)">U2</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="525.7385878086719" x2="642.784943102374" y2="525.7385878086719" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="641.787431314482" cy="525.7385878086719" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="640.78991952659" y="524.7410760207799" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.7625491934019" y="524.7410760207799" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="535.713705687592" x2="641.787431314482" y2="535.713705687592" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><rect x="640.78991952659" y="534.7161938997" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.7625491934019" y="534.7161938997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="661.737667072322" y1="545.6888235665119" x2="642.784943102374" y2="545.6888235665119" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="641.787431314482" cy="545.6888235665119" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="640.78991952659" y="544.6913117786199" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="651.7625491934019" y="544.69131177862" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="721.5883743458419" y1="540.701264627052" x2="741.5386101036819" y2="540.701264627052" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_3__stack1"><rect x="740.5410983157899" y="539.70375283916" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.563492224762" y="539.70375283916" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="721.5883743458419" y1="530.726146748132" x2="741.5386101036819" y2="530.726146748132" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_4__stack1"><rect x="740.5410983157899" y="529.72863496024" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="731.563492224762" y="529.72863496024" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component-overlay sch-component-overlay" x="179.32696636980788" y="380.8500006173589" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 193.9589680305017 435.71314895141893 L 193.9589680305017 413.76788961779494" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 193.9589680305017 402.7952599509829 L 193.9589680305017 380.8500006173589" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 208.5909696911955 413.76788961779494 L 179.32696636980788 413.76788961779494" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 208.5909696911955 402.7952599509829 L 179.32696636980788 402.7952599509829" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="204.47440479452987" y="389.99385867303556" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C1</text><text class="sch-component-text" x="204.47440479452987" y="426.56929089574226" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="193.9589680305017" cy="435.71314895141893" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_8__stack1"><rect class="component-overlay sch-component-overlay" x="146.10536994287125" y="496.0626121188849" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 160.73737160356507 550.9257604529449 L 160.73737160356507 528.9805011193209" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 160.73737160356507 518.0078714525089 L 160.73737160356507 496.0626121188849" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 175.36937326425888 528.9805011193209 L 146.10536994287125 528.9805011193209" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 175.36937326425888 518.0078714525089 L 146.10536994287125 518.0078714525089" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="171.25280836759325" y="505.20647017456156" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C2</text><text class="sch-component-text" x="171.25280836759325" y="541.7819023972683" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="160.73737160356507" cy="550.9257604529449" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_9__stack1"><rect class="component-overlay sch-component-overlay" x="179.32696636980788" y="265.6373891158329" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 193.9589680305017 320.50053744989293 L 193.9589680305017 298.55527811626894" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 193.9589680305017 287.5826484494569 L 193.9589680305017 265.6373891158329" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 208.5909696911955 298.55527811626894 L 179.32696636980788 298.55527811626894" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 208.5909696911955 287.5826484494569 L 179.32696636980788 287.5826484494569" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="204.47440479452987" y="274.78124717150956" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C_SENSE</text><text class="sch-component-text" x="204.47440479452987" y="311.35667939421626" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="193.9589680305017" cy="320.50053744989293" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_10__stack1"><rect class="component-overlay sch-component-overlay" x="431.97928069947574" y="496.06261211888494" width="14.626515345860412" height="54.863148334059986" fill="transparent"/><path class="sch-component-symbol-path" d="M 439.29253837240594 496.06261211888494 L 439.29253837240594 505.2082989461727" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 439.29253837240594 541.7800736256571 L 439.29253837240594 550.9257604529449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 446.60579604533615 505.2082989461727 L 446.60579604533615 541.7800736256571 L 431.97928069947574 541.7800736256571 L 431.97928069947574 505.2082989461727 L 446.60579604533615 505.2082989461727" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="453.9227112614886" y="508.86401339683226" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RREF</text><text class="sch-component-text" x="453.9227112614886" y="538.1243591749976" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_11__stack1"><rect class="component-overlay sch-component-overlay" x="296.64835270385004" y="627.625706170152" width="54.86314833405993" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 296.64835270385004 634.9389638430821 L 305.7940395311378 634.9389638430821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 342.3658142106222 634.9389638430821 L 351.51150103790997 634.9389638430821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 305.7940395311378 627.625706170152 L 342.3658142106222 627.625706170152 L 342.3658142106222 642.2522215160122 L 305.7940395311378 642.2522215160122 L 305.7940395311378 627.625706170152" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="324.07992687088" y="620.3087909539994" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">R_TOP</text><text class="sch-component-text" x="324.07992687088" y="649.5691367321648" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="351.51150103790997" cy="634.9389638430821" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_12__stack1"><rect class="component-overlay sch-component-overlay" x="296.84359817987365" y="301.82435616668164" width="14.626515345860412" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 304.15685585280386 301.82435616668164 L 304.15685585280386 310.97004299396946" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 304.15685585280386 347.54181767345386 L 304.15685585280386 356.6875045007417" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 311.47011352573406 310.97004299396946 L 311.47011352573406 347.54181767345386 L 296.84359817987365 347.54181767345386 L 296.84359817987365 310.97004299396946 L 311.47011352573406 310.97004299396946" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="318.78702874188656" y="314.62575744462896" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">R_BOT</text><text class="sch-component-text" x="318.78702874188656" y="343.88610322279436" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_13__stack1"><rect class="component-overlay sch-component-overlay" x="411.860964205376" y="595.455951010635" width="54.86314833405993" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 466.7241125394359 602.7692086835651 L 457.57842571214815 602.7692086835651" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 421.00665103266374 602.7692086835651 L 411.860964205376 602.7692086835651" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 457.57842571214815 610.0824663564953 L 421.00665103266374 610.0824663564953 L 421.00665103266374 595.455951010635 L 457.57842571214815 595.455951010635 L 457.57842571214815 610.0824663564953" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="439.29253837240594" y="588.1390357944824" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_TOP</text><text class="sch-component-text" x="439.29253837240594" y="617.3993815726478" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="411.860964205376" cy="602.7692086835651" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_14__stack1"><rect class="component-overlay sch-component-overlay" x="980.692061250789" y="409.22495410133155" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 980.692061250789 416.53821177426175 L 989.8377480780769 416.53821177426175" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1026.4095227575613 416.53821177426175 L 1035.555209584849 416.53821177426175" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 989.8377480780769 409.22495410133155 L 1026.4095227575613 409.22495410133155 L 1026.4095227575613 423.85146944719196 L 989.8377480780769 423.85146944719196 L 989.8377480780769 409.22495410133155" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1008.1236354178191" y="401.9080388851791" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_100</text><text class="sch-component-text" x="1008.1236354178191" y="431.1683846633444" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="980.692061250789" cy="416.53821177426175" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_15__stack1"><rect class="component-overlay sch-component-overlay" x="980.692061250789" y="310.5256165795511" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 980.692061250789 317.83887425248133 L 989.8377480780769 317.83887425248133" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1026.4095227575613 317.83887425248133 L 1035.555209584849 317.83887425248133" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 989.8377480780769 310.5256165795511 L 1026.4095227575613 310.5256165795511 L 1026.4095227575613 325.15213192541154 L 989.8377480780769 325.15213192541154 L 989.8377480780769 310.5256165795511" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1008.1236354178191" y="303.2087013633987" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_80</text><text class="sch-component-text" x="1008.1236354178191" y="332.469047141564" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_16__stack1"><rect class="component-overlay sch-component-overlay" x="980.692061250789" y="211.82627905777073" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 980.692061250789 219.13953673070094 L 989.8377480780769 219.13953673070094" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1026.4095227575613 219.13953673070094 L 1035.555209584849 219.13953673070094" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 989.8377480780769 211.82627905777073 L 1026.4095227575613 211.82627905777073 L 1026.4095227575613 226.45279440363115 L 989.8377480780769 226.45279440363115 L 989.8377480780769 211.82627905777073" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1008.1236354178191" y="204.50936384161827" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_60</text><text class="sch-component-text" x="1008.1236354178191" y="233.7697096197836" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_17__stack1"><rect class="component-overlay sch-component-overlay" x="980.692061250789" y="113.12694153599033" width="54.86314833406004" height="14.626515345860383" fill="transparent"/><path class="sch-component-symbol-path" d="M 980.692061250789 120.44019920892052 L 989.8377480780769 120.44019920892052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1026.4095227575613 120.44019920892052 L 1035.555209584849 120.44019920892052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 989.8377480780769 113.12694153599033 L 1026.4095227575613 113.12694153599033 L 1026.4095227575613 127.75345688185071 L 989.8377480780769 127.75345688185071 L 989.8377480780769 113.12694153599033" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1008.1236354178191" y="105.81002631983786" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_40</text><text class="sch-component-text" x="1008.1236354178191" y="135.0703720980032" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="1035.555209584849" cy="120.44019920892052" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_18__stack1"><rect class="component-overlay sch-component-overlay" x="359.18808492312365" y="381.0993785643319" width="14.626515345860412" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 366.50134259605386 381.0993785643319 L 366.50134259605386 390.2450653916197" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 366.50134259605386 426.8168400711041 L 366.50134259605386 435.96252689839184" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 373.81460026898407 390.2450653916197 L 373.81460026898407 426.8168400711041 L 359.18808492312365 426.8168400711041 L 359.18808492312365 390.2450653916197 L 373.81460026898407 390.2450653916197" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="381.1315154851365" y="393.90077984227923" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RTH_20</text><text class="sch-component-text" x="381.1315154851365" y="423.1611256204445" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_19__stack1"><rect class="component-overlay sch-component-overlay" x="472.73634800655185" y="311.91322530233396" width="54.863148334059986" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 527.5994963406118 319.22648297526416 L 518.453809513324 319.22648297526416" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 481.8820348338396 319.22648297526416 L 472.73634800655185 319.22648297526416" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 518.453809513324 326.53974064819437 L 481.8820348338396 326.53974064819437 L 481.8820348338396 311.91322530233396 L 518.453809513324 311.91322530233396 L 518.453809513324 326.53974064819437" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="500.1679221735818" y="304.5963100861815" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS1</text><text class="sch-component-text" x="500.1679221735818" y="333.8566558643468" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_20__stack1"><rect class="component-overlay sch-component-overlay" x="472.21042737284205" y="65.58214317253758" width="54.863148334059986" height="14.626515345860383" fill="transparent"/><path class="sch-component-symbol-path" d="M 527.073575706902 72.89540084546778 L 517.9278888796142 72.89540084546778" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 481.3561142001298 72.89540084546778 L 472.21042737284205 72.89540084546778" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 517.9278888796142 80.20865851839797 L 481.3561142001298 80.20865851839797 L 481.3561142001298 65.58214317253758 L 517.9278888796142 65.58214317253758 L 517.9278888796142 80.20865851839797" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="499.642001539872" y="58.26522795638512" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS2</text><text class="sch-component-text" x="499.642001539872" y="87.52557373455043" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="472.21042737284205" cy="72.89540084546778" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_21__stack1"><rect class="component-overlay sch-component-overlay" x="624.330975026372" y="143.88681852205957" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 679.1941233604321 151.20007619498978 L 670.0484365331442 151.20007619498978" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 633.4766618536598 151.20007619498978 L 624.330975026372 151.20007619498978" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 670.0484365331442 158.51333386791998 L 633.4766618536598 158.51333386791998 L 633.4766618536598 143.88681852205957 L 670.0484365331442 143.88681852205957 L 670.0484365331442 158.51333386791998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="651.762549193402" y="136.5699033059071" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS3</text><text class="sch-component-text" x="651.762549193402" y="165.83024908407245" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="624.330975026372" cy="151.20007619498978" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_22__stack1"><rect class="component-overlay sch-component-overlay" x="885.8471441903359" y="344.1642776725642" width="14.626515345860298" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 893.1604018632661 344.1642776725642 L 893.1604018632661 353.30996449985196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 893.1604018632661 389.88173917933636 L 893.1604018632661 399.0274260066241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 900.4736595361962 353.30996449985196 L 900.4736595361962 389.88173917933636 L 885.8471441903359 389.88173917933636 L 885.8471441903359 353.30996449985196 L 900.4736595361962 353.30996449985196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="907.7905747523488" y="356.9656789505115" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RHYS4</text><text class="sch-component-text" x="907.7905747523488" y="386.2260247286768" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_23__stack1"><rect class="component-overlay sch-component-overlay" x="803.883096846932" y="612.164273457826" width="54.86314833406004" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 803.883096846932 619.4775311307561 L 813.0287836742198 619.4775311307561" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 849.6005583537042 619.4775311307561 L 858.746245180992 619.4775311307561" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 813.0287836742198 612.164273457826 L 849.6005583537042 612.164273457826 L 849.6005583537042 626.7907888036863 L 813.0287836742198 626.7907888036863 L 813.0287836742198 612.164273457826" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="831.314671013962" y="604.8473582416734" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS5</text><text class="sch-component-text" x="831.314671013962" y="634.1077040198388" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="858.746245180992" cy="619.4775311307561" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_24__stack1"><rect class="component-overlay sch-component-overlay" x="582.6307254109316" y="302.29594732086395" width="14.626515345860298" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 589.9439830838618 357.159095654924 L 589.9439830838618 348.01340882763617" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 589.9439830838618 311.44163414815176 L 589.9439830838618 302.29594732086395" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 582.6307254109316 348.01340882763617 L 582.6307254109316 311.44163414815176 L 597.2572407567919 311.44163414815176 L 597.2572407567919 348.01340882763617 L 582.6307254109316 348.01340882763617" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="604.5741559729445" y="315.09734859881127" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU1</text><text class="sch-component-text" x="604.5741559729445" y="344.35769437697667" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_25__stack1"><rect class="component-overlay sch-component-overlay" x="582.1048047772218" y="34.96278816580799" width="14.626515345860298" height="54.863148334060014" fill="transparent"/><path class="sch-component-symbol-path" d="M 589.418062450152 34.96278816580799 L 589.418062450152 44.1084749930958" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 589.418062450152 80.6802496725802 L 589.418062450152 89.825936499868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.7313201230821 44.1084749930958 L 596.7313201230821 80.6802496725802 L 582.1048047772218 80.6802496725802 L 582.1048047772218 44.1084749930958 L 596.7313201230821 44.1084749930958" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="604.0482353392347" y="47.76418944375533" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU2</text><text class="sch-component-text" x="604.0482353392347" y="77.02453522192067" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_26__stack1"><rect class="component-overlay sch-component-overlay" x="734.2253524307519" y="113.26746351532998" width="14.626515345860298" height="54.863148334059986" fill="transparent"/><path class="sch-component-symbol-path" d="M 741.538610103682 113.26746351532998 L 741.538610103682 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 741.538610103682 158.98492502210217 L 741.538610103682 168.13061184938996" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 748.8518677766122 122.41315034261777 L 748.8518677766122 158.98492502210217 L 734.2253524307519 158.98492502210217 L 734.2253524307519 122.41315034261777 L 748.8518677766122 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="756.1687829927647" y="126.0688647932773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU3</text><text class="sch-component-text" x="756.1687829927647" y="155.32921057144264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_27__stack1"><rect class="component-overlay sch-component-overlay" x="865.7288276962361" y="285.00757176901374" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 920.5919760302961 292.32082944194394 L 911.4462892030083 292.32082944194394" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 874.8745145235239 292.32082944194394 L 865.7288276962361 292.32082944194394" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 911.4462892030083 299.63408711487415 L 874.8745145235239 299.63408711487415 L 874.8745145235239 285.00757176901374 L 911.4462892030083 285.00757176901374 L 911.4462892030083 299.63408711487415" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="893.1604018632661" y="277.6906565528613" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RPU4</text><text class="sch-component-text" x="893.1604018632661" y="306.9510023310266" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_28__stack1"><rect class="component-overlay sch-component-overlay" x="734.2253524307517" y="608.033310309762" width="14.626515345860298" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 741.5386101036819 662.896458643822 L 741.5386101036819 653.7507718165342" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 741.5386101036819 617.1789971370498 L 741.5386101036819 608.033310309762" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 734.2253524307517 653.7507718165342 L 734.2253524307517 617.1789971370498 L 748.851867776612 617.1789971370498 L 748.851867776612 653.7507718165342 L 734.2253524307517 653.7507718165342" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="756.1687829927646" y="620.8347115877093" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU5</text><text class="sch-component-text" x="756.1687829927646" y="650.0950573658747" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_29__stack1"><rect class="component-overlay sch-component-overlay" x="551.761992457229" y="223.75113024462723" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 587.247550689461 240.45021647155997 L 573.1576966854866 247.75606669584303" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 586.7257042448693 240.45021647155997 L 608.121408473127 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 573.1576966854866 233.66621269186854 L 587.247550689461 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 573.1576966854866 247.75606669584303 L 573.1576966854866 233.66621269186854" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 587.247550689461 233.66621269186854 L 587.247550689461 247.75606669584303" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 573.1576966854866 240.45021647155997 L 551.761992457229 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 588.2912435786443 225.31666957840218 L 592.9878615799691 224.79482313381052 L 591.4223222461942 229.49144113513535" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 584.1164720219111 231.57882691350196 L 584.6383184665028 231.57882691350196 L 590.9004758016026 226.36036246758547 L 590.9004758016026 226.36036246758547" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 578.8980075759947 224.27297668921886 L 584.1164720219111 223.75113024462723 L 582.0290862435446 228.44774824595206" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 574.7232360192615 230.53513402431867 L 575.2450824638531 230.013287579727 L 582.0290862435446 225.31666957840218 L 582.0290862435446 225.31666957840218" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="579.941700465178" y="251.4089918079846" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="579.941700465178" y="219.0545122433024" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_30__stack1"><rect class="component-overlay sch-component-overlay" x="463.2328212818139" y="233.13695879862976" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 463.2328212818139 240.45021647155997 L 472.37850810910174 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 508.95028278858615 240.45021647155997 L 518.095969615874 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 472.37850810910174 233.13695879862976 L 508.95028278858615 233.13695879862976 L 508.95028278858615 247.76347414449017 L 472.37850810910174 247.76347414449017 L 472.37850810910174 233.13695879862976" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="490.66439544884395" y="225.8200435824773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED1</text><text class="sch-component-text" x="490.66439544884395" y="255.08038936064264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_31__stack1"><rect class="component-overlay sch-component-overlay" x="534.305536169119" y="134.97258112223926" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 569.7910944013511 151.671667349172 L 555.7012403973766 158.97751757345506" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 569.2692479567594 151.671667349172 L 590.664952185017 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 555.7012403973766 144.88766356948057 L 569.7910944013511 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 555.7012403973766 158.97751757345506 L 555.7012403973766 144.88766356948057" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 569.7910944013511 144.88766356948057 L 569.7910944013511 158.97751757345506" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 555.7012403973766 151.671667349172 L 534.305536169119 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 570.8347872905343 136.5381204560142 L 575.5314052918592 136.01627401142255 L 573.9658659580842 140.71289201274737" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 566.6600157338012 142.80027779111398 L 567.1818621783929 142.80027779111398 L 573.4440195134927 137.5818133451975 L 573.4440195134927 137.5818133451975" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 561.4415512878847 135.4944275668309 L 566.6600157338012 134.97258112223926 L 564.5726299554346 139.66919912356408" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 557.2667797311516 141.7565849019307 L 557.7886261757432 141.23473845733903 L 564.5726299554346 136.5381204560142 L 564.5726299554346 136.5381204560142" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="562.485244177068" y="162.63044268559662" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="562.485244177068" y="130.27596312091444" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_32__stack1"><rect class="component-overlay sch-component-overlay" x="445.776364993704" y="144.3584096762418" width="54.86314833405993" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 445.776364993704 151.671667349172 L 454.9220518209918 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 491.4938265004762 151.671667349172 L 500.63951332776395 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 454.9220518209918 144.3584096762418 L 491.4938265004762 144.3584096762418 L 491.4938265004762 158.9849250221022 L 454.9220518209918 158.9849250221022 L 454.9220518209918 144.3584096762418" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="473.207939160734" y="137.04149446008933" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED2</text><text class="sch-component-text" x="473.207939160734" y="166.30184023825467" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_33__stack1"><rect class="component-overlay sch-component-overlay" x="775.204632945037" y="213.77601236570726" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 796.078490728703 230.47509859264 L 810.1683447326774 237.78094881692306" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.6003371732946 230.47509859264 L 775.204632945037 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326774 223.69109481294856 L 796.078490728703 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326774 237.78094881692306 L 810.1683447326774 223.69109481294856" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.078490728703 223.69109481294856 L 796.078490728703 237.78094881692306" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326774 230.47509859264 L 831.564048960935 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 795.0347978395197 215.3415516994822 L 790.3381798381948 214.81970525489055 L 791.9037191719698 219.5163232562154" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 799.2095693962528 221.60370903458198 L 798.6877229516612 221.60370903458198 L 792.4255656165614 216.3852445886655 L 792.4255656165614 216.3852445886655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 804.4280338421693 214.29785881029892 L 799.2095693962528 213.77601236570726 L 801.2969551746194 218.47263036703208" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 808.6028053989024 220.5600161453987 L 808.0809589543109 220.03816970080703 L 801.2969551746194 215.3415516994822 L 801.2969551746194 215.3415516994822" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="803.384340952986" y="241.4338739290646" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="803.384340952986" y="209.07939436438244" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED3</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_34__stack1"><rect class="component-overlay sch-component-overlay" x="823.0039015531399" y="113.26746351532996" width="14.626515345860298" height="54.86314833406003" fill="transparent"/><path class="sch-component-symbol-path" d="M 830.3171592260701 113.26746351532996 L 830.3171592260701 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 830.3171592260701 158.98492502210217 L 830.3171592260701 168.13061184939" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 837.6304168990002 122.41315034261777 L 837.6304168990002 158.98492502210217 L 823.0039015531399 158.98492502210217 L 823.0039015531399 122.41315034261777 L 837.6304168990002 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="844.9473321151528" y="126.0688647932773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RLED3</text><text class="sch-component-text" x="844.9473321151528" y="155.32921057144264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_35__stack1"><rect class="component-overlay sch-component-overlay" x="786.6852547260532" y="291.073939707079" width="24.004936451215826" height="56.35941601589798" fill="transparent"/><path class="sch-component-symbol-path" d="M 803.384340952986 311.9477974907449 L 810.6901911772691 326.0376514947194" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 803.384340952986 312.46964393533653 L 803.384340952986 291.073939707079" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.6003371732946 326.0376514947194 L 803.384340952986 311.9477974907449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.6901911772691 326.0376514947194 L 796.6003371732946 326.0376514947194" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.6003371732946 311.9477974907449 L 810.6901911772691 311.9477974907449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 803.384340952986 326.0376514947194 L 803.384340952986 347.43335572297696" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 788.2507940598282 310.9041046015616 L 787.7289476152366 306.2074866002368 L 792.4255656165614 307.7730259340117" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 794.512951394928 315.0788761582948 L 794.512951394928 314.5570297137031 L 789.2944869490115 308.2948723786034 L 789.2944869490115 308.2948723786034" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 787.2071011706449 320.2973406042113 L 786.6852547260532 315.0788761582948 L 791.3818727273781 317.1662619366614" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 793.4692585057447 324.47211216094445 L 792.947412061153 323.9502657163528 L 788.2507940598282 317.1662619366614 L 788.2507940598282 317.1662619366614" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="814.3431162894107" y="330.21242305145256" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="814.3431162894107" y="308.2948723786034" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">LED4</text><circle class="component-pin sch-component-pin" cx="803.384340952986" cy="291.073939707079" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_36__stack1"><rect class="component-overlay sch-component-overlay" x="796.0710832800559" y="381.099378564332" width="14.626515345860298" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 803.384340952986 435.96252689839196 L 803.384340952986 426.8168400711042" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 803.384340952986 390.2450653916198 L 803.384340952986 381.099378564332" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.0710832800559 426.8168400711042 L 796.0710832800559 390.2450653916198 L 810.6975986259162 390.2450653916198 L 810.6975986259162 426.8168400711042 L 796.0710832800559 426.8168400711042" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="818.0145138420687" y="393.90077984227935" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RLED4</text><text class="sch-component-text" x="818.0145138420687" y="423.16112562044464" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_37__stack1"><rect class="component-overlay sch-component-overlay" x="775.2046329450369" y="524.0021784001192" width="56.35941601589798" height="24.004936451215826" fill="transparent"/><path class="sch-component-symbol-path" d="M 796.0784907287028 540.701264627052 L 810.1683447326773 548.007114851335" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.6003371732945 540.701264627052 L 775.2046329450369 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326773 533.9172608473606 L 796.0784907287028 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326773 548.007114851335 L 810.1683447326773 533.9172608473606" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 796.0784907287028 533.9172608473606 L 796.0784907287028 548.007114851335" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.1683447326773 540.701264627052 L 831.5640489609349 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 795.0347978395196 525.5677177338941 L 790.3381798381947 525.0458712893026 L 791.9037191719697 529.7424892906273" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 799.2095693962527 531.8298750689939 L 798.687722951661 531.8298750689939 L 792.4255656165612 526.6114106230774 L 792.4255656165612 526.6114106230774" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 804.4280338421692 524.5240248447109 L 799.2095693962527 524.0021784001192 L 801.2969551746193 528.698796401444" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 808.6028053989023 530.7861821798107 L 808.0809589543107 530.264335735219 L 801.2969551746193 525.5677177338941 L 801.2969551746193 525.5677177338941" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="803.3843409529859" y="551.6600399634766" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="803.3843409529859" y="519.3055603987943" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_38__stack1"><rect class="component-overlay sch-component-overlay" x="895.1554254390498" y="533.3880069541218" width="54.86314833406004" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 950.0185737731099 540.701264627052 L 940.8728869458221 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 904.3011122663377 540.701264627052 L 895.1554254390498 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 940.8728869458221 548.0145222999821 L 904.3011122663377 548.0145222999821 L 904.3011122663377 533.3880069541218 L 940.8728869458221 533.3880069541218 L 940.8728869458221 548.0145222999821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="922.5869996060799" y="526.0710917379693" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED5</text><text class="sch-component-text" x="922.5869996060799" y="555.3314375161347" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="324.07992687088" cy="744.1393398774923" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="324.07992687088" cy="754.1144577564123" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="423.83110566007997" cy="754.1144577564123" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="423.83110566007997" cy="744.1393398774923" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="132.05890770167002" cy="640.9511993101979" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="132.05890770167002" cy="650.9263171891179" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="231.81008649087" cy="650.9263171891179" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="231.81008649087" cy="640.9511993101979" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="275.700605158118" cy="527.5801480324725" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="375.45178394731806" cy="527.5801480324725" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="309.865383893419" cy="213.64047753322933" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="409.61656268261896" cy="213.64047753322933" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="501.6370251156559" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="501.6370251156559" cy="612.7443265624851" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="601.3882039048559" cy="607.7567676230251" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="641.787431314482" cy="230.47509859263997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="641.787431314482" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="641.787431314482" cy="250.42533435047997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_3__stack1"><circle cx="641.787431314482" cy="260.4004522294" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_4__stack1"><circle cx="641.787431314482" cy="270.37557010831995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_5__stack1"><circle cx="641.787431314482" cy="280.35068798723995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_6__stack1"><circle cx="641.787431314482" cy="290.32580586615995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_7__stack1"><circle cx="741.538610103682" cy="290.32580586615995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_8__stack1"><circle cx="741.538610103682" cy="280.35068798723995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_9__stack1"><circle cx="741.538610103682" cy="270.37557010831995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_10__stack1"><circle cx="741.538610103682" cy="260.40045222939995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_11__stack1"><circle cx="741.538610103682" cy="250.42533435047997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_12__stack1"><circle cx="741.538610103682" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_13__stack1"><circle cx="741.538610103682" cy="230.47509859263997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="641.787431314482" cy="525.7385878086719" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="641.787431314482" cy="535.713705687592" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_2__stack1"><circle cx="641.787431314482" cy="545.6888235665119" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_3__stack1"><circle cx="741.5386101036819" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_4__stack1"><circle cx="741.5386101036819" cy="530.726146748132" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="193.9589680305017" cy="393.318897966009" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="193.9589680305017" cy="448.18204630006903" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="160.73737160356507" cy="508.5315094675349" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="160.73737160356507" cy="563.394657801595" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="193.9589680305017" cy="278.10628646448293" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="193.9589680305017" cy="332.96943479854303" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="439.29253837240594" cy="508.5315094675349" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="439.29253837240594" cy="563.3946578015949" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="309.1172500525" cy="634.9389638430821" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="363.98039838656" cy="634.9389638430821" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="304.15685585280386" cy="314.2932535153317" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="304.15685585280386" cy="369.1564018493917" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="479.19300988808595" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="424.3298615540259" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="993.160958599439" cy="416.53821177426175" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="1048.024106933499" cy="416.53821177426175" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="993.160958599439" cy="317.83887425248133" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="1048.024106933499" cy="317.83887425248133" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="993.160958599439" cy="219.13953673070094" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="1048.024106933499" cy="219.13953673070094" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="993.160958599439" cy="120.44019920892052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="1048.024106933499" cy="120.44019920892052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="366.50134259605386" cy="393.5682759129819" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="366.50134259605386" cy="448.4314242470419" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="540.0683936892617" cy="319.22648297526416" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="485.2052453552018" cy="319.22648297526416" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="539.542473055552" cy="72.89540084546778" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="484.679324721492" cy="72.89540084546778" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="691.663020709082" cy="151.20007619498978" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="636.799872375022" cy="151.20007619498978" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="893.1604018632661" cy="356.63317502121413" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="893.1604018632661" cy="411.49632335527417" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="816.3519941955819" cy="619.4775311307561" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="871.215142529642" cy="619.4775311307561" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="589.9439830838618" cy="369.62799300357403" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="589.9439830838618" cy="314.764844669514" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="589.418062450152" cy="47.431685514457996" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="589.418062450152" cy="102.29483384851804" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="741.538610103682" cy="125.73636086398" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="741.538610103682" cy="180.59950919803998" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_0__stack1"><circle cx="933.0608733789461" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_1__stack1"><circle cx="878.197725044886" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_0__stack1"><circle cx="741.5386101036819" cy="675.365355992472" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_1__stack1"><circle cx="741.5386101036819" cy="620.502207658412" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_0__stack1"><circle cx="553.008882192094" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_1__stack1"><circle cx="609.368298207992" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_0__stack1"><circle cx="475.70171863046403" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_1__stack1"><circle cx="530.5648669645241" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_0__stack1"><circle cx="535.552425903984" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_1__stack1"><circle cx="591.911841919882" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_0__stack1"><circle cx="458.245262342354" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_1__stack1"><circle cx="513.108410676414" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_0__stack1"><circle cx="832.8109386958" cy="230.47509859264" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_1__stack1"><circle cx="776.451522679902" cy="230.47509859264" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_0__stack1"><circle cx="830.3171592260701" cy="125.73636086398" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_1__stack1"><circle cx="830.3171592260701" cy="180.59950919804" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_0__stack1"><circle cx="803.384340952986" cy="348.6802454578419" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_1__stack1"><circle cx="803.384340952986" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_0__stack1"><circle cx="803.384340952986" cy="448.43142424704195" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_1__stack1"><circle cx="803.384340952986" cy="393.568275912982" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_0__stack1"><circle cx="832.8109386957999" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_1__stack1"><circle cx="776.4515226799019" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_0__stack1"><circle cx="962.4874711217599" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_1__stack1"><circle cx="907.6243227876998" cy="540.701264627052" r="1.995023575784" 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="
|
|
267
|
-
M
|
|
268
|
-
L
|
|
269
|
-
L
|
|
270
|
-
L
|
|
271
|
-
L
|
|
272
|
-
Z
|
|
273
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="
|
|
274
|
-
M
|
|
275
|
-
L
|
|
276
|
-
L
|
|
277
|
-
L
|
|
278
|
-
L
|
|
279
|
-
Z
|
|
280
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="
|
|
281
|
-
M
|
|
282
|
-
L
|
|
283
|
-
L
|
|
284
|
-
L
|
|
285
|
-
L
|
|
286
|
-
Z
|
|
287
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="
|
|
288
|
-
M
|
|
289
|
-
L
|
|
290
|
-
L
|
|
291
|
-
L
|
|
292
|
-
L
|
|
293
|
-
Z
|
|
294
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" x="
|
|
295
|
-
M
|
|
296
|
-
L
|
|
297
|
-
L
|
|
298
|
-
L
|
|
299
|
-
L
|
|
300
|
-
Z
|
|
301
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_13__stack1" x="
|
|
302
|
-
M
|
|
303
|
-
L
|
|
304
|
-
L
|
|
305
|
-
L
|
|
306
|
-
L
|
|
307
|
-
Z
|
|
308
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_14__stack1" x="
|
|
309
|
-
M
|
|
310
|
-
L
|
|
311
|
-
L
|
|
312
|
-
L
|
|
313
|
-
L
|
|
314
|
-
Z
|
|
315
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_15__stack1" x="
|
|
316
|
-
M
|
|
317
|
-
L
|
|
318
|
-
L
|
|
319
|
-
L
|
|
320
|
-
L
|
|
321
|
-
Z
|
|
322
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_16__stack1" x="
|
|
323
|
-
M
|
|
324
|
-
L
|
|
325
|
-
L
|
|
326
|
-
L
|
|
327
|
-
L
|
|
328
|
-
Z
|
|
329
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_17__stack1" x="
|
|
330
|
-
M
|
|
331
|
-
L
|
|
332
|
-
L
|
|
333
|
-
L
|
|
334
|
-
L
|
|
335
|
-
Z
|
|
336
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_18__stack1" x="
|
|
337
|
-
M
|
|
338
|
-
L
|
|
339
|
-
L
|
|
340
|
-
L
|
|
341
|
-
L
|
|
342
|
-
Z
|
|
343
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_19__stack1" x="
|
|
344
|
-
M
|
|
345
|
-
L
|
|
346
|
-
L
|
|
347
|
-
L
|
|
348
|
-
L
|
|
349
|
-
Z
|
|
350
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_20__stack1" x="
|
|
351
|
-
M
|
|
352
|
-
L
|
|
353
|
-
L
|
|
354
|
-
L
|
|
355
|
-
L
|
|
356
|
-
Z
|
|
357
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_21__stack1" x="
|
|
358
|
-
M
|
|
359
|
-
L
|
|
360
|
-
L
|
|
361
|
-
L
|
|
362
|
-
L
|
|
363
|
-
Z
|
|
364
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_22__stack1" x="
|
|
365
|
-
M
|
|
366
|
-
L
|
|
367
|
-
L
|
|
368
|
-
L
|
|
369
|
-
L
|
|
370
|
-
Z
|
|
371
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_23__stack1" x="
|
|
372
|
-
M
|
|
373
|
-
L
|
|
374
|
-
L
|
|
375
|
-
L
|
|
376
|
-
L
|
|
377
|
-
Z
|
|
378
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_24__stack1" x="
|
|
379
|
-
M
|
|
380
|
-
L
|
|
381
|
-
L
|
|
382
|
-
L
|
|
383
|
-
L
|
|
384
|
-
Z
|
|
385
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_25__stack1" x="
|
|
386
|
-
M
|
|
387
|
-
L
|
|
388
|
-
L
|
|
389
|
-
L
|
|
390
|
-
L
|
|
391
|
-
Z
|
|
392
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_26__stack1" x="
|
|
393
|
-
M
|
|
394
|
-
L
|
|
395
|
-
L
|
|
396
|
-
L
|
|
397
|
-
L
|
|
398
|
-
Z
|
|
399
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_27__stack1" x="
|
|
400
|
-
M
|
|
401
|
-
L
|
|
402
|
-
L
|
|
403
|
-
L
|
|
404
|
-
L
|
|
405
|
-
Z
|
|
406
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_28__stack1" x="
|
|
407
|
-
M
|
|
408
|
-
L
|
|
409
|
-
L
|
|
410
|
-
L
|
|
411
|
-
L
|
|
412
|
-
Z
|
|
413
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_29__stack1" x="
|
|
414
|
-
M
|
|
415
|
-
L
|
|
416
|
-
L
|
|
417
|
-
L
|
|
418
|
-
L
|
|
419
|
-
Z
|
|
420
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_30__stack1" x="
|
|
421
|
-
M
|
|
422
|
-
L
|
|
423
|
-
L
|
|
424
|
-
L
|
|
425
|
-
L
|
|
426
|
-
Z
|
|
427
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_31__stack1" x="
|
|
428
|
-
M
|
|
429
|
-
L
|
|
430
|
-
L
|
|
431
|
-
L
|
|
432
|
-
L
|
|
433
|
-
Z
|
|
434
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_32__stack1" x="
|
|
435
|
-
M
|
|
436
|
-
L
|
|
437
|
-
L
|
|
438
|
-
L
|
|
439
|
-
L
|
|
440
|
-
Z
|
|
441
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_33__stack1" x="
|
|
442
|
-
M
|
|
443
|
-
L
|
|
444
|
-
L
|
|
445
|
-
L
|
|
446
|
-
L
|
|
447
|
-
Z
|
|
448
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_34__stack1" x="
|
|
449
|
-
M
|
|
450
|
-
L
|
|
451
|
-
L
|
|
452
|
-
L
|
|
453
|
-
L
|
|
454
|
-
Z
|
|
455
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_35__stack1" x="
|
|
456
|
-
M
|
|
457
|
-
L
|
|
458
|
-
L
|
|
459
|
-
L
|
|
460
|
-
L
|
|
461
|
-
Z
|
|
462
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_36__stack1" x="
|
|
463
|
-
M
|
|
464
|
-
L
|
|
465
|
-
L
|
|
466
|
-
L
|
|
467
|
-
L
|
|
468
|
-
Z
|
|
469
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_37__stack1" x="
|
|
470
|
-
M
|
|
471
|
-
L
|
|
472
|
-
L
|
|
473
|
-
L
|
|
474
|
-
L
|
|
475
|
-
Z
|
|
476
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_38__stack1" x="
|
|
477
|
-
M
|
|
478
|
-
L
|
|
479
|
-
L
|
|
480
|
-
L
|
|
481
|
-
L
|
|
482
|
-
Z
|
|
483
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_39__stack1" x="
|
|
484
|
-
M
|
|
485
|
-
L
|
|
486
|
-
L
|
|
487
|
-
L
|
|
488
|
-
L
|
|
489
|
-
Z
|
|
490
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_40__stack1" x="
|
|
491
|
-
M
|
|
492
|
-
L
|
|
493
|
-
L
|
|
494
|
-
L
|
|
495
|
-
L
|
|
496
|
-
Z
|
|
497
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_41__stack1" x="
|
|
498
|
-
M
|
|
499
|
-
L
|
|
500
|
-
L
|
|
501
|
-
L
|
|
502
|
-
L
|
|
503
|
-
Z
|
|
504
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_42__stack1" x="
|
|
505
|
-
M
|
|
506
|
-
L
|
|
507
|
-
L
|
|
508
|
-
L
|
|
509
|
-
L
|
|
510
|
-
Z
|
|
511
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_43__stack1" x="
|
|
512
|
-
M
|
|
513
|
-
L
|
|
514
|
-
L
|
|
515
|
-
L
|
|
516
|
-
L
|
|
517
|
-
Z
|
|
518
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_44__stack1" x="
|
|
519
|
-
M
|
|
520
|
-
L
|
|
521
|
-
L
|
|
522
|
-
L
|
|
523
|
-
L
|
|
524
|
-
Z
|
|
525
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_45__stack1" x="
|
|
526
|
-
M
|
|
527
|
-
L
|
|
528
|
-
L
|
|
529
|
-
L
|
|
530
|
-
L
|
|
531
|
-
Z
|
|
532
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_46__stack1" x="
|
|
533
|
-
M
|
|
534
|
-
L
|
|
535
|
-
L
|
|
536
|
-
L
|
|
537
|
-
L
|
|
538
|
-
Z
|
|
539
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_47__stack1" x="
|
|
540
|
-
M
|
|
541
|
-
L
|
|
542
|
-
L
|
|
543
|
-
L
|
|
544
|
-
L
|
|
545
|
-
Z
|
|
546
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_48__stack1" x="
|
|
547
|
-
M
|
|
548
|
-
L
|
|
549
|
-
L
|
|
550
|
-
L
|
|
551
|
-
L
|
|
552
|
-
Z
|
|
553
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_49__stack1" x="
|
|
554
|
-
M
|
|
555
|
-
L
|
|
556
|
-
L
|
|
557
|
-
L
|
|
558
|
-
L
|
|
559
|
-
Z
|
|
560
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_50__stack1" x="
|
|
561
|
-
M
|
|
562
|
-
L
|
|
563
|
-
L
|
|
564
|
-
L
|
|
565
|
-
L
|
|
566
|
-
Z
|
|
567
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_51__stack1" x="
|
|
568
|
-
M
|
|
569
|
-
L
|
|
570
|
-
L
|
|
571
|
-
L
|
|
572
|
-
L
|
|
573
|
-
Z
|
|
574
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_52__stack1" x="
|
|
575
|
-
M
|
|
576
|
-
L
|
|
577
|
-
L
|
|
578
|
-
L
|
|
579
|
-
L
|
|
580
|
-
Z
|
|
581
|
-
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_53__stack1" x="
|
|
268
|
+
</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 490.6710455274558 602.7692086835651 L 490.6710455274558 576.847484568255 L 453.26435348150585 576.847484568255 L 453.26435348150585 550.9257604529449" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 490.6710455274558 602.7692086835651 L 490.6710455274558 576.847484568255 L 453.26435348150585 576.847484568255 L 453.26435348150585 550.9257604529449" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 480.6959276485358 602.7692086835651 L 515.6088402247558 602.7692086835651" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 480.6959276485358 602.7692086835651 L 515.6088402247558 602.7692086835651" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 146.03072281076993 650.9263171891179 L 136.05560493184998 650.9263171891179 L 136.05560493184998 660.9014350680378 L 136.05560493184998 640.9511993101979 L 146.03072281076993 640.9511993101979" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 146.03072281076993 650.9263171891179 L 136.05560493184998 650.9263171891179 L 136.05560493184998 660.9014350680378 L 136.05560493184998 640.9511993101979 L 146.03072281076993 640.9511993101979" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 245.7819015999699 640.9511993101979 L 255.7570194788899 640.9511993101979 L 255.7570194788899 650.9263171891179 L 245.7819015999699 650.9263171891179" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 245.7819015999699 640.9511993101979 L 255.7570194788899 640.9511993101979 L 255.7570194788899 650.9263171891179 L 245.7819015999699 650.9263171891179" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 655.7592464235819 240.45021647155997 L 622.0932235822269 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 655.7592464235819 240.45021647155997 L 622.0932235822269 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 541.0453908160019 72.89540084546778 L 572.2176341876269 72.89540084546778 L 572.2176341876269 120.74880192452001 L 603.3898775592519 120.74880192452001 L 603.3898775592519 89.82593649986799" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 541.0453908160019 72.89540084546778 L 572.2176341876269 72.89540084546778 L 572.2176341876269 120.74880192452001 L 603.3898775592519 120.74880192452001 L 603.3898775592519 89.82593649986799" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 755.5104252127819 230.47509859263997 L 789.1764480541369 230.47509859264" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127819 230.47509859263997 L 789.1764480541369 230.47509859264" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 755.5104252127819 168.13061184939 L 755.5104252127819 199.30285522101497 L 765.4855430917019 199.30285522101497 L 765.4855430917019 230.47509859263997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127819 168.13061184939 L 755.5104252127819 199.30285522101497 L 765.4855430917019 199.30285522101497 L 765.4855430917019 230.47509859263997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 693.1659384695319 151.20007619498978 L 724.3381818411569 151.20007619498978 L 724.3381818411569 178.10572972831 L 755.5104252127819 178.10572972831" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 693.1659384695319 151.20007619498978 L 724.3381818411569 151.20007619498978 L 724.3381818411569 178.10572972831 L 755.5104252127819 178.10572972831" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 907.132216972366 344.16427767256414 L 907.132216972366 318.24255355725404 L 869.725524926416 318.24255355725404 L 869.725524926416 292.32082944194394 L 879.700642805336 292.32082944194394" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 907.132216972366 344.16427767256414 L 907.132216972366 318.24255355725404 L 869.725524926416 318.24255355725404 L 869.725524926416 292.32082944194394 L 879.700642805336 292.32082944194394" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 755.5104252127818 540.701264627052 L 789.1764480541369 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127818 540.701264627052 L 789.1764480541369 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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 755.5104252127818 608.0333103097619 L 755.5104252127818 574.367287468407 L 765.4855430917019 574.367287468407 L 765.4855430917019 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127818 608.0333103097619 L 755.5104252127818 574.367287468407 L 765.4855430917019 574.367287468407 L 765.4855430917019 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_12__stack1"><path d="M 817.8549119560319 619.4775311307561 L 805.6218101844729 619.4775311307561 L 805.6218101844729 598.0581924308419 L 755.5104252127818 598.0581924308419" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 817.8549119560319 619.4775311307561 L 805.6218101844729 619.4775311307561 L 805.6218101844729 598.0581924308419 L 755.5104252127818 598.0581924308419" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_13__stack1"><path d="M 532.067784724974 240.45021647155997 L 565.7338075663289 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 532.067784724974 240.45021647155997 L 565.7338075663289 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_14__stack1"><path d="M 514.6113284368639 151.671667349172 L 548.2773512782189 151.671667349172" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 514.6113284368639 151.671667349172 L 548.2773512782189 151.671667349172" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_15__stack1"><path d="M 844.28897433517 168.13061184939 L 844.28897433517 199.30285522101497 L 855.510981948955 199.30285522101497 L 855.510981948955 230.47509859263997 L 845.5358640700349 230.47509859263997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 844.28897433517 168.13061184939 L 844.28897433517 199.30285522101497 L 855.510981948955 199.30285522101497 L 855.510981948955 230.47509859263997 L 845.5358640700349 230.47509859263997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_16__stack1"><path d="M 817.3561560620859 381.099378564332 L 817.3561560620859 347.43335572297696" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 817.3561560620859 381.099378564332 L 817.3561560620859 347.43335572297696" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_17__stack1"><path d="M 909.1272405481498 540.701264627052 L 845.5358640700349 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 909.1272405481498 540.701264627052 L 845.5358640700349 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_18__stack1"><path d="M 338.0517419799799 754.1144577564123 L 328.0766241010599 754.1144577564123 L 328.0766241010599 744.1393398774923 L 338.0517419799799 744.1393398774923" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 338.0517419799799 754.1144577564123 L 328.0766241010599 754.1144577564123 L 328.0766241010599 744.1393398774923 L 338.0517419799799 744.1393398774923" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_19__stack1"><path d="M 437.8029207691799 744.1393398774923 L 447.77803864809994 744.1393398774923 L 447.77803864809994 754.1144577564123 L 437.8029207691799 754.1144577564123" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 437.8029207691799 744.1393398774923 L 447.77803864809994 744.1393398774923 L 447.77803864809994 754.1144577564123 L 437.8029207691799 754.1144577564123" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_20__stack1"><path d="M 459.74818010280393 151.671667349172 L 449.7730622238839 151.671667349172 L 449.7730622238839 240.45021647155997 L 477.2046363909139 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 459.74818010280393 151.671667349172 L 449.7730622238839 151.671667349172 L 449.7730622238839 240.45021647155997 L 477.2046363909139 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_21__stack1"><path d="M 755.5104252127819 113.26746351533 L 755.5104252127819 103.29234563640998 L 844.28897433517 103.29234563640998 L 844.28897433517 113.26746351532996" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127819 113.26746351533 L 755.5104252127819 103.29234563640998 L 844.28897433517 103.29234563640998 L 844.28897433517 113.26746351532996" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_22__stack1"><path d="M 318.12867096190377 301.82435616668164 L 318.12867096190377 256.8116367380552 L 250.02132669851096 256.8116367380552 L 250.02132669851096 211.7989173094287" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 318.12867096190377 301.82435616668164 L 318.12867096190377 256.8116367380552 L 250.02132669851096 256.8116367380552 L 250.02132669851096 211.7989173094287" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_23__stack1"><path d="M 380.47315770515377 435.96252689839184 L 380.47315770515377 445.9376447773119 L 318.12867096190377 445.9376447773119 L 318.12867096190377 356.68750450074174" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 380.47315770515377 435.96252689839184 L 380.47315770515377 445.9376447773119 L 318.12867096190377 445.9376447773119 L 318.12867096190377 356.68750450074174" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_24__stack1"><path d="M 365.48331614700993 525.7385878086719 L 375.4584340259299 525.7385878086719 L 375.4584340259299 580.3387758258771 L 300.6450499340299 580.3387758258771 L 300.6450499340299 634.9389638430821 L 310.6201678129499 634.9389638430821" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 365.48331614700993 525.7385878086719 L 375.4584340259299 525.7385878086719 L 375.4584340259299 580.3387758258771 L 300.6450499340299 580.3387758258771 L 300.6450499340299 634.9389638430821 L 310.6201678129499 634.9389638430821" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_25__stack1"><path d="M 265.73213735780985 525.7385878086719 L 255.7570194788899 525.7385878086719 L 255.7570194788899 486.08749423996494 L 453.26435348150585 486.08749423996494 L 453.26435348150585 496.0626121188849" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 265.73213735780985 525.7385878086719 L 255.7570194788899 525.7385878086719 L 255.7570194788899 486.08749423996494 L 453.26435348150585 486.08749423996494 L 453.26435348150585 496.0626121188849" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_26__stack1"><path d="M 755.5104252127818 530.726146748132 L 772.3434366334593 530.726146748132 L 772.3434366334593 501.299549005318 L 817.3561560620859 501.299549005318 L 817.3561560620859 435.96252689839196" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127818 530.726146748132 L 772.3434366334593 530.726146748132 L 772.3434366334593 501.299549005318 L 817.3561560620859 501.299549005318 L 817.3561560620859 435.96252689839196" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_27__stack1"><path d="M 207.9307831396016 265.6373891158329 L 207.9307831396016 211.79891730942867 L 299.8969160931109 211.79891730942867" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 207.9307831396016 265.6373891158329 L 207.9307831396016 211.79891730942867 L 299.8969160931109 211.79891730942867" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_28__stack1"><path d="M 380.47315770515377 381.0993785643319 L 380.47315770515377 319.2264829752642 L 486.7081631156517 319.2264829752642" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 380.47315770515377 381.0993785643319 L 380.47315770515377 319.2264829752642 L 486.7081631156517 319.2264829752642" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_29__stack1"><path d="M 1049.527024693949 219.13953673070094 L 1059.502142572869 219.13953673070094 L 1059.502142572869 169.78986796981073 L 984.688758480969 169.78986796981073 L 984.688758480969 120.44019920892052 L 994.663876359889 120.44019920892052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1049.527024693949 219.13953673070094 L 1059.502142572869 219.13953673070094 L 1059.502142572869 169.78986796981073 L 984.688758480969 169.78986796981073 L 984.688758480969 120.44019920892052 L 994.663876359889 120.44019920892052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_30__stack1"><path d="M 1049.527024693949 317.83887425248133 L 1059.502142572869 317.83887425248133 L 1059.502142572869 268.4892054915911 L 984.688758480969 268.4892054915911 L 984.688758480969 219.13953673070094 L 994.663876359889 219.13953673070094" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1049.527024693949 317.83887425248133 L 1059.502142572869 317.83887425248133 L 1059.502142572869 268.4892054915911 L 984.688758480969 268.4892054915911 L 984.688758480969 219.13953673070094 L 994.663876359889 219.13953673070094" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_31__stack1"><path d="M 755.5104252127819 260.40045222939995 L 868.7280131385239 260.40045222939995 L 868.7280131385239 409.0025438855441 L 907.132216972366 409.0025438855441 L 907.132216972366 399.0274260066241" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127819 260.40045222939995 L 868.7280131385239 260.40045222939995 L 868.7280131385239 409.0025438855441 L 907.132216972366 409.0025438855441 L 907.132216972366 399.0274260066241" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_32__stack1"><path d="M 1049.527024693949 416.53821177426175 L 1059.502142572869 416.53821177426175 L 1059.502142572869 367.18854301337154 L 984.688758480969 367.18854301337154 L 984.688758480969 317.83887425248133 L 994.663876359889 317.83887425248133" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1049.527024693949 416.53821177426175 L 1059.502142572869 416.53821177426175 L 1059.502142572869 367.18854301337154 L 984.688758480969 367.18854301337154 L 984.688758480969 317.83887425248133 L 994.663876359889 317.83887425248133" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_33__stack1"><path d="M 541.5713114497116 319.22648297526416 L 551.5464293286317 319.22648297526416 L 551.5464293286317 302.29594732086395 L 603.9157981929617 302.29594732086395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 541.5713114497116 319.22648297526416 L 551.5464293286317 319.22648297526416 L 551.5464293286317 302.29594732086395 L 603.9157981929617 302.29594732086395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_34__stack1"><path d="M 603.9157981929617 302.29594732086395 L 603.9157981929617 271.37308189621194 L 632.0683414611469 271.37308189621194 L 632.0683414611469 240.45021647155997 L 622.0932235822269 240.45021647155997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 603.9157981929617 302.29594732086395 L 603.9157981929617 271.37308189621194 L 632.0683414611469 271.37308189621194 L 632.0683414611469 240.45021647155997 L 622.0932235822269 240.45021647155997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_35__stack1"><path d="M 755.5104252127819 290.32580586615995 L 796.4582841057485 290.32580586615995 L 796.4582841057485 270.37557010831995 L 755.5104252127819 270.37557010831995" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127819 290.32580586615995 L 796.4582841057485 290.32580586615995 L 796.4582841057485 270.37557010831995 L 755.5104252127819 270.37557010831995" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_36__stack1"><path d="M 655.7592464235819 280.35068798723995 L 645.7841285446619 280.35068798723995 L 645.7841285446619 260.4004522294 L 655.7592464235819 260.4004522294" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 655.7592464235819 280.35068798723995 L 645.7841285446619 280.35068798723995 L 645.7841285446619 260.4004522294 L 655.7592464235819 260.4004522294" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_37__stack1"><path d="M 655.7592464235819 230.47509859263997 L 630.1980068588495 230.47509859263997 L 630.1980068588495 151.671667349172 L 604.6367672941169 151.671667349172" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 655.7592464235819 230.47509859263997 L 630.1980068588495 230.47509859263997 L 630.1980068588495 151.671667349172 L 604.6367672941169 151.671667349172" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_38__stack1"><path d="M 934.563791139396 292.32082944194394 L 947.7309467395703 292.32082944194394 L 947.7309467395703 426.5133296531818 L 973.9655067611297 426.5133296531818 L 973.9655067611297 540.701264627052 L 963.9903888822098 540.701264627052" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 934.563791139396 292.32082944194394 L 947.7309467395703 292.32082944194394 L 947.7309467395703 426.5133296531818 L 973.9655067611297 426.5133296531818 L 973.9655067611297 540.701264627052 L 963.9903888822098 540.701264627052" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_39__stack1"><path d="M 603.3898775592519 120.74880192452001 L 614.611885173037 120.74880192452001 L 614.611885173037 151.67166734917203" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 603.3898775592519 120.74880192452001 L 614.611885173037 120.74880192452001 L 614.611885173037 151.67166734917203" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_40__stack1"><path d="M 255.7570194788899 650.9263171891179 L 268.72467272148594 650.9263171891179" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 255.7570194788899 650.9263171891179 L 268.72467272148594 650.9263171891179" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_41__stack1"><path d="M 399.64809488231094 211.7989173094287 L 410.1718442445715 211.7989173094287 L 410.1718442445715 221.8239107777433" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 399.64809488231094 211.7989173094287 L 410.1718442445715 211.7989173094287 L 410.1718442445715 221.8239107777433" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_42__stack1"><path d="M 515.6088402247558 612.7443265624851 L 505.08509086249524 612.7443265624851 L 505.08509086249524 622.7693200307997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 515.6088402247558 612.7443265624851 L 505.08509086249524 612.7443265624851 L 505.08509086249524 622.7693200307997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_43__stack1"><path d="M 655.7592464235819 535.713705687592 L 595.3599076667213 535.713705687592 L 595.3599076667213 550.7262580953666" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 655.7592464235819 535.713705687592 L 595.3599076667213 535.713705687592 L 595.3599076667213 550.7262580953666" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_44__stack1"><path d="M 207.9307831396016 380.8500006173589 L 207.9307831396016 375.8125660885043 L 185.43689232263705 375.8125660885043" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 207.9307831396016 380.8500006173589 L 207.9307831396016 375.8125660885043 L 185.43689232263705 375.8125660885043" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_45__stack1"><path d="M 174.70918671266497 496.0626121188849 L 174.70918671266497 491.0251775900303 L 152.21529589570048 491.0251775900303" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 174.70918671266497 496.0626121188849 L 174.70918671266497 491.0251775900303 L 152.21529589570048 491.0251775900303" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_46__stack1"><path d="M 603.9157981929617 357.159095654924 L 603.9157981929617 362.1965301837786 L 593.8908047246471 362.1965301837786" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 603.9157981929617 357.159095654924 L 603.9157981929617 362.1965301837786 L 593.8908047246471 362.1965301837786" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_47__stack1"><path d="M 603.3898775592519 34.96278816580798 L 603.3898775592519 29.92535363695339 L 593.3648840909373 29.92535363695339" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 603.3898775592519 34.96278816580798 L 603.3898775592519 29.92535363695339 L 593.3648840909373 29.92535363695339" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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_48__stack1"><path d="M 755.5104252127818 662.896458643822 L 755.5104252127818 667.9338931726766 L 745.4854317444672 667.9338931726766" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="7.980094303136px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.5104252127818 662.896458643822 L 755.5104252127818 667.9338931726766 L 745.4854317444672 667.9338931726766" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.997511787892px" 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"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="255.7570194788899" cy="650.9263171891179" r="1.4962676818379999" 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_4__stack1"><circle cx="622.0932235822269" cy="240.45021647155997" r="1.4962676818379999" 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"><circle cx="603.3898775592519" cy="120.74880192452001" r="1.4962676818379999" 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_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"/><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="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_12__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_13__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_14__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_15__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_16__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_17__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_18__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_19__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_20__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_21__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_22__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_23__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"><circle cx="603.9157981929617" cy="302.29594732086395" r="1.4962676818379999" 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_34__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_36__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_37__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_38__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_39__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_40__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_41__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_42__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_43__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_44__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_45__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_46__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_47__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_48__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="358.0019777378199" y="734.1642219985722" width="59.85070727351996" height="29.92535363676018" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="358.0019777378199" y="734.1642219985722" width="59.85070727351996" height="29.92535363676018" fill="transparent"/><text class="sch-text" x="387.9273313745799" y="749.1268988169523" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 387.9273313745799, 749.1268988169523)">J_BAT_POS</text><line class="component-pin sch-component-pin sch-port-line" x1="358.0019777378199" y1="744.1393398774923" x2="338.0517419799799" y2="744.1393398774923" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="337.0542301920879" y="743.1418280896003" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="348.0268598588999" y="743.1418280896004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="358.0019777378199" y1="754.1144577564123" x2="338.0517419799799" y2="754.1144577564123" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="337.0542301920879" y="753.1169459685203" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="348.0268598588999" y="753.1169459685203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="417.8526850113399" y1="754.1144577564123" x2="437.8029207691799" y2="754.1144577564123" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="436.8054089812879" y="753.1169459685203" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="427.8278028902599" y="753.1169459685203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="417.8526850113399" y1="744.1393398774923" x2="437.8029207691799" y2="744.1393398774923" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="436.8054089812879" y="743.1418280896003" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="427.8278028902599" y="743.1418280896004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="165.98095856860994" y="630.9760814312779" width="59.85070727351996" height="29.925353636760065" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="165.98095856860994" y="630.9760814312779" width="59.85070727351996" height="29.925353636760065" fill="transparent"/><text class="sch-text" x="195.90631220536994" y="645.9387582496579" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 195.90631220536994, 645.9387582496579)">J_BAT_NEG</text><line class="component-pin sch-component-pin sch-port-line" x1="165.98095856860994" y1="640.9511993101979" x2="146.03072281076993" y2="640.9511993101979" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="145.03321102287794" y="639.9536875223059" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="156.00584068968988" y="639.9536875223059" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="165.98095856860994" y1="650.9263171891179" x2="146.03072281076993" y2="650.9263171891179" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="145.03321102287794" y="649.9288054012259" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="156.00584068968988" y="649.9288054012259" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="225.8316658421299" y1="650.9263171891179" x2="245.7819015999699" y2="650.9263171891179" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="244.7843898120779" y="649.9288054012259" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="235.80678372104995" y="649.9288054012259" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="225.8316658421299" y1="640.9511993101979" x2="245.7819015999699" y2="640.9511993101979" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="244.7843898120779" y="639.9536875223059" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="235.80678372104995" y="639.9536875223059" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</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="265.73213735780985" y="512.3105445101257" width="99.75117878920003" height="25.896940647196175" fill="transparent"/><path class="sch-component-symbol-path" d="M 329.03577005095605 525.7385878086718 L 304.097975353656 538.2074851573219" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 304.097975353656 512.3105445101257 L 329.03577005095605 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 304.097975353656 538.2074851573219 L 304.097975353656 512.3105445101257" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 329.03577005095605 512.3105445101257 L 329.03577005095605 538.2074851573219" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 304.097975353656 525.7385878086718 L 265.73213735780985 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 365.4833161470099 525.7385878086718 L 329.9949160008522 525.7385878086718" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="314.6485808025137" y="503.6782309610603" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">D_PROT</text><text class="sch-component-text" x="315.60772675240986" y="555.4721122554527" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></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="299.89691609311086" y="198.37087401088255" width="99.75117878920003" height="25.896940647196146" fill="transparent"/><path class="sch-component-symbol-path" d="M 363.200548786257 211.7989173094287 L 338.262754088957 224.2678146580787" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 338.262754088957 198.37087401088255 L 363.200548786257 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 338.262754088957 224.2678146580787 L 338.262754088957 198.37087401088255" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 363.200548786257 198.37087401088255 L 363.200548786257 224.2678146580787" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 338.262754088957 211.7989173094287 L 299.89691609311086 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 399.6480948823109 211.7989173094287 L 364.1596947361532 211.7989173094287" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="348.81335953781473" y="189.73856046181717" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">D_SENSE_CLAMP</text><text class="sch-component-text" x="349.7725054877109" y="241.53244175620947" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="535.5590759825958" y="592.7940908046452" width="59.850707273520015" height="29.92535363675995" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="535.5590759825958" y="592.7940908046452" width="59.850707273520015" height="29.92535363675995" fill="transparent"/><text class="sch-text" x="565.4844296193559" y="607.7567676230251" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 565.4844296193559, 607.7567676230251)">U_REF</text><line class="component-pin sch-component-pin sch-port-line" x1="535.5590759825958" y1="602.7692086835651" x2="515.6088402247558" y2="602.7692086835651" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="514.6113284368638" y="601.7716968956731" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="525.5839581036759" y="601.7716968956731" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="535.5590759825958" y1="612.7443265624851" x2="515.6088402247558" y2="612.7443265624851" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="514.6113284368638" y="611.7468147745931" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="525.5839581036759" y="611.7468147745931" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="595.4097832561158" y1="607.7567676230251" x2="614.3625072260638" y2="607.7567676230251" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="615.3600190139558" cy="607.7567676230251" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="614.3625072260638" y="606.7592558351331" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="605.3849011350359" y="606.7592558351331" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component chip sch-component-body" x="675.7094821814219" y="220.49998071371996" width="59.850707273520015" height="79.80094303135999" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="675.7094821814219" y="220.49998071371996" width="59.850707273520015" height="79.80094303135999" fill="transparent"/><text class="sch-text" x="705.634835818182" y="260.4004522294" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 705.634835818182, 260.4004522294)">U1</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="230.47509859263997" x2="655.7592464235819" y2="230.47509859263997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="654.7617346356899" y="229.47758680474797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="229.47758680474797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="240.45021647155997" x2="655.7592464235819" y2="240.45021647155997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><rect x="654.7617346356899" y="239.45270468366797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="239.45270468366797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="250.42533435047997" x2="656.7567582114739" y2="250.42533435047997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="655.7592464235819" cy="250.42533435047997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="654.7617346356899" y="249.42782256258798" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="249.42782256258798" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="260.4004522294" x2="655.7592464235819" y2="260.4004522294" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_3__stack1"><rect x="654.7617346356899" y="259.402940441508" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="259.402940441508" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="270.37557010831995" x2="656.7567582114739" y2="270.37557010831995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="655.7592464235819" cy="270.37557010831995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="654.7617346356899" y="269.37805832042795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="269.37805832042795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="280.35068798723995" x2="655.7592464235819" y2="280.35068798723995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_5__stack1"><rect x="654.7617346356899" y="279.35317619934796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="279.35317619934796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="290.32580586615995" x2="656.7567582114739" y2="290.32580586615995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="655.7592464235819" cy="290.32580586615995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="654.7617346356899" y="289.32829407826796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.734364302502" y="289.32829407826796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="290.32580586615995" x2="755.5104252127819" y2="290.32580586615995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_7__stack1"><rect x="754.5129134248899" y="289.32829407826796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="289.32829407826796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">8</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="280.35068798723995" x2="754.5129134248899" y2="280.35068798723995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="755.5104252127819" cy="280.35068798723995" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="754.5129134248899" y="279.35317619934796" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="279.35317619934796" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">9</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="270.37557010831995" x2="755.5104252127819" y2="270.37557010831995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_9__stack1"><rect x="754.5129134248899" y="269.37805832042795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="269.37805832042795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">10</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="260.40045222939995" x2="755.5104252127819" y2="260.40045222939995" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_10__stack1"><rect x="754.5129134248899" y="259.40294044150795" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="259.40294044150795" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">11</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="250.42533435047997" x2="754.5129134248899" y2="250.42533435047997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="755.5104252127819" cy="250.42533435047997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="754.5129134248899" y="249.42782256258798" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="249.42782256258798" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">12</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="240.45021647155997" x2="754.5129134248899" y2="240.45021647155997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="755.5104252127819" cy="240.45021647155997" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="754.5129134248899" y="239.45270468366797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="239.45270468366797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">13</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549419" y1="230.47509859263997" x2="755.5104252127819" y2="230.47509859263997" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_5_13__stack1"><rect x="754.5129134248899" y="229.47758680474797" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.535307333862" y="229.47758680474797" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">14</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component chip sch-component-body" x="675.7094821814219" y="515.763469929752" width="59.8507072735199" height="39.90047151568001" stroke-width="0.997511787892px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="675.7094821814219" y="515.763469929752" width="59.8507072735199" height="39.90047151568001" fill="transparent"/><text class="sch-text" x="705.6348358181818" y="535.713705687592" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 705.6348358181818, 535.713705687592)">U2</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="525.7385878086719" x2="656.7567582114739" y2="525.7385878086719" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="655.7592464235819" cy="525.7385878086719" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="654.7617346356899" y="524.7410760207799" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.7343643025018" y="524.7410760207799" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="535.713705687592" x2="655.7592464235819" y2="535.713705687592" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><rect x="654.7617346356899" y="534.7161938997" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.7343643025018" y="534.7161938997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="675.7094821814219" y1="545.6888235665119" x2="656.7567582114739" y2="545.6888235665119" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="655.7592464235819" cy="545.6888235665119" r="0.997511787892" stroke-width="0.997511787892px"/><rect x="654.7617346356899" y="544.6913117786199" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="665.7343643025018" y="544.69131177862" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549418" y1="540.701264627052" x2="755.5104252127818" y2="540.701264627052" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_3__stack1"><rect x="754.5129134248898" y="539.70375283916" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.5353073338619" y="539.70375283916" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="735.5601894549418" y1="530.726146748132" x2="755.5104252127818" y2="530.726146748132" stroke-width="0.997511787892px"/><g class="sch-port" data-schematic-port-id="source_port_6_4__stack1"><rect x="754.5129134248898" y="529.72863496024" width="1.995023575784" height="1.995023575784" opacity="0"/></g><text class="pin-number sch-pin-number" x="745.5353073338619" y="529.72863496024" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="7.481338409189999px" transform="">5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component-overlay sch-component-overlay" x="193.29878147890778" y="380.8500006173589" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 207.9307831396016 435.71314895141893 L 207.9307831396016 413.76788961779494" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 207.9307831396016 402.7952599509829 L 207.9307831396016 380.8500006173589" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 222.56278480029542 413.76788961779494 L 193.29878147890778 413.76788961779494" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 222.56278480029542 402.7952599509829 L 193.29878147890778 402.7952599509829" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="218.44621990362978" y="389.99385867303556" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C1</text><text class="sch-component-text" x="218.44621990362978" y="426.56929089574226" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="207.9307831396016" cy="435.71314895141893" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_8__stack1"><rect class="component-overlay sch-component-overlay" x="160.07718505197116" y="496.0626121188849" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 174.70918671266497 550.9257604529449 L 174.70918671266497 528.9805011193209" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 174.70918671266497 518.0078714525089 L 174.70918671266497 496.0626121188849" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 189.3411883733588 528.9805011193209 L 160.07718505197116 528.9805011193209" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 189.3411883733588 518.0078714525089 L 160.07718505197116 518.0078714525089" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="185.22462347669315" y="505.20647017456156" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C2</text><text class="sch-component-text" x="185.22462347669315" y="541.7819023972683" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="174.70918671266497" cy="550.9257604529449" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_9__stack1"><rect class="component-overlay sch-component-overlay" x="193.29878147890778" y="265.6373891158329" width="29.264003321387634" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 207.9307831396016 320.50053744989293 L 207.9307831396016 298.55527811626894" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 207.9307831396016 287.5826484494569 L 207.9307831396016 265.6373891158329" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 222.56278480029542 298.55527811626894 L 193.29878147890778 298.55527811626894" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 222.56278480029542 287.5826484494569 L 193.29878147890778 287.5826484494569" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="218.44621990362978" y="274.78124717150956" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="8.977606091028px">C_SENSE</text><text class="sch-component-text" x="218.44621990362978" y="311.35667939421626" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="207.9307831396016" cy="320.50053744989293" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_10__stack1"><rect class="component-overlay sch-component-overlay" x="445.95109580857564" y="496.06261211888494" width="14.626515345860412" height="54.863148334059986" fill="transparent"/><path class="sch-component-symbol-path" d="M 453.26435348150585 496.06261211888494 L 453.26435348150585 505.2082989461727" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 453.26435348150585 541.7800736256571 L 453.26435348150585 550.9257604529449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 460.57761115443606 505.2082989461727 L 460.57761115443606 541.7800736256571 L 445.95109580857564 541.7800736256571 L 445.95109580857564 505.2082989461727 L 460.57761115443606 505.2082989461727" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="467.8945263705885" y="508.86401339683226" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RREF</text><text class="sch-component-text" x="467.8945263705885" y="538.1243591749976" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_11__stack1"><rect class="component-overlay sch-component-overlay" x="310.62016781294994" y="627.625706170152" width="54.86314833405993" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 310.62016781294994 634.9389638430821 L 319.7658546402377 634.9389638430821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 356.3376293197221 634.9389638430821 L 365.4833161470099 634.9389638430821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 319.7658546402377 627.625706170152 L 356.3376293197221 627.625706170152 L 356.3376293197221 642.2522215160122 L 319.7658546402377 642.2522215160122 L 319.7658546402377 627.625706170152" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="338.0517419799799" y="620.3087909539994" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">R_TOP</text><text class="sch-component-text" x="338.0517419799799" y="649.5691367321648" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="365.4833161470099" cy="634.9389638430821" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_12__stack1"><rect class="component-overlay sch-component-overlay" x="310.81541328897356" y="301.82435616668164" width="14.626515345860412" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 318.12867096190377 301.82435616668164 L 318.12867096190377 310.97004299396946" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 318.12867096190377 347.54181767345386 L 318.12867096190377 356.6875045007417" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 325.44192863483397 310.97004299396946 L 325.44192863483397 347.54181767345386 L 310.81541328897356 347.54181767345386 L 310.81541328897356 310.97004299396946 L 325.44192863483397 310.97004299396946" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="332.75884385098647" y="314.62575744462896" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">R_BOT</text><text class="sch-component-text" x="332.75884385098647" y="343.88610322279436" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_13__stack1"><rect class="component-overlay sch-component-overlay" x="425.8327793144759" y="595.455951010635" width="54.86314833405993" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 480.6959276485358 602.7692086835651 L 471.55024082124805 602.7692086835651" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 434.97846614176365 602.7692086835651 L 425.8327793144759 602.7692086835651" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 471.55024082124805 610.0824663564953 L 434.97846614176365 610.0824663564953 L 434.97846614176365 595.455951010635 L 471.55024082124805 595.455951010635 L 471.55024082124805 610.0824663564953" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="453.26435348150585" y="588.1390357944824" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_TOP</text><text class="sch-component-text" x="453.26435348150585" y="617.3993815726478" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="425.8327793144759" cy="602.7692086835651" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_14__stack1"><rect class="component-overlay sch-component-overlay" x="994.663876359889" y="409.22495410133155" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 994.663876359889 416.53821177426175 L 1003.8095631871768 416.53821177426175" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1040.3813378666612 416.53821177426175 L 1049.527024693949 416.53821177426175" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1003.8095631871768 409.22495410133155 L 1040.3813378666612 409.22495410133155 L 1040.3813378666612 423.85146944719196 L 1003.8095631871768 423.85146944719196 L 1003.8095631871768 409.22495410133155" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1022.095450526919" y="401.9080388851791" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_100</text><text class="sch-component-text" x="1022.095450526919" y="431.1683846633444" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="994.663876359889" cy="416.53821177426175" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_15__stack1"><rect class="component-overlay sch-component-overlay" x="994.663876359889" y="310.5256165795511" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 994.663876359889 317.83887425248133 L 1003.8095631871768 317.83887425248133" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1040.3813378666612 317.83887425248133 L 1049.527024693949 317.83887425248133" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1003.8095631871768 310.5256165795511 L 1040.3813378666612 310.5256165795511 L 1040.3813378666612 325.15213192541154 L 1003.8095631871768 325.15213192541154 L 1003.8095631871768 310.5256165795511" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1022.095450526919" y="303.2087013633987" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_80</text><text class="sch-component-text" x="1022.095450526919" y="332.469047141564" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_16__stack1"><rect class="component-overlay sch-component-overlay" x="994.663876359889" y="211.82627905777073" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 994.663876359889 219.13953673070094 L 1003.8095631871768 219.13953673070094" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1040.3813378666612 219.13953673070094 L 1049.527024693949 219.13953673070094" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1003.8095631871768 211.82627905777073 L 1040.3813378666612 211.82627905777073 L 1040.3813378666612 226.45279440363115 L 1003.8095631871768 226.45279440363115 L 1003.8095631871768 211.82627905777073" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1022.095450526919" y="204.50936384161827" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_60</text><text class="sch-component-text" x="1022.095450526919" y="233.7697096197836" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_17__stack1"><rect class="component-overlay sch-component-overlay" x="994.663876359889" y="113.12694153599033" width="54.86314833406004" height="14.626515345860383" fill="transparent"/><path class="sch-component-symbol-path" d="M 994.663876359889 120.44019920892052 L 1003.8095631871768 120.44019920892052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1040.3813378666612 120.44019920892052 L 1049.527024693949 120.44019920892052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1003.8095631871768 113.12694153599033 L 1040.3813378666612 113.12694153599033 L 1040.3813378666612 127.75345688185071 L 1003.8095631871768 127.75345688185071 L 1003.8095631871768 113.12694153599033" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="1022.095450526919" y="105.81002631983786" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RTH_40</text><text class="sch-component-text" x="1022.095450526919" y="135.0703720980032" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="1049.527024693949" cy="120.44019920892052" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_18__stack1"><rect class="component-overlay sch-component-overlay" x="373.15990003222356" y="381.0993785643319" width="14.626515345860412" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 380.47315770515377 381.0993785643319 L 380.47315770515377 390.2450653916197" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 380.47315770515377 426.8168400711041 L 380.47315770515377 435.96252689839184" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 387.786415378084 390.2450653916197 L 387.786415378084 426.8168400711041 L 373.15990003222356 426.8168400711041 L 373.15990003222356 390.2450653916197 L 387.786415378084 390.2450653916197" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="395.1033305942364" y="393.90077984227923" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RTH_20</text><text class="sch-component-text" x="395.1033305942364" y="423.1611256204445" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_19__stack1"><rect class="component-overlay sch-component-overlay" x="486.70816311565176" y="311.91322530233396" width="54.863148334059986" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 541.5713114497117 319.22648297526416 L 532.4256246224239 319.22648297526416" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 495.8538499429395 319.22648297526416 L 486.70816311565176 319.22648297526416" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 532.4256246224239 326.53974064819437 L 495.8538499429395 326.53974064819437 L 495.8538499429395 311.91322530233396 L 532.4256246224239 311.91322530233396 L 532.4256246224239 326.53974064819437" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="514.1397372826817" y="304.5963100861815" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS1</text><text class="sch-component-text" x="514.1397372826817" y="333.8566558643468" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_20__stack1"><rect class="component-overlay sch-component-overlay" x="486.18224248194196" y="65.58214317253758" width="54.863148334059986" height="14.626515345860383" fill="transparent"/><path class="sch-component-symbol-path" d="M 541.0453908160019 72.89540084546778 L 531.8997039887141 72.89540084546778" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 495.3279293092297 72.89540084546778 L 486.18224248194196 72.89540084546778" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 531.8997039887141 80.20865851839797 L 495.3279293092297 80.20865851839797 L 495.3279293092297 65.58214317253758 L 531.8997039887141 65.58214317253758 L 531.8997039887141 80.20865851839797" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="513.6138166489719" y="58.26522795638512" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS2</text><text class="sch-component-text" x="513.6138166489719" y="87.52557373455043" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="486.18224248194196" cy="72.89540084546778" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_21__stack1"><rect class="component-overlay sch-component-overlay" x="638.3027901354719" y="143.88681852205957" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 693.165938469532 151.20007619498978 L 684.0202516422441 151.20007619498978" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 647.4484769627597 151.20007619498978 L 638.3027901354719 151.20007619498978" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 684.0202516422441 158.51333386791998 L 647.4484769627597 158.51333386791998 L 647.4484769627597 143.88681852205957 L 684.0202516422441 143.88681852205957 L 684.0202516422441 158.51333386791998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="665.734364302502" y="136.5699033059071" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS3</text><text class="sch-component-text" x="665.734364302502" y="165.83024908407245" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="638.3027901354719" cy="151.20007619498978" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_22__stack1"><rect class="component-overlay sch-component-overlay" x="899.8189592994358" y="344.1642776725642" width="14.626515345860298" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 907.132216972366 344.1642776725642 L 907.132216972366 353.30996449985196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 907.132216972366 389.88173917933636 L 907.132216972366 399.0274260066241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 914.4454746452961 353.30996449985196 L 914.4454746452961 389.88173917933636 L 899.8189592994358 389.88173917933636 L 899.8189592994358 353.30996449985196 L 914.4454746452961 353.30996449985196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="921.7623898614487" y="356.9656789505115" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RHYS4</text><text class="sch-component-text" x="921.7623898614487" y="386.2260247286768" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_23__stack1"><rect class="component-overlay sch-component-overlay" x="817.8549119560319" y="612.164273457826" width="54.86314833406004" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 817.8549119560319 619.4775311307561 L 827.0005987833197 619.4775311307561" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 863.5723734628041 619.4775311307561 L 872.7180602900919 619.4775311307561" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 827.0005987833197 612.164273457826 L 863.5723734628041 612.164273457826 L 863.5723734628041 626.7907888036863 L 827.0005987833197 626.7907888036863 L 827.0005987833197 612.164273457826" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="845.2864861230619" y="604.8473582416734" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RHYS5</text><text class="sch-component-text" x="845.2864861230619" y="634.1077040198388" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><circle class="component-pin sch-component-pin" cx="872.7180602900919" cy="619.4775311307561" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_24__stack1"><rect class="component-overlay sch-component-overlay" x="596.6025405200315" y="302.29594732086395" width="14.626515345860298" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 603.9157981929617 357.159095654924 L 603.9157981929617 348.01340882763617" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 603.9157981929617 311.44163414815176 L 603.9157981929617 302.29594732086395" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.6025405200315 348.01340882763617 L 596.6025405200315 311.44163414815176 L 611.2290558658918 311.44163414815176 L 611.2290558658918 348.01340882763617 L 596.6025405200315 348.01340882763617" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="618.5459710820444" y="315.09734859881127" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU1</text><text class="sch-component-text" x="618.5459710820444" y="344.35769437697667" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_25__stack1"><rect class="component-overlay sch-component-overlay" x="596.0766198863217" y="34.96278816580799" width="14.626515345860298" height="54.863148334060014" fill="transparent"/><path class="sch-component-symbol-path" d="M 603.3898775592519 34.96278816580799 L 603.3898775592519 44.1084749930958" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 603.3898775592519 80.6802496725802 L 603.3898775592519 89.825936499868" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 610.703135232182 44.1084749930958 L 610.703135232182 80.6802496725802 L 596.0766198863217 80.6802496725802 L 596.0766198863217 44.1084749930958 L 610.703135232182 44.1084749930958" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="618.0200504483346" y="47.76418944375533" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU2</text><text class="sch-component-text" x="618.0200504483346" y="77.02453522192067" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_26__stack1"><rect class="component-overlay sch-component-overlay" x="748.1971675398518" y="113.26746351532998" width="14.626515345860298" height="54.863148334059986" fill="transparent"/><path class="sch-component-symbol-path" d="M 755.5104252127819 113.26746351532998 L 755.5104252127819 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 755.5104252127819 158.98492502210217 L 755.5104252127819 168.13061184938996" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 762.8236828857121 122.41315034261777 L 762.8236828857121 158.98492502210217 L 748.1971675398518 158.98492502210217 L 748.1971675398518 122.41315034261777 L 762.8236828857121 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="770.1405981018646" y="126.0688647932773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU3</text><text class="sch-component-text" x="770.1405981018646" y="155.32921057144264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_27__stack1"><rect class="component-overlay sch-component-overlay" x="879.700642805336" y="285.00757176901374" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 934.563791139396 292.32082944194394 L 925.4181043121082 292.32082944194394" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 888.8463296326238 292.32082944194394 L 879.700642805336 292.32082944194394" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 925.4181043121082 299.63408711487415 L 888.8463296326238 299.63408711487415 L 888.8463296326238 285.00757176901374 L 925.4181043121082 285.00757176901374 L 925.4181043121082 299.63408711487415" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="907.132216972366" y="277.6906565528613" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RPU4</text><text class="sch-component-text" x="907.132216972366" y="306.9510023310266" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_28__stack1"><rect class="component-overlay sch-component-overlay" x="748.1971675398516" y="608.033310309762" width="14.626515345860298" height="54.86314833406004" fill="transparent"/><path class="sch-component-symbol-path" d="M 755.5104252127818 662.896458643822 L 755.5104252127818 653.7507718165342" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 755.5104252127818 617.1789971370498 L 755.5104252127818 608.033310309762" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 748.1971675398516 653.7507718165342 L 748.1971675398516 617.1789971370498 L 762.823682885712 617.1789971370498 L 762.823682885712 653.7507718165342 L 748.1971675398516 653.7507718165342" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="770.1405981018645" y="620.8347115877093" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RPU5</text><text class="sch-component-text" x="770.1405981018645" y="650.0950573658747" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_29__stack1"><rect class="component-overlay sch-component-overlay" x="565.7338075663289" y="223.75113024462723" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 601.219365798561 240.45021647155997 L 587.1295117945865 247.75606669584303" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 600.6975193539693 240.45021647155997 L 622.0932235822269 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 587.1295117945865 233.66621269186854 L 601.219365798561 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 587.1295117945865 247.75606669584303 L 587.1295117945865 233.66621269186854" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 601.219365798561 233.66621269186854 L 601.219365798561 247.75606669584303" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 587.1295117945865 240.45021647155997 L 565.7338075663289 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 602.2630586877442 225.31666957840218 L 606.959676689069 224.79482313381052 L 605.3941373552941 229.49144113513535" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 598.088287131011 231.57882691350196 L 598.6101335756027 231.57882691350196 L 604.8722909107025 226.36036246758547 L 604.8722909107025 226.36036246758547" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 592.8698226850946 224.27297668921886 L 598.088287131011 223.75113024462723 L 596.0009013526445 228.44774824595206" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 588.6950511283615 230.53513402431867 L 589.216897572953 230.013287579727 L 596.0009013526445 225.31666957840218 L 596.0009013526445 225.31666957840218" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="593.9135155742779" y="251.4089918079846" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="593.9135155742779" y="219.0545122433024" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_30__stack1"><rect class="component-overlay sch-component-overlay" x="477.20463639091383" y="233.13695879862976" width="54.86314833406004" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 477.20463639091383 240.45021647155997 L 486.35032321820165 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 522.9220978976861 240.45021647155997 L 532.0677847249739 240.45021647155997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 486.35032321820165 233.13695879862976 L 522.9220978976861 233.13695879862976 L 522.9220978976861 247.76347414449017 L 486.35032321820165 247.76347414449017 L 486.35032321820165 233.13695879862976" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="504.63621055794385" y="225.8200435824773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED1</text><text class="sch-component-text" x="504.63621055794385" y="255.08038936064264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_31__stack1"><rect class="component-overlay sch-component-overlay" x="548.2773512782189" y="134.97258112223926" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 583.762909510451 151.671667349172 L 569.6730555064765 158.97751757345506" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 583.2410630658593 151.671667349172 L 604.6367672941169 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 569.6730555064765 144.88766356948057 L 583.762909510451 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 569.6730555064765 158.97751757345506 L 569.6730555064765 144.88766356948057" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 583.762909510451 144.88766356948057 L 583.762909510451 158.97751757345506" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 569.6730555064765 151.671667349172 L 548.2773512782189 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 584.8066023996342 136.5381204560142 L 589.5032204009591 136.01627401142255 L 587.9376810671841 140.71289201274737" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 580.6318308429011 142.80027779111398 L 581.1536772874928 142.80027779111398 L 587.4158346225926 137.5818133451975 L 587.4158346225926 137.5818133451975" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 575.4133663969847 135.4944275668309 L 580.6318308429011 134.97258112223926 L 578.5444450645346 139.66919912356408" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 571.2385948402515 141.7565849019307 L 571.7604412848431 141.23473845733903 L 578.5444450645346 136.5381204560142 L 578.5444450645346 136.5381204560142" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="576.4570592861679" y="162.63044268559662" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="576.4570592861679" y="130.27596312091444" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_32__stack1"><rect class="component-overlay sch-component-overlay" x="459.74818010280393" y="144.3584096762418" width="54.863148334059986" height="14.626515345860412" fill="transparent"/><path class="sch-component-symbol-path" d="M 459.74818010280393 151.671667349172 L 468.8938669300917 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 505.4656416095761 151.671667349172 L 514.6113284368639 151.671667349172" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 468.8938669300917 144.3584096762418 L 505.4656416095761 144.3584096762418 L 505.4656416095761 158.9849250221022 L 468.8938669300917 158.9849250221022 L 468.8938669300917 144.3584096762418" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="487.1797542698339" y="137.04149446008933" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED2</text><text class="sch-component-text" x="487.1797542698339" y="166.30184023825467" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_33__stack1"><rect class="component-overlay sch-component-overlay" x="789.1764480541369" y="213.77601236570726" width="56.35941601589798" height="24.004936451215798" fill="transparent"/><path class="sch-component-symbol-path" d="M 810.0503058378029 230.47509859264 L 824.1401598417773 237.78094881692306" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.5721522823945 230.47509859264 L 789.1764480541369 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417773 223.69109481294856 L 810.0503058378029 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417773 237.78094881692306 L 824.1401598417773 223.69109481294856" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.0503058378029 223.69109481294856 L 810.0503058378029 237.78094881692306" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417773 230.47509859264 L 845.5358640700349 230.47509859264" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 809.0066129486196 215.3415516994822 L 804.3099949472947 214.81970525489055 L 805.8755342810697 219.5163232562154" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 813.1813845053528 221.60370903458198 L 812.6595380607611 221.60370903458198 L 806.3973807256613 216.3852445886655 L 806.3973807256613 216.3852445886655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 818.3998489512692 214.29785881029892 L 813.1813845053528 213.77601236570726 L 815.2687702837193 218.47263036703208" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 822.5746205080023 220.5600161453987 L 822.0527740634108 220.03816970080703 L 815.2687702837193 215.3415516994822 L 815.2687702837193 215.3415516994822" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="817.3561560620859" y="241.4338739290646" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="817.3561560620859" y="209.07939436438244" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED3</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_34__stack1"><rect class="component-overlay sch-component-overlay" x="836.9757166622398" y="113.26746351532996" width="14.626515345860298" height="54.86314833406003" fill="transparent"/><path class="sch-component-symbol-path" d="M 844.28897433517 113.26746351532996 L 844.28897433517 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 844.28897433517 158.98492502210217 L 844.28897433517 168.13061184939" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 851.6022320081001 122.41315034261777 L 851.6022320081001 158.98492502210217 L 836.9757166622398 158.98492502210217 L 836.9757166622398 122.41315034261777 L 851.6022320081001 122.41315034261777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="858.9191472242527" y="126.0688647932773" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RLED3</text><text class="sch-component-text" x="858.9191472242527" y="155.32921057144264" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_35__stack1"><rect class="component-overlay sch-component-overlay" x="800.6570698351532" y="291.073939707079" width="24.004936451215826" height="56.35941601589798" fill="transparent"/><path class="sch-component-symbol-path" d="M 817.3561560620859 311.9477974907449 L 824.662006286369 326.0376514947194" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 817.3561560620859 312.46964393533653 L 817.3561560620859 291.073939707079" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.5721522823945 326.0376514947194 L 817.3561560620859 311.9477974907449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.662006286369 326.0376514947194 L 810.5721522823945 326.0376514947194" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.5721522823945 311.9477974907449 L 824.662006286369 311.9477974907449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 817.3561560620859 326.0376514947194 L 817.3561560620859 347.43335572297696" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 802.2226091689281 310.9041046015616 L 801.7007627243365 306.2074866002368 L 806.3973807256613 307.7730259340117" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 808.4847665040279 315.0788761582948 L 808.4847665040279 314.5570297137031 L 803.2663020581114 308.2948723786034 L 803.2663020581114 308.2948723786034" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 801.1789162797448 320.2973406042113 L 800.6570698351532 315.0788761582948 L 805.353687836478 317.1662619366614" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 807.4410736148446 324.47211216094445 L 806.919227170253 323.9502657163528 L 802.2226091689281 317.1662619366614 L 802.2226091689281 317.1662619366614" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="828.3149313985106" y="330.21242305145256" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="828.3149313985106" y="308.2948723786034" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">LED4</text><circle class="component-pin sch-component-pin" cx="817.3561560620859" cy="291.073939707079" r="0.997511787892px" stroke-width="0.997511787892px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_36__stack1"><rect class="component-overlay sch-component-overlay" x="810.0428983891558" y="381.099378564332" width="14.626515345860298" height="54.86314833405993" fill="transparent"/><path class="sch-component-symbol-path" d="M 817.3561560620859 435.96252689839196 L 817.3561560620859 426.8168400711042" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 817.3561560620859 390.2450653916198 L 817.3561560620859 381.099378564332" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.0428983891558 426.8168400711042 L 810.0428983891558 390.2450653916198 L 824.6694137350161 390.2450653916198 L 824.6694137350161 426.8168400711042 L 810.0428983891558 426.8168400711042" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="831.9863289511686" y="393.90077984227935" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px">RLED4</text><text class="sch-component-text" x="831.9863289511686" y="423.16112562044464" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="8.977606091028px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_37__stack1"><rect class="component-overlay sch-component-overlay" x="789.1764480541368" y="524.0021784001192" width="56.35941601589798" height="24.004936451215826" fill="transparent"/><path class="sch-component-symbol-path" d="M 810.0503058378027 540.701264627052 L 824.1401598417772 548.007114851335" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.5721522823944 540.701264627052 L 789.1764480541368 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417772 533.9172608473606 L 810.0503058378027 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417772 548.007114851335 L 824.1401598417772 533.9172608473606" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 810.0503058378027 533.9172608473606 L 810.0503058378027 548.007114851335" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 824.1401598417772 540.701264627052 L 845.5358640700348 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 809.0066129486195 525.5677177338941 L 804.3099949472946 525.0458712893026 L 805.8755342810696 529.7424892906273" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 813.1813845053526 531.8298750689939 L 812.659538060761 531.8298750689939 L 806.3973807256612 526.6114106230774 L 806.3973807256612 526.6114106230774" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 818.3998489512691 524.5240248447109 L 813.1813845053526 524.0021784001192 L 815.2687702837192 528.698796401444" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 822.5746205080022 530.7861821798107 L 822.0527740634107 530.264335735219 L 815.2687702837192 525.5677177338941 L 815.2687702837192 525.5677177338941" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-text" x="817.3561560620858" y="551.6600399634766" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text><text class="sch-component-name sch-component-text" x="817.3561560620858" y="519.3055603987943" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">LED5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_38__stack1"><rect class="component-overlay sch-component-overlay" x="909.1272405481498" y="533.3880069541218" width="54.86314833406004" height="14.626515345860298" fill="transparent"/><path class="sch-component-symbol-path" d="M 963.9903888822098 540.701264627052 L 954.844702054922 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 918.2729273754376 540.701264627052 L 909.1272405481498 540.701264627052" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 954.844702054922 548.0145222999821 L 918.2729273754376 548.0145222999821 L 918.2729273754376 533.3880069541218 L 954.844702054922 533.3880069541218 L 954.844702054922 548.0145222999821" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="936.5588147151798" y="526.0710917379693" stroke="rgb(245, 241, 237)" stroke-width="0.997511787892px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="8.977606091028px">RLED5</text><text class="sch-component-text" x="936.5588147151798" y="555.3314375161347" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="338.0517419799799" cy="744.1393398774923" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="338.0517419799799" cy="754.1144577564123" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="437.8029207691799" cy="754.1144577564123" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="437.8029207691799" cy="744.1393398774923" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="146.03072281076993" cy="640.9511993101979" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="146.03072281076993" cy="650.9263171891179" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="245.7819015999699" cy="650.9263171891179" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="245.7819015999699" cy="640.9511993101979" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="289.6724202672179" cy="527.5801480324725" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="389.42359905641797" cy="527.5801480324725" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="323.8371990025189" cy="213.64047753322933" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="423.58837779171887" cy="213.64047753322933" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="515.6088402247558" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="515.6088402247558" cy="612.7443265624851" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="615.3600190139558" cy="607.7567676230251" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="655.7592464235819" cy="230.47509859263997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="655.7592464235819" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="655.7592464235819" cy="250.42533435047997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_3__stack1"><circle cx="655.7592464235819" cy="260.4004522294" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_4__stack1"><circle cx="655.7592464235819" cy="270.37557010831995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_5__stack1"><circle cx="655.7592464235819" cy="280.35068798723995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_6__stack1"><circle cx="655.7592464235819" cy="290.32580586615995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_7__stack1"><circle cx="755.5104252127819" cy="290.32580586615995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_8__stack1"><circle cx="755.5104252127819" cy="280.35068798723995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_9__stack1"><circle cx="755.5104252127819" cy="270.37557010831995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_10__stack1"><circle cx="755.5104252127819" cy="260.40045222939995" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_11__stack1"><circle cx="755.5104252127819" cy="250.42533435047997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_12__stack1"><circle cx="755.5104252127819" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_13__stack1"><circle cx="755.5104252127819" cy="230.47509859263997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="655.7592464235819" cy="525.7385878086719" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="655.7592464235819" cy="535.713705687592" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_2__stack1"><circle cx="655.7592464235819" cy="545.6888235665119" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_3__stack1"><circle cx="755.5104252127818" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_4__stack1"><circle cx="755.5104252127818" cy="530.726146748132" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="207.9307831396016" cy="393.318897966009" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="207.9307831396016" cy="448.18204630006903" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="174.70918671266497" cy="508.5315094675349" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="174.70918671266497" cy="563.394657801595" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="207.9307831396016" cy="278.10628646448293" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="207.9307831396016" cy="332.96943479854303" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="453.26435348150585" cy="508.5315094675349" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="453.26435348150585" cy="563.3946578015949" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="323.08906516159993" cy="634.9389638430821" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="377.9522134956599" cy="634.9389638430821" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="318.12867096190377" cy="314.2932535153317" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="318.12867096190377" cy="369.1564018493917" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="493.16482499718586" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="438.3016766631258" cy="602.7692086835651" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="1007.1327737085389" cy="416.53821177426175" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="1061.995922042599" cy="416.53821177426175" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="1007.1327737085389" cy="317.83887425248133" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="1061.995922042599" cy="317.83887425248133" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="1007.1327737085389" cy="219.13953673070094" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="1061.995922042599" cy="219.13953673070094" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="1007.1327737085389" cy="120.44019920892052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="1061.995922042599" cy="120.44019920892052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="380.47315770515377" cy="393.5682759129819" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="380.47315770515377" cy="448.4314242470419" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="554.0402087983616" cy="319.22648297526416" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="499.1770604643017" cy="319.22648297526416" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="553.5142881646519" cy="72.89540084546778" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="498.6511398305919" cy="72.89540084546778" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="705.634835818182" cy="151.20007619498978" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="650.7716874841219" cy="151.20007619498978" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="907.132216972366" cy="356.63317502121413" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="907.132216972366" cy="411.49632335527417" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="830.3238093046818" cy="619.4775311307561" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="885.1869576387419" cy="619.4775311307561" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="603.9157981929617" cy="369.62799300357403" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="603.9157981929617" cy="314.764844669514" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="603.3898775592519" cy="47.431685514457996" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="603.3898775592519" cy="102.29483384851804" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="755.5104252127819" cy="125.73636086398" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="755.5104252127819" cy="180.59950919803998" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_0__stack1"><circle cx="947.032688488046" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_1__stack1"><circle cx="892.169540153986" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_0__stack1"><circle cx="755.5104252127818" cy="675.365355992472" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_1__stack1"><circle cx="755.5104252127818" cy="620.502207658412" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_0__stack1"><circle cx="566.9806973011939" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_1__stack1"><circle cx="623.3401133170919" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_0__stack1"><circle cx="489.67353373956394" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_1__stack1"><circle cx="544.536682073624" cy="240.45021647155997" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_0__stack1"><circle cx="549.524241013084" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_1__stack1"><circle cx="605.8836570289819" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_0__stack1"><circle cx="472.2170774514539" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_1__stack1"><circle cx="527.0802257855139" cy="151.671667349172" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_0__stack1"><circle cx="846.7827538048999" cy="230.47509859264" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_1__stack1"><circle cx="790.423337789002" cy="230.47509859264" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_0__stack1"><circle cx="844.28897433517" cy="125.73636086398" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_1__stack1"><circle cx="844.28897433517" cy="180.59950919804" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_0__stack1"><circle cx="817.3561560620859" cy="348.6802454578419" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_1__stack1"><circle cx="817.3561560620859" cy="292.32082944194394" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_0__stack1"><circle cx="817.3561560620859" cy="448.43142424704195" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_1__stack1"><circle cx="817.3561560620859" cy="393.568275912982" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_0__stack1"><circle cx="846.7827538048998" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_1__stack1"><circle cx="790.4233377890018" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_0__stack1"><circle cx="976.4592862308598" cy="540.701264627052" r="1.995023575784" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_1__stack1"><circle cx="921.5961378967997" cy="540.701264627052" r="1.995023575784" 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="
|
|
269
|
+
M 328.0766241010599,754.1144577564123
|
|
270
|
+
L 325.3833422737515,759.1020166958723
|
|
271
|
+
L 278.98574397960164,759.1020166958723
|
|
272
|
+
L 278.98574397960164,749.1268988169523
|
|
273
|
+
L 325.3833422737515,749.1268988169523
|
|
274
|
+
Z
|
|
275
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="323.58782105554593" y="754.1144577564123" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="
|
|
276
|
+
M 447.77803864809994,744.1393398774923
|
|
277
|
+
L 450.47132047540833,739.1517809380323
|
|
278
|
+
L 496.8689187695582,739.1517809380323
|
|
279
|
+
L 496.8689187695582,749.1268988169522
|
|
280
|
+
L 450.47132047540833,749.1268988169522
|
|
281
|
+
Z
|
|
282
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="452.2668416936139" y="744.1393398774923" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="
|
|
283
|
+
M 375.4584340259299,525.7385878086719
|
|
284
|
+
L 378.1517158532383,520.751028869212
|
|
285
|
+
L 424.54931414738815,520.751028869212
|
|
286
|
+
L 424.54931414738815,530.7261467481319
|
|
287
|
+
L 378.1517158532383,530.7261467481319
|
|
288
|
+
Z
|
|
289
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="379.94723707144385" y="525.7385878086719" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" x="374.48808697780174" y="445.9376447773119" width="11.970141454704049" height="8.977606091027951" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="M 374.48808697780174 454.91525086833985 L 386.4582284325058 454.91525086833985" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="M 380.47315770515377 454.91525086833985 L 380.47315770515377 445.9376447773119" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" x="380.47315770515377" y="457.4090303380699" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" x="130.070534204498" y="660.9014350680378" width="11.970141454703992" height="8.977606091028065" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="M 130.070534204498 669.8790411590659 L 142.04067565920198 669.8790411590659" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="M 136.05560493184998 669.8790411590659 L 136.05560493184998 660.9014350680378" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" x="136.05560493184998" y="672.3728206287958" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" x="262.7396019941339" y="650.9263171891179" width="11.970141454704049" height="8.977606091028065" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="M 262.7396019941339 659.9039232801459 L 274.70974344883797 659.9039232801459" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="M 268.72467272148594 659.9039232801459 L 268.72467272148594 650.9263171891179" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" x="268.72467272148594" y="662.3977027498759" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="404.1867735172195" y="221.8239107777433" width="11.970141454704049" height="8.977606091028008" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="M 404.1867735172195 230.8015168687713 L 416.1569149719235 230.8015168687713" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="M 410.1718442445715 230.8015168687713 L 410.1718442445715 221.8239107777433" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="410.1718442445715" y="233.2952963385013" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="499.1000201351432" y="622.7693200307997" width="11.970141454704049" height="8.977606091028065" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="M 499.1000201351432 631.7469261218278 L 511.07016158984726 631.7469261218278" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="M 505.08509086249524 631.7469261218278 L 505.08509086249524 622.7693200307997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="505.08509086249524" y="634.2407055915577" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" d="
|
|
290
|
+
M 755.5104252127819,250.42533435047997
|
|
291
|
+
L 758.2037070400903,245.43777541101997
|
|
292
|
+
L 781.1664283973641,245.43777541101997
|
|
293
|
+
L 781.1664283973641,255.41289328993997
|
|
294
|
+
L 758.2037070400903,255.41289328993997
|
|
295
|
+
Z
|
|
296
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" x="759.999228258296" y="250.42533435047997" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" x="589.3748369393693" y="550.7262580953666" width="11.970141454703935" height="8.977606091028065" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="M 589.3748369393693 559.7038641863946 L 601.3449783940732 559.7038641863946" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="M 595.3599076667213 559.7038641863946 L 595.3599076667213 550.7262580953666" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" x="595.3599076667213" y="562.1976436561246" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" x="201.9457124122496" y="435.713148951419" width="11.970141454703992" height="8.977606091027951" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" d="M 201.9457124122496 444.69075504244694 L 213.9158538669536 444.69075504244694" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" d="M 207.9307831396016 444.69075504244694 L 207.9307831396016 435.713148951419" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" x="207.9307831396016" y="447.184534512177" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" x="168.72411598531298" y="550.9257604529449" width="11.970141454703992" height="8.977606091028065" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" d="M 168.72411598531298 559.903366543973 L 180.69425744001697 559.903366543973" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" d="M 174.70918671266497 559.903366543973 L 174.70918671266497 550.9257604529449" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" x="174.70918671266497" y="562.3971460137029" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" x="201.9457124122496" y="320.500537449893" width="11.970141454703992" height="8.977606091027951" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" d="M 201.9457124122496 329.47814354092094 L 213.9158538669536 329.47814354092094" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" d="M 207.9307831396016 329.47814354092094 L 207.9307831396016 320.500537449893" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.997511787892px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" x="207.9307831396016" y="331.971923010651" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="8.977606091028px">XXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_13__stack1" d="
|
|
297
|
+
M 255.7570194788899,486.08749423996494
|
|
298
|
+
L 253.0637376515815,491.0750531794249
|
|
299
|
+
L 206.66613935743163,491.0750531794249
|
|
300
|
+
L 206.66613935743163,481.0999353005049
|
|
301
|
+
L 253.0637376515815,481.09993530050497
|
|
302
|
+
Z
|
|
303
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_13__stack1" x="251.2682164333759" y="486.08749423996494" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_14__stack1" d="
|
|
304
|
+
M 655.7592464235819,250.42533435047997
|
|
305
|
+
L 653.0659645962735,255.41289328993997
|
|
306
|
+
L 606.6683663021236,255.41289328993997
|
|
307
|
+
L 606.6683663021236,245.43777541101997
|
|
308
|
+
L 653.0659645962735,245.43777541101997
|
|
309
|
+
Z
|
|
310
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_14__stack1" x="651.2704433780679" y="250.42533435047997" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_15__stack1" d="
|
|
311
|
+
M 772.3434366334593,501.299549005318
|
|
312
|
+
L 769.6501548061509,506.287107944778
|
|
313
|
+
L 723.252556512001,506.287107944778
|
|
314
|
+
L 723.252556512001,496.31199006585797
|
|
315
|
+
L 769.6501548061509,496.311990065858
|
|
316
|
+
Z
|
|
317
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_15__stack1" x="767.8546335879453" y="501.299549005318" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_16__stack1" d="
|
|
318
|
+
M 185.43689232263705,375.8125660885043
|
|
319
|
+
L 182.74361049532865,380.80012502796427
|
|
320
|
+
L 136.34601220117878,380.80012502796427
|
|
321
|
+
L 136.34601220117878,370.82500714904427
|
|
322
|
+
L 182.74361049532865,370.8250071490443
|
|
323
|
+
Z
|
|
324
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_16__stack1" x="180.94808927712305" y="375.8125660885043" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_17__stack1" d="
|
|
325
|
+
M 152.21529589570048,491.0251775900303
|
|
326
|
+
L 149.52201406839208,496.01273652949027
|
|
327
|
+
L 103.1244157742422,496.01273652949027
|
|
328
|
+
L 103.1244157742422,486.03761865057027
|
|
329
|
+
L 149.52201406839208,486.0376186505703
|
|
330
|
+
Z
|
|
331
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_17__stack1" x="147.72649285018647" y="491.0251775900303" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_18__stack1" d="
|
|
332
|
+
M 593.8908047246471,362.1965301837786
|
|
333
|
+
L 591.1975228973387,367.18408912323855
|
|
334
|
+
L 544.7999246031887,367.18408912323855
|
|
335
|
+
L 544.7999246031887,357.20897124431855
|
|
336
|
+
L 591.1975228973387,357.2089712443186
|
|
337
|
+
Z
|
|
338
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_18__stack1" x="589.402001679133" y="362.1965301837786" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_19__stack1" d="
|
|
339
|
+
M 593.3648840909373,29.92535363695339
|
|
340
|
+
L 590.6716022636289,34.91291257641339
|
|
341
|
+
L 544.2740039694789,34.91291257641338
|
|
342
|
+
L 544.2740039694789,24.937794697493384
|
|
343
|
+
L 590.6716022636289,24.937794697493388
|
|
344
|
+
Z
|
|
345
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_19__stack1" x="588.8760810454232" y="29.92535363695339" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_20__stack1" d="
|
|
346
|
+
M 755.5104252127819,103.29234563640998
|
|
347
|
+
L 752.8171433854735,108.27990457586998
|
|
348
|
+
L 706.4195450913236,108.27990457586996
|
|
349
|
+
L 706.4195450913236,98.30478669694998
|
|
350
|
+
L 752.8171433854735,98.30478669694998
|
|
351
|
+
Z
|
|
352
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_20__stack1" x="751.0216221672679" y="103.29234563640998" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_21__stack1" d="
|
|
353
|
+
M 947.7309467395703,292.32082944194394
|
|
354
|
+
L 950.4242285668787,287.33327050248397
|
|
355
|
+
L 996.8218268610286,287.33327050248397
|
|
356
|
+
L 996.8218268610286,297.3083883814039
|
|
357
|
+
L 950.4242285668787,297.3083883814039
|
|
358
|
+
Z
|
|
359
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_21__stack1" x="952.2197497850843" y="292.32082944194394" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_22__stack1" d="
|
|
360
|
+
M 745.4854317444672,667.9338931726766
|
|
361
|
+
L 742.7921499171588,672.9214521121365
|
|
362
|
+
L 696.3945516230089,672.9214521121365
|
|
363
|
+
L 696.3945516230089,662.9463342332166
|
|
364
|
+
L 742.7921499171588,662.9463342332166
|
|
365
|
+
Z
|
|
366
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_22__stack1" x="740.9966286989531" y="667.9338931726766" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_23__stack1" d="
|
|
367
|
+
M 449.7730622238839,151.671667349172
|
|
368
|
+
L 447.07978039657553,156.659226288632
|
|
369
|
+
L 400.68218210242566,156.659226288632
|
|
370
|
+
L 400.68218210242566,146.684108409712
|
|
371
|
+
L 447.07978039657553,146.684108409712
|
|
372
|
+
Z
|
|
373
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_23__stack1" x="445.28425917836995" y="151.671667349172" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_24__stack1" d="
|
|
374
|
+
M 318.12867096190377,279.3179964523684
|
|
375
|
+
L 315.43538913459537,284.30555539182836
|
|
376
|
+
L 257.32035237200745,284.30555539182836
|
|
377
|
+
L 257.32035237200745,274.33043751290836
|
|
378
|
+
L 315.43538913459537,274.3304375129084
|
|
379
|
+
Z
|
|
380
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_24__stack1" x="313.6398679163898" y="279.3179964523684" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_25__stack1" d="
|
|
381
|
+
M 760.6289075744028,290.32580586615995
|
|
382
|
+
L 765.6164665138627,293.01908769346835
|
|
383
|
+
L 765.6164665138627,351.13412445605627
|
|
384
|
+
L 755.6413486349428,351.13412445605627
|
|
385
|
+
L 755.6413486349428,293.01908769346835
|
|
386
|
+
Z
|
|
387
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_25__stack1" x="760.6289075744028" y="294.81460891167393" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(90 760.6289075744028 294.81460891167393)">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_26__stack1" d="
|
|
388
|
+
M 655.7592464235819,545.6888235665119
|
|
389
|
+
L 653.0659645962735,550.6763825059719
|
|
390
|
+
L 594.9509278336856,550.6763825059719
|
|
391
|
+
L 594.9509278336856,540.701264627052
|
|
392
|
+
L 653.0659645962735,540.701264627052
|
|
393
|
+
Z
|
|
394
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_26__stack1" x="651.2704433780679" y="545.6888235665119" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_27__stack1" d="
|
|
395
|
+
M 365.4833161470099,634.9389638430821
|
|
396
|
+
L 368.17659797431827,629.9514049036221
|
|
397
|
+
L 426.2916347369062,629.9514049036221
|
|
398
|
+
L 426.2916347369062,639.9265227825421
|
|
399
|
+
L 368.17659797431827,639.9265227825421
|
|
400
|
+
Z
|
|
401
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_27__stack1" x="369.97211919252385" y="634.9389638430821" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_28__stack1" d="
|
|
402
|
+
M 498.15238393664583,602.7692086835651
|
|
403
|
+
L 493.16482499718586,600.0759268562567
|
|
404
|
+
L 493.16482499718586,582.971924733202
|
|
405
|
+
L 503.1399428761058,582.971924733202
|
|
406
|
+
L 503.1399428761058,600.0759268562567
|
|
407
|
+
Z
|
|
408
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_28__stack1" x="498.15238393664583" y="598.2804056380511" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(-90 498.15238393664583 598.2804056380511)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_29__stack1" d="
|
|
409
|
+
M 630.1980068588495,191.07338297090598
|
|
410
|
+
L 632.8912886861578,186.08582403144598
|
|
411
|
+
L 732.0173600882788,186.08582403144598
|
|
412
|
+
L 732.0173600882788,196.06094191036598
|
|
413
|
+
L 632.8912886861578,196.06094191036598
|
|
414
|
+
Z
|
|
415
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_29__stack1" x="634.6868099043635" y="191.07338297090598" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_30__stack1" d="
|
|
416
|
+
M 638.9262350029044,240.45021647155997
|
|
417
|
+
L 643.9137939423644,243.14349829886837
|
|
418
|
+
L 643.9137939423644,260.2475004219232
|
|
419
|
+
L 633.9386760634444,260.2475004219232
|
|
420
|
+
L 633.9386760634444,243.14349829886837
|
|
421
|
+
Z
|
|
422
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_30__stack1" x="638.9262350029044" y="244.93901951707397" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(90 638.9262350029044 244.93901951707397)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_31__stack1" d="
|
|
423
|
+
M 655.7592464235819,270.37557010831995
|
|
424
|
+
L 653.0659645962735,275.3631290477799
|
|
425
|
+
L 618.3858047705617,275.3631290477799
|
|
426
|
+
L 618.3858047705617,265.3880111688599
|
|
427
|
+
L 653.0659645962735,265.38801116886
|
|
428
|
+
Z
|
|
429
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_31__stack1" x="651.2704433780679" y="270.37557010831995" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_32__stack1" d="
|
|
430
|
+
M 1049.527024693949,120.44019920892052
|
|
431
|
+
L 1052.2203065212575,115.45264026946052
|
|
432
|
+
L 1086.9004663469693,115.45264026946052
|
|
433
|
+
L 1086.9004663469693,125.42775814838052
|
|
434
|
+
L 1052.2203065212575,125.42775814838052
|
|
435
|
+
Z
|
|
436
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_32__stack1" x="1054.015827739463" y="120.44019920892052" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_33__stack1" d="
|
|
437
|
+
M 380.47315770515377,350.16293076979804
|
|
438
|
+
L 383.16643953246216,345.17537183033807
|
|
439
|
+
L 417.84659935817405,345.17537183033807
|
|
440
|
+
L 417.84659935817405,355.150489709258
|
|
441
|
+
L 383.16643953246216,355.150489709258
|
|
442
|
+
Z
|
|
443
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_33__stack1" x="384.96196075066774" y="350.16293076979804" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_34__stack1" d="
|
|
444
|
+
M 655.7592464235819,290.32580586615995
|
|
445
|
+
L 653.0659645962735,295.3133648056199
|
|
446
|
+
L 618.3858047705617,295.3133648056199
|
|
447
|
+
L 618.3858047705617,285.3382469266999
|
|
448
|
+
L 653.0659645962735,285.3382469267
|
|
449
|
+
Z
|
|
450
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_34__stack1" x="651.2704433780679" y="290.32580586615995" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_35__stack1" d="
|
|
451
|
+
M 1059.502142572869,219.13953673070094
|
|
452
|
+
L 1062.1954244001774,214.15197779124094
|
|
453
|
+
L 1096.8755842258893,214.15197779124094
|
|
454
|
+
L 1096.8755842258893,224.12709567016094
|
|
455
|
+
L 1062.1954244001774,224.12709567016094
|
|
456
|
+
Z
|
|
457
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_35__stack1" x="1063.990945618383" y="219.13953673070094" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_36__stack1" d="
|
|
458
|
+
M 486.1822424819419,72.89540084546778
|
|
459
|
+
L 483.4889606546335,77.88295978492778
|
|
460
|
+
L 448.8088008289216,77.88295978492778
|
|
461
|
+
L 448.8088008289216,67.90784190600777
|
|
462
|
+
L 483.4889606546335,67.90784190600777
|
|
463
|
+
Z
|
|
464
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_36__stack1" x="481.6934394364279" y="72.89540084546778" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_37__stack1" d="
|
|
465
|
+
M 755.5104252127819,280.35068798723995
|
|
466
|
+
L 758.2037070400903,275.36312904778
|
|
467
|
+
L 792.8838668658021,275.36312904778
|
|
468
|
+
L 792.8838668658021,285.3382469266999
|
|
469
|
+
L 758.2037070400903,285.3382469266999
|
|
470
|
+
Z
|
|
471
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_37__stack1" x="759.999228258296" y="280.35068798723995" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_38__stack1" d="
|
|
472
|
+
M 1059.502142572869,317.83887425248133
|
|
473
|
+
L 1062.1954244001774,312.85131531302136
|
|
474
|
+
L 1096.8755842258893,312.85131531302136
|
|
475
|
+
L 1096.8755842258893,322.8264331919413
|
|
476
|
+
L 1062.1954244001774,322.8264331919413
|
|
477
|
+
Z
|
|
478
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_38__stack1" x="1063.990945618383" y="317.83887425248133" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_39__stack1" d="
|
|
479
|
+
M 638.3027901354719,151.20007619498978
|
|
480
|
+
L 635.6095083081635,156.18763513444978
|
|
481
|
+
L 600.9293484824517,156.18763513444978
|
|
482
|
+
L 600.9293484824517,146.21251725552978
|
|
483
|
+
L 635.6095083081635,146.21251725552978
|
|
484
|
+
Z
|
|
485
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_39__stack1" x="633.8139870899579" y="151.20007619498978" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_40__stack1" d="
|
|
486
|
+
M 868.7280131385239,260.40045222939995
|
|
487
|
+
L 871.4212949658323,255.41289328993994
|
|
488
|
+
L 906.1014547915441,255.41289328993994
|
|
489
|
+
L 906.1014547915441,265.3880111688599
|
|
490
|
+
L 871.4212949658323,265.3880111688599
|
|
491
|
+
Z
|
|
492
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_40__stack1" x="873.216816184038" y="260.40045222939995" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_41__stack1" d="
|
|
493
|
+
M 1059.502142572869,416.53821177426175
|
|
494
|
+
L 1062.1954244001774,411.5506528348018
|
|
495
|
+
L 1096.8755842258893,411.5506528348018
|
|
496
|
+
L 1096.8755842258893,421.5257707137217
|
|
497
|
+
L 1062.1954244001774,421.5257707137217
|
|
498
|
+
Z
|
|
499
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_41__stack1" x="1063.990945618383" y="416.53821177426175" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_42__stack1" d="
|
|
500
|
+
M 755.5104252127819,240.45021647155997
|
|
501
|
+
L 758.2037070400903,235.46265753209997
|
|
502
|
+
L 857.3297784422114,235.46265753209997
|
|
503
|
+
L 857.3297784422114,245.43777541101997
|
|
504
|
+
L 758.2037070400903,245.43777541101997
|
|
505
|
+
Z
|
|
506
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_42__stack1" x="759.999228258296" y="240.45021647155997" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXXXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_43__stack1" d="
|
|
507
|
+
M 817.3561560620859,291.073939707079
|
|
508
|
+
L 812.3685971226259,288.3806578797706
|
|
509
|
+
L 812.3685971226259,271.27665575671574
|
|
510
|
+
L 822.3437150015459,271.27665575671574
|
|
511
|
+
L 822.3437150015459,288.3806578797706
|
|
512
|
+
Z
|
|
513
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_43__stack1" x="817.3561560620859" y="286.585136661565" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(-90 817.3561560620859 286.585136661565)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_44__stack1" d="
|
|
514
|
+
M 755.5104252127819,183.71673353520248
|
|
515
|
+
L 758.2037070400903,178.72917459574248
|
|
516
|
+
L 775.3077091631451,178.72917459574248
|
|
517
|
+
L 775.3077091631451,188.70429247466248
|
|
518
|
+
L 758.2037070400903,188.70429247466248
|
|
519
|
+
Z
|
|
520
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_44__stack1" x="759.999228258296" y="183.71673353520248" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_45__stack1" d="
|
|
521
|
+
M 655.7592464235819,525.7385878086719
|
|
522
|
+
L 653.0659645962735,530.7261467481319
|
|
523
|
+
L 612.5270855363426,530.7261467481319
|
|
524
|
+
L 612.5270855363426,520.751028869212
|
|
525
|
+
L 653.0659645962735,520.751028869212
|
|
526
|
+
Z
|
|
527
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_45__stack1" x="651.2704433780679" y="525.7385878086719" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_46__stack1" d="
|
|
528
|
+
M 425.83277931447583,602.7692086835651
|
|
529
|
+
L 423.13949748716743,607.7567676230251
|
|
530
|
+
L 382.60061842723655,607.7567676230251
|
|
531
|
+
L 382.60061842723655,597.7816497441052
|
|
532
|
+
L 423.13949748716743,597.7816497441052
|
|
533
|
+
Z
|
|
534
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_46__stack1" x="421.34397626896185" y="602.7692086835651" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_47__stack1" d="
|
|
535
|
+
M 994.663876359889,416.53821177426175
|
|
536
|
+
L 991.9705945325805,421.5257707137217
|
|
537
|
+
L 951.4317154726497,421.5257707137217
|
|
538
|
+
L 951.4317154726497,411.5506528348017
|
|
539
|
+
L 991.9705945325805,411.5506528348018
|
|
540
|
+
Z
|
|
541
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_47__stack1" x="990.1750733143749" y="416.53821177426175" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_48__stack1" d="
|
|
542
|
+
M 872.7180602900919,619.4775311307561
|
|
543
|
+
L 875.4113421174003,614.4899721912961
|
|
544
|
+
L 915.9502211773312,614.4899721912961
|
|
545
|
+
L 915.9502211773312,624.4650900702161
|
|
546
|
+
L 875.4113421174003,624.4650900702161
|
|
547
|
+
Z
|
|
548
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_48__stack1" x="877.2068633356059" y="619.4775311307561" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_49__stack1" d="
|
|
549
|
+
M 755.5104252127818,591.2002988890844
|
|
550
|
+
L 758.2037070400902,586.2127399496244
|
|
551
|
+
L 775.307709163145,586.2127399496244
|
|
552
|
+
L 775.307709163145,596.1878578285443
|
|
553
|
+
L 758.2037070400902,596.1878578285443
|
|
554
|
+
Z
|
|
555
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_49__stack1" x="759.9992282582958" y="591.2002988890844" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_50__stack1" d="
|
|
556
|
+
M 548.9007961456514,240.45021647155997
|
|
557
|
+
L 543.9132372061914,237.75693464425157
|
|
558
|
+
L 543.9132372061914,220.65293252119676
|
|
559
|
+
L 553.8883550851114,220.65293252119676
|
|
560
|
+
L 553.8883550851114,237.75693464425157
|
|
561
|
+
Z
|
|
562
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_50__stack1" x="548.9007961456514" y="235.96141342604597" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(-90 548.9007961456514 235.96141342604597)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_51__stack1" d="
|
|
563
|
+
M 531.4443398575414,151.671667349172
|
|
564
|
+
L 526.4567809180814,148.9783855218636
|
|
565
|
+
L 526.4567809180814,131.8743833988088
|
|
566
|
+
L 536.4318987970014,131.8743833988088
|
|
567
|
+
L 536.4318987970014,148.9783855218636
|
|
568
|
+
Z
|
|
569
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_51__stack1" x="531.4443398575414" y="147.182864303658" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(-90 531.4443398575414 147.182864303658)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_52__stack1" d="
|
|
570
|
+
M 844.28897433517,183.71673353520248
|
|
571
|
+
L 846.9822561624784,178.72917459574248
|
|
572
|
+
L 864.0862582855332,178.72917459574248
|
|
573
|
+
L 864.0862582855332,188.70429247466248
|
|
574
|
+
L 846.9822561624784,188.70429247466248
|
|
575
|
+
Z
|
|
576
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_52__stack1" x="848.777777380684" y="183.71673353520248" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_53__stack1" d="
|
|
577
|
+
M 817.3561560620859,364.26636714365446
|
|
578
|
+
L 820.0494378893943,359.2788082041945
|
|
579
|
+
L 837.1534400124491,359.2788082041945
|
|
580
|
+
L 837.1534400124491,369.25392608311444
|
|
581
|
+
L 820.0494378893943,369.25392608311444
|
|
582
|
+
Z
|
|
583
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_53__stack1" x="821.8449591076" y="364.26636714365446" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_54__stack1" d="
|
|
584
|
+
M 877.3315523090923,540.701264627052
|
|
585
|
+
L 872.3439933696324,538.0079827997436
|
|
586
|
+
L 872.3439933696324,520.9039806766888
|
|
587
|
+
L 882.3191112485523,520.9039806766888
|
|
588
|
+
L 882.3191112485523,538.0079827997436
|
|
589
|
+
Z
|
|
590
|
+
" fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.997511787892px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_54__stack1" x="877.3315523090923" y="536.2124615815379" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="8.977606091028px" transform="rotate(-90 877.3315523090923 536.2124615815379)">XX</text><text class="sch-text" x="390.9198667382559" y="770.5734022566303" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 390.9198667382559, 770.5734022566303)">MY_18650_02</text><text class="sch-text" x="384.93479601090394" y="727.6803953772743" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 384.93479601090394, 727.6803953772743)">J_BAT_POS</text><text class="sch-text" x="198.89884756904593" y="667.385261689336" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 198.89884756904593, 667.385261689336)">MY_18650_02</text><text class="sch-text" x="192.91377684169396" y="624.49225480998" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 192.91377684169396, 624.49225480998)">J_BAT_NEG</text><text class="sch-text" x="306.63012066138185" y="542.1975323088899" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 306.63012066138185, 542.1975323088899)">BAT54WS</text><text class="sch-text" x="303.6375852977058" y="509.27964330845396" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 303.6375852977058, 509.27964330845396)">D_PROT</text><text class="sch-text" x="340.79489939668287" y="228.2578618096467" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 340.79489939668287, 228.2578618096467)">BAT54WS</text><text class="sch-text" x="358.7501115787389" y="195.3399728092107" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027997px" transform="rotate(0, 358.7501115787389, 195.3399728092107)">D_SENSE_CLAMP</text><text class="sch-text" x="571.4695003467078" y="629.2032710627032" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 571.4695003467078, 629.2032710627032)">LM4040D25FTA</text><text class="sch-text" x="550.5217528009758" y="586.3102641833472" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 550.5217528009758, 586.3102641833472)">U_REF</text><text class="sch-text" x="702.642300454506" y="306.784750366378" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091028px" transform="rotate(0, 702.642300454506, 306.784750366378)">LMV339IDR</text><text class="sch-text" x="681.6945529087739" y="214.01615409242197" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027997px" transform="rotate(0, 681.6945529087739, 214.01615409242197)">U1</text><text class="sch-text" x="708.6273711818578" y="562.14776806673" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 708.6273711818578, 562.14776806673)">LMV331IDBVR</text><text class="sch-text" x="681.6945529087739" y="509.27964330845396" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="8.977606091027985px" transform="rotate(0, 681.6945529087739, 509.27964330845396)">U2</text><rect class="schematic-box sch-box" x="358.0019777378199" y="766.0845992111163" width="65.83577800087204" height="8.977606091028065" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="358.0019777378199" y="723.1915923317603" width="53.86563654616799" height="8.977606091028065" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="165.98095856860994" y="662.8964586438219" width="65.83577800087204" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="165.98095856861005" y="620.0034517644659" width="53.86563654616799" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="285.68237311564985" y="537.708729263376" width="41.895495091464" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="285.68237311564985" y="504.7908402629399" width="35.910424364111975" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="319.84715185095087" y="223.7690587641327" width="41.895495091464" height="8.977606091028008" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="319.84715185095087" y="190.8511697636967" width="77.80591945557603" height="8.977606091028008" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="535.5590759825959" y="624.7144680171891" width="71.82084872822395" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="535.5590759825959" y="581.8214611378331" width="29.92535363675995" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="675.7094821814219" y="302.295947320864" width="53.86563654616805" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="675.7094821814219" y="209.52735104690797" width="11.970141454704049" height="8.977606091028008" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="675.7094821814219" y="557.658965021216" width="65.83577800087198" height="8.977606091027951" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/><rect class="schematic-box sch-box" x="675.7094821814219" y="504.7908402629399" width="11.970141454703935" height="8.977606091028065" stroke-width="0.997511787892px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="7.980094303136 3.990047151568"/>
|
|
582
591
|
</g>
|
|
583
592
|
</svg>
|