@tscircuit/schematic-trace-solver 0.0.187 → 0.0.189

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.
Files changed (60) hide show
  1. package/dist/index.d.ts +42 -23
  2. package/dist/index.js +1053 -316
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +612 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getAnchoredNetLabelRenderedBounds.ts +13 -0
  6. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  7. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  8. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  9. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  10. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  11. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +94 -16
  12. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  13. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +7 -7
  14. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  15. package/lib/solvers/TraceCleanupSolver/sub-solver/generateLShapeRerouteCandidates.ts +5 -1
  16. package/lib/types/InputProblem.ts +2 -2
  17. package/package.json +1 -1
  18. package/site/SchematicTracePipelineSolver/repro-robot-controller-imu-tof.page.tsx +7 -0
  19. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  20. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  21. package/tests/bug-reports/bug-report-20260730T061837Z/__snapshots__/bug-report-20260730T061837Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  23. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  24. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  25. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  26. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  27. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  28. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  29. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  37. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  38. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  39. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  40. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  41. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  42. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.snap.svg +199 -0
  43. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.source.svg +33 -0
  44. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  45. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  46. package/tests/repros/__snapshots__/rp2040-robot-controller-disconnected-gnd.snap.svg +103 -0
  47. package/tests/repros/assets/repro-robot-controller-imu-tof.input.json +540 -0
  48. package/tests/repros/assets/rp2040-robot-controller.input.json +349 -0
  49. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  50. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  51. package/tests/repros/repro-robot-controller-imu-tof.test.ts +83 -0
  52. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  53. package/tests/repros/rp2040-robot-controller-disconnected-gnd.test.ts +59 -0
  54. package/tests/solvers/InlineNetLabelSolver/get-anchored-net-label-rendered-bounds.test.ts +24 -0
  55. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  56. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  57. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  58. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  59. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  60. package/tests/solvers/TraceCleanupSolver/perpendicular-detours-preserve-endpoints.test.ts +60 -0
@@ -0,0 +1,1107 @@
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
+ <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="25,-6.9 25.3,-6.9 25.3,-7.5 25,-7.5" data-type="line" data-label="" points="433.4707052264354,183.51928531837893 436.20944866486263,183.51928531837893 436.20944866486263,188.9967721952333 433.4707052264354,188.9967721952333" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,1.9000000000000006 1.7,1.9000000000000006 1.7,1.7000000000000004 1.5,1.7000000000000004" data-type="line" data-label="" points="218.93580254963976,103.182811124515 220.76163150859122,103.182811124515 220.76163150859122,105.00864008346645 218.93580254963976,105.00864008346645" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="25,-7.1 25.099999999999998,-7.1 25.099999999999998,-7.3 25,-7.3" data-type="line" data-label="" points="433.4707052264354,185.34511427733037 434.38361970591114,185.34511427733037 434.38361970591114,187.1709432362818 433.4707052264354,187.1709432362818" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,1.5000000000000002 6.725,1.5000000000000002 6.725,-26 30,-26 30,-27.62" data-type="line" data-label="" points="218.93580254963976,106.83446904241791 266.63558410224647,106.83446904241791 266.63558410224647,357.88595089824264 479.1164292002218,357.88595089824264 479.1164292002218,372.6751654657494" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12,-32.38 -12,-32.58 -9,-32.58 -9,-31.520000000000003 -6,-31.520000000000003 -6,-31.619999999999997" data-type="line" data-label="" points="95.69234782041671,416.12989468879397 95.69234782041671,417.9557236477454 123.0797822046885,417.9557236477454 123.0797822046885,408.27883016530274 150.4672165889603,408.27883016530274 150.4672165889603,409.19174464477845" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.4999999999999964,2 -5.174999999999998,2 -5.174999999999998,-26 -12,-26 -12,-27.62" data-type="line" data-label="" points="191.548368165368,102.26989664503927 157.99876104463505,102.26989664503927 157.99876104463505,357.88595089824264 95.69234782041671,357.88595089824264 95.69234782041671,372.6751654657494" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="30,-23.62 30,-23.42 36,-23.42 36,-23.62" data-type="line" data-label="" points="479.1164292002218,336.1585862867204 479.1164292002218,334.33275732776895 533.8912979687653,334.33275732776895 533.8912979687653,336.1585862867204" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,2.5 18.525,2.5 18.525,-6.7 23,-6.7" data-type="line" data-label="" points="333.5065697238434,97.70532424766064 374.3594926803821,97.70532424766064 374.3594926803821,181.69345635942747 415.2124156369209,181.69345635942747" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24,-19.62 24,-19.42 23.35,-19.42 23.35,-23.42 24,-23.42 24,-23.62" data-type="line" data-label="" points="424.3415604316782,299.6420071076913 424.3415604316782,297.8161781487398 418.407616315086,297.8161781487398 418.407616315086,334.33275732776895 424.3415604316782,334.33275732776895 424.3415604316782,336.1585862867204" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8369701987210297e-17,-23.62 -1.8369701987210297e-17,-23.42 6,-23.42 6,-23.62" data-type="line" data-label="" points="205.24208535750387,336.1585862867204 205.24208535750387,334.33275732776895 260.01695412604744,334.33275732776895 260.01695412604744,336.1585862867204" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-23.62 12,-23.42 18,-23.42 18,-23.62" data-type="line" data-label="" points="314.791822894591,336.1585862867204 314.791822894591,334.33275732776895 369.56669166313463,334.33275732776895 369.56669166313463,336.1585862867204" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24.3,-36 24.5,-36 24.5,-36.54 30.5,-36.54 30.5,-36 30.3,-36" data-type="line" data-label="" points="427.08030387010535,449.1773988458153 428.9061328290568,449.1773988458153 428.9061328290568,454.1071370349842 483.68100159760036,454.1071370349842 483.68100159760036,449.1773988458153 481.8551726386489,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.7,-40 -11.5,-40 -11.5,-40.54 -5.5,-40.54 -5.5,-40 -5.7,-40" data-type="line" data-label="" points="98.43109125884389,485.69397802484434 100.25692021779534,485.69397802484434 100.25692021779534,490.6237162140132 155.03178898633894,490.6237162140132 155.03178898633894,485.69397802484434 153.20596002738748,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.2,-52 -10.399999999999999,-52 -10.399999999999999,-41.783064825 0.5,-41.783064825 0.5,-40 0.3000000000000007,-40" data-type="line" data-label="" points="112.1248084509798,595.2437155619315 110.29897949202835,595.2437155619315 110.29897949202835,501.9718349907078 209.8066577548825,501.9718349907078 209.8066577548825,485.69397802484434 207.98082879593105,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8369701987210297e-17,-27.62 -1.8369701987210297e-17,-26.919 13.8,-26.919" data-type="line" data-label="" points="205.24208535750387,372.6751654657494 205.24208535750387,366.2756349646246 331.2242835251541,366.2756349646246" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="13.470000000000002,-12 13.670000000000002,-12 13.670000000000002,-20.58 12,-20.58 12,-20.38" data-type="line" data-label="" points="328.21166574288424,230.07792377164094 330.03749470183567,230.07792377164094 330.03749470183567,308.40598611065826 314.791822894591,308.40598611065826 314.791822894591,306.58015715170677" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="33.95,-13.1 33.75,-13.1 33.75,-20.58 36,-20.58 36,-20.38" data-type="line" data-label="" points="515.176551139513,240.11998304587394 513.3507221805614,240.11998304587394 513.3507221805614,308.40598611065826 533.8912979687653,308.40598611065826 533.8912979687653,306.58015715170677" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12,-20.38 -12,-20.58 -12.649999999999999,-20.58 -12.649999999999999,-24.58 -12,-24.58 -12,-24.38" data-type="line" data-label="" points="95.69234782041671,306.58015715170677 95.69234782041671,308.40598611065826 89.75840370382451,308.40598611065826 89.75840370382451,344.9225652896873 95.69234782041671,344.9225652896873 95.69234782041671,343.0967363307359" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6,-20.38 -6,-20.58 -6.6499999999999995,-20.58 -6.6499999999999995,-24.58 -6,-24.58 -6,-24.38" data-type="line" data-label="" points="150.4672165889603,306.58015715170677 150.4672165889603,308.40598611065826 144.53327247236808,308.40598611065826 144.53327247236808,344.9225652896873 150.4672165889603,344.9225652896873 150.4672165889603,343.0967363307359" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8369701987210297e-17,-20.38 1.8369701987210297e-17,-20.58 -0.6500000000000001,-20.58 -0.6500000000000001,-24.58 1.8369701987210297e-17,-24.58 1.8369701987210297e-17,-24.38" data-type="line" data-label="" points="205.24208535750387,306.58015715170677 205.24208535750387,308.40598611065826 199.30814124091165,308.40598611065826 199.30814124091165,344.9225652896873 205.24208535750387,344.9225652896873 205.24208535750387,343.0967363307359" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24,-20.38 24,-20.58 30,-20.58 30,-20.38" data-type="line" data-label="" points="424.3415604316782,306.58015715170677 424.3415604316782,308.40598611065826 479.1164292002218,308.40598611065826 479.1164292002218,306.58015715170677" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="18,-24.38 18,-24.58 12,-24.58 12,-24.38" data-type="line" data-label="" points="369.56669166313463,343.0967363307359 369.56669166313463,344.9225652896873 314.791822894591,344.9225652896873 314.791822894591,343.0967363307359" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="30,-24.38 30,-24.58 24,-24.58 24,-24.38" data-type="line" data-label="" points="479.1164292002218,343.0967363307359 479.1164292002218,344.9225652896873 424.3415604316782,344.9225652896873 424.3415604316782,343.0967363307359" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36,-24.380000000000003 36,-24.580000000000005 35.349999999999994,-24.580000000000005 35.349999999999994,-28.580000000000002 36,-28.580000000000002 36,-28.38" data-type="line" data-label="" points="533.8912979687653,343.0967363307359 533.8912979687653,344.9225652896873 527.9573538521731,344.9225652896873 527.9573538521731,381.4391444687164 533.8912979687653,381.4391444687164 533.8912979687653,379.6133155097649" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12,-28.38 -12,-28.58 -6.0000000000000036,-28.58 -6.0000000000000036,-28.38" data-type="line" data-label="" points="95.69234782041671,379.6133155097649 95.69234782041671,381.43914446871634 150.46721658896024,381.43914446871634 150.46721658896024,379.6133155097649" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.9999999999999964,-28.38 5.9999999999999964,-28.58 1.8369701987210297e-17,-28.58 1.8369701987210297e-17,-28.38" data-type="line" data-label="" points="260.0169541260474,379.6133155097649 260.0169541260474,381.43914446871634 205.24208535750387,381.43914446871634 205.24208535750387,379.6133155097649" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-28.379999999999995 12,-28.58 11.350000000000001,-28.58 11.350000000000001,-32.58 12,-32.58 12,-32.38" data-type="line" data-label="" points="314.791822894591,379.6133155097649 314.791822894591,381.43914446871634 308.85787877799885,381.43914446871634 308.85787877799885,417.9557236477454 314.791822894591,417.9557236477454 314.791822894591,416.12989468879397" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24,-28.379999999999995 24,-28.58 23.35,-28.58 23.35,-32.58 24,-32.58 24,-32.38" data-type="line" data-label="" points="424.3415604316782,379.6133155097649 424.3415604316782,381.43914446871634 418.407616315086,381.43914446871634 418.407616315086,417.9557236477454 424.3415604316782,417.9557236477454 424.3415604316782,416.12989468879397" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="30,-28.379999999999995 30,-28.58 29.35,-28.58 29.35,-32.58 30,-32.58 30,-32.38" data-type="line" data-label="" points="479.1164292002218,379.6133155097649 479.1164292002218,381.43914446871634 473.18248508362956,381.43914446871634 473.18248508362956,417.9557236477454 479.1164292002218,417.9557236477454 479.1164292002218,416.12989468879397" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6,-32.38 -6,-32.58 -6.6499999999999995,-32.58 -6.6499999999999995,-36.580000000000005 -6,-36.580000000000005 -6,-36.38" data-type="line" data-label="" points="150.4672165889603,416.12989468879397 150.4672165889603,417.9557236477454 144.53327247236808,417.9557236477454 144.53327247236808,454.4723028267745 150.4672165889603,454.4723028267745 150.4672165889603,452.64647386782303" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8369701987210297e-17,-32.38 1.8369701987210297e-17,-34.19 0.5,-34.19 0.5,-36 0.29999999999999716,-36" data-type="line" data-label="" points="205.24208535750387,416.12989468879397 205.24208535750387,432.6536467673046 209.8066577548825,432.6536467673046 209.8066577548825,449.1773988458153 207.98082879593102,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6,-32.38 6,-34.19 6.5,-34.19 6.5,-36 6.299999999999997,-36" data-type="line" data-label="" points="260.01695412604744,416.12989468879397 260.01695412604744,432.6536467673046 264.5815265234261,432.6536467673046 264.5815265234261,449.1773988458153 262.7556975644746,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.3,-35.46 18,-35.46 18,-32.38" data-type="line" data-label="" points="317.5305663330182,444.24766065664636 369.56669166313463,444.24766065664636 369.56669166313463,416.12989468879397" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,2.8999999999999986 -12,2.8999999999999986 -12,-19.62" data-type="line" data-label="" points="314.33536565485315,94.05366632975775 95.69234782041671,94.05366632975775 95.69234782041671,299.6420071076913" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23.6,-12 23.3,-12 23.3,-12.9 33.95,-12.9" data-type="line" data-label="" points="420.6899025137753,230.07792377164094 417.9511590753481,230.07792377164094 417.9511590753481,238.2941540869225 515.176551139513,238.2941540869225" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.05,2.2 36.25,2.2 36.25,2.9 14.05,2.9" data-type="line" data-label="" points="534.3477552085031,100.44406768608782 536.1735841674547,100.44406768608782 536.1735841674547,94.05366632975773 333.5065697238434,94.05366632975773" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.3,-40 12.780000000000001,-40 12.780000000000001,-40.54 18.5,-40.54 18.5,-40 18.3,-40" data-type="line" data-label="" points="317.5305663330182,485.69397802484434 321.9125558345017,485.69397802484434 321.9125558345017,490.6237162140132 374.1312640605132,490.6237162140132 374.1312640605132,485.69397802484434 372.3054351015618,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="30.3,-40 35.7,-40" data-type="line" data-label="" points="481.8551726386489,485.69397802484434 531.1525545303382,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,0.6000000000000005 -2.801,0.6000000000000004 -2.801,-1.2000000000000002 -1.5,-1.2000000000000002" data-type="line" data-label="" points="191.54836816536798,115.05069935769944 179.67135078738877,115.05069935769944 179.67135078738877,131.4831599882625 191.54836816536798,131.4831599882625" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,1.3 2.561,1.3 2.561,-0.10000000000000078 1.5,-0.10000000000000075" data-type="line" data-label="" points="218.93580254963976,108.66029800136936 228.62182517687722,108.66029800136936 228.62182517687722,121.44110071402953 218.93580254963976,121.44110071402953" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,1.6 21.888999999999996,1.5999999999999996 21.888999999999996,2 22.95,2" data-type="line" data-label="" points="414.755958397183,105.92155456294218 405.0699357699456,105.92155456294218 405.0699357699456,102.26989664503927 414.755958397183,102.26989664503927" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,1.9 10.649000000000001,1.8999999999999995 10.649000000000001,2.7 11.95,2.7" data-type="line" data-label="" points="314.33536565485315,103.182811124515 302.45834827687395,103.18281112451501 302.45834827687395,95.8794952887092 314.33536565485315,95.8794952887092" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-7.2 11.479,-7.199999999999999 11.479,-6.800000000000001 12,-6.8" data-type="line" data-label="" points="314.791822894591,186.25802875680608 310.0355384565225,186.25802875680608 310.0355384565225,182.6063708389032 314.791822894591,182.6063708389032" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,1.7 10.999999999999998,1.7 10.999999999999998,2.5 11.95,2.5" data-type="line" data-label="" points="314.33536565485315,105.00864008346645 305.6626780998337,105.00864008346645 305.6626780998337,97.70532424766064 314.33536565485315,97.70532424766064" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.527912499999999,-44.00262455 6.727912500000002,-44.00262455 6.727912500000002,-30.67899999999999 -12,-30.67899999999999 -12,-31.619999999999997" data-type="line" data-label="" points="264.83634377750974,522.2345171008444 266.66217273646123,522.2345171008444 266.66217273646123,400.6012193929118 95.69234782041671,400.6012193929118 95.69234782041671,409.19174464477845" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,2.3 14.840000000000002,2.3000000000000003 14.840000000000002,-6.9 14,-6.9" data-type="line" data-label="" points="333.5065697238434,99.53115320661209 340.7185941117017,99.53115320661209 340.7185941117017,183.51928531837893 333.0501124841055,183.51928531837893" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-31.619999999999997 12,-31.098999999999993 18.915,-31.098999999999993 18.915,-36 18.300000000000004,-36" data-type="line" data-label="" points="314.791822894591,409.19174464477845 314.791822894591,404.4354602067099 377.9198591503375,404.4354602067099 377.9198591503375,449.1773988458153 372.3054351015618,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,2.7 25.940001000000002,2.7 25.940001000000002,-6.5 25,-6.5" data-type="line" data-label="" points="333.5065697238434,95.8794952887092 442.0521104626521,95.8794952887092 442.0521104626521,179.867627400476 433.4707052264354,179.867627400476" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.05,2 37.230999999999995,2 37.230999999999995,-2.8 33.278999999999996,-2.8 33.278999999999996,-7.6 33.8,-7.6" data-type="line" data-label="" points="534.3477552085031,102.26989664503927 545.1292752111115,102.26989664503927 545.1292752111115,146.08979165987412 509.0508949822308,146.08979165987412 509.0508949822308,189.909686674709 513.8071794202993,189.909686674709" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.15,1.9 -12.34,1.9 -12.34,2.74 -8.65,2.74 -8.65,2.1 -8.85,2.1" data-type="line" data-label="" points="103.45212089596039,103.182811124515 92.58843859019925,103.182811124515 92.58843859019925,95.51432949691889 126.27498288285354,95.51432949691889 126.27498288285354,101.35698216556355 124.44915392390209,101.35698216556355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.3,-40 36.821,-40 36.821,-34.02 36,-34.02 36,-32.38" data-type="line" data-label="" points="536.6300414071925,485.69397802484434 541.386325845261,485.69397802484434 541.386325845261,431.10169215219594 533.8912979687653,431.10169215219594 533.8912979687653,416.12989468879397" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-6.399999999999999 36.80000000000001,-6.399999999999999 36.80000000000001,-6.299999999999999 37.801,-6.299999999999999 37.801,-7.029 38.361,-7.029 38.361,-7.648999999999999 37.801,-7.648999999999999 37.801,-7.9 36.80000000000001,-7.9 36.80000000000001,-30 30,-30 30,-31.619999999999997" data-type="line" data-label="" points="535.7171269277169,178.95471292100027 541.1946138045712,178.95471292100027 541.1946138045712,178.04179844152455 550.3328877441231,178.04179844152455 550.3328877441231,184.6969449969026 555.4452088291872,184.6969449969026 555.4452088291872,190.3570147696521 550.3328877441231,190.3570147696521 550.3328877441231,192.6484301131362 541.1946138045712,192.6484301131362 541.1946138045712,394.4025300772717 479.1164292002218,394.4025300772717 479.1164292002218,409.19174464477845" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,0.49999999999999933 3.0010000000000003,0.49999999999999933 3.0010000000000003,0.5509999999999994" data-type="line" data-label="" points="218.93580254963976,115.96361383717517 232.63864888657042,115.96361383717517 232.63864888657042,115.49802745264256" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.5279125,-44.00262455 0.8289125,-44.00262455 0.8289125,-43.55162455" data-type="line" data-label="" points="210.06147500896617,522.2345171008444 212.8093475921881,522.2345171008444 212.8093475921881,518.117272798409" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23,-6.9 18.21900000000001,-6.9 18.21900000000001,-6.849" data-type="line" data-label="" points="415.2124156369209,183.51928531837893 371.5659743731865,183.51928531837893 371.5659743731865,183.0536989338463" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="25.3,-6.9 25.53,-6.9 25.53,-6.899" data-type="line" data-label="" points="436.20944866486263,183.51928531837893 438.3091519676568,183.51928531837893 438.3091519676568,183.51015617358416" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.3,-36 36.480999999999995,-36 36.480999999999995,-35.649" data-type="line" data-label="" points="536.6300414071925,449.1773988458153 538.2824166150435,449.1773988458153 538.2824166150435,445.9730690228555" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,-0.7000000000000006 2.401,-0.7000000000000006 2.401,-0.6490000000000006" data-type="line" data-label="" points="218.93580254963976,126.91858759088389 227.16116200971607,126.91858759088389 227.16116200971607,126.45300120635127" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.7,1.7000000000000004 7.849999999999986,1.7000000000000004" data-type="line" data-label="" points="220.76163150859122,105.00864008346645 276.90587199634825,105.00864008346645" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,2.3 11.95,2.3499999999999996 10.408999999999999,2.3499999999999996 10.408999999999999,1.799" data-type="line" data-label="" points="314.33536565485315,99.53115320661209 314.33536565485315,99.07469596687423 300.2673535261322,99.07469596687423 300.2673535261322,104.10485474878548" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,1.3 15.130000000000003,1.3 15.130000000000003,0.9990000000000001" data-type="line" data-label="" points="333.5065697238434,108.66029800136936 343.36604610218126,108.66029800136936 343.36604610218126,111.40817058459129" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-7 11.759,-7 11.759,-7.301" data-type="line" data-label="" points="314.791822894591,184.43219979785465 312.59169899905453,184.43219979785465 312.59169899905453,187.18007238107657" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24.4,-12 24.641,-12 24.641,-12.200999999999999" data-type="line" data-label="" points="427.99321834958107,230.07792377164094 430.1933422451176,230.07792377164094 430.1933422451176,231.91288187538714" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,8 22.559,8 22.559,7.699" data-type="line" data-label="" points="414.755958397183,47.4950278764957 411.18646278243295,47.4950278764957 411.18646278243295,50.24290045971763" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24.3,-40 24.541,-40 24.541,-40.351" data-type="line" data-label="" points="427.08030387010535,485.69397802484434 429.2804277656419,485.69397802484434 429.2804277656419,488.8983078478041" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.7,-44 -11.459,-44 -11.459,-44.351" data-type="line" data-label="" points="98.43109125884389,522.2105572038733 100.6312151543804,522.2105572038733 100.6312151543804,525.4148870268332" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.2,-52 -4.441000000000001,-52 -4.441000000000001,-52.101" data-type="line" data-label="" points="166.89967721952337,595.2437155619315 164.69955332398686,595.2437155619315 164.69955332398686,596.165759186202" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.6,-44 11.6,-44.05 11.25,-44.05 11.25,-43.949000000000005" data-type="line" data-label="" points="311.1401649766881,522.2105572038733 311.1401649766881,522.6670144436112 307.9449642985231,522.6670144436112 307.9449642985231,521.7449708193408" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="25.05,1.7 26.470001000000003,1.7 26.470001000000003,2.001" data-type="line" data-label="" points="433.9271624661733,105.00864008346645 446.8905572038734,105.00864008346645 446.8905572038734,102.26076750024453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,1.5 15.370000000000003,1.5 15.370000000000003,2.001" data-type="line" data-label="" points="333.5065697238434,106.83446904241791 345.557040852923,106.83446904241791 345.557040852923,102.26076750024453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="33.8,-7.2 32.669000000000004,-7.2 32.669000000000004,-7.149" data-type="line" data-label="" points="513.8071794202993,186.25802875680608 503.48211665742895,186.25802875680608 503.48211665742895,185.79244237227346" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-7.6 37.781,-7.6 37.781,-7.5489999999999995" data-type="line" data-label="" points="535.7171269277169,189.909686674709 550.150304848228,189.909686674709 550.150304848228,189.44410029017638" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.3,-40 7.3309999999999995,-40 7.3309999999999995,-39.949000000000005" data-type="line" data-label="" points="262.75569756447464,485.69397802484434 272.16784584786933,485.69397802484434 272.16784584786933,485.2283916403117" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,8.2 22.528999999999996,8.2 22.528999999999996,8.400999999999998" data-type="line" data-label="" points="414.755958397183,45.66919891754425 410.9125884385902,45.66919891754425 410.9125884385902,43.83424081379805" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="33.95,2.2 33.41900000000001,2.2 33.41900000000001,2.251" data-type="line" data-label="" points="515.176551139513,100.44406768608782 510.32897525349694,100.44406768608782 510.32897525349694,99.9784813015552" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="29.7,-40 29.218999999999998,-40 29.218999999999998,-39.649" data-type="line" data-label="" points="476.37768576179457,485.69397802484434 471.9865671155163,485.69397802484434 471.9865671155163,482.4896482018845" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-6.6 37.401,-6.6 37.401,-5.948999999999999" data-type="line" data-label="" points="535.7171269277169,180.78054187995173 546.6812298262203,180.78054187995173 546.6812298262203,174.83746861856474" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6,-23.62 6,-23.42 12,-23.42 12,-23.62" data-type="line" data-label="" points="260.01695412604744,336.1585862867204 260.01695412604744,334.33275732776895 314.791822894591,334.33275732776895 314.791822894591,336.1585862867204" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12,-35.62 -12,-35.42 -6,-35.42 -6,-35.62" data-type="line" data-label="" points="95.69234782041671,445.70832382380746 95.69234782041671,443.8824948648561 150.4672165889603,443.8824948648561 150.4672165889603,445.70832382380746" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.8000000000000005 -2.34,1.8000000000000005" data-type="line" data-label="" points="191.54836816536798,104.09572560399073 183.87988653777188,104.09572560399073" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,1.7999999999999998 22.11,1.7999999999999998" data-type="line" data-label="" points="414.755958397183,104.09572560399073 407.08747676958694,104.09572560399073" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3,-40 -7.14,-40" data-type="line" data-label="" points="147.72847315053312,485.69397802484434 140.05999152293703,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.0000000000000004 -2.26,1.0000000000000004" data-type="line" data-label="" points="191.54836816536798,111.39904143979653 184.61021812135246,111.39904143979653" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,1.1 11.19,1.1" data-type="line" data-label="" points="314.33536565485315,110.4861269603208 307.39721561083763,110.4861269603208" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23.7,-36 22.939999999999998,-36" data-type="line" data-label="" points="421.602816993251,449.1773988458153 414.6646669492354,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,0.8000000000000005 -2.34,0.8000000000000005" data-type="line" data-label="" points="191.54836816536798,113.22487039874798 183.87988653777188,113.22487039874798" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,1.7000000000000002 14.790000000000001,1.7000000000000002" data-type="line" data-label="" points="333.5065697238434,105.00864008346645 340.2621368719638,105.00864008346645" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="29.7,-36 28.86,-36" data-type="line" data-label="" points="476.37768576179457,449.1773988458153 468.70920413419844,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,0.4000000000000006 -2.5,0.4000000000000006" data-type="line" data-label="" points="191.54836816536798,116.87652831665089 182.41922337061072,116.87652831665089" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,2.4 21.95,2.4" data-type="line" data-label="" points="414.755958397183,98.61823872713637 405.6268136024258,98.61823872713637" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="17.7,-36 16.7,-36" data-type="line" data-label="" points="366.8279482247074,449.1773988458153 357.69880342995015,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,0.20000000000000062 -2.5,0.20000000000000062" data-type="line" data-label="" points="191.54836816536798,118.70235727560234 182.41922337061072,118.70235727560234" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,2.0999999999999996 11.049999999999999,2.0999999999999996" data-type="line" data-label="" points="314.33536565485315,101.35698216556355 306.1191353395716,101.35698216556355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="35.7,-36 34.7,-36" data-type="line" data-label="" points="531.1525545303382,449.1773988458153 522.0234097355809,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,-0.39999999999999947 -2.42,-0.39999999999999947" data-type="line" data-label="" points="191.54836816536798,124.1798441524567 183.1495549541913,124.1798441524567" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-7.2 37.120000000000005,-7.2" data-type="line" data-label="" points="535.7171269277169,186.25802875680608 544.1159401388935,186.25802875680608" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.7,-40 4.78,-40" data-type="line" data-label="" points="257.2782106876203,485.69397802484434 248.8793974764436,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,-0.5999999999999996 -2.42,-0.5999999999999996" data-type="line" data-label="" points="191.54836816536798,126.00567311140816 183.1495549541913,126.00567311140816" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-7 37.120000000000005,-7" data-type="line" data-label="" points="535.7171269277169,184.43219979785465 544.1159401388935,184.43219979785465" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.7,-40 10.78,-40" data-type="line" data-label="" points="312.05307945616386,485.69397802484434 303.6542662449872,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,-0.7999999999999998 -2.42,-0.7999999999999998" data-type="line" data-label="" points="191.54836816536798,127.8315020703596 183.1495549541913,127.8315020703596" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-7.4 37.120000000000005,-7.4" data-type="line" data-label="" points="535.7171269277169,188.08385771575755 544.1159401388935,188.08385771575755" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="17.7,-40 16.78,-40" data-type="line" data-label="" points="366.8279482247074,485.69397802484434 358.42913501353075,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,-1 -2.42,-1" data-type="line" data-label="" points="191.54836816536798,129.65733102931105 183.1495549541913,129.65733102931105" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="33.95,2 33.03,2" data-type="line" data-label="" points="515.176551139513,102.26989664503927 506.77773792833625,102.26989664503927" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.3,-44 -13.22,-44" data-type="line" data-label="" points="92.95360438198954,522.2105572038733 84.55479117081285,522.2105572038733" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,-1.3000000000000005 2.26,-1.3000000000000005" data-type="line" data-label="" points="218.93580254963976,132.39607446773826 225.87395259365528,132.39607446773826" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.3,-40 -13.06,-40" data-type="line" data-label="" points="92.95360438198954,485.69397802484434 86.015454337974,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,-1.1000000000000005 2.1,-1.1000000000000005" data-type="line" data-label="" points="218.93580254963976,130.5702455087868 224.41328942649412,130.5702455087868" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.4,-2 -11,-2" data-type="line" data-label="" points="110.29897949202834,138.78647582406833 104.82149261517398,138.78647582406833" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6,-27.62 6,-27.02" data-type="line" data-label="" points="260.01695412604744,372.6751654657494 260.01695412604744,367.19767858889503" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,-0.9000000000000006 2.1,-0.9000000000000006" data-type="line" data-label="" points="218.93580254963976,128.74441654983534 224.41328942649412,128.74441654983534" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-9.6,-2 -9,-2" data-type="line" data-label="" points="117.60229532783414,138.78647582406833 123.0797822046885,138.78647582406833" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12,-27.62 12,-27.02" data-type="line" data-label="" points="314.791822894591,372.6751654657494 314.791822894591,367.19767858889503" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,0.0999999999999992 2.34,0.0999999999999992" data-type="line" data-label="" points="218.93580254963976,119.61527175507808 226.60428417723585,119.61527175507808" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="25.05,1.9 25.89,1.9" data-type="line" data-label="" points="433.9271624661733,103.182811124515 441.5956440937694,103.182811124515" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.3,-40 -1.1400000000000001,-40" data-type="line" data-label="" points="202.5033419190767,485.69397802484434 194.8348602914806,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,0.6999999999999995 2.1,0.6999999999999995" data-type="line" data-label="" points="218.93580254963976,114.13778487822373 224.41328942649412,114.13778487822373" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.15,2.1 -11.75,2.1" data-type="line" data-label="" points="103.45212089596039,101.35698216556355 97.97463401910603,101.35698216556355" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="18,-27.62 18,-27.02" data-type="line" data-label="" points="369.56669166313463,372.6751654657494 369.56669166313463,367.19767858889503" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,0.8999999999999997 2.1,0.8999999999999997" data-type="line" data-label="" points="218.93580254963976,112.31195591927226 224.41328942649412,112.31195591927226" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.85,1.9 -8.25,1.9" data-type="line" data-label="" points="124.44915392390209,103.182811124515 129.92664080075645,103.182811124515" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="24,-27.62 24,-27.02" data-type="line" data-label="" points="424.3415604316782,372.6751654657494 424.3415604316782,367.19767858889503" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.4720875,-43.99737545 4.7120875,-43.99737545" data-type="line" data-label="" points="255.19756447458514,522.1865973069023 248.25941443056962,522.1865973069023" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,1.5 11.35,1.5" data-type="line" data-label="" points="314.33536565485315,106.83446904241791 308.8578787779988,106.83446904241791" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,7.8 22.609,7.8" data-type="line" data-label="" points="414.755958397183,49.320856835447145 411.64292002217087,49.320856835447145" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="5.7,-36 5.1000000000000005,-36" data-type="line" data-label="" points="257.2782106876203,449.1773988458153 251.80072381076593,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.05,1.8 36.97,1.8" data-type="line" data-label="" points="534.3477552085031,104.09572560399073 542.7465684196799,104.09572560399073" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.7,-44 -4.94,-44" data-type="line" data-label="" points="153.20596002738748,522.2105572038733 160.144110071403,522.2105572038733" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10,-6.4 -10,-7.16" data-type="line" data-label="" points="113.95063740993123,178.9547129210003 113.95063740993123,185.8928629650158" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8369701987210297e-17,-31.619999999999997 -1.8369701987210297e-17,-30.859999999999996" data-type="line" data-label="" points="205.24208535750387,409.19174464477845 205.24208535750387,402.2535946007629" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36,-27.62 36,-26.62" data-type="line" data-label="" points="533.8912979687653,372.6751654657494 533.8912979687653,363.5460206709921" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.3,-44 -6.9799999999999995,-44" data-type="line" data-label="" points="147.72847315053312,522.2105572038733 141.52065469009818,522.2105572038733" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.6000000000000005 -2.42,1.6000000000000005" data-type="line" data-label="" points="191.54836816536798,105.92155456294218 183.1495549541913,105.92155456294218" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23,-7.3 22.08,-7.3" data-type="line" data-label="" points="415.2124156369209,187.1709432362818 406.8136024257442,187.1709432362818" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.4000000000000004 -2.42,1.4000000000000004" data-type="line" data-label="" points="191.54836816536798,107.74738352189362 183.1495549541913,107.74738352189362" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23,-7.5 22.08,-7.5" data-type="line" data-label="" points="415.2124156369209,188.9967721952333 406.8136024257442,188.9967721952333" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.2000000000000004 -2.26,1.2000000000000004" data-type="line" data-label="" points="191.54836816536798,109.57321248084509 184.61021812135246,109.57321248084509" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,1.9000000000000001 14.790000000000001,1.9000000000000001" data-type="line" data-label="" points="333.5065697238434,103.182811124515 340.2621368719638,103.182811124515" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,6.661338147750939e-16 -2.1799999999999997,6.661338147750939e-16" data-type="line" data-label="" points="191.54836816536798,120.5281862345538 185.34054970493304,120.5281862345538" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8,-52 1.12,-52" data-type="line" data-label="" points="221.67454598806694,595.2437155619315 215.466727527632,595.2437155619315" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,-0.1999999999999993 -2.1799999999999997,-0.1999999999999993" data-type="line" data-label="" points="191.54836816536798,122.35401519350525 185.34054970493304,122.35401519350525" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="7.8,-52 7.12,-52" data-type="line" data-label="" points="276.4494147566105,595.2437155619315 270.2415962961756,595.2437155619315" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.5,-0.3000000000000007 2.1,-0.3000000000000007" data-type="line" data-label="" points="218.93580254963976,123.26692967298098 224.41328942649412,123.26692967298098" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.5279125,-43.99737545 -1.1279125,-43.99737545" data-type="line" data-label="" points="200.42269570604157,522.1865973069023 194.9452088291872,522.1865973069023" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.95,1.3 11.35,1.3" data-type="line" data-label="" points="314.33536565485315,108.66029800136936 308.8578787779988,108.66029800136936" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.53,-12 11.93,-12" data-type="line" data-label="" points="319.6302696358124,230.07792377164094 314.152782758958,230.07792377164094" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.05,1.1 14.65,1.1" data-type="line" data-label="" points="333.5065697238434,110.4861269603208 338.9840566006978,110.4861269603208" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.3,-36 -0.9000000000000001,-36" data-type="line" data-label="" points="202.5033419190767,449.1773988458153 197.02585504222233,449.1773988458153" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="22.95,2.2 22.349999999999998,2.2" data-type="line" data-label="" points="414.755958397183,100.44406768608782 409.2784715203287,100.44406768608782" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.7,-35.46 11.1,-35.46" data-type="line" data-label="" points="312.05307945616386,444.24766065664636 306.5755925793095,444.24766065664636" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="33.95,1.8 33.03,1.8" data-type="line" data-label="" points="515.176551139513,104.09572560399073 506.77773792833625,104.09572560399073" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.4,-44 12.4,-44.92" data-type="line" data-label="" points="318.44348081249393,522.2105572038733 318.44348081249393,530.6093704150501" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="36.2,-6.8 37.2,-6.8" data-type="line" data-label="" points="535.7171269277169,182.6063708389032 544.8462717224741,182.6063708389032" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="23.7,-40 22.7,-40" data-type="line" data-label="" points="421.602816993251,485.69397802484434 412.4736721984937,485.69397802484434" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6,-23.62 6,-23.42 12,-23.42 12,-23.62" data-type="line" data-label="recovered from net labels: schematic_port_148 -&gt; schematic_port_150" points="260.01695412604744,336.1585862867204 260.01695412604744,334.33275732776895 314.791822894591,334.33275732776895 314.791822894591,336.1585862867204" fill="none" stroke="green" stroke-width="1px"/></g><g><polyline data-points="-12,-35.62 -12,-35.42 -6,-35.42 -6,-35.62" data-type="line" data-label="recovered from net labels: schematic_port_196 -&gt; schematic_port_198" points="95.69234782041671,445.70832382380746 95.69234782041671,443.8824948648561 150.4672165889603,443.8824948648561 150.4672165889603,445.70832382380746" fill="none" stroke="green" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="191.54836816536798" y="101.35698216556355" width="27.387434384271785" height="38.3424081379805" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="13" data-y="2" x="314.33536565485315" y="92.22783737080627" width="19.171204068990278" height="20.08411854846598" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="24" data-y="2" x="414.75595839718306" y="97.70532424766063" width="19.171204068990278" height="9.129144794757266" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="24" data-y="-7" x="415.2124156369209" y="178.04179844152458" width="18.258289589514504" height="12.780802712660176" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="13" data-y="-7" x="314.79182289459106" y="181.6934563594275" width="18.258289589514504" height="5.477486876854329" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="35" data-y="2" x="515.176551139513" y="98.61823872713637" width="19.171204068990164" height="7.303315835805805" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="35" data-y="-7" x="513.8071794202992" y="177.12888396204886" width="21.90994750741754" height="14.60663167161161" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-10" data-y="2" x="103.45212089596038" y="99.53115320661209" width="20.997033027941697" height="5.477486876854357" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="-10" data-y="-2" x="110.29897949202834" y="137.5083955528023" width="7.303315835805805" height="2.556160542532041" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="-10" data-y="-5.95" x="112.1248084509798" y="170.73848260571873" width="3.651657917902881" height="8.216230315281564" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="13" data-y="-12" x="319.6302696358124" y="226.79640383424078" width="8.581396107071782" height="6.563039874800296" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="24" data-y="-12" x="420.68990251377534" y="228.43467770858462" width="7.30331583580579" height="3.28649212611262" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="35" data-y="-13" x="515.176551139513" y="236.468325127971" width="19.171204068990164" height="5.477486876854385" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="24" data-y="8" x="414.75595839718306" y="43.84336995859279" width="19.171204068990278" height="7.303315835805819" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="-11.8675" data-y="-20" x="91.58423266277595" y="299.64200710769137" width="10.635453685892216" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="-5.9275" data-y="-20" x="146.35910143131952" y="299.64200710769137" width="9.539956310521347" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="0.012499999999999983" data-y="-20" x="201.13397019986309" y="299.64200710769137" width="8.444458935150493" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="6.1325" data-y="-20" x="255.90883896840666" y="299.64200710769137" width="10.635453685892202" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="12.0125" data-y="-20" x="310.6837077369503" y="299.64200710769137" width="8.444458935150408" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="18.1325" data-y="-20" x="365.4585765054938" y="299.64200710769137" width="10.63545368589223" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="24.1325" data-y="-20" x="420.23344527403736" y="299.64200710769137" width="10.63545368589223" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="30.0125" data-y="-20" x="475.008314042581" y="299.64200710769137" width="8.444458935150465" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="36.1325" data-y="-20" x="529.7831828111246" y="299.64200710769137" width="10.63545368589223" height="6.938150044015458" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="-11.8675" data-y="-24" x="91.58423266277595" y="336.1585862867203" width="10.635453685892216" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="-5.8675" data-y="-24" x="146.35910143131952" y="336.1585862867203" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="0.13249999999999998" data-y="-24" x="201.13397019986309" y="336.1585862867203" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="6.1325" data-y="-24" x="255.90883896840666" y="336.1585862867203" width="10.635453685892202" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_27" data-x="12.1325" data-y="-24" x="310.6837077369503" y="336.1585862867203" width="10.635453685892173" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_28" data-x="18.1325" data-y="-24" x="365.4585765054938" y="336.1585862867203" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_29" data-x="24.072499999999998" data-y="-24" x="420.2334452740374" y="336.1585862867203" width="9.539956310521347" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_30" data-x="30.072499999999998" data-y="-24" x="475.0083140425809" y="336.1585862867203" width="9.539956310521404" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_31" data-x="36.1325" data-y="-24" x="529.7831828111246" y="336.1585862867203" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_32" data-x="-11.8675" data-y="-28" x="91.58423266277595" y="372.6751654657494" width="10.635453685892216" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_33" data-x="-5.9875" data-y="-28" x="146.35910143131952" y="372.6751654657494" width="8.444458935150465" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_34" data-x="0.13249999999999998" data-y="-28" x="201.13397019986309" y="372.6751654657494" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_35" data-x="6.0725" data-y="-28" x="255.90883896840666" y="372.6751654657494" width="9.539956310521347" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_36" data-x="12.072500000000002" data-y="-28" x="310.6837077369503" y="372.6751654657494" width="9.539956310521347" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_37" data-x="18.1325" data-y="-28" x="365.4585765054938" y="372.6751654657494" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_38" data-x="24.1325" data-y="-28" x="420.23344527403736" y="372.6751654657494" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_39" data-x="30.1325" data-y="-28" x="475.008314042581" y="372.6751654657494" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_40" data-x="36.1325" data-y="-28" x="529.7831828111246" y="372.6751654657494" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_41" data-x="-11.927499999999998" data-y="-32" x="91.58423266277595" y="409.19174464477845" width="9.539956310521362" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_42" data-x="-5.9875" data-y="-32" x="146.35910143131952" y="409.19174464477845" width="8.444458935150465" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_43" data-x="0.012499999999999983" data-y="-32" x="201.13397019986309" y="409.19174464477845" width="8.444458935150493" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_44" data-x="6.1325" data-y="-32" x="255.90883896840666" y="409.19174464477845" width="10.635453685892202" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_45" data-x="12.1325" data-y="-32" x="310.6837077369503" y="409.19174464477845" width="10.635453685892173" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_46" data-x="18.1325" data-y="-32" x="365.4585765054938" y="409.19174464477845" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_47" data-x="24.1325" data-y="-32" x="420.23344527403736" y="409.19174464477845" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_48" data-x="30.1325" data-y="-32" x="475.008314042581" y="409.19174464477845" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_49" data-x="36.1325" data-y="-32" x="529.7831828111246" y="409.19174464477845" width="10.63545368589223" height="6.938150044015515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_50" data-x="-11.8675" data-y="-36" x="91.58423266277595" y="445.7083238238075" width="10.635453685892216" height="6.938150044015572" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_51" data-x="-5.8675" data-y="-36" x="146.35910143131952" y="445.7083238238075" width="10.63545368589223" height="6.938150044015572" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_52" data-x="0" data-y="-36" x="202.5033419190767" y="446.07348961559785" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_53" data-x="6" data-y="-36" x="257.27821068762023" y="446.07348961559785" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_54" data-x="12" data-y="-35.46" x="312.0530794561638" y="441.14375142642893" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_55" data-x="18" data-y="-36" x="366.8279482247075" y="446.07348961559785" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_56" data-x="24" data-y="-36" x="421.60281699325105" y="446.07348961559785" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_57" data-x="30" data-y="-36" x="476.3776857617946" y="446.07348961559785" width="5.477486876854357" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_58" data-x="36" data-y="-36" x="531.1525545303382" y="446.07348961559785" width="5.4774868768543" height="6.207818460434851" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_59" data-x="-12" data-y="-40" x="92.95360438198954" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_60" data-x="-6" data-y="-40" x="147.72847315053312" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_61" data-x="0" data-y="-40" x="202.5033419190767" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_62" data-x="6" data-y="-40" x="257.27821068762023" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_63" data-x="12" data-y="-40" x="312.0530794561638" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_64" data-x="18" data-y="-40" x="366.8279482247075" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_65" data-x="24" data-y="-40" x="421.60281699325105" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_66" data-x="30" data-y="-40" x="476.3776857617946" y="482.59006879462686" width="5.477486876854357" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_67" data-x="36" data-y="-40" x="531.1525545303382" y="482.59006879462686" width="5.4774868768543" height="6.207818460434908" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_68" data-x="-12" data-y="-44" x="92.95360438198954" y="519.106647973656" width="5.477486876854357" height="6.207818460434737" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_69" data-x="-6" data-y="-44" x="147.72847315053312" y="519.106647973656" width="5.477486876854357" height="6.207818460434737" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_70" data-x="0" data-y="-44" x="200.42269570604157" y="518.2496919565713" width="9.638779302924604" height="7.9217304946040485" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_71" data-x="6" data-y="-44" x="255.19756447458514" y="518.2496919565713" width="9.638779302924604" height="7.9217304946040485" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_72" data-x="11.9979" data-y="-43.961574540324975" x="311.1018225685501" y="521.5089740335166" width="7.341658243943812" height="0.7015831703567983" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_73" data-x="-9.838750000000001" data-y="-52" x="112.1248084509798" y="594.3308010824558" width="6.595807114212079" height="1.8258289589514334" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_74" data-x="-3.83875" data-y="-52" x="166.89967721952337" y="594.3308010824558" width="6.595807114212107" height="1.8258289589514334" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_75" data-x="2.16125" data-y="-52" x="221.67454598806694" y="594.3308010824558" width="6.5958071142121355" height="1.8258289589514334" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_76" data-x="8.161249999999999" data-y="-52" x="276.4494147566105" y="594.3308010824558" width="6.595807114212107" height="1.8258289589514334" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_77" data-x="14.161249999999999" data-y="-26.919" x="331.22428352515414" y="365.3627204851489" width="6.595807114212107" height="1.8258289589514902" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="CC2340R52E0RKPR" data-x="-0.20000000000000018" data-y="-2.23" x="195.20002608327087" y="140.06455609533435" width="16.43246063056307" height="1.6432460630562957" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U1" data-x="-0.9800000000000001" data-y="2.215" x="194.65227739558543" y="99.16598741482181" width="3.28649212611262" height="2.282286198689306" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="BQ25150YFPR" data-x="13.01" data-y="0.7700000000000001" x="317.9870235727561" y="112.67712171106254" width="12.050471129079597" height="1.64324606305631" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U2" data-x="12.469999999999999" data-y="3.215" x="317.43927488507063" y="90.03684262006456" width="3.2864921261125914" height="2.282286198689306" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="BQ27427YZFR" data-x="24.01" data-y="1.37" x="418.407616315086" y="107.19963483420818" width="12.050471129079597" height="1.64324606305631" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U3" data-x="23.47" data-y="2.615" x="417.8598676274005" y="95.5143294969189" width="3.2864921261126483" height="2.28228619868932" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="BMA400" data-x="23.759999999999998" data-y="-7.83" x="418.8640735548238" y="191.187766945975" width="6.57298425222524" height="1.6432460630563241" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U4" data-x="23.519999999999996" data-y="-6.1850000000000005" x="418.3163248671384" y="175.8508036907828" width="3.2864921261125914" height="2.28228619868932" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="TPS7A0230PDBVR" data-x="13.24" data-y="-7.43" x="318.44348081249393" y="187.53610902807213" width="15.336963255192188" height="1.6432460630562957" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U5" data-x="12.52" data-y="-6.585000000000001" x="317.89573212480855" y="179.50246160868573" width="3.2864921261125914" height="2.2822861986892917" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="TPS61046YFFR" data-x="35.07" data-y="1.4700000000000002" x="518.8282090574157" y="106.28672035473247" width="13.14596850445048" height="1.64324606305631" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="U6" data-x="34.47" data-y="2.5149999999999997" x="518.2804603697305" y="96.42724397639464" width="3.2864921261126483" height="2.282286198689306" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="X091-2832TSWFG02-H14" data-x="35.400000000000006" data-y="-7.93" x="517.4588373382023" y="192.10068142545077" width="21.909947507417428" height="1.6432460630562957" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="DS1" data-x="34.38" data-y="-6.085000000000001" x="516.9110886505168" y="174.9378892113071" width="4.381989501483531" height="2.28228619868932" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="XC32M4-48.000-F08NLDT" data-x="-9.49" data-y="1.5699999999999998" x="107.10377881386327" y="105.37380587525675" width="23.005444882788325" height="1.64324606305631" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="Y1" data-x="-10.629999999999999" data-y="2.415" x="106.55603012617786" y="97.34015845587035" width="3.2864921261126057" height="2.28228619868932" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="J1" data-x="34.47" data-y="-12.584999999999999" x="518.2804603697305" y="234.2773303772293" width="3.2864921261126483" height="2.2822861986892917" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="J2" data-x="23.47" data-y="8.515" x="417.8598676274005" y="41.652375207851044" width="3.2864921261126483" height="2.282286198689306" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDR
4
+ globalConnNetId: connectivity_net4" data-x="-12" data-y="-25.79" x="92.95360438198954" y="354.0517100844446" width="5.477486876854357" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDR
5
+ globalConnNetId: connectivity_net4" data-x="3.0010000000000003" data-y="0.7609999999999993" x="229.89990544814324" y="111.6637866388445" width="5.477486876854357" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDR
6
+ globalConnNetId: connectivity_net4" data-x="30" data-y="-23.21" x="476.3776857617946" y="330.4985165139708" width="5.477486876854357" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDR
7
+ globalConnNetId: connectivity_net4" data-x="0.8289125" data-y="-43.34162455" x="210.0706041537609" y="514.2830319846107" width="5.477486876854357" height="3.8342408137981465" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
8
+ globalConnNetId: connectivity_net11" data-x="-2.801" data-y="0.8100000000000004" x="178.02810472433248" y="111.21645854390138" width="3.2864921261125914" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
9
+ globalConnNetId: connectivity_net11" data-x="2.3680909090909092" data-y="1.0899" x="225.2174840906868" y="108.66121091584884" width="3.28649212611262" height="3.834240813798047" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
10
+ globalConnNetId: connectivity_net11" data-x="14.629900000000001" data-y="0.7000000000000002" x="336.88344038342416" y="112.4945388151674" width="3.834240813798033" height="3.28649212611262" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
11
+ globalConnNetId: connectivity_net11" data-x="18.21900000000001" data-y="-6.639" x="369.9227283101302" y="179.21945812004822" width="3.2864921261126483" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
12
+ globalConnNetId: connectivity_net11" data-x="25.5101" data-y="-7.1000000000000005" x="436.21036157934213" y="183.70186821427404" width="3.834240813798033" height="3.28649212611262" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
13
+ globalConnNetId: connectivity_net11" data-x="24" data-y="-19.21" x="422.69831436862194" y="293.9819373349418" width="3.2864921261125914" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
14
+ globalConnNetId: connectivity_net11" data-x="-6" data-y="-23.409" x="148.82397052590397" y="332.3152163281276" width="3.28649212611262" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
15
+ globalConnNetId: connectivity_net11" data-x="-1.8369701987210297e-17" data-y="-23.21" x="203.59883929444757" y="330.4985165139708" width="3.2864921261125914" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
16
+ globalConnNetId: connectivity_net11" data-x="12" data-y="-23.21" x="313.1485768315347" y="330.4985165139708" width="3.2864921261126483" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
17
+ globalConnNetId: connectivity_net11" data-x="6" data-y="-31.408999999999995" x="258.3737080629911" y="405.3483746861856" width="3.2864921261126483" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
18
+ globalConnNetId: connectivity_net11" data-x="12" data-y="-30.888999999999992" x="313.1485768315347" y="400.60121939291173" width="3.2864921261126483" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
19
+ globalConnNetId: connectivity_net11" data-x="24.5" data-y="-35.79" x="427.2628867660005" y="445.3431580320172" width="3.2864921261125914" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
20
+ globalConnNetId: connectivity_net11" data-x="36.480999999999995" data-y="-35.439" x="536.6391705519873" y="442.13882820905735" width="3.2864921261125346" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
21
+ globalConnNetId: connectivity_net11" data-x="-11.5" data-y="-39.79" x="98.61367415473904" y="481.8597372110462" width="3.2864921261126057" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: V3
22
+ globalConnNetId: connectivity_net11" data-x="0.5" data-y="-39.79" x="208.16341169182618" y="481.8597372110462" width="3.28649212611262" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDD
23
+ globalConnNetId: connectivity_net23" data-x="2.401" data-y="-0.4390000000000006" x="224.42241857128892" y="122.61876039255321" width="5.477486876854329" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VDDD
24
+ globalConnNetId: connectivity_net23" data-x="-6" data-y="-27.409" x="147.72847315053312" y="368.8317955071566" width="5.477486876854357" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
25
+ globalConnNetId: connectivity_net28" data-x="7.849999999999986" data-y="1.4900000000000004" x="274.71487724560654" y="105.00864008346645" width="4.381989501483417" height="3.8342408137980613" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
26
+ globalConnNetId: connectivity_net28" data-x="10.408999999999999" data-y="1.589" x="298.0763587753904" y="104.1048547487855" width="4.381989501483474" height="3.834240813798047" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
27
+ globalConnNetId: connectivity_net28" data-x="15.130000000000003" data-y="0.7890000000000001" x="341.1750513514395" y="111.40817058459129" width="4.381989501483531" height="3.8342408137980613" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
28
+ globalConnNetId: connectivity_net28" data-x="21.888999999999996" data-y="1.3899999999999997" x="402.8789410192038" y="105.92155456294218" width="4.381989501483474" height="3.8342408137980613" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
29
+ globalConnNetId: connectivity_net28" data-x="22.788999999999998" data-y="-6.5" x="411.3690456783281" y="178.9547129210003" width="3.834240813798033" height="1.8258289589514334" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
30
+ globalConnNetId: connectivity_net28" data-x="11.759" data-y="-7.511" x="310.40070424831276" y="187.18007238107657" width="4.381989501483531" height="3.8342408137980613" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
31
+ globalConnNetId: connectivity_net28" data-x="33.278999999999996" data-y="-7.81" x="506.859900231489" y="189.909686674709" width="4.381989501483531" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
32
+ globalConnNetId: connectivity_net28" data-x="-12.34" data-y="1.69" x="90.3974438394575" y="103.18281112451501" width="4.381989501483503" height="3.834240813798047" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
33
+ globalConnNetId: connectivity_net28" data-x="12" data-y="-20.79" x="312.6008281438493" y="308.4059861106582" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
34
+ globalConnNetId: connectivity_net28" data-x="24.641" data-y="-12.411" x="428.0023474943759" y="231.91288187538714" width="4.381989501483417" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
35
+ globalConnNetId: connectivity_net28" data-x="36" data-y="-20.79" x="531.7003032180236" y="308.4059861106582" width="4.381989501483531" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
36
+ globalConnNetId: connectivity_net28" data-x="22.559" data-y="7.489" x="408.9954680316912" y="50.24290045971764" width="4.381989501483474" height="3.834240813798047" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
37
+ globalConnNetId: connectivity_net28" data-x="-12" data-y="-24.79" x="93.50135306967496" y="344.9225652896873" width="4.381989501483503" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
38
+ globalConnNetId: connectivity_net28" data-x="-6" data-y="-24.79" x="148.27622183821853" y="344.9225652896873" width="4.381989501483503" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
39
+ globalConnNetId: connectivity_net28" data-x="1.8369701987210297e-17" data-y="-24.79" x="203.05109060676213" y="344.9225652896873" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
40
+ globalConnNetId: connectivity_net28" data-x="6" data-y="-20.591" x="257.82595937530573" y="306.58928629650154" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
41
+ globalConnNetId: connectivity_net28" data-x="18" data-y="-20.591" x="367.3756969123929" y="306.58928629650154" width="4.381989501483417" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
42
+ globalConnNetId: connectivity_net28" data-x="24" data-y="-20.79" x="422.15056568093644" y="308.4059861106582" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
43
+ globalConnNetId: connectivity_net28" data-x="6" data-y="-24.591" x="257.82595937530573" y="343.10586547553066" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
44
+ globalConnNetId: connectivity_net28" data-x="18" data-y="-24.79" x="367.3756969123929" y="344.9225652896873" width="4.381989501483417" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
45
+ globalConnNetId: connectivity_net28" data-x="30" data-y="-24.79" x="476.92543444948" y="344.9225652896873" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
46
+ globalConnNetId: connectivity_net28" data-x="36" data-y="-28.790000000000003" x="531.7003032180236" y="381.43914446871634" width="4.381989501483531" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
47
+ globalConnNetId: connectivity_net28" data-x="-12" data-y="-28.79" x="93.50135306967496" y="381.43914446871634" width="4.381989501483503" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
48
+ globalConnNetId: connectivity_net28" data-x="5.9999999999999964" data-y="-28.79" x="257.8259593753056" y="381.43914446871634" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
49
+ globalConnNetId: connectivity_net28" data-x="12" data-y="-32.79" x="312.6008281438493" y="417.95572364774534" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
50
+ globalConnNetId: connectivity_net28" data-x="18" data-y="-28.591" x="367.3756969123929" y="379.6224446545597" width="4.381989501483417" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
51
+ globalConnNetId: connectivity_net28" data-x="24" data-y="-32.79" x="422.15056568093644" y="417.95572364774534" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
52
+ globalConnNetId: connectivity_net28" data-x="30" data-y="-32.79" x="476.92543444948" y="417.95572364774534" width="4.381989501483474" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
53
+ globalConnNetId: connectivity_net28" data-x="-6" data-y="-36.790000000000006" x="148.27622183821853" y="454.47230282677447" width="4.381989501483503" height="3.8342408137980897" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
54
+ globalConnNetId: connectivity_net28" data-x="1.8369701987210297e-17" data-y="-34.4" x="203.05109060676213" y="432.6536467673046" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
55
+ globalConnNetId: connectivity_net28" data-x="6" data-y="-34.4" x="257.82595937530573" y="432.6536467673046" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
56
+ globalConnNetId: connectivity_net28" data-x="15.15" data-y="-35.67" x="341.35763424733466" y="444.24766065664636" width="4.381989501483531" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
57
+ globalConnNetId: connectivity_net28" data-x="36" data-y="-34.230000000000004" x="531.7003032180236" y="431.10169215219594" width="4.381989501483531" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
58
+ globalConnNetId: connectivity_net28" data-x="-12" data-y="-36.591" x="93.50135306967496" y="452.6556030126178" width="4.381989501483503" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
59
+ globalConnNetId: connectivity_net28" data-x="24.541" data-y="-40.561" x="427.0894330149001" y="488.8983078478041" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
60
+ globalConnNetId: connectivity_net28" data-x="-11.459" data-y="-44.561" x="98.44022040363865" y="525.4148870268332" width="4.381989501483488" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GND
61
+ globalConnNetId: connectivity_net28" data-x="-4.441000000000001" data-y="-52.311" x="162.50855857324512" y="596.165759186202" width="4.381989501483474" height="3.834240813798033" fill="#00000066" stroke="#000000" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VIN5
62
+ globalConnNetId: connectivity_net29" data-x="-12" data-y="3.1099999999999985" x="92.95360438198954" y="90.2194255159597" width="5.477486876854357" height="3.834240813798047" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: VIN5
63
+ globalConnNetId: connectivity_net29" data-x="23.3" data-y="-11.79" x="415.2124156369209" y="226.2436829578429" width="5.477486876854357" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
64
+ globalConnNetId: connectivity_net30" data-x="10.4389" data-y="2.5" x="298.6231945485964" y="94.96658080923346" width="3.8342408137980897" height="5.477486876854357" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
65
+ globalConnNetId: connectivity_net30" data-x="36.25" data-y="3.11" x="533.4348407290275" y="90.2194255159597" width="5.4774868768543" height="3.834240813798047" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
66
+ globalConnNetId: connectivity_net30" data-x="11.479" data-y="-6.590000000000001" x="307.2967950180953" y="178.77213002510513" width="5.477486876854414" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
67
+ globalConnNetId: connectivity_net30" data-x="-6" data-y="-19.409" x="147.72847315053312" y="295.79863714909845" width="5.477486876854357" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
68
+ globalConnNetId: connectivity_net30" data-x="12" data-y="-19.409" x="312.0530794561638" y="295.79863714909845" width="5.477486876854357" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
69
+ globalConnNetId: connectivity_net30" data-x="-12" data-y="-23.409" x="92.95360438198954" y="332.3152163281276" width="5.477486876854357" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
70
+ globalConnNetId: connectivity_net30" data-x="18" data-y="-31.408999999999995" x="366.8279482247075" y="405.3483746861856" width="5.477486876854357" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PMID
71
+ globalConnNetId: connectivity_net30" data-x="11.25" data-y="-43.739000000000004" x="305.20622086009587" y="517.9107300055427" width="5.477486876854414" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: BAT_SYS
72
+ globalConnNetId: connectivity_net31" data-x="26.470001000000003" data-y="2.211" x="442.5085677023899" y="98.42652668644646" width="8.763979002967005" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: BAT_SYS
73
+ globalConnNetId: connectivity_net31" data-x="-1.8369701987210297e-17" data-y="-19.409" x="200.8600958560204" y="295.79863714909845" width="8.763979002966948" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: CHG_VDD
74
+ globalConnNetId: connectivity_net35" data-x="15.370000000000003" data-y="2.211" x="341.1750513514395" y="98.42652668644646" width="8.763979002967062" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: CHG_VDD
75
+ globalConnNetId: connectivity_net35" data-x="6" data-y="-19.409" x="255.63496462456396" y="295.79863714909845" width="8.763979002966948" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
76
+ globalConnNetId: connectivity_net36" data-x="14.261000000000001" data-y="2.1" x="333.5156988686382" y="100.44406768608783" width="3.834240813798033" height="1.8258289589514476" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
77
+ globalConnNetId: connectivity_net36" data-x="32.669000000000004" data-y="-6.939" x="499.10012715594553" y="181.95820155847542" width="8.763979002966892" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
78
+ globalConnNetId: connectivity_net36" data-x="37.781" data-y="-7.3389999999999995" x="545.7683153467444" y="185.60985947637835" width="8.763979002966948" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
79
+ globalConnNetId: connectivity_net36" data-x="18" data-y="-19.409" x="365.18470216165116" y="295.79863714909845" width="8.763979002966948" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
80
+ globalConnNetId: connectivity_net36" data-x="7.3309999999999995" data-y="-39.739000000000004" x="267.7858563463858" y="481.3941508265137" width="8.763979002967005" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_3V
81
+ globalConnNetId: connectivity_net36" data-x="12.780000000000001" data-y="-39.79" x="317.5305663330182" y="481.8597372110462" width="8.763979002966948" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GAUGE_VDD
82
+ globalConnNetId: connectivity_net38" data-x="25.261000000000003" data-y="2.1" x="433.93629161096806" y="100.44406768608783" width="3.8342408137980897" height="1.8258289589514476" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: GAUGE_VDD
83
+ globalConnNetId: connectivity_net38" data-x="36" data-y="-19.409" x="528.4138110919109" y="295.79863714909845" width="10.954973753708828" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PACK_P
84
+ globalConnNetId: connectivity_net39" data-x="25.261000000000003" data-y="2.3" x="433.93629161096806" y="98.61823872713637" width="3.8342408137980897" height="1.8258289589514476" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PACK_P
85
+ globalConnNetId: connectivity_net39" data-x="22.528999999999996" data-y="8.610999999999999" x="407.0783476247922" y="39.999999999999986" width="7.668481627596066" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: PACK_P
86
+ globalConnNetId: connectivity_net39" data-x="30" data-y="-19.409" x="475.28218838642374" y="295.79863714909845" width="7.6684816275961225" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_HV
87
+ globalConnNetId: connectivity_net40" data-x="33.41900000000001" data-y="2.461" x="505.94698575201346" y="96.14424048775714" width="8.763979002966948" height="3.8342408137980613" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_HV
88
+ globalConnNetId: connectivity_net40" data-x="30" data-y="-29.79" x="474.73443969873824" y="390.5682892634736" width="8.763979002967005" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_HV
89
+ globalConnNetId: connectivity_net40" data-x="24" data-y="-31.408999999999995" x="419.9595709301947" y="405.3483746861856" width="8.763979002967005" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_HV
90
+ globalConnNetId: connectivity_net40" data-x="29.218999999999998" data-y="-39.439" x="467.6045776140328" y="478.6554073880865" width="8.763979002967005" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_VCOM
91
+ globalConnNetId: connectivity_net44" data-x="37.401" data-y="-5.738999999999999" x="541.203742949366" y="171.0032278047667" width="10.954973753708714" height="3.834240813798033" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="netId: OLED_VCOM
92
+ globalConnNetId: connectivity_net44" data-x="36" data-y="-31.408999999999995" x="528.4138110919109" y="405.3483746861856" width="10.954973753708828" height="3.8342408137980897" fill="#ef444466" stroke="#ef4444" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
93
+ axis: x
94
+ side: y+" data-x="-1.92" data-y="1.9100000000000006" x="184.7928010172476" y="102.54377098888199" width="5.842652668644661" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
95
+ axis: y
96
+ side: x-" data-x="18.415" data-y="-2.0999999999999996" x="372.8075380652734" y="136.77806396922173" width="1.0954973753708828" height="5.842652668644632" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
97
+ axis: x
98
+ side: y+" data-x="22.53" data-y="1.91" x="408.00039124906266" y="102.54377098888199" width="5.842652668644689" height="1.0954973753708828" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
99
+ axis: x
100
+ side: y+" data-x="-6.72" data-y="-39.89" x="140.97290600241274" y="484.14202340973554" width="5.842652668644632" height="1.0954973753709396" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_CE
101
+ axis: x
102
+ side: y+" data-x="-1.88" data-y="1.1100000000000005" x="185.52313260082818" y="109.84708682468779" width="5.112321085064082" height="1.0954973753708828" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_CE
103
+ axis: x
104
+ side: y+" data-x="11.57" data-y="1.2100000000000002" x="308.31013009031335" y="108.93417234521206" width="5.112321085064082" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_CE
105
+ axis: x
106
+ side: y+" data-x="23.32" data-y="-35.89" x="415.5775814287112" y="447.62544423070653" width="5.112321085064082" height="1.0954973753708828" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_IRQ
107
+ axis: x
108
+ side: y+" data-x="-1.92" data-y="0.9100000000000005" x="184.7928010172476" y="111.67291578363924" width="5.842652668644661" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_IRQ
109
+ axis: x
110
+ side: y-" data-x="14.420000000000002" data-y="1.59" x="333.9630269635812" y="105.4650973232043" width="5.842652668644689" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_IRQ
111
+ axis: x
112
+ side: y+" data-x="29.28" data-y="-35.89" x="469.6221186136742" y="447.62544423070653" width="5.842652668644632" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: GAUGE_IRQ
113
+ axis: x
114
+ side: y+" data-x="-2" data-y="0.5100000000000006" x="183.33213785008644" y="115.32457370154215" width="7.303315835805819" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: GAUGE_IRQ
115
+ axis: x
116
+ side: y+" data-x="22.45" data-y="2.51" x="406.53972808190156" y="97.06628411202763" width="7.3033158358057335" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: GAUGE_IRQ
117
+ axis: x
118
+ side: y+" data-x="17.2" data-y="-35.89" x="358.6117179094259" y="447.62544423070653" width="7.3033158358057335" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: PG_BUTTON
119
+ axis: x
120
+ side: y+" data-x="-2" data-y="0.3100000000000006" x="183.33213785008644" y="117.1504026604936" width="7.303315835805819" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: PG_BUTTON
121
+ axis: x
122
+ side: y+" data-x="11.5" data-y="2.2099999999999995" x="306.5755925793095" y="99.80502755045481" width="7.30331583580579" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: PG_BUTTON
123
+ axis: x
124
+ side: y+" data-x="35.2" data-y="-35.89" x="522.9363242150566" y="447.62544423070653" width="7.3033158358057335" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SCL
125
+ axis: x
126
+ side: y+" data-x="-1.96" data-y="-0.2899999999999995" x="184.06246943366702" y="122.62788953734795" width="6.57298425222524" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SCL
127
+ axis: x
128
+ side: y+" data-x="36.660000000000004" data-y="-7.09" x="536.6300414071925" y="184.70607414169734" width="6.572984252225297" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SCL
129
+ axis: x
130
+ side: y+" data-x="5.24" data-y="-39.89" x="249.79231195591933" y="484.14202340973554" width="6.572984252225211" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SDA
131
+ axis: x
132
+ side: y+" data-x="-1.96" data-y="-0.48999999999999966" x="184.06246943366702" y="124.45371849629942" width="6.57298425222524" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SDA
133
+ axis: x
134
+ side: y+" data-x="36.660000000000004" data-y="-6.89" x="536.6300414071925" y="182.8802451827459" width="6.572984252225297" height="1.0954973753708543" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_SDA
135
+ axis: x
136
+ side: y+" data-x="11.239999999999998" data-y="-39.89" x="304.5671807244629" y="484.14202340973554" width="6.572984252225183" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_RST
137
+ axis: x
138
+ side: y+" data-x="-1.96" data-y="-0.6899999999999998" x="184.06246943366702" y="126.27954745525088" width="6.57298425222524" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_RST
139
+ axis: x
140
+ side: y+" data-x="36.660000000000004" data-y="-7.29" x="536.6300414071925" y="186.53190310064883" width="6.572984252225297" height="1.095497375370826" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_RST
141
+ axis: x
142
+ side: y+" data-x="17.240000000000002" data-y="-39.89" x="359.34204949300647" y="484.14202340973554" width="6.57298425222524" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_EN
143
+ axis: x
144
+ side: y+" data-x="-1.96" data-y="-0.89" x="184.06246943366702" y="128.10537641420234" width="6.57298425222524" height="1.0954973753708543" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_EN
145
+ axis: x
146
+ side: y+" data-x="33.49" data-y="2.11" x="507.69065240781197" y="100.71794202993055" width="6.57298425222524" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_EN
147
+ axis: x
148
+ side: y+" data-x="-12.760000000000002" data-y="-43.89" x="85.46770565028856" y="520.6586025887646" width="6.5729842522252255" height="1.0954973753709965" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RESETN
149
+ axis: x
150
+ side: y+" data-x="1.88" data-y="-1.1900000000000004" x="219.84871702911548" y="130.84411985262955" width="5.112321085064082" height="1.0954973753708543" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RESETN
151
+ axis: x
152
+ side: y+" data-x="6.9" data-y="-26.809" x="265.67702389879696" y="364.72368034951586" width="5.112321085064082" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RESETN
153
+ axis: x
154
+ side: y+" data-x="-12.68" data-y="-39.89" x="86.92836881744975" y="484.14202340973554" width="5.112321085064053" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32P
155
+ axis: x
156
+ side: y+" data-x="1.8" data-y="-0.9900000000000005" x="219.84871702911548" y="129.01829089367806" width="3.6516579179029236" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32P
157
+ axis: x
158
+ side: y+" data-x="-10.7" data-y="-1.89" x="105.73440709464971" y="137.2345212089596" width="3.651657917902895" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32P
159
+ axis: y
160
+ side: x-" data-x="5.89" data-y="-27.32" x="258.4649995109387" y="368.1105930683708" width="1.0954973753708828" height="3.6516579179028668" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32N
161
+ axis: x
162
+ side: y+" data-x="1.8" data-y="-0.7900000000000006" x="219.84871702911548" y="127.1924619347266" width="3.6516579179029236" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32N
163
+ axis: x
164
+ side: y+" data-x="-9.3" data-y="-1.89" x="118.51520980730987" y="137.2345212089596" width="3.651657917902895" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X32N
165
+ axis: y
166
+ side: x-" data-x="11.89" data-y="-27.32" x="313.23986827948227" y="368.1105930683708" width="1.0954973753708828" height="3.6516579179028668" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
167
+ axis: x
168
+ side: y+" data-x="1.92" data-y="0.2099999999999992" x="219.8487170291155" y="118.06331713996934" width="5.842652668644661" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
169
+ axis: x
170
+ side: y+" data-x="19.995000500000003" data-y="2.81" x="384.8580137589254" y="94.32754067360045" width="5.842652668644689" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
171
+ axis: x
172
+ side: y-" data-x="25.47" data-y="1.7899999999999998" x="434.840076945649" y="103.63926836425287" width="5.842652668644632" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
173
+ axis: x
174
+ side: y+" data-x="-0.7200000000000001" data-y="-39.89" x="195.7477747709563" y="484.14202340973554" width="5.842652668644661" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48P
175
+ axis: x
176
+ side: y+" data-x="1.8" data-y="0.8099999999999995" x="219.84871702911548" y="112.58583026311499" width="3.6516579179029236" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48P
177
+ axis: x
178
+ side: y+" data-x="-11.45" data-y="2.21" x="98.88754849858176" y="99.80502755045481" width="3.651657917902895" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48P
179
+ axis: y
180
+ side: x-" data-x="17.89" data-y="-27.32" x="368.01473704802595" y="368.1105930683708" width="1.095497375370826" height="3.6516579179028668" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48N
181
+ axis: x
182
+ side: y+" data-x="1.8" data-y="1.0099999999999998" x="219.84871702911548" y="110.76000130416352" width="3.6516579179029236" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48N
183
+ axis: x
184
+ side: y+" data-x="-8.55" data-y="2.01" x="125.3620684033778" y="101.63085650940627" width="3.6516579179029094" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: X48N
185
+ axis: y
186
+ side: x-" data-x="23.89" data-y="-27.32" x="422.7896058165695" y="368.1105930683708" width="1.095497375370826" height="3.6516579179028668" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_RAW
187
+ axis: y
188
+ side: x-" data-x="6.614999999999999" data-y="-12.25" x="265.0836294871377" y="229.80404942779825" width="1.0954973753708828" height="5.112321085064053" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_RAW
189
+ axis: x
190
+ side: y+" data-x="5.0920875" data-y="-43.88737545" x="249.17232891004534" y="520.6346426917935" width="5.112321085064082" height="1.0954973753709965" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: TS
191
+ axis: x
192
+ side: y+" data-x="11.649999999999999" data-y="1.61" x="310.5011248410551" y="105.28251442730917" width="2.1909947507417087" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: TS
193
+ axis: x
194
+ side: y+" data-x="22.7795" data-y="7.91" x="412.10394183430606" y="47.76890222033841" width="2.1909947507417655" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: TS
195
+ axis: x
196
+ side: y+" data-x="5.4" data-y="-35.89" x="253.4439698738222" y="447.62544423070653" width="2.190994750741737" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_FB
197
+ axis: x
198
+ side: y+" data-x="36.51" data-y="1.9100000000000001" x="535.2606696879789" y="102.54377098888199" width="6.572984252225297" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_FB
199
+ axis: x
200
+ side: y+" data-x="33" data-y="-39.89" x="503.21737145838097" y="484.14202340973554" width="6.57298425222524" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_ANT
201
+ axis: x
202
+ side: y+" data-x="-5.32" data-y="-43.89" x="154.11887450686322" y="520.6586025887646" width="5.112321085064053" height="1.0954973753709965" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_ANT
203
+ axis: y
204
+ side: x-" data-x="-10.11" data-y="-6.78" x="112.3986827948225" y="179.867627400476" width="1.0954973753708828" height="5.112321085064082" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_ANT
205
+ axis: y
206
+ side: x-" data-x="-0.11000000000000001" data-y="-31.239999999999995" x="203.69013074239513" y="403.1665090802386" width="1.0954973753708828" height="5.112321085064082" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_FILTER
207
+ axis: x
208
+ side: y+" data-x="-2.636043749999999" data-y="-30.568999999999992" x="177.52560236053603" y="399.04926477780305" width="7.303315835805819" height="1.0954973753708828" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_FILTER
209
+ axis: y
210
+ side: x-" data-x="35.89" data-y="-27.12" x="532.3393433536567" y="364.45893515046794" width="1.095497375370769" height="7.30331583580579" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_50
211
+ axis: x
212
+ side: y+" data-x="-10.5" data-y="-32.47" x="107.19507026181086" y="416.40376903263666" width="4.381989501483488" height="1.0954973753708828" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: RF_50
213
+ axis: x
214
+ side: y+" data-x="-6.64" data-y="-43.89" x="142.4335691695739" y="520.6586025887646" width="4.381989501483474" height="1.0954973753709965" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: ACC_INT1
215
+ axis: x
216
+ side: y+" data-x="-1.96" data-y="1.7100000000000006" x="184.06246943366702" y="104.36959994783345" width="6.57298425222524" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: ACC_INT1
217
+ axis: x
218
+ side: y+" data-x="22.54" data-y="-7.1899999999999995" x="407.7265169052199" y="185.61898862117306" width="6.57298425222524" height="1.0954973753708543" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: ACC_INT2
219
+ axis: x
220
+ side: y+" data-x="-1.96" data-y="1.5100000000000005" x="184.06246943366702" y="106.19542890678488" width="6.57298425222524" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: ACC_INT2
221
+ axis: x
222
+ side: y+" data-x="22.54" data-y="-7.39" x="407.7265169052199" y="187.44481758012455" width="6.57298425222524" height="1.0954973753708543" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_LP
223
+ axis: x
224
+ side: y+" data-x="-1.88" data-y="1.3100000000000005" x="185.52313260082818" y="108.02125786573635" width="5.112321085064082" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: CHG_LP
225
+ axis: x
226
+ side: y-" data-x="14.420000000000002" data-y="1.79" x="334.32819275537156" y="103.63926836425287" width="5.112321085064082" height="1.0954973753708686" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: SWDIO
227
+ axis: x
228
+ side: y+" data-x="-1.8399999999999999" data-y="0.11000000000000067" x="186.25346418440876" y="118.97623161944506" width="4.381989501483503" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: SWDIO
229
+ axis: x
230
+ side: y+" data-x="1.46" data-y="-51.89" x="216.3796420071077" y="593.6917609468228" width="4.381989501483503" height="1.095497375370769" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: SWCLK
231
+ axis: x
232
+ side: y+" data-x="-1.8399999999999999" data-y="-0.08999999999999929" x="186.25346418440876" y="120.8020605783965" width="4.381989501483503" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: SWCLK
233
+ axis: x
234
+ side: y+" data-x="7.46" data-y="-51.89" x="271.15451077565126" y="593.6917609468228" width="4.381989501483474" height="1.095497375370769" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: DCDC
235
+ axis: x
236
+ side: y+" data-x="1.8" data-y="-0.19000000000000072" x="219.84871702911548" y="121.71497505787227" width="3.6516579179029236" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: DCDC
237
+ axis: x
238
+ side: y+" data-x="-0.8279125" data-y="-43.88737545" x="195.85812330866293" y="520.6346426917935" width="3.651657917902895" height="1.0954973753709965" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: MRN
239
+ axis: x
240
+ side: y+" data-x="11.649999999999999" data-y="1.4100000000000001" x="310.13595904926484" y="107.10834338626063" width="2.921326334322316" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: MRN
241
+ axis: x
242
+ side: y+" data-x="12.23" data-y="-11.89" x="315.43086303022403" y="228.5259691565322" width="2.921326334322316" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: IMAX
243
+ axis: x
244
+ side: y+" data-x="14.350000000000001" data-y="1.2100000000000002" x="334.41948420331914" y="108.93417234521206" width="3.6516579179028668" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: IMAX
245
+ axis: x
246
+ side: y+" data-x="-0.6000000000000001" data-y="-35.89" x="197.93876952169805" y="447.62544423070653" width="3.6516579179029236" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BIN
247
+ axis: x
248
+ side: y+" data-x="22.65" data-y="2.31" x="410.5565517915947" y="98.8921130709791" width="2.921326334322316" height="1.0954973753708686" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BIN
249
+ axis: x
250
+ side: y+" data-x="11.399999999999999" data-y="-35.35" x="307.8536728505755" y="442.6957060415376" width="2.921326334322316" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_SW
251
+ axis: x
252
+ side: y+" data-x="33.49" data-y="1.9100000000000001" x="507.69065240781197" y="102.54377098888199" width="6.57298425222524" height="1.0954973753708828" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: BOOST_SW
253
+ axis: y
254
+ side: x-" data-x="12.290000000000001" data-y="-44.46" x="316.8915261973852" y="523.1234716833492" width="1.0954973753708828" height="6.572984252225069" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_IREF
255
+ axis: x
256
+ side: y+" data-x="36.7" data-y="-6.6899999999999995" x="536.6300414071925" y="181.05441622379448" width="7.303315835805847" height="1.0954973753708543" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><g><rect data-type="rect" data-label="INLINE netId: OLED_IREF
257
+ axis: x
258
+ side: y+" data-x="23.2" data-y="-39.89" x="413.3865866779695" y="484.14202340973554" width="7.3033158358057335" height="1.0954973753709396" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.10953928571428571"/></g><text data-type="text" data-label="I2C_SDA" data-x="-1.5999999999999999" data-y="1.9100000000000006" x="190.63545368589226" y="103.09151967656743" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">I2C_SDA</text><text data-type="text" data-label="I2C_SDA" data-x="18.415" data-y="-2.0999999999999996" x="373.3552867529588" y="139.69939030354405" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central" transform="rotate(-90, 373.3552867529588, 139.69939030354405)">I2C_SDA</text><text data-type="text" data-label="I2C_SDA" data-x="22.85" data-y="1.91" x="413.84304391770735" y="103.09151967656743" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">I2C_SDA</text><text data-type="text" data-label="I2C_SDA" data-x="-6.3999999999999995" data-y="-39.89" x="146.81555867105737" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">I2C_SDA</text><text data-type="text" data-label="CHG_CE" data-x="-1.5999999999999999" data-y="1.1100000000000005" x="190.63545368589226" y="110.39483551237323" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_CE</text><text data-type="text" data-label="CHG_CE" data-x="11.85" data-y="1.2100000000000002" x="313.42245117537743" y="109.4819210328975" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_CE</text><text data-type="text" data-label="CHG_CE" data-x="23.6" data-y="-35.89" x="420.6899025137753" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_CE</text><text data-type="text" data-label="CHG_IRQ" data-x="-1.5999999999999999" data-y="0.9100000000000005" x="190.63545368589226" y="112.22066447132468" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_IRQ</text><text data-type="text" data-label="CHG_IRQ" data-x="14.100000000000001" data-y="1.59" x="333.9630269635813" y="106.01284601088975" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">CHG_IRQ</text><text data-type="text" data-label="CHG_IRQ" data-x="29.6" data-y="-35.89" x="475.46477128231885" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_IRQ</text><text data-type="text" data-label="GAUGE_IRQ" data-x="-1.6" data-y="0.5100000000000006" x="190.63545368589226" y="115.87232238922759" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">GAUGE_IRQ</text><text data-type="text" data-label="GAUGE_IRQ" data-x="22.849999999999998" data-y="2.51" x="413.8430439177073" y="97.61403279971307" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">GAUGE_IRQ</text><text data-type="text" data-label="GAUGE_IRQ" data-x="17.599999999999998" data-y="-35.89" x="365.91503374523165" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">GAUGE_IRQ</text><text data-type="text" data-label="PG_BUTTON" data-x="-1.6" data-y="0.3100000000000006" x="190.63545368589226" y="117.69815134817904" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">PG_BUTTON</text><text data-type="text" data-label="PG_BUTTON" data-x="11.9" data-y="2.2099999999999995" x="313.8789084151153" y="100.35277623814025" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">PG_BUTTON</text><text data-type="text" data-label="PG_BUTTON" data-x="35.6" data-y="-35.89" x="530.2396400508624" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">PG_BUTTON</text><text data-type="text" data-label="OLED_SCL" data-x="-1.6" data-y="-0.2899999999999995" x="190.63545368589226" y="123.1756382250334" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_SCL</text><text data-type="text" data-label="OLED_SCL" data-x="36.300000000000004" data-y="-7.09" x="536.6300414071925" y="185.25382282938278" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">OLED_SCL</text><text data-type="text" data-label="OLED_SCL" data-x="5.6000000000000005" data-y="-39.89" x="256.3652962081445" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_SCL</text><text data-type="text" data-label="OLED_SDA" data-x="-1.6" data-y="-0.48999999999999966" x="190.63545368589226" y="125.00146718398486" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_SDA</text><text data-type="text" data-label="OLED_SDA" data-x="36.300000000000004" data-y="-6.89" x="536.6300414071925" y="183.42799387043135" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">OLED_SDA</text><text data-type="text" data-label="OLED_SDA" data-x="11.599999999999998" data-y="-39.89" x="311.1401649766881" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_SDA</text><text data-type="text" data-label="OLED_RST" data-x="-1.6" data-y="-0.6899999999999998" x="190.63545368589226" y="126.8272961429363" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_RST</text><text data-type="text" data-label="OLED_RST" data-x="36.300000000000004" data-y="-7.29" x="536.6300414071925" y="187.07965178833425" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">OLED_RST</text><text data-type="text" data-label="OLED_RST" data-x="17.6" data-y="-39.89" x="365.9150337452317" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_RST</text><text data-type="text" data-label="BOOST_EN" data-x="-1.6" data-y="-0.89" x="190.63545368589226" y="128.65312510188775" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BOOST_EN</text><text data-type="text" data-label="BOOST_EN" data-x="33.85" data-y="2.11" x="514.2636366600373" y="101.26569071761598" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BOOST_EN</text><text data-type="text" data-label="BOOST_EN" data-x="-12.400000000000002" data-y="-43.89" x="92.04068990251379" y="521.20635127645" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BOOST_EN</text><text data-type="text" data-label="RESETN" data-x="1.5999999999999999" data-y="-1.1900000000000004" x="219.84871702911548" y="131.39186854031496" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">RESETN</text><text data-type="text" data-label="RESETN" data-x="6.9" data-y="-26.809" x="268.233184441329" y="365.2714290372013" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">RESETN</text><text data-type="text" data-label="RESETN" data-x="-12.4" data-y="-39.89" x="92.0406899025138" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">RESETN</text><text data-type="text" data-label="X32P" data-x="1.6" data-y="-0.9900000000000005" x="219.84871702911548" y="129.5660395813635" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X32P</text><text data-type="text" data-label="X32P" data-x="-10.5" data-y="-1.89" x="109.3860650125526" y="137.78226989664503" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">X32P</text><text data-type="text" data-label="X32P" data-x="5.89" data-y="-27.52" x="259.01274819862414" y="371.76225098627367" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 259.01274819862414, 371.76225098627367)">X32P</text><text data-type="text" data-label="X32N" data-x="1.6" data-y="-0.7900000000000006" x="219.84871702911548" y="127.74021062241204" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X32N</text><text data-type="text" data-label="X32N" data-x="-9.5" data-y="-1.89" x="118.51520980730987" y="137.78226989664503" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X32N</text><text data-type="text" data-label="X32N" data-x="11.89" data-y="-27.52" x="313.7876169671677" y="371.76225098627367" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 313.7876169671677, 371.76225098627367)">X32N</text><text data-type="text" data-label="I2C_SCL" data-x="1.5999999999999999" data-y="0.2099999999999992" x="219.84871702911548" y="118.61106582765478" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">I2C_SCL</text><text data-type="text" data-label="I2C_SCL" data-x="19.995000500000003" data-y="2.81" x="387.77934009324775" y="94.8752893612859" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">I2C_SCL</text><text data-type="text" data-label="I2C_SCL" data-x="25.15" data-y="1.7899999999999998" x="434.840076945649" y="104.1870170519383" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">I2C_SCL</text><text data-type="text" data-label="I2C_SCL" data-x="-0.4000000000000001" data-y="-39.89" x="201.59042743960097" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">I2C_SCL</text><text data-type="text" data-label="X48P" data-x="1.6" data-y="0.8099999999999995" x="219.84871702911548" y="113.13357895080043" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X48P</text><text data-type="text" data-label="X48P" data-x="-11.25" data-y="2.21" x="102.53920641648466" y="100.35277623814025" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">X48P</text><text data-type="text" data-label="X48P" data-x="17.89" data-y="-27.52" x="368.56248573571133" y="371.76225098627367" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 368.56248573571133, 371.76225098627367)">X48P</text><text data-type="text" data-label="X48N" data-x="1.6" data-y="1.0099999999999998" x="219.84871702911548" y="111.30774999184897" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X48N</text><text data-type="text" data-label="X48N" data-x="-8.75" data-y="2.01" x="125.36206840337782" y="102.1786051970917" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">X48N</text><text data-type="text" data-label="X48N" data-x="23.89" data-y="-27.52" x="423.3373545042549" y="371.76225098627367" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 423.3373545042549, 371.76225098627367)">X48N</text><text data-type="text" data-label="RF_RAW" data-x="6.614999999999999" data-y="-12.25" x="265.63137817482317" y="232.3602099703303" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central" transform="rotate(-90, 265.63137817482317, 232.3602099703303)">RF_RAW</text><text data-type="text" data-label="RF_RAW" data-x="5.3720875" data-y="-43.88737545" x="254.28464999510942" y="521.182391379479" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">RF_RAW</text><text data-type="text" data-label="TS" data-x="11.769999999999998" data-y="1.61" x="312.6921195917968" y="105.83026311499461" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">TS</text><text data-type="text" data-label="TS" data-x="22.8995" data-y="7.91" x="414.2949365850478" y="48.316650908023846" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">TS</text><text data-type="text" data-label="TS" data-x="5.5200000000000005" data-y="-35.89" x="255.63496462456396" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">TS</text><text data-type="text" data-label="BOOST_FB" data-x="36.15" data-y="1.9100000000000001" x="535.2606696879789" y="103.09151967656743" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">BOOST_FB</text><text data-type="text" data-label="BOOST_FB" data-x="33" data-y="-39.89" x="506.50386358449356" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">BOOST_FB</text><text data-type="text" data-label="RF_ANT" data-x="-5.6000000000000005" data-y="-43.89" x="154.1188745068632" y="521.20635127645" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">RF_ANT</text><text data-type="text" data-label="RF_ANT" data-x="-10.11" data-y="-6.5" x="112.94643148250795" y="179.867627400476" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 112.94643148250795, 179.867627400476)">RF_ANT</text><text data-type="text" data-label="RF_ANT" data-x="-0.11000000000000001" data-y="-31.519999999999996" x="204.23787943008057" y="408.2788301653027" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 204.23787943008057, 408.2788301653027)">RF_ANT</text><text data-type="text" data-label="RF_FILTER" data-x="-2.636043749999999" data-y="-30.568999999999992" x="181.17726027843895" y="399.5970134654885" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">RF_FILTER</text><text data-type="text" data-label="RF_FILTER" data-x="35.89" data-y="-27.52" x="532.887092041342" y="371.76225098627367" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 532.887092041342, 371.76225098627367)">RF_FILTER</text><text data-type="text" data-label="RF_50" data-x="-10.5" data-y="-32.47" x="109.3860650125526" y="416.9515177203221" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">RF_50</text><text data-type="text" data-label="RF_50" data-x="-6.3999999999999995" data-y="-43.89" x="146.81555867105737" y="521.20635127645" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">RF_50</text><text data-type="text" data-label="ACC_INT1" data-x="-1.6" data-y="1.7100000000000006" x="190.63545368589226" y="104.91734863551888" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">ACC_INT1</text><text data-type="text" data-label="ACC_INT1" data-x="22.9" data-y="-7.1899999999999995" x="414.2995011574452" y="186.1667373088585" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">ACC_INT1</text><text data-type="text" data-label="ACC_INT2" data-x="-1.6" data-y="1.5100000000000005" x="190.63545368589226" y="106.74317759447032" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">ACC_INT2</text><text data-type="text" data-label="ACC_INT2" data-x="22.9" data-y="-7.39" x="414.2995011574452" y="187.99256626780996" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">ACC_INT2</text><text data-type="text" data-label="CHG_LP" data-x="-1.5999999999999999" data-y="1.3100000000000005" x="190.63545368589226" y="108.56900655342179" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">CHG_LP</text><text data-type="text" data-label="CHG_LP" data-x="14.140000000000002" data-y="1.79" x="334.32819275537156" y="104.1870170519383" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">CHG_LP</text><text data-type="text" data-label="SWDIO" data-x="-1.5999999999999999" data-y="0.11000000000000067" x="190.63545368589226" y="119.5239803071305" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">SWDIO</text><text data-type="text" data-label="SWDIO" data-x="1.7" data-y="-51.89" x="220.76163150859122" y="594.2395096345082" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">SWDIO</text><text data-type="text" data-label="SWCLK" data-x="-1.5999999999999999" data-y="-0.08999999999999929" x="190.63545368589226" y="121.34980926608195" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">SWCLK</text><text data-type="text" data-label="SWCLK" data-x="7.7" data-y="-51.89" x="275.5365002771348" y="594.2395096345082" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">SWCLK</text><text data-type="text" data-label="DCDC" data-x="1.6" data-y="-0.19000000000000072" x="219.84871702911548" y="122.2627237455577" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">DCDC</text><text data-type="text" data-label="DCDC" data-x="-0.6279125000000001" data-y="-43.88737545" x="199.50978122656585" y="521.182391379479" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">DCDC</text><text data-type="text" data-label="MRN" data-x="11.809999999999999" data-y="1.4100000000000001" x="313.0572853835871" y="107.65609207394606" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">MRN</text><text data-type="text" data-label="MRN" data-x="12.39" data-y="-11.89" x="318.35218936454635" y="229.07371784421764" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">MRN</text><text data-type="text" data-label="IMAX" data-x="14.150000000000002" data-y="1.2100000000000002" x="334.41948420331914" y="109.4819210328975" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IMAX</text><text data-type="text" data-label="IMAX" data-x="-0.4000000000000001" data-y="-35.89" x="201.59042743960097" y="448.173192918392" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IMAX</text><text data-type="text" data-label="BIN" data-x="22.81" data-y="2.31" x="413.477878125917" y="99.43986175866452" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BIN</text><text data-type="text" data-label="BIN" data-x="11.559999999999999" data-y="-35.35" x="310.7749991848978" y="443.24345472922306" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BIN</text><text data-type="text" data-label="BOOST_SW" data-x="33.85" data-y="1.9100000000000001" x="514.2636366600373" y="103.09151967656743" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BOOST_SW</text><text data-type="text" data-label="BOOST_SW" data-x="12.290000000000001" data-y="-44.1" x="317.43927488507063" y="523.1234716833492" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 317.43927488507063, 523.1234716833492)">BOOST_SW</text><text data-type="text" data-label="OLED_IREF" data-x="36.300000000000004" data-y="-6.6899999999999995" x="536.6300414071925" y="181.6021649114799" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="start" dominant-baseline="central">OLED_IREF</text><text data-type="text" data-label="OLED_IREF" data-x="23.599999999999998" data-y="-39.89" x="420.6899025137752" y="484.68977209742104" fill="green" font-size="1.0954973753708714" font-family="sans-serif" text-anchor="end" dominant-baseline="central">OLED_IREF</text><g><circle data-type="point" data-label="VDDR2
259
+ x-" data-x="-1.5" data-y="2.0000000000000004" cx="191.54836816536798" cy="102.26989664503927" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO8
260
+ x-" data-x="-1.5" data-y="1.8000000000000005" cx="191.54836816536798" cy="104.09572560399073" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO9
261
+ x-" data-x="-1.5" data-y="1.6000000000000005" cx="191.54836816536798" cy="105.92155456294218" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO10
262
+ x-" data-x="-1.5" data-y="1.4000000000000004" cx="191.54836816536798" cy="107.74738352189362" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO11
263
+ x-" data-x="-1.5" data-y="1.2000000000000004" cx="191.54836816536798" cy="109.57321248084509" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO12
264
+ x-" data-x="-1.5" data-y="1.0000000000000004" cx="191.54836816536798" cy="111.39904143979653" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO13
265
+ x-" data-x="-1.5" data-y="0.8000000000000005" cx="191.54836816536798" cy="113.22487039874798" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDS4
266
+ x-" data-x="-1.5" data-y="0.6000000000000005" cx="191.54836816536798" cy="115.05069935769944" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO14
267
+ x-" data-x="-1.5" data-y="0.4000000000000006" cx="191.54836816536798" cy="116.87652831665089" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO15
268
+ x-" data-x="-1.5" data-y="0.20000000000000062" cx="191.54836816536798" cy="118.70235727560234" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO16_SWDIO
269
+ x-" data-x="-1.5" data-y="6.661338147750939e-16" cx="191.54836816536798" cy="120.5281862345538" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO17_SWDCK
270
+ x-" data-x="-1.5" data-y="-0.1999999999999993" cx="191.54836816536798" cy="122.35401519350525" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO18
271
+ x-" data-x="-1.5" data-y="-0.39999999999999947" cx="191.54836816536798" cy="124.1798441524567" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO19
272
+ x-" data-x="-1.5" data-y="-0.5999999999999996" cx="191.54836816536798" cy="126.00567311140816" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO20_A11
273
+ x-" data-x="-1.5" data-y="-0.7999999999999998" cx="191.54836816536798" cy="127.8315020703596" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO21_A10
274
+ x-" data-x="-1.5" data-y="-1" cx="191.54836816536798" cy="129.65733102931105" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDS3
275
+ x-" data-x="-1.5" data-y="-1.2000000000000002" cx="191.54836816536798" cy="131.4831599882625" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO22_A9
276
+ x-" data-x="-1.5" data-y="-1.4000000000000004" cx="191.54836816536798" cy="133.30898894721398" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO23_A8
277
+ x-" data-x="-1.5" data-y="-1.6000000000000005" cx="191.54836816536798" cy="135.13481790616544" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO24_A7
278
+ x-" data-x="-1.5" data-y="-1.8000000000000007" cx="191.54836816536798" cy="136.96064686511687" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO25_A6
279
+ x-" data-x="-1.5" data-y="-2.0000000000000004" cx="191.54836816536798" cy="138.78647582406833" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO0_A5
280
+ x+" data-x="1.5" data-y="-1.9000000000000006" cx="218.93580254963976" cy="137.87356134459262" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO1_A4
281
+ x+" data-x="1.5" data-y="-1.7000000000000006" cx="218.93580254963976" cy="136.04773238564115" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO2_A3
282
+ x+" data-x="1.5" data-y="-1.5000000000000004" cx="218.93580254963976" cy="134.2219034266897" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RSTN
283
+ x+" data-x="1.5" data-y="-1.3000000000000005" cx="218.93580254963976" cy="132.39607446773826" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO3_X32P
284
+ x+" data-x="1.5" data-y="-1.1000000000000005" cx="218.93580254963976" cy="130.5702455087868" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO4_X32N
285
+ x+" data-x="1.5" data-y="-0.9000000000000006" cx="218.93580254963976" cy="128.74441654983534" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDD
286
+ x+" data-x="1.5" data-y="-0.7000000000000006" cx="218.93580254963976" cy="126.91858759088389" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO5_A2
287
+ x+" data-x="1.5" data-y="-0.5000000000000007" cx="218.93580254963976" cy="125.09275863193244" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DCDC
288
+ x+" data-x="1.5" data-y="-0.3000000000000007" cx="218.93580254963976" cy="123.26692967298098" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDS2
289
+ x+" data-x="1.5" data-y="-0.10000000000000075" cx="218.93580254963976" cy="121.44110071402953" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO6_A1
290
+ x+" data-x="1.5" data-y="0.0999999999999992" cx="218.93580254963976" cy="119.61527175507808" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DIO7_A0
291
+ x+" data-x="1.5" data-y="0.29999999999999916" cx="218.93580254963976" cy="117.78944279612664" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDR1
292
+ x+" data-x="1.5" data-y="0.49999999999999933" cx="218.93580254963976" cy="115.96361383717517" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="X48P
293
+ x+" data-x="1.5" data-y="0.6999999999999995" cx="218.93580254963976" cy="114.13778487822373" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="X48N
294
+ x+" data-x="1.5" data-y="0.8999999999999997" cx="218.93580254963976" cy="112.31195591927226" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC
295
+ x+" data-x="1.5" data-y="1.0999999999999999" cx="218.93580254963976" cy="110.48612696032082" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDS1
296
+ x+" data-x="1.5" data-y="1.3" cx="218.93580254963976" cy="108.66029800136936" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="ANT
297
+ x+" data-x="1.5" data-y="1.5000000000000002" cx="218.93580254963976" cy="106.83446904241791" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RFGND
298
+ x+" data-x="1.5" data-y="1.7000000000000004" cx="218.93580254963976" cy="105.00864008346645" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="EP
299
+ x+" data-x="1.5" data-y="1.9000000000000006" cx="218.93580254963976" cy="103.182811124515" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IN
300
+ x-" data-x="11.95" data-y="2.9" cx="314.33536565485315" cy="94.05366632975773" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="PMID1
301
+ x-" data-x="11.95" data-y="2.7" cx="314.33536565485315" cy="95.8794952887092" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BAT1
302
+ x-" data-x="11.95" data-y="2.5" cx="314.33536565485315" cy="97.70532424766064" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
303
+ x-" data-x="11.95" data-y="2.3" cx="314.33536565485315" cy="99.53115320661209" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_PG
304
+ x-" data-x="11.95" data-y="2.0999999999999996" cx="314.33536565485315" cy="101.35698216556355" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="PMID2
305
+ x-" data-x="11.95" data-y="1.9" cx="314.33536565485315" cy="103.182811124515" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BAT2
306
+ x-" data-x="11.95" data-y="1.7" cx="314.33536565485315" cy="105.00864008346645" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="TS
307
+ x-" data-x="11.95" data-y="1.5" cx="314.33536565485315" cy="106.83446904241791" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_MR
308
+ x-" data-x="11.95" data-y="1.3" cx="314.33536565485315" cy="108.66029800136936" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_CE
309
+ x-" data-x="11.95" data-y="1.1" cx="314.33536565485315" cy="110.4861269603208" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IMAX
310
+ x+" data-x="14.05" data-y="1.1" cx="333.5065697238434" cy="110.4861269603208" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="ADCIN
311
+ x+" data-x="14.05" data-y="1.3" cx="333.5065697238434" cy="108.66029800136936" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDD
312
+ x+" data-x="14.05" data-y="1.5" cx="333.5065697238434" cy="106.83446904241791" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_INT
313
+ x+" data-x="14.05" data-y="1.7000000000000002" cx="333.5065697238434" cy="105.00864008346645" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_LP
314
+ x+" data-x="14.05" data-y="1.9000000000000001" cx="333.5065697238434" cy="103.182811124515" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="LSLDO
315
+ x+" data-x="14.05" data-y="2.1" cx="333.5065697238434" cy="101.35698216556355" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VIO
316
+ x+" data-x="14.05" data-y="2.3" cx="333.5065697238434" cy="99.53115320661209" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDA
317
+ x+" data-x="14.05" data-y="2.5" cx="333.5065697238434" cy="97.70532424766064" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCL
318
+ x+" data-x="14.05" data-y="2.7" cx="333.5065697238434" cy="95.8794952887092" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VINLS
319
+ x+" data-x="14.05" data-y="2.9" cx="333.5065697238434" cy="94.05366632975773" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GPOUT
320
+ x-" data-x="22.95" data-y="2.4" cx="414.755958397183" cy="98.61823872713637" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BIN
321
+ x-" data-x="22.95" data-y="2.2" cx="414.755958397183" cy="100.44406768608782" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VSS1
322
+ x-" data-x="22.95" data-y="2" cx="414.755958397183" cy="102.26989664503927" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDA
323
+ x-" data-x="22.95" data-y="1.7999999999999998" cx="414.755958397183" cy="104.09572560399073" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VSS2
324
+ x-" data-x="22.95" data-y="1.6" cx="414.755958397183" cy="105.92155456294218" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SRX
325
+ x+" data-x="25.05" data-y="1.7" cx="433.9271624661733" cy="105.00864008346645" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCL
326
+ x+" data-x="25.05" data-y="1.9" cx="433.9271624661733" cy="103.182811124515" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDD
327
+ x+" data-x="25.05" data-y="2.1" cx="433.9271624661733" cy="101.35698216556355" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BAT
328
+ x+" data-x="25.05" data-y="2.3" cx="433.9271624661733" cy="99.53115320661209" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDO
329
+ x-" data-x="23" data-y="-6.5" cx="415.2124156369209" cy="179.867627400476" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDX
330
+ x-" data-x="23" data-y="-6.7" cx="415.2124156369209" cy="181.69345635942747" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDIO
331
+ x-" data-x="23" data-y="-6.9" cx="415.2124156369209" cy="183.51928531837893" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC2
332
+ x-" data-x="23" data-y="-7.1" cx="415.2124156369209" cy="185.34511427733037" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="INT1
333
+ x-" data-x="23" data-y="-7.3" cx="415.2124156369209" cy="187.1709432362818" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="INT2
334
+ x-" data-x="23" data-y="-7.5" cx="415.2124156369209" cy="188.9967721952333" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDD
335
+ x+" data-x="25" data-y="-7.5" cx="433.4707052264354" cy="188.9967721952333" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GNDIO
336
+ x+" data-x="25" data-y="-7.3" cx="433.4707052264354" cy="187.1709432362818" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
337
+ x+" data-x="25" data-y="-7.1" cx="433.4707052264354" cy="185.34511427733037" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="CSB
338
+ x+" data-x="25" data-y="-6.9" cx="433.4707052264354" cy="183.51928531837893" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC1
339
+ x+" data-x="25" data-y="-6.7" cx="433.4707052264354" cy="181.69345635942747" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCX
340
+ x+" data-x="25" data-y="-6.5" cx="433.4707052264354" cy="179.867627400476" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IN
341
+ x-" data-x="12" data-y="-6.8" cx="314.791822894591" cy="182.6063708389032" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
342
+ x-" data-x="12" data-y="-7" cx="314.791822894591" cy="184.43219979785465" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="EN
343
+ x-" data-x="12" data-y="-7.2" cx="314.791822894591" cy="186.25802875680608" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC
344
+ x+" data-x="14" data-y="-7.1" cx="333.0501124841055" cy="185.34511427733037" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="OUT
345
+ x+" data-x="14" data-y="-6.9" cx="333.0501124841055" cy="183.51928531837893" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VOUT
346
+ x-" data-x="33.95" data-y="2.2" cx="515.176551139513" cy="100.44406768608782" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="EN
347
+ x-" data-x="33.95" data-y="2" cx="515.176551139513" cy="102.26989664503927" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SW
348
+ x-" data-x="33.95" data-y="1.8" cx="515.176551139513" cy="104.09572560399073" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="FB
349
+ x+" data-x="36.05" data-y="1.8" cx="534.3477552085031" cy="104.09572560399073" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
350
+ x+" data-x="36.05" data-y="2" cx="534.3477552085031" cy="102.26989664503927" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VIN
351
+ x+" data-x="36.05" data-y="2.2" cx="534.3477552085031" cy="100.44406768608782" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C2P
352
+ x-" data-x="33.8" data-y="-6.4" cx="513.8071794202993" cy="178.9547129210003" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C2N
353
+ x-" data-x="33.8" data-y="-6.6" cx="513.8071794202993" cy="180.78054187995173" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1P
354
+ x-" data-x="33.8" data-y="-6.8" cx="513.8071794202993" cy="182.6063708389032" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1N
355
+ x-" data-x="33.8" data-y="-7" cx="513.8071794202993" cy="184.43219979785465" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VBAT
356
+ x-" data-x="33.8" data-y="-7.2" cx="513.8071794202993" cy="186.25802875680608" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VBREF
357
+ x-" data-x="33.8" data-y="-7.4" cx="513.8071794202993" cy="188.08385771575755" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VSS
358
+ x-" data-x="33.8" data-y="-7.6" cx="513.8071794202993" cy="189.909686674709" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDD
359
+ x+" data-x="36.2" data-y="-7.6" cx="535.7171269277169" cy="189.909686674709" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RESN
360
+ x+" data-x="36.2" data-y="-7.4" cx="535.7171269277169" cy="188.08385771575755" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCL
361
+ x+" data-x="36.2" data-y="-7.2" cx="535.7171269277169" cy="186.25802875680608" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDA
362
+ x+" data-x="36.2" data-y="-7" cx="535.7171269277169" cy="184.43219979785465" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IREF
363
+ x+" data-x="36.2" data-y="-6.8" cx="535.7171269277169" cy="182.6063708389032" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VCOMH
364
+ x+" data-x="36.2" data-y="-6.6" cx="535.7171269277169" cy="180.78054187995173" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VCC
365
+ x+" data-x="36.2" data-y="-6.4" cx="535.7171269277169" cy="178.9547129210003" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="X1
366
+ x-" data-x="-11.15" data-y="2.1" cx="103.45212089596039" cy="101.35698216556355" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND1
367
+ x-" data-x="-11.15" data-y="1.9" cx="103.45212089596039" cy="103.182811124515" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="X2
368
+ x+" data-x="-8.85" data-y="1.9" cx="124.44915392390209" cy="103.182811124515" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND2
369
+ x+" data-x="-8.85" data-y="2.1" cx="124.44915392390209" cy="101.35698216556355" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
370
+ x+" data-x="-9.6" data-y="-2" cx="117.60229532783414" cy="138.78647582406833" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
371
+ x-" data-x="-10.4" data-y="-2" cx="110.29897949202834" cy="138.78647582406833" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="ANT
372
+ y-" data-x="-10" data-y="-6.4" cx="113.95063740993123" cy="178.9547129210003" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
373
+ x-" data-x="-10.2" data-y="-5.7" cx="112.1248084509798" cy="172.5643115646702" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
374
+ x-" data-x="12.53" data-y="-12" cx="319.6302696358124" cy="230.07792377164094" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
375
+ x+" data-x="13.47" data-y="-12" cx="328.2116657428842" cy="230.07792377164094" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
376
+ x+" data-x="24.4" data-y="-12" cx="427.99321834958107" cy="230.07792377164094" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
377
+ x-" data-x="23.6" data-y="-12" cx="420.6899025137753" cy="230.07792377164094" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="P1
378
+ x-" data-x="33.95" data-y="-12.9" cx="515.176551139513" cy="238.2941540869225" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="P2
379
+ x-" data-x="33.95" data-y="-13.1" cx="515.176551139513" cy="240.11998304587394" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="P1
380
+ x-" data-x="22.95" data-y="8.2" cx="414.755958397183" cy="45.66919891754425" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="P2
381
+ x-" data-x="22.95" data-y="8" cx="414.755958397183" cy="47.4950278764957" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="P3
382
+ x-" data-x="22.95" data-y="7.8" cx="414.755958397183" cy="49.320856835447145" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
383
+ y+" data-x="-12" data-y="-19.62" cx="95.69234782041671" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
384
+ y-" data-x="-12" data-y="-20.38" cx="95.69234782041671" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
385
+ y+" data-x="-6" data-y="-19.62" cx="150.4672165889603" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
386
+ y-" data-x="-6" data-y="-20.38" cx="150.4672165889603" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
387
+ y+" data-x="-1.8369701987210297e-17" data-y="-19.62" cx="205.24208535750387" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
388
+ y-" data-x="1.8369701987210297e-17" data-y="-20.38" cx="205.24208535750387" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
389
+ y+" data-x="6" data-y="-19.62" cx="260.01695412604744" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
390
+ y-" data-x="6" data-y="-20.38" cx="260.01695412604744" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
391
+ y+" data-x="12" data-y="-19.62" cx="314.791822894591" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
392
+ y-" data-x="12" data-y="-20.38" cx="314.791822894591" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
393
+ y+" data-x="18" data-y="-19.62" cx="369.56669166313463" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
394
+ y-" data-x="18" data-y="-20.38" cx="369.56669166313463" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
395
+ y+" data-x="24" data-y="-19.62" cx="424.3415604316782" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
396
+ y-" data-x="24" data-y="-20.38" cx="424.3415604316782" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
397
+ y+" data-x="30" data-y="-19.62" cx="479.1164292002218" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
398
+ y-" data-x="30" data-y="-20.38" cx="479.1164292002218" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
399
+ y+" data-x="36" data-y="-19.62" cx="533.8912979687653" cy="299.6420071076913" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
400
+ y-" data-x="36" data-y="-20.38" cx="533.8912979687653" cy="306.58015715170677" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
401
+ y+" data-x="-12" data-y="-23.62" cx="95.69234782041671" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
402
+ y-" data-x="-12" data-y="-24.38" cx="95.69234782041671" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
403
+ y+" data-x="-6" data-y="-23.62" cx="150.4672165889603" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
404
+ y-" data-x="-6" data-y="-24.38" cx="150.4672165889603" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
405
+ y+" data-x="-1.8369701987210297e-17" data-y="-23.62" cx="205.24208535750387" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
406
+ y-" data-x="1.8369701987210297e-17" data-y="-24.38" cx="205.24208535750387" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
407
+ y+" data-x="6" data-y="-23.62" cx="260.01695412604744" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
408
+ y-" data-x="6" data-y="-24.38" cx="260.01695412604744" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
409
+ y+" data-x="12" data-y="-23.62" cx="314.791822894591" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
410
+ y-" data-x="12" data-y="-24.38" cx="314.791822894591" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
411
+ y+" data-x="18" data-y="-23.62" cx="369.56669166313463" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
412
+ y-" data-x="18" data-y="-24.38" cx="369.56669166313463" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
413
+ y+" data-x="24" data-y="-23.62" cx="424.3415604316782" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
414
+ y-" data-x="24" data-y="-24.38" cx="424.3415604316782" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
415
+ y+" data-x="30" data-y="-23.62" cx="479.1164292002218" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
416
+ y-" data-x="30" data-y="-24.38" cx="479.1164292002218" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
417
+ y+" data-x="36" data-y="-23.62" cx="533.8912979687653" cy="336.1585862867204" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
418
+ y-" data-x="36" data-y="-24.38" cx="533.8912979687653" cy="343.0967363307359" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
419
+ y+" data-x="-12" data-y="-27.62" cx="95.69234782041671" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
420
+ y-" data-x="-12" data-y="-28.38" cx="95.69234782041671" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
421
+ y+" data-x="-6" data-y="-27.62" cx="150.4672165889603" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
422
+ y-" data-x="-6" data-y="-28.38" cx="150.4672165889603" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
423
+ y+" data-x="-1.8369701987210297e-17" data-y="-27.62" cx="205.24208535750387" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
424
+ y-" data-x="1.8369701987210297e-17" data-y="-28.38" cx="205.24208535750387" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
425
+ y+" data-x="6" data-y="-27.62" cx="260.01695412604744" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
426
+ y-" data-x="6" data-y="-28.38" cx="260.01695412604744" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
427
+ y+" data-x="12" data-y="-27.62" cx="314.791822894591" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
428
+ y-" data-x="12" data-y="-28.38" cx="314.791822894591" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
429
+ y+" data-x="18" data-y="-27.62" cx="369.56669166313463" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
430
+ y-" data-x="18" data-y="-28.38" cx="369.56669166313463" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
431
+ y+" data-x="24" data-y="-27.62" cx="424.3415604316782" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
432
+ y-" data-x="24" data-y="-28.38" cx="424.3415604316782" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
433
+ y+" data-x="30" data-y="-27.62" cx="479.1164292002218" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
434
+ y-" data-x="30" data-y="-28.38" cx="479.1164292002218" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
435
+ y+" data-x="36" data-y="-27.62" cx="533.8912979687653" cy="372.6751654657494" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
436
+ y-" data-x="36" data-y="-28.38" cx="533.8912979687653" cy="379.6133155097649" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
437
+ y+" data-x="-12" data-y="-31.619999999999997" cx="95.69234782041671" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
438
+ y-" data-x="-12" data-y="-32.38" cx="95.69234782041671" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
439
+ y+" data-x="-6" data-y="-31.619999999999997" cx="150.4672165889603" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
440
+ y-" data-x="-6" data-y="-32.38" cx="150.4672165889603" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
441
+ y+" data-x="-1.8369701987210297e-17" data-y="-31.619999999999997" cx="205.24208535750387" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
442
+ y-" data-x="1.8369701987210297e-17" data-y="-32.38" cx="205.24208535750387" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
443
+ y+" data-x="6" data-y="-31.619999999999997" cx="260.01695412604744" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
444
+ y-" data-x="6" data-y="-32.38" cx="260.01695412604744" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
445
+ y+" data-x="12" data-y="-31.619999999999997" cx="314.791822894591" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
446
+ y-" data-x="12" data-y="-32.38" cx="314.791822894591" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
447
+ y+" data-x="18" data-y="-31.619999999999997" cx="369.56669166313463" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
448
+ y-" data-x="18" data-y="-32.38" cx="369.56669166313463" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
449
+ y+" data-x="24" data-y="-31.619999999999997" cx="424.3415604316782" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
450
+ y-" data-x="24" data-y="-32.38" cx="424.3415604316782" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
451
+ y+" data-x="30" data-y="-31.619999999999997" cx="479.1164292002218" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
452
+ y-" data-x="30" data-y="-32.38" cx="479.1164292002218" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
453
+ y+" data-x="36" data-y="-31.619999999999997" cx="533.8912979687653" cy="409.19174464477845" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
454
+ y-" data-x="36" data-y="-32.38" cx="533.8912979687653" cy="416.12989468879397" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
455
+ y+" data-x="-12" data-y="-35.62" cx="95.69234782041671" cy="445.70832382380746" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
456
+ y-" data-x="-12" data-y="-36.38" cx="95.69234782041671" cy="452.64647386782303" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
457
+ y+" data-x="-6" data-y="-35.62" cx="150.4672165889603" cy="445.70832382380746" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
458
+ y-" data-x="-6" data-y="-36.38" cx="150.4672165889603" cy="452.64647386782303" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
459
+ x-" data-x="-0.3" data-y="-36" cx="202.5033419190767" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
460
+ x+" data-x="0.3" data-y="-36" cx="207.98082879593105" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
461
+ x-" data-x="5.7" data-y="-36" cx="257.2782106876203" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
462
+ x+" data-x="6.3" data-y="-36" cx="262.75569756447464" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
463
+ x-" data-x="11.7" data-y="-35.46" cx="312.05307945616386" cy="444.24766065664636" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
464
+ x+" data-x="12.3" data-y="-35.46" cx="317.5305663330182" cy="444.24766065664636" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
465
+ x-" data-x="17.7" data-y="-36" cx="366.8279482247074" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
466
+ x+" data-x="18.3" data-y="-36" cx="372.3054351015618" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
467
+ x-" data-x="23.7" data-y="-36" cx="421.602816993251" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
468
+ x+" data-x="24.3" data-y="-36" cx="427.08030387010535" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
469
+ x-" data-x="29.7" data-y="-36" cx="476.37768576179457" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
470
+ x+" data-x="30.3" data-y="-36" cx="481.8551726386489" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
471
+ x-" data-x="35.7" data-y="-36" cx="531.1525545303382" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
472
+ x+" data-x="36.3" data-y="-36" cx="536.6300414071925" cy="449.1773988458153" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
473
+ x-" data-x="-12.3" data-y="-40" cx="92.95360438198954" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
474
+ x+" data-x="-11.7" data-y="-40" cx="98.43109125884389" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
475
+ x-" data-x="-6.3" data-y="-40" cx="147.72847315053312" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
476
+ x+" data-x="-5.7" data-y="-40" cx="153.20596002738748" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
477
+ x-" data-x="-0.3" data-y="-40" cx="202.5033419190767" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
478
+ x+" data-x="0.3" data-y="-40" cx="207.98082879593105" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
479
+ x-" data-x="5.7" data-y="-40" cx="257.2782106876203" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
480
+ x+" data-x="6.3" data-y="-40" cx="262.75569756447464" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
481
+ x-" data-x="11.7" data-y="-40" cx="312.05307945616386" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
482
+ x+" data-x="12.3" data-y="-40" cx="317.5305663330182" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
483
+ x-" data-x="17.7" data-y="-40" cx="366.8279482247074" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
484
+ x+" data-x="18.3" data-y="-40" cx="372.3054351015618" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
485
+ x-" data-x="23.7" data-y="-40" cx="421.602816993251" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
486
+ x+" data-x="24.3" data-y="-40" cx="427.08030387010535" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
487
+ x-" data-x="29.7" data-y="-40" cx="476.37768576179457" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
488
+ x+" data-x="30.3" data-y="-40" cx="481.8551726386489" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
489
+ x-" data-x="35.7" data-y="-40" cx="531.1525545303382" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
490
+ x+" data-x="36.3" data-y="-40" cx="536.6300414071925" cy="485.69397802484434" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
491
+ x-" data-x="-12.3" data-y="-44" cx="92.95360438198954" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
492
+ x+" data-x="-11.7" data-y="-44" cx="98.43109125884389" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
493
+ x-" data-x="-6.3" data-y="-44" cx="147.72847315053312" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
494
+ x+" data-x="-5.7" data-y="-44" cx="153.20596002738748" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
495
+ x-" data-x="-0.5279125" data-y="-43.99737545" cx="200.42269570604157" cy="522.1865973069023" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
496
+ x+" data-x="0.5279125" data-y="-44.00262455" cx="210.06147500896617" cy="522.2345171008444" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
497
+ x-" data-x="5.4720875" data-y="-43.99737545" cx="255.19756447458514" cy="522.1865973069023" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
498
+ x+" data-x="6.5279125" data-y="-44.00262455" cx="264.83634377750974" cy="522.2345171008444" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
499
+ y-" data-x="12.4" data-y="-44" cx="318.44348081249393" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
500
+ y-" data-x="11.6" data-y="-44" cx="311.1401649766881" cy="522.2105572038733" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
501
+ x-" data-x="-10.2" data-y="-52" cx="112.1248084509798" cy="595.2437155619315" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
502
+ x-" data-x="-4.2" data-y="-52" cx="166.89967721952337" cy="595.2437155619315" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
503
+ x-" data-x="1.8" data-y="-52" cx="221.67454598806694" cy="595.2437155619315" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
504
+ x-" data-x="7.8" data-y="-52" cx="276.4494147566105" cy="595.2437155619315" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
505
+ x-" data-x="13.8" data-y="-26.919" cx="331.2242835251541" cy="366.2756349646246" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
506
+ orientation: y+" data-x="-12" data-y="-26" cx="95.69234782041671" cy="357.88595089824264" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
507
+ orientation: y+" data-x="3.0010000000000003" data-y="0.5509999999999994" cx="232.63864888657042" cy="115.49802745264256" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
508
+ orientation: y+" data-x="30" data-y="-23.42" cx="479.1164292002218" cy="334.33275732776895" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
509
+ orientation: y+" data-x="0.8289125" data-y="-43.55162455" cx="212.8093475921881" cy="518.117272798409" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
510
+ orientation: y+" data-x="-2.801" data-y="0.6000000000000004" cx="179.67135078738877" cy="115.05069935769944" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
511
+ orientation: y-" data-x="2.3680909090909092" data-y="1.3" cx="226.86073015374313" cy="108.66029800136936" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
512
+ orientation: x-" data-x="14.840000000000002" data-y="0.7000000000000002" cx="340.7185941117017" cy="114.13778487822371" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
513
+ orientation: y+" data-x="18.21900000000001" data-y="-6.849" cx="371.5659743731865" cy="183.0536989338463" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
514
+ orientation: x+" data-x="25.3" data-y="-7.1000000000000005" cx="436.20944866486263" cy="185.34511427733037" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
515
+ orientation: y+" data-x="24" data-y="-19.42" cx="424.3415604316782" cy="297.8161781487398" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
516
+ orientation: y+" data-x="-6" data-y="-23.62" cx="150.4672165889603" cy="336.1585862867204" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
517
+ orientation: y+" data-x="-1.8369701987210297e-17" data-y="-23.42" cx="205.24208535750387" cy="334.33275732776895" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
518
+ orientation: y+" data-x="12" data-y="-23.42" cx="314.791822894591" cy="334.33275732776895" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
519
+ orientation: y+" data-x="6" data-y="-31.619999999999997" cx="260.01695412604744" cy="409.19174464477845" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
520
+ orientation: y+" data-x="12" data-y="-31.098999999999993" cx="314.791822894591" cy="404.4354602067099" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
521
+ orientation: y+" data-x="24.5" data-y="-36" cx="428.9061328290568" cy="449.1773988458153" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
522
+ orientation: y+" data-x="36.480999999999995" data-y="-35.649" cx="538.2824166150435" cy="445.9730690228555" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
523
+ orientation: y+" data-x="-11.5" data-y="-40" cx="100.25692021779534" cy="485.69397802484434" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
524
+ orientation: y+" data-x="0.5" data-y="-40" cx="209.8066577548825" cy="485.69397802484434" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
525
+ orientation: y+" data-x="2.401" data-y="-0.6490000000000006" cx="227.16116200971607" cy="126.45300120635127" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
526
+ orientation: y+" data-x="-6" data-y="-27.62" cx="150.4672165889603" cy="372.6751654657494" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
527
+ orientation: y-" data-x="7.849999999999986" data-y="1.7000000000000004" cx="276.90587199634825" cy="105.00864008346645" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
528
+ orientation: y-" data-x="10.408999999999999" data-y="1.799" cx="300.2673535261322" cy="104.10485474878548" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
529
+ orientation: y-" data-x="15.130000000000003" data-y="0.9990000000000001" cx="343.36604610218126" cy="111.40817058459129" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
530
+ orientation: y-" data-x="21.888999999999996" data-y="1.5999999999999996" cx="405.0699357699456" cy="105.92155456294218" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
531
+ orientation: x-" data-x="23" data-y="-6.5" cx="415.2124156369209" cy="179.867627400476" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
532
+ orientation: y-" data-x="11.759" data-y="-7.301" cx="312.59169899905453" cy="187.18007238107657" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
533
+ orientation: y-" data-x="33.278999999999996" data-y="-7.6" cx="509.0508949822308" cy="189.909686674709" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
534
+ orientation: y-" data-x="-12.34" data-y="1.9" cx="92.58843859019925" cy="103.182811124515" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
535
+ orientation: y-" data-x="12" data-y="-20.58" cx="314.791822894591" cy="308.40598611065826" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
536
+ orientation: y-" data-x="24.641" data-y="-12.200999999999999" cx="430.1933422451176" cy="231.91288187538714" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
537
+ orientation: y-" data-x="36" data-y="-20.58" cx="533.8912979687653" cy="308.40598611065826" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
538
+ orientation: y-" data-x="22.559" data-y="7.699" cx="411.18646278243295" cy="50.24290045971763" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
539
+ orientation: y-" data-x="-12" data-y="-24.58" cx="95.69234782041671" cy="344.9225652896873" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
540
+ orientation: y-" data-x="-6" data-y="-24.58" cx="150.4672165889603" cy="344.9225652896873" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
541
+ orientation: y-" data-x="1.8369701987210297e-17" data-y="-24.58" cx="205.24208535750387" cy="344.9225652896873" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
542
+ orientation: y-" data-x="6" data-y="-20.38" cx="260.01695412604744" cy="306.58015715170677" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
543
+ orientation: y-" data-x="18" data-y="-20.38" cx="369.56669166313463" cy="306.58015715170677" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
544
+ orientation: y-" data-x="24" data-y="-20.58" cx="424.3415604316782" cy="308.40598611065826" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
545
+ orientation: y-" data-x="6" data-y="-24.38" cx="260.01695412604744" cy="343.0967363307359" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
546
+ orientation: y-" data-x="18" data-y="-24.58" cx="369.56669166313463" cy="344.9225652896873" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
547
+ orientation: y-" data-x="30" data-y="-24.58" cx="479.1164292002218" cy="344.9225652896873" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
548
+ orientation: y-" data-x="36" data-y="-28.580000000000002" cx="533.8912979687653" cy="381.4391444687164" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
549
+ orientation: y-" data-x="-12" data-y="-28.58" cx="95.69234782041671" cy="381.43914446871634" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
550
+ orientation: y-" data-x="5.9999999999999964" data-y="-28.58" cx="260.0169541260474" cy="381.43914446871634" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
551
+ orientation: y-" data-x="12" data-y="-32.58" cx="314.791822894591" cy="417.9557236477454" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
552
+ orientation: y-" data-x="18" data-y="-28.38" cx="369.56669166313463" cy="379.6133155097649" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
553
+ orientation: y-" data-x="24" data-y="-32.58" cx="424.3415604316782" cy="417.9557236477454" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
554
+ orientation: y-" data-x="30" data-y="-32.58" cx="479.1164292002218" cy="417.9557236477454" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
555
+ orientation: y-" data-x="-6" data-y="-36.580000000000005" cx="150.4672165889603" cy="454.4723028267745" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
556
+ orientation: y-" data-x="1.8369701987210297e-17" data-y="-34.19" cx="205.24208535750387" cy="432.6536467673046" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
557
+ orientation: y-" data-x="6" data-y="-34.19" cx="260.01695412604744" cy="432.6536467673046" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
558
+ orientation: y-" data-x="15.15" data-y="-35.46" cx="343.5486289980764" cy="444.24766065664636" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
559
+ orientation: y-" data-x="36" data-y="-34.02" cx="533.8912979687653" cy="431.10169215219594" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
560
+ orientation: y-" data-x="-12" data-y="-36.38" cx="95.69234782041671" cy="452.64647386782303" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
561
+ orientation: y-" data-x="24.541" data-y="-40.351" cx="429.2804277656419" cy="488.8983078478041" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
562
+ orientation: y-" data-x="-11.459" data-y="-44.351" cx="100.6312151543804" cy="525.4148870268332" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
563
+ orientation: y-" data-x="-4.441000000000001" data-y="-52.101" cx="164.69955332398686" cy="596.165759186202" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
564
+ orientation: y+" data-x="-12" data-y="2.8999999999999986" cx="95.69234782041671" cy="94.05366632975775" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
565
+ orientation: y+" data-x="23.3" data-y="-12" cx="417.9511590753481" cy="230.07792377164094" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
566
+ orientation: x-" data-x="10.649000000000001" data-y="2.5" cx="302.45834827687395" cy="97.70532424766064" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
567
+ orientation: y+" data-x="36.25" data-y="2.9" cx="536.1735841674547" cy="94.05366632975773" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
568
+ orientation: y+" data-x="11.479" data-y="-6.800000000000001" cx="310.0355384565225" cy="182.6063708389032" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
569
+ orientation: y+" data-x="-6" data-y="-19.62" cx="150.4672165889603" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
570
+ orientation: y+" data-x="12" data-y="-19.62" cx="314.791822894591" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
571
+ orientation: y+" data-x="-12" data-y="-23.62" cx="95.69234782041671" cy="336.1585862867204" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
572
+ orientation: y+" data-x="18" data-y="-31.619999999999997" cx="369.56669166313463" cy="409.19174464477845" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
573
+ orientation: y+" data-x="11.25" data-y="-43.949000000000005" cx="307.9449642985231" cy="521.7449708193408" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
574
+ orientation: y+" data-x="26.470001000000003" data-y="2.001" cx="446.8905572038734" cy="102.26076750024453" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
575
+ orientation: y+" data-x="-1.8369701987210297e-17" data-y="-19.62" cx="205.24208535750387" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
576
+ orientation: y+" data-x="15.370000000000003" data-y="2.001" cx="345.557040852923" cy="102.26076750024453" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
577
+ orientation: y+" data-x="6" data-y="-19.62" cx="260.01695412604744" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
578
+ orientation: x+" data-x="14.05" data-y="2.1" cx="333.5065697238434" cy="101.35698216556355" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
579
+ orientation: y+" data-x="32.669000000000004" data-y="-7.149" cx="503.48211665742895" cy="185.79244237227346" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
580
+ orientation: y+" data-x="37.781" data-y="-7.5489999999999995" cx="550.150304848228" cy="189.44410029017638" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
581
+ orientation: y+" data-x="18" data-y="-19.62" cx="369.56669166313463" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
582
+ orientation: y+" data-x="7.3309999999999995" data-y="-39.949000000000005" cx="272.16784584786933" cy="485.2283916403117" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
583
+ orientation: y+" data-x="12.780000000000001" data-y="-40" cx="321.9125558345017" cy="485.69397802484434" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
584
+ orientation: x+" data-x="25.05" data-y="2.1" cx="433.9271624661733" cy="101.35698216556355" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
585
+ orientation: y+" data-x="36" data-y="-19.62" cx="533.8912979687653" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
586
+ orientation: x+" data-x="25.05" data-y="2.3" cx="433.9271624661733" cy="99.53115320661209" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
587
+ orientation: y+" data-x="22.528999999999996" data-y="8.400999999999998" cx="410.9125884385902" cy="43.83424081379805" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
588
+ orientation: y+" data-x="30" data-y="-19.62" cx="479.1164292002218" cy="299.6420071076913" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
589
+ orientation: y+" data-x="33.41900000000001" data-y="2.251" cx="510.32897525349694" cy="99.9784813015552" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
590
+ orientation: y+" data-x="30" data-y="-30" cx="479.1164292002218" cy="394.4025300772717" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
591
+ orientation: y+" data-x="24" data-y="-31.619999999999997" cx="424.3415604316782" cy="409.19174464477845" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
592
+ orientation: y+" data-x="29.218999999999998" data-y="-39.649" cx="471.9865671155163" cy="482.4896482018845" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
593
+ orientation: y+" data-x="37.401" data-y="-5.948999999999999" cx="546.6812298262203" cy="174.83746861856474" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
594
+ orientation: y+" data-x="36" data-y="-31.619999999999997" cx="533.8912979687653" cy="409.19174464477845" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="inline anchor
595
+ I2C_SDA" data-x="-1.92" data-y="1.8000000000000005" cx="187.7141273515699" cy="104.09572560399073" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
596
+ I2C_SDA" data-x="18.525" data-y="-2.0999999999999996" cx="374.3594926803821" cy="139.69939030354405" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
597
+ I2C_SDA" data-x="22.53" data-y="1.7999999999999998" cx="410.921717583385" cy="104.09572560399073" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
598
+ I2C_SDA" data-x="-6.72" data-y="-40" cx="143.89423233673506" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
599
+ CHG_CE" data-x="-1.88" data-y="1.0000000000000004" cx="188.07929314336022" cy="111.39904143979653" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
600
+ CHG_CE" data-x="11.57" data-y="1.1" cx="310.8662906328454" cy="110.4861269603208" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
601
+ CHG_CE" data-x="23.32" data-y="-36" cx="418.13374197124324" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
602
+ CHG_IRQ" data-x="-1.92" data-y="0.8000000000000005" cx="187.7141273515699" cy="113.22487039874798" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
603
+ CHG_IRQ" data-x="14.420000000000002" data-y="1.7000000000000002" cx="336.8843532979036" cy="105.00864008346645" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
604
+ CHG_IRQ" data-x="29.28" data-y="-36" cx="472.54344494799653" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
605
+ GAUGE_IRQ" data-x="-2" data-y="0.4000000000000006" cx="186.98379576798933" cy="116.87652831665089" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
606
+ GAUGE_IRQ" data-x="22.45" data-y="2.4" cx="410.1913859998044" cy="98.61823872713637" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
607
+ GAUGE_IRQ" data-x="17.2" data-y="-36" cx="362.2633758273288" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
608
+ PG_BUTTON" data-x="-2" data-y="0.20000000000000062" cx="186.98379576798933" cy="118.70235727560234" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
609
+ PG_BUTTON" data-x="11.5" data-y="2.0999999999999996" cx="310.22725049721237" cy="101.35698216556355" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
610
+ PG_BUTTON" data-x="35.2" data-y="-36" cx="526.5879821329595" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
611
+ OLED_SCL" data-x="-1.96" data-y="-0.39999999999999947" cx="187.34896155977964" cy="124.1798441524567" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
612
+ OLED_SCL" data-x="36.660000000000004" data-y="-7.2" cx="539.9165335333051" cy="186.25802875680608" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
613
+ OLED_SCL" data-x="5.24" data-y="-40" cx="253.07880408203192" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
614
+ OLED_SDA" data-x="-1.96" data-y="-0.5999999999999996" cx="187.34896155977964" cy="126.00567311140816" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
615
+ OLED_SDA" data-x="36.660000000000004" data-y="-7" cx="539.9165335333051" cy="184.43219979785465" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
616
+ OLED_SDA" data-x="11.239999999999998" data-y="-40" cx="307.8536728505755" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
617
+ OLED_RST" data-x="-1.96" data-y="-0.7999999999999998" cx="187.34896155977964" cy="127.8315020703596" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
618
+ OLED_RST" data-x="36.660000000000004" data-y="-7.4" cx="539.9165335333051" cy="188.08385771575755" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
619
+ OLED_RST" data-x="17.240000000000002" data-y="-40" cx="362.6285416191191" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
620
+ BOOST_EN" data-x="-1.96" data-y="-1" cx="187.34896155977964" cy="129.65733102931105" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
621
+ BOOST_EN" data-x="33.49" data-y="2" cx="510.9771445339246" cy="102.26989664503927" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
622
+ BOOST_EN" data-x="-12.760000000000002" data-y="-44" cx="88.75419777640118" cy="522.2105572038733" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
623
+ RESETN" data-x="1.88" data-y="-1.3000000000000005" cx="222.40487757164752" cy="132.39607446773826" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
624
+ RESETN" data-x="6.9" data-y="-26.919" cx="268.233184441329" cy="366.2756349646246" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
625
+ RESETN" data-x="-12.68" data-y="-40" cx="89.48452935998178" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
626
+ X32P" data-x="1.8" data-y="-1.1000000000000005" cx="221.67454598806694" cy="130.5702455087868" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
627
+ X32P" data-x="-10.7" data-y="-2" cx="107.56023605360116" cy="138.78647582406833" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
628
+ X32P" data-x="6" data-y="-27.32" cx="260.01695412604744" cy="369.93642202732224" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
629
+ X32N" data-x="1.8" data-y="-0.9000000000000006" cx="221.67454598806694" cy="128.74441654983534" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
630
+ X32N" data-x="-9.3" data-y="-2" cx="120.34103876626132" cy="138.78647582406833" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
631
+ X32N" data-x="12" data-y="-27.32" cx="314.791822894591" cy="369.93642202732224" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
632
+ I2C_SCL" data-x="1.92" data-y="0.0999999999999992" cx="222.77004336343782" cy="119.61527175507808" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
633
+ I2C_SCL" data-x="19.995000500000003" data-y="2.7" cx="387.77934009324775" cy="95.8794952887092" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
634
+ I2C_SCL" data-x="25.47" data-y="1.9" cx="437.7614032799713" cy="103.182811124515" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
635
+ I2C_SCL" data-x="-0.7200000000000001" data-y="-40" cx="198.66910110527863" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
636
+ X48P" data-x="1.8" data-y="0.6999999999999995" cx="221.67454598806694" cy="114.13778487822373" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
637
+ X48P" data-x="-11.45" data-y="2.1" cx="100.71337745753321" cy="101.35698216556355" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
638
+ X48P" data-x="18" data-y="-27.32" cx="369.56669166313463" cy="369.93642202732224" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
639
+ X48N" data-x="1.8" data-y="0.8999999999999997" cx="221.67454598806694" cy="112.31195591927226" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
640
+ X48N" data-x="-8.55" data-y="1.9" cx="127.18789736232927" cy="103.182811124515" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
641
+ X48N" data-x="24" data-y="-27.32" cx="424.3415604316782" cy="369.93642202732224" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
642
+ RF_RAW" data-x="6.725" data-y="-12.25" cx="266.63558410224647" cy="232.3602099703303" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
643
+ RF_RAW" data-x="5.0920875" data-y="-43.99737545" cx="251.72848945257738" cy="522.1865973069023" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
644
+ TS" data-x="11.649999999999999" data-y="1.5" cx="311.596622216426" cy="106.83446904241791" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
645
+ TS" data-x="22.7795" data-y="7.8" cx="413.19943920967694" cy="49.320856835447145" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
646
+ TS" data-x="5.4" data-y="-36" cx="254.53946724919308" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
647
+ BOOST_FB" data-x="36.51" data-y="1.8" cx="538.5471618140915" cy="104.09572560399073" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
648
+ BOOST_FB" data-x="33" data-y="-40" cx="506.50386358449356" cy="485.69397802484434" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
649
+ RF_ANT" data-x="-5.32" data-y="-44" cx="156.67503504939523" cy="522.2105572038733" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
650
+ RF_ANT" data-x="-10" data-y="-6.78" cx="113.95063740993123" cy="182.42378794300805" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
651
+ RF_ANT" data-x="-1.8369701987210297e-17" data-y="-31.239999999999995" cx="205.24208535750387" cy="405.72266962277064" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
652
+ RF_FILTER" data-x="-2.636043749999999" data-y="-30.67899999999999" cx="181.17726027843895" cy="400.6012193929118" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
653
+ RF_FILTER" data-x="36" data-y="-27.12" cx="533.8912979687653" cy="368.1105930683708" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
654
+ RF_50" data-x="-10.5" data-y="-32.58" cx="109.3860650125526" cy="417.9557236477454" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
655
+ RF_50" data-x="-6.64" data-y="-44" cx="144.62456392031564" cy="522.2105572038733" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
656
+ ACC_INT1" data-x="-1.96" data-y="1.6000000000000005" cx="187.34896155977964" cy="105.92155456294218" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
657
+ ACC_INT1" data-x="22.54" data-y="-7.3" cx="411.01300903133256" cy="187.1709432362818" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
658
+ ACC_INT2" data-x="-1.96" data-y="1.4000000000000004" cx="187.34896155977964" cy="107.74738352189362" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
659
+ ACC_INT2" data-x="22.54" data-y="-7.5" cx="411.01300903133256" cy="188.9967721952333" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
660
+ CHG_LP" data-x="-1.88" data-y="1.2000000000000004" cx="188.07929314336022" cy="109.57321248084509" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
661
+ CHG_LP" data-x="14.420000000000002" data-y="1.9000000000000001" cx="336.8843532979036" cy="103.182811124515" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
662
+ SWDIO" data-x="-1.8399999999999999" data-y="6.661338147750939e-16" cx="188.4444589351505" cy="120.5281862345538" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
663
+ SWDIO" data-x="1.46" data-y="-52" cx="218.57063675784946" cy="595.2437155619315" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
664
+ SWCLK" data-x="-1.8399999999999999" data-y="-0.1999999999999993" cx="188.4444589351505" cy="122.35401519350525" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
665
+ SWCLK" data-x="7.46" data-y="-52" cx="273.345505526393" cy="595.2437155619315" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
666
+ DCDC" data-x="1.8" data-y="-0.3000000000000007" cx="221.67454598806694" cy="123.26692967298098" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
667
+ DCDC" data-x="-0.8279125" data-y="-43.99737545" cx="197.6839522676144" cy="522.1865973069023" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
668
+ MRN" data-x="11.649999999999999" data-y="1.3" cx="311.596622216426" cy="108.66029800136936" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
669
+ MRN" data-x="12.23" data-y="-12" cx="316.8915261973852" cy="230.07792377164094" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
670
+ IMAX" data-x="14.350000000000001" data-y="1.1" cx="336.2453131622706" cy="110.4861269603208" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
671
+ IMAX" data-x="-0.6000000000000001" data-y="-36" cx="199.7645984806495" cy="449.1773988458153" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
672
+ BIN" data-x="22.65" data-y="2.2" cx="412.01721495875586" cy="100.44406768608782" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
673
+ BIN" data-x="11.399999999999999" data-y="-35.46" cx="309.31433601773665" cy="444.24766065664636" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
674
+ BOOST_SW" data-x="33.49" data-y="1.8" cx="510.9771445339246" cy="104.09572560399073" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
675
+ BOOST_SW" data-x="12.4" data-y="-44.46" cx="318.44348081249393" cy="526.4099638094617" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
676
+ OLED_IREF" data-x="36.7" data-y="-6.8" cx="540.2816993250954" cy="182.6063708389032" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
677
+ OLED_IREF" data-x="23.2" data-y="-40" cx="417.03824459587236" cy="485.69397802484434" r="3" fill="green"/></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[
678
+ document.currentScript.parentElement.addEventListener('mousemove', (e) => {
679
+ const svg = e.currentTarget;
680
+ const rect = svg.getBoundingClientRect();
681
+ const x = e.clientX - rect.left;
682
+ const y = e.clientY - rect.top;
683
+ const crosshair = svg.getElementById('crosshair');
684
+ const h = svg.getElementById('crosshair-h');
685
+ const v = svg.getElementById('crosshair-v');
686
+ const coords = svg.getElementById('coordinates');
687
+
688
+ crosshair.style.display = 'block';
689
+ h.setAttribute('x1', '0');
690
+ h.setAttribute('x2', '640');
691
+ h.setAttribute('y1', y);
692
+ h.setAttribute('y2', y);
693
+ v.setAttribute('x1', x);
694
+ v.setAttribute('x2', x);
695
+ v.setAttribute('y1', '0');
696
+ v.setAttribute('y2', '640');
697
+
698
+ // Calculate real coordinates using inverse transformation
699
+ const matrix = {"a":9.129144794757263,"c":0,"e":205.24208535750387,"b":0,"d":-9.129144794757263,"f":120.5281862345538};
700
+ // Manually invert and apply the affine transform
701
+ // Since we only use translate and scale, we can directly compute:
702
+ // x' = (x - tx) / sx
703
+ // y' = (y - ty) / sy
704
+ const sx = matrix.a;
705
+ const sy = matrix.d;
706
+ const tx = matrix.e;
707
+ const ty = matrix.f;
708
+ const realPoint = {
709
+ x: (x - tx) / sx,
710
+ y: (y - ty) / sy // Flip y back since we used negative scale
711
+ }
712
+
713
+ coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
714
+ coords.setAttribute('x', (x + 5).toString());
715
+ coords.setAttribute('y', (y - 5).toString());
716
+ });
717
+ document.currentScript.parentElement.addEventListener('mouseleave', () => {
718
+ document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
719
+ });
720
+ ]]></script>
721
+ </g>
722
+ <g transform="translate(0, 1216)">
723
+ <style>
724
+ .boundary { fill: rgb(245, 241, 237); }
725
+ .schematic-boundary { fill: none; stroke: #fff; }
726
+ .component { fill: none; stroke: rgb(132, 0, 0); }
727
+ .chip { fill: rgb(255, 255, 194); stroke: rgb(132, 0, 0); }
728
+ .component-pin { fill: none; stroke: rgb(132, 0, 0); }
729
+ .text { font-family: sans-serif; fill: rgb(0, 150, 0); }
730
+ .pin-number { fill: rgb(169, 0, 0); }
731
+ .port-label { fill: rgb(0, 100, 100); }
732
+ .component-name { fill: rgb(0, 100, 100); }
733
+
734
+ </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 759.6189367292 208.01294467883002 L 763.4715197791099 208.01294467883002 L 763.4715197791099 215.71811077865 L 759.6189367292 215.71811077865" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 759.6189367292 208.01294467883002 L 763.4715197791099 208.01294467883002 L 763.4715197791099 215.71811077865 L 759.6189367292 215.71811077865" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 457.83326448625 95.00384188147 L 460.40165318619 95.00384188147 L 460.40165318619 97.57223058141 L 457.83326448625 97.57223058141" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 95.00384188147 L 460.40165318619 95.00384188147 L 460.40165318619 97.57223058141 L 457.83326448625 97.57223058141" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 759.6189367292 210.58133337877 L 760.90313107917 210.58133337877 L 760.90313107917 213.14972207871 L 759.6189367292 213.14972207871" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 759.6189367292 210.58133337877 L 760.90313107917 210.58133337877 L 760.90313107917 213.14972207871 L 759.6189367292 213.14972207871" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 457.83326448625 100.14061928135 L 524.9324192721825 100.14061928135 L 524.9324192721825 453.29406552309996 L 823.8286542277 453.29406552309996 L 823.8286542277 474.09801399261397" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 100.14061928135 L 524.9324192721825 100.14061928135 L 524.9324192721825 453.29406552309996 L 823.8286542277 453.29406552309996 L 823.8286542277 474.09801399261397" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 284.4670272403 535.2256650511861 L 284.4670272403 537.794053751126 L 322.9928577394 537.794053751126 L 322.9928577394 524.181593641444 L 361.5186882385 524.181593641444 L 361.5186882385 525.4657879914139" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 284.4670272403 535.2256650511861 L 284.4670272403 537.794053751126 L 322.9928577394 537.794053751126 L 322.9928577394 524.181593641444 L 361.5186882385 524.181593641444 L 361.5186882385 525.4657879914139" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 419.30743398715003 93.7196475315 L 372.11329162575254 93.7196475315 L 372.11329162575254 453.29406552309996 L 284.4670272403 453.29406552309996 L 284.4670272403 474.09801399261397" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715003 93.7196475315 L 372.11329162575254 93.7196475315 L 372.11329162575254 453.29406552309996 L 284.4670272403 453.29406552309996 L 284.4670272403 474.09801399261397" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 823.8286542277 422.730239993814 L 823.8286542277 420.161851293874 L 900.8803152259 420.161851293874 L 900.8803152259 422.730239993814" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 823.8286542277 422.730239993814 L 823.8286542277 420.161851293874 L 900.8803152259 420.161851293874 L 900.8803152259 422.730239993814" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 618.999655407485 87.29867578165 L 676.4673525686425 87.29867578165 L 676.4673525686425 205.44455597888998 L 733.9350497298 205.44455597888998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 87.29867578165 L 676.4673525686425 87.29867578165 L 676.4673525686425 205.44455597888998 L 733.9350497298 205.44455597888998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 746.7769932295 371.36246599501396 L 746.7769932295 368.794077295074 L 738.429729954695 368.794077295074 L 738.429729954695 420.161851293874 L 746.7769932295 420.161851293874 L 746.7769932295 422.730239993814" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 746.7769932295 371.36246599501396 L 746.7769932295 368.794077295074 L 738.429729954695 368.794077295074 L 738.429729954695 420.161851293874 L 746.7769932295 420.161851293874 L 746.7769932295 422.730239993814" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 438.5703492367 422.730239993814 L 438.5703492367 420.161851293874 L 515.6220102349 420.161851293874 L 515.6220102349 422.730239993814" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 438.5703492367 422.730239993814 L 438.5703492367 420.161851293874 L 515.6220102349 420.161851293874 L 515.6220102349 422.730239993814" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.6736712331 422.730239993814 L 592.6736712331 420.161851293874 L 669.7253322313 420.161851293874 L 669.7253322313 422.730239993814" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 422.730239993814 L 592.6736712331 420.161851293874 L 669.7253322313 420.161851293874 L 669.7253322313 422.730239993814" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 750.62957627941 581.7135005201 L 753.19796497935 581.7135005201 L 753.19796497935 588.648150009938 L 830.24962597755 588.648150009938 L 830.24962597755 581.7135005201 L 827.68123727761 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 750.62957627941 581.7135005201 L 753.19796497935 581.7135005201 L 753.19796497935 588.648150009938 L 830.24962597755 588.648150009938 L 830.24962597755 581.7135005201 L 827.68123727761 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 288.31961029021 633.0812745189 L 290.88799899015 633.0812745189 L 290.88799899015 640.015924008738 L 367.93965998835 640.015924008738 L 367.93965998835 633.0812745189 L 365.37127128841 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 288.31961029021 633.0812745189 L 290.88799899015 633.0812745189 L 290.88799899015 640.015924008738 L 367.93965998835 640.015924008738 L 367.93965998835 633.0812745189 L 365.37127128841 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 307.58252553976 787.1845965153 L 305.01413683982 787.1845965153 L 305.01413683982 655.9792922578524 L 444.99132098655 655.9792922578524 L 444.99132098655 633.0812745189 L 442.42293228661 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 307.58252553976 787.1845965153 L 305.01413683982 787.1845965153 L 305.01413683982 655.9792922578524 L 444.99132098655 655.9792922578524 L 444.99132098655 633.0812745189 L 442.42293228661 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 438.5703492367 474.09801399261397 L 438.5703492367 465.0958115993243 L 615.78916953256 465.0958115993243" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 438.5703492367 474.09801399261397 L 438.5703492367 465.0958115993243 L 615.78916953256 465.0958115993243" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 611.551328177659 273.5068565273 L 614.119716877599 273.5068565273 L 614.119716877599 383.69073175472596 L 592.6736712331 383.69073175472596 L 592.6736712331 381.122343054786" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 611.551328177659 273.5068565273 L 614.119716877599 273.5068565273 L 614.119716877599 383.69073175472596 L 592.6736712331 383.69073175472596 L 592.6736712331 381.122343054786" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 874.554331051515 287.63299437697 L 871.985942351575 287.63299437697 L 871.985942351575 383.69073175472596 L 900.8803152259 383.69073175472596 L 900.8803152259 381.122343054786" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 874.554331051515 287.63299437697 L 871.985942351575 287.63299437697 L 871.985942351575 383.69073175472596 L 900.8803152259 383.69073175472596 L 900.8803152259 381.122343054786" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 284.4670272403 381.122343054786 L 284.4670272403 383.69073175472596 L 276.11976396549505 383.69073175472596 L 276.11976396549505 435.05850575352594 L 284.4670272403 435.05850575352594 L 284.4670272403 432.49011705358595" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 284.4670272403 381.122343054786 L 284.4670272403 383.69073175472596 L 276.11976396549505 383.69073175472596 L 276.11976396549505 435.05850575352594 L 284.4670272403 435.05850575352594 L 284.4670272403 432.49011705358595" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 361.5186882385 381.122343054786 L 361.5186882385 383.69073175472596 L 353.171424963695 383.69073175472596 L 353.171424963695 435.05850575352594 L 361.5186882385 435.05850575352594 L 361.5186882385 432.49011705358595" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 361.5186882385 381.122343054786 L 361.5186882385 383.69073175472596 L 353.171424963695 383.69073175472596 L 353.171424963695 435.05850575352594 L 361.5186882385 435.05850575352594 L 361.5186882385 432.49011705358595" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 438.5703492367 381.122343054786 L 438.5703492367 383.69073175472596 L 430.223085961895 383.69073175472596 L 430.223085961895 435.05850575352594 L 438.5703492367 435.05850575352594 L 438.5703492367 432.49011705358595" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 438.5703492367 381.122343054786 L 438.5703492367 383.69073175472596 L 430.223085961895 383.69073175472596 L 430.223085961895 435.05850575352594 L 438.5703492367 435.05850575352594 L 438.5703492367 432.49011705358595" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 746.7769932295 381.122343054786 L 746.7769932295 383.69073175472596 L 823.8286542277 383.69073175472596 L 823.8286542277 381.122343054786" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 746.7769932295 381.122343054786 L 746.7769932295 383.69073175472596 L 823.8286542277 383.69073175472596 L 823.8286542277 381.122343054786" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 669.7253322313 432.49011705358595 L 669.7253322313 435.05850575352594 L 592.6736712331 435.05850575352594 L 592.6736712331 432.49011705358595" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 669.7253322313 432.49011705358595 L 669.7253322313 435.05850575352594 L 592.6736712331 435.05850575352594 L 592.6736712331 432.49011705358595" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 823.8286542277 432.49011705358595 L 823.8286542277 435.05850575352594 L 746.7769932295 435.05850575352594 L 746.7769932295 432.49011705358595" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 823.8286542277 432.49011705358595 L 823.8286542277 435.05850575352594 L 746.7769932295 435.05850575352594 L 746.7769932295 432.49011705358595" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 900.8803152259 432.490117053586 L 900.8803152259 435.05850575352605 L 892.5330519510949 435.05850575352605 L 892.5330519510949 486.426279752326 L 900.8803152259 486.426279752326 L 900.8803152259 483.857891052386" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 900.8803152259 432.490117053586 L 900.8803152259 435.05850575352605 L 892.5330519510949 435.05850575352605 L 892.5330519510949 486.426279752326 L 900.8803152259 486.426279752326 L 900.8803152259 483.857891052386" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 284.4670272403 483.857891052386 L 284.4670272403 486.42627975232597 L 361.5186882385 486.42627975232597 L 361.5186882385 483.857891052386" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 284.4670272403 483.857891052386 L 284.4670272403 486.42627975232597 L 361.5186882385 486.42627975232597 L 361.5186882385 483.857891052386" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 515.6220102348999 483.857891052386 L 515.6220102348999 486.42627975232597 L 438.5703492367 486.42627975232597 L 438.5703492367 483.857891052386" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 515.6220102348999 483.857891052386 L 515.6220102348999 486.42627975232597 L 438.5703492367 486.42627975232597 L 438.5703492367 483.857891052386" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.6736712331 483.8578910523859 L 592.6736712331 486.42627975232597 L 584.326407958295 486.42627975232597 L 584.326407958295 537.794053751126 L 592.6736712331 537.794053751126 L 592.6736712331 535.2256650511861" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 483.8578910523859 L 592.6736712331 486.42627975232597 L 584.326407958295 486.42627975232597 L 584.326407958295 537.794053751126 L 592.6736712331 537.794053751126 L 592.6736712331 535.2256650511861" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 746.7769932295 483.8578910523859 L 746.7769932295 486.42627975232597 L 738.429729954695 486.42627975232597 L 738.429729954695 537.794053751126 L 746.7769932295 537.794053751126 L 746.7769932295 535.2256650511861" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 746.7769932295 483.8578910523859 L 746.7769932295 486.42627975232597 L 738.429729954695 486.42627975232597 L 738.429729954695 537.794053751126 L 746.7769932295 537.794053751126 L 746.7769932295 535.2256650511861" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 823.8286542277 483.8578910523859 L 823.8286542277 486.42627975232597 L 815.481390952895 486.42627975232597 L 815.481390952895 537.794053751126 L 823.8286542277 537.794053751126 L 823.8286542277 535.2256650511861" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 823.8286542277 483.8578910523859 L 823.8286542277 486.42627975232597 L 815.481390952895 486.42627975232597 L 815.481390952895 537.794053751126 L 823.8286542277 537.794053751126 L 823.8286542277 535.2256650511861" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 361.5186882385 535.2256650511861 L 361.5186882385 537.794053751126 L 353.171424963695 537.794053751126 L 353.171424963695 589.161827749926 L 361.5186882385 589.161827749926 L 361.5186882385 586.593439049986" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 361.5186882385 535.2256650511861 L 361.5186882385 537.794053751126 L 353.171424963695 537.794053751126 L 353.171424963695 589.161827749926 L 361.5186882385 589.161827749926 L 361.5186882385 586.593439049986" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 438.5703492367 535.2256650511861 L 438.5703492367 558.469582785643 L 444.99132098655 558.469582785643 L 444.99132098655 581.7135005201 L 442.42293228661 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 438.5703492367 535.2256650511861 L 438.5703492367 558.469582785643 L 444.99132098655 558.469582785643 L 444.99132098655 581.7135005201 L 442.42293228661 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 515.6220102349 535.2256650511861 L 515.6220102349 558.469582785643 L 522.04298198475 558.469582785643 L 522.04298198475 581.7135005201 L 519.47459328481 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 515.6220102349 535.2256650511861 L 515.6220102349 558.469582785643 L 522.04298198475 558.469582785643 L 522.04298198475 581.7135005201 L 519.47459328481 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 596.52625428301 574.778851030262 L 669.7253322313 574.778851030262 L 669.7253322313 535.2256650511861" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 596.52625428301 574.778851030262 L 669.7253322313 574.778851030262 L 669.7253322313 535.2256650511861" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.031574058115 82.16189838177002 L 284.4670272403 82.16189838177002 L 284.4670272403 371.36246599501396" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 82.16189838177002 L 284.4670272403 82.16189838177002 L 284.4670272403 371.36246599501396" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 741.64021582962 273.5068565273 L 737.7876327797101 273.5068565273 L 737.7876327797101 285.06460567703 L 874.554331051515 285.06460567703" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 741.64021582962 273.5068565273 L 737.7876327797101 273.5068565273 L 737.7876327797101 285.06460567703 L 874.554331051515 285.06460567703" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 901.522412400885 91.15125883156 L 904.090801100825 91.15125883156 L 904.090801100825 82.16189838177002 L 618.999655407485 82.16189838177002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 901.522412400885 91.15125883156 L 904.090801100825 91.15125883156 L 904.090801100825 82.16189838177002 L 618.999655407485 82.16189838177002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 596.52625428301 633.0812745189 L 602.690387162866 633.0812745189 L 602.690387162866 640.015924008738 L 676.1463039811499 640.015924008738 L 676.1463039811499 633.0812745189 L 673.5779152812099 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 596.52625428301 633.0812745189 L 602.690387162866 633.0812745189 L 602.690387162866 640.015924008738 L 676.1463039811499 640.015924008738 L 676.1463039811499 633.0812745189 L 673.5779152812099 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 827.68123727761 633.0812745189 L 897.02773217599 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 827.68123727761 633.0812745189 L 897.02773217599 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 419.30743398715 111.69836843108 L 402.6000654940403 111.69836843108 L 402.6000654940403 134.81386673054 L 419.30743398715 134.81386673054" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 111.69836843108 L 402.6000654940403 111.69836843108 L 402.6000654940403 134.81386673054 L 419.30743398715 134.81386673054" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 457.83326448625 102.70900798129 L 471.4585665394317 102.70900798129 L 471.4585665394317 120.68772888087001 L 457.83326448625 120.68772888087001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 102.70900798129 L 471.4585665394317 102.70900798129 L 471.4585665394317 120.68772888087001 L 457.83326448625 120.68772888087001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 733.292952554815 98.85642493138 L 719.6676505016333 98.85642493138 L 719.6676505016333 93.7196475315 L 733.292952554815 93.7196475315" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 98.85642493138 L 719.6676505016333 98.85642493138 L 719.6676505016333 93.7196475315 L 733.292952554815 93.7196475315" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.031574058115 95.00384188147001 L 575.3242055650053 95.00384188147001 L 575.3242055650053 84.73028708171 L 592.031574058115 84.73028708171" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 95.00384188147001 L 575.3242055650053 95.00384188147001 L 575.3242055650053 84.73028708171 L 592.031574058115 84.73028708171" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.6736712331 211.86552772874 L 585.9830186697563 211.86552772874 L 585.9830186697563 206.72875032886 L 592.6736712331 206.72875032886" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 211.86552772874 L 585.9830186697563 211.86552772874 L 585.9830186697563 206.72875032886 L 592.6736712331 206.72875032886" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.031574058115 97.57223058141 L 579.8317277333999 97.57223058141 L 579.8317277333999 87.29867578165 L 592.031574058115 87.29867578165" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 97.57223058141 L 579.8317277333999 97.57223058141 L 579.8317277333999 87.29867578165 L 592.031574058115 87.29867578165" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 522.4014327326854 684.4827528405121 L 524.9698214326254 684.4827528405121 L 524.9698214326254 513.3815191581962 L 284.4670272403 513.3815191581962 L 284.4670272403 525.4657879914139" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 522.4014327326854 684.4827528405121 L 524.9698214326254 684.4827528405121 L 524.9698214326254 513.3815191581962 L 284.4670272403 513.3815191581962 L 284.4670272403 525.4657879914139" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 618.999655407485 89.86706448159 L 629.144790772248 89.86706448159 L 629.144790772248 208.01294467883002 L 618.3575582325 208.01294467883002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 89.86706448159 L 629.144790772248 89.86706448159 L 629.144790772248 208.01294467883002 L 618.3575582325 208.01294467883002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 592.6736712331 525.4657879914139 L 592.6736712331 518.7751354280701 L 681.4757105335254 518.7751354280701 L 681.4757105335254 581.7135005201 L 673.57791528121 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 525.4657879914139 L 592.6736712331 518.7751354280701 L 681.4757105335254 518.7751354280701 L 681.4757105335254 581.7135005201 L 673.57791528121 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 618.999655407485 84.73028708171 L 771.6903764608614 84.73028708171 L 771.6903764608614 202.87616727895 L 759.6189367292 202.87616727895" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 84.73028708171 L 771.6903764608614 84.73028708171 L 771.6903764608614 202.87616727895 L 759.6189367292 202.87616727895" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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 901.522412400885 93.7196475315 L 916.6887476740305 93.7196475315 L 916.6887476740305 155.36097633006 L 865.9373869632162 155.36097633006 L 865.9373869632162 217.00230512861998 L 872.6280395265599 217.00230512861998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 901.522412400885 93.7196475315 L 916.6887476740305 93.7196475315 L 916.6887476740305 155.36097633006 L 865.9373869632162 155.36097633006 L 865.9373869632162 217.00230512861998 L 872.6280395265599 217.00230512861998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_49__stack1"><path d="M 295.38267921504496 95.00384188147001 L 280.10076645040203 95.00384188147001 L 280.10076645040203 84.216609341722 L 327.48753796429503 84.216609341722 L 327.48753796429503 92.43545318153001 L 324.91914926435504 92.43545318153001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 295.38267921504496 95.00384188147001 L 280.10076645040203 95.00384188147001 L 280.10076645040203 84.216609341722 L 327.48753796429503 84.216609341722 L 327.48753796429503 92.43545318153001 L 324.91914926435504 92.43545318153001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_50__stack1"><path d="M 904.7328982758099 633.0812745189 L 911.4235508391537 633.0812745189 L 911.4235508391537 556.286452390694 L 900.8803152259 556.286452390694 L 900.8803152259 535.2256650511861" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 904.7328982758099 633.0812745189 L 911.4235508391537 633.0812745189 L 911.4235508391537 556.286452390694 L 900.8803152259 556.286452390694 L 900.8803152259 535.2256650511861" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_51__stack1"><path d="M 903.4487039258399 201.59197292898 L 911.1538700256601 201.59197292898 L 911.1538700256601 200.30777857901 L 924.0086554688596 200.30777857901 L 924.0086554688596 209.6695553902913 L 931.2001438286916 209.6695553902913 L 931.2001438286916 217.63156036010528 L 924.0086554688596 217.63156036010528 L 924.0086554688596 220.85488817853002 L 911.1538700256601 220.85488817853002 L 911.1538700256601 504.6618395219 L 823.8286542277 504.6618395219 L 823.8286542277 525.4657879914139" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 201.59197292898 L 911.1538700256601 201.59197292898 L 911.1538700256601 200.30777857901 L 924.0086554688596 200.30777857901 L 924.0086554688596 209.6695553902913 L 931.2001438286916 209.6695553902913 L 931.2001438286916 217.63156036010528 L 924.0086554688596 217.63156036010528 L 924.0086554688596 220.85488817853002 L 911.1538700256601 220.85488817853002 L 911.1538700256601 504.6618395219 L 823.8286542277 504.6618395219 L 823.8286542277 525.4657879914139" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_52__stack1"><path d="M 457.83326448625 112.98256278105 L 477.1090216792997 112.98256278105 L 477.1090216792997 112.32762366256532" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 112.98256278105 L 477.1090216792997 112.98256278105 L 477.1090216792997 112.32762366256532" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_53__stack1"><path d="M 445.3497717344854 684.4827528405121 L 449.2151967278951 684.4827528405121 L 449.2151967278951 678.6910363221475" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 445.3497717344854 684.4827528405121 L 449.2151967278951 684.4827528405121 L 449.2151967278951 678.6910363221475" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_54__stack1"><path d="M 733.9350497298 208.01294467883002 L 672.5377178577344 208.01294467883002 L 672.5377178577344 207.3580055603453" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.9350497298 208.01294467883002 L 672.5377178577344 208.01294467883002 L 672.5377178577344 207.3580055603453" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_55__stack1"><path d="M 763.4715197791099 208.01294467883002 L 766.425166784041 208.01294467883002 L 766.425166784041 208.0001027353303" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 763.4715197791099 208.01294467883002 L 766.425166784041 208.01294467883002 L 766.425166784041 208.0001027353303" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_56__stack1"><path d="M 904.7328982758099 581.7135005201 L 907.0572900492556 581.7135005201 L 907.0572900492556 577.2059783517053" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 904.7328982758099 581.7135005201 L 907.0572900492556 581.7135005201 L 907.0572900492556 577.2059783517053" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_57__stack1"><path d="M 457.83326448625 128.39289498069002 L 469.4038555794797 128.39289498069002 L 469.4038555794797 127.73795586220531" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 128.39289498069002 L 469.4038555794797 128.39289498069002 L 469.4038555794797 127.73795586220531" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_58__stack1"><path d="M 460.40165318619 97.57223058141 L 539.3796057093448 97.57223058141" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 460.40165318619 97.57223058141 L 539.3796057093448 97.57223058141" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_59__stack1"><path d="M 592.031574058115 89.86706448159 L 592.031574058115 89.22496730660501 L 572.2421391250773 89.22496730660501 L 572.2421391250773 96.3008781749397" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 89.86706448159 L 592.031574058115 89.22496730660501 L 572.2421391250773 89.22496730660501 L 572.2421391250773 96.3008781749397" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_60__stack1"><path d="M 618.999655407485 102.70900798129 L 632.868954387161 102.70900798129 L 632.868954387161 106.5744329746997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 102.70900798129 L 632.868954387161 102.70900798129 L 632.868954387161 106.5744329746997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_61__stack1"><path d="M 592.6736712331 209.29713902880002 L 589.5787628496723 209.29713902880002 L 589.5787628496723 213.1625640222097" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 209.29713902880002 L 589.5787628496723 209.29713902880002 L 589.5787628496723 213.1625640222097" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_62__stack1"><path d="M 751.91377062938 273.5068565273 L 755.0086790128076 273.5068565273 L 755.0086790128076 276.08808717073964" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 751.91377062938 273.5068565273 L 755.0086790128076 273.5068565273 L 755.0086790128076 276.08808717073964" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_63__stack1"><path d="M 733.292952554815 16.66798653330001 L 728.2717526464323 16.66798653330001 L 728.2717526464323 20.533411526709713" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 16.66798653330001 L 728.2717526464323 16.66798653330001 L 728.2717526464323 20.533411526709713" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_64__stack1"><path d="M 750.62957627941 633.0812745189 L 753.7244846628378 633.0812745189 L 753.7244846628378 637.5887966872947" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 750.62957627941 633.0812745189 L 753.7244846628378 633.0812745189 L 753.7244846628378 637.5887966872947" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_65__stack1"><path d="M 288.31961029021 684.4490485177 L 291.4145186736377 684.4490485177 L 291.4145186736377 688.9565706860947" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 288.31961029021 684.4490485177 L 291.4145186736377 684.4490485177 L 291.4145186736377 688.9565706860947" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_66__stack1"><path d="M 384.63418653796 787.1845965153 L 381.53927815453227 787.1845965153 L 381.53927815453227 788.4816328087697" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 384.63418653796 787.1845965153 L 381.53927815453227 787.1845965153 L 381.53927815453227 788.4816328087697" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_67__stack1"><path d="M 587.53689383322 684.4490485177 L 587.53689383322 685.0911456926849 L 583.042213608325 685.0911456926849 L 583.042213608325 683.7941093992154" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 587.53689383322 684.4490485177 L 587.53689383322 685.0911456926849 L 583.042213608325 685.0911456926849 L 583.042213608325 683.7941093992154" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_68__stack1"><path d="M 760.2610339041851 97.57223058141 L 778.4966065157025 97.57223058141 L 778.4966065157025 93.70680558800031" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 760.2610339041851 97.57223058141 L 778.4966065157025 97.57223058141 L 778.4966065157025 93.70680558800031" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_69__stack1"><path d="M 618.999655407485 100.14061928135001 L 635.951020827089 100.14061928135001 L 635.951020827089 93.70680558800031" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 100.14061928135001 L 635.951020827089 100.14061928135001 L 635.951020827089 93.70680558800031" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_70__stack1"><path d="M 872.6280395265599 211.86552772874 L 858.1038014283993 211.86552772874 L 858.1038014283993 211.2105886102553" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 872.6280395265599 211.86552772874 L 858.1038014283993 211.86552772874 L 858.1038014283993 211.2105886102553" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_71__stack1"><path d="M 903.4487039258399 217.00230512861998 L 923.7518165988656 217.00230512861998 L 923.7518165988656 216.3473660101353" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 217.00230512861998 L 923.7518165988656 217.00230512861998 L 923.7518165988656 216.3473660101353" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_72__stack1"><path d="M 519.47459328481 633.0812745189 L 532.7146370330007 633.0812745189 L 532.7146370330007 632.4263354004154" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 519.47459328481 633.0812745189 L 532.7146370330007 633.0812745189 L 532.7146370330007 632.4263354004154" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_73__stack1"><path d="M 733.292952554815 14.099597833360022 L 727.8864943414412 14.099597833360022 L 727.8864943414412 11.51836718992034" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 14.099597833360022 L 727.8864943414412 14.099597833360022 L 727.8864943414412 11.51836718992034" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_74__stack1"><path d="M 874.554331051515 91.15125883156 L 867.7352590531743 91.15125883156 L 867.7352590531743 90.49631971307531" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 874.554331051515 91.15125883156 L 867.7352590531743 91.15125883156 L 867.7352590531743 90.49631971307531" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_75__stack1"><path d="M 819.9760711777899 633.0812745189 L 813.7990963544343 633.0812745189 L 813.7990963544343 628.5737523505053" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 819.9760711777899 633.0812745189 L 813.7990963544343 633.0812745189 L 813.7990963544343 628.5737523505053" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_76__stack1"><path d="M 903.4487039258399 204.16036162892 L 918.8718780689796 204.16036162892 L 918.8718780689796 195.8002564106153" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 204.16036162892 L 918.8718780689796 204.16036162892 L 918.8718780689796 195.8002564106153" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_77__stack1"><path d="M 515.6220102349 422.730239993814 L 515.6220102349 420.161851293874 L 592.6736712331 420.161851293874 L 592.6736712331 422.730239993814" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 515.6220102349 422.730239993814 L 515.6220102349 420.161851293874 L 592.6736712331 420.161851293874 L 592.6736712331 422.730239993814" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_78__stack1"><path d="M 284.4670272403 576.8335619902139 L 284.4670272403 574.265173290274 L 361.5186882385 574.265173290274 L 361.5186882385 576.8335619902139" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 284.4670272403 576.8335619902139 L 284.4670272403 574.265173290274 L 361.5186882385 574.265173290274 L 361.5186882385 576.8335619902139" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_79__stack1"><path d="M 419.30743398715 96.28803623144 L 408.520201447402 96.28803623144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 96.28803623144 L 408.520201447402 96.28803623144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_80__stack1"><path d="M 733.292952554815 96.28803623144 L 722.505720015067 96.28803623144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 96.28803623144 L 722.505720015067 96.28803623144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_81__stack1"><path d="M 357.66610518859 633.0812745189 L 346.878872648842 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 357.66610518859 633.0812745189 L 346.878872648842 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_82__stack1"><path d="M 419.30743398715 106.5615910312 L 409.547556927378 106.5615910312" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 106.5615910312 L 409.547556927378 106.5615910312" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_83__stack1"><path d="M 592.031574058115 105.27739668123 L 582.271696998343 105.27739668123" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 105.27739668123 L 582.271696998343 105.27739668123" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_84__stack1"><path d="M 742.92441017959 581.7135005201 L 733.164533119818 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 742.92441017959 581.7135005201 L 733.164533119818 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_85__stack1"><path d="M 419.30743398715 109.12997973114 L 408.520201447402 109.12997973114" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 109.12997973114 L 408.520201447402 109.12997973114" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_86__stack1"><path d="M 618.999655407485 97.57223058141 L 628.502693597263 97.57223058141" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 97.57223058141 L 628.502693597263 97.57223058141" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_87__stack1"><path d="M 819.9760711777899 581.7135005201 L 809.188838638042 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 819.9760711777899 581.7135005201 L 809.188838638042 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_88__stack1"><path d="M 419.30743398715 114.26675713102 L 406.46549048745 114.26675713102" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 114.26675713102 L 406.46549048745 114.26675713102" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_89__stack1"><path d="M 733.292952554815 88.58287013162001 L 720.451009055115 88.58287013162001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 88.58287013162001 L 720.451009055115 88.58287013162001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_90__stack1"><path d="M 665.87274918139 581.7135005201 L 653.03080568169 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 665.87274918139 581.7135005201 L 653.03080568169 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_91__stack1"><path d="M 419.30743398715 116.83514583096 L 406.46549048745 116.83514583096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 116.83514583096 L 406.46549048745 116.83514583096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_92__stack1"><path d="M 592.031574058115 92.43545318153001 L 580.473824908385 92.43545318153001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 92.43545318153001 L 580.473824908385 92.43545318153001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_93__stack1"><path d="M 897.02773217599 581.7135005201 L 884.18578867629 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 897.02773217599 581.7135005201 L 884.18578867629 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_94__stack1"><path d="M 419.30743398715 124.54031193077999 L 407.492845967426 124.54031193077999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 124.54031193077999 L 407.492845967426 124.54031193077999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_95__stack1"><path d="M 903.4487039258399 211.86552772874 L 915.2632919455641 211.86552772874" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 211.86552772874 L 915.2632919455641 211.86552772874" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_96__stack1"><path d="M 511.76942718499 633.0812745189 L 499.954839165266 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 511.76942718499 633.0812745189 L 499.954839165266 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_97__stack1"><path d="M 419.30743398715 127.10870063072 L 407.492845967426 127.10870063072" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 127.10870063072 L 407.492845967426 127.10870063072" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_98__stack1"><path d="M 903.4487039258399 209.29713902880002 L 915.2632919455641 209.29713902880002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 209.29713902880002 L 915.2632919455641 209.29713902880002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_99__stack1"><path d="M 588.82108818319 633.0812745189 L 577.006500163466 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 588.82108818319 633.0812745189 L 577.006500163466 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_100__stack1"><path d="M 419.30743398715 129.67708933066 L 407.492845967426 129.67708933066" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 129.67708933066 L 407.492845967426 129.67708933066" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_101__stack1"><path d="M 903.4487039258399 214.43391642868 L 915.2632919455641 214.43391642868" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 214.43391642868 L 915.2632919455641 214.43391642868" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_102__stack1"><path d="M 665.87274918139 633.0812745189 L 654.058161161666 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 665.87274918139 633.0812745189 L 654.058161161666 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_103__stack1"><path d="M 419.30743398715 132.2454780306 L 407.492845967426 132.2454780306" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 132.2454780306 L 407.492845967426 132.2454780306" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_104__stack1"><path d="M 874.554331051515 93.7196475315 L 862.739743031791 93.7196475315" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 874.554331051515 93.7196475315 L 862.739743031791 93.7196475315" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_105__stack1"><path d="M 280.61444419039003 684.4490485177 L 268.799856170666 684.4490485177" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 280.61444419039003 684.4490485177 L 268.799856170666 684.4490485177" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_106__stack1"><path d="M 457.83326448625 136.09806108051 L 467.59314154602197 136.09806108051" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 136.09806108051 L 467.59314154602197 136.09806108051" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_107__stack1"><path d="M 280.61444419039003 633.0812745189 L 270.85456713061797 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 280.61444419039003 633.0812745189 L 270.85456713061797 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_108__stack1"><path d="M 457.83326448625 133.52967238057002 L 465.53843058607 133.52967238057002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 133.52967238057002 L 465.53843058607 133.52967238057002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_109__stack1"><path d="M 305.01413683982 145.0874215303 L 297.30897074 145.0874215303" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 305.01413683982 145.0874215303 L 297.30897074 145.0874215303" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_110__stack1"><path d="M 515.6220102349 474.09801399261397 L 515.6220102349 466.39284789279395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 515.6220102349 474.09801399261397 L 515.6220102349 466.39284789279395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_111__stack1"><path d="M 457.83326448625 130.96128368063 L 465.53843058607 130.96128368063" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 130.96128368063 L 465.53843058607 130.96128368063" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_112__stack1"><path d="M 315.28769163958 145.0874215303 L 322.9928577394 145.0874215303" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 315.28769163958 145.0874215303 L 322.9928577394 145.0874215303" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_113__stack1"><path d="M 592.6736712331 474.09801399261397 L 592.6736712331 466.39284789279395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.6736712331 474.09801399261397 L 592.6736712331 466.39284789279395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_114__stack1"><path d="M 457.83326448625 118.11934018093001 L 468.620497025998 118.11934018093001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 118.11934018093001 L 468.620497025998 118.11934018093001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_115__stack1"><path d="M 760.2610339041851 95.00384188147001 L 771.048266443933 95.00384188147001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 760.2610339041851 95.00384188147001 L 771.048266443933 95.00384188147001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_116__stack1"><path d="M 434.71776618679 633.0812745189 L 423.930533647042 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 434.71776618679 633.0812745189 L 423.930533647042 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_117__stack1"><path d="M 457.83326448625 110.41417408111 L 465.53843058607 110.41417408111" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 110.41417408111 L 465.53843058607 110.41417408111" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_118__stack1"><path d="M 295.38267921504496 92.43545318153001 L 287.677513115225 92.43545318153001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 295.38267921504496 92.43545318153001 L 287.677513115225 92.43545318153001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_119__stack1"><path d="M 669.7253322313 474.09801399261397 L 669.7253322313 466.39284789279395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 669.7253322313 474.09801399261397 L 669.7253322313 466.39284789279395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_120__stack1"><path d="M 457.83326448625 107.84578538117 L 465.53843058607 107.84578538117" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 107.84578538117 L 465.53843058607 107.84578538117" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_121__stack1"><path d="M 324.91914926435504 95.00384188147001 L 332.624315364175 95.00384188147001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 324.91914926435504 95.00384188147001 L 332.624315364175 95.00384188147001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_122__stack1"><path d="M 746.7769932295 474.09801399261397 L 746.7769932295 466.39284789279395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 746.7769932295 474.09801399261397 L 746.7769932295 466.39284789279395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_123__stack1"><path d="M 508.8425877371146 684.4153441948879 L 499.0827106773426 684.4153441948879" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 508.8425877371146 684.4153441948879 L 499.0827106773426 684.4153441948879" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_124__stack1"><path d="M 592.031574058115 100.14061928135001 L 584.326407958295 100.14061928135001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 100.14061928135001 L 584.326407958295 100.14061928135001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_125__stack1"><path d="M 733.292952554815 19.23637523324001 L 728.9138498214173 19.23637523324001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 19.23637523324001 L 728.9138498214173 19.23637523324001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_126__stack1"><path d="M 511.76942718499 581.7135005201 L 504.06426108517 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 511.76942718499 581.7135005201 L 504.06426108517 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_127__stack1"><path d="M 901.522412400885 96.28803623144 L 913.337000420609 96.28803623144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 901.522412400885 96.28803623144 L 913.337000420609 96.28803623144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_128__stack1"><path d="M 365.37127128841 684.4490485177 L 375.131148348182 684.4490485177" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 365.37127128841 684.4490485177 L 375.131148348182 684.4490485177" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_129__stack1"><path d="M 310.1509142397 201.59197292898 L 310.1509142397 211.351849988752" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 310.1509142397 201.59197292898 L 310.1509142397 211.351849988752" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_130__stack1"><path d="M 438.5703492367 525.4657879914139 L 438.5703492367 515.7059109316419" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 438.5703492367 525.4657879914139 L 438.5703492367 515.7059109316419" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_131__stack1"><path d="M 900.8803152259 474.09801399261397 L 900.8803152259 461.256070492914" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 900.8803152259 474.09801399261397 L 900.8803152259 461.256070492914" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_132__stack1"><path d="M 357.66610518859 684.4490485177 L 348.93358360879404 684.4490485177" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 357.66610518859 684.4490485177 L 348.93358360879404 684.4490485177" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_133__stack1"><path d="M 419.30743398715 98.85642493137999 L 407.492845967426 98.85642493137999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 98.85642493137999 L 407.492845967426 98.85642493137999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_134__stack1"><path d="M 733.9350497298 213.14972207871 L 722.1204617100759 213.14972207871" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.9350497298 213.14972207871 L 722.1204617100759 213.14972207871" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_135__stack1"><path d="M 419.30743398715 101.42481363132 L 407.492845967426 101.42481363132" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 101.42481363132 L 407.492845967426 101.42481363132" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_136__stack1"><path d="M 733.9350497298 215.71811077865 L 722.1204617100759 215.71811077865" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.9350497298 215.71811077865 L 722.1204617100759 215.71811077865" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_137__stack1"><path d="M 419.30743398715 103.99320233126 L 409.547556927378 103.99320233126" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 103.99320233126 L 409.547556927378 103.99320233126" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_138__stack1"><path d="M 618.999655407485 95.00384188147001 L 628.502693597263 95.00384188147001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 95.00384188147001 L 628.502693597263 95.00384188147001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_139__stack1"><path d="M 419.30743398715 119.40353453089999 L 410.574912407354 119.40353453089999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 119.40353453089999 L 410.574912407354 119.40353453089999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_140__stack1"><path d="M 461.68584753616 787.1845965153 L 452.953325956364 787.1845965153" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 461.68584753616 787.1845965153 L 452.953325956364 787.1845965153" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_141__stack1"><path d="M 419.30743398715 121.97192323083999 L 410.574912407354 121.97192323083999" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.30743398715 121.97192323083999 L 410.574912407354 121.97192323083999" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_142__stack1"><path d="M 538.73750853436 787.1845965153 L 530.004986954564 787.1845965153" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 538.73750853436 787.1845965153 L 530.004986954564 787.1845965153" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_143__stack1"><path d="M 457.83326448625 123.25611758081001 L 465.53843058607 123.25611758081001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 457.83326448625 123.25611758081001 L 465.53843058607 123.25611758081001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_144__stack1"><path d="M 431.7909267389146 684.4153441948879 L 424.08576063909464 684.4153441948879" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 431.7909267389146 684.4153441948879 L 424.08576063909464 684.4153441948879" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_145__stack1"><path d="M 592.031574058115 102.70900798129 L 584.326407958295 102.70900798129" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 592.031574058115 102.70900798129 L 584.326407958295 102.70900798129" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_146__stack1"><path d="M 599.479901287941 273.5068565273 L 591.774735188121 273.5068565273" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 599.479901287941 273.5068565273 L 591.774735188121 273.5068565273" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_147__stack1"><path d="M 618.999655407485 105.27739668123 L 626.704821507305 105.27739668123" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 618.999655407485 105.27739668123 L 626.704821507305 105.27739668123" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_148__stack1"><path d="M 434.71776618679 581.7135005201 L 427.01260008697 581.7135005201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 434.71776618679 581.7135005201 L 427.01260008697 581.7135005201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_149__stack1"><path d="M 733.292952554815 91.15125883156 L 725.587786454995 91.15125883156" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 733.292952554815 91.15125883156 L 725.587786454995 91.15125883156" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_150__stack1"><path d="M 588.82108818319 574.778851030262 L 581.1159220833699 574.778851030262" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 588.82108818319 574.778851030262 L 581.1159220833699 574.778851030262" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_151__stack1"><path d="M 874.554331051515 96.28803623144 L 862.739743031791 96.28803623144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 874.554331051515 96.28803623144 L 862.739743031791 96.28803623144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_152__stack1"><path d="M 597.81044863298 684.4490485177 L 597.81044863298 696.263636537424" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 597.81044863298 684.4490485177 L 597.81044863298 696.263636537424" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_153__stack1"><path d="M 903.4487039258399 206.72875032886 L 916.29064742554 206.72875032886" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 903.4487039258399 206.72875032886 L 916.29064742554 206.72875032886" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" 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_154__stack1"><path d="M 742.92441017959 633.0812745189 L 730.08246667989 633.0812745189" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.0547109599519997px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 742.92441017959 633.0812745189 L 730.08246667989 633.0812745189" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.25683886999399996px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><circle cx="763.4715197791099" cy="208.01294467883002" r="0.38525830499099994" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><circle cx="460.40165318619" cy="97.57223058141" r="0.38525830499099994" 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_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"><circle cx="515.6220102349" cy="420.161851293874" r="0.38525830499099994" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="515.6220102349" cy="422.730239993814" r="0.38525830499099994" 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_10__stack1"><circle cx="592.6736712331" cy="422.730239993814" r="0.38525830499099994" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="592.6736712331" cy="420.161851293874" r="0.38525830499099994" 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_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"/><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="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_49__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_50__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_51__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_52__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_53__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_54__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_55__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_56__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_57__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_58__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_59__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_60__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_61__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_62__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_63__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_64__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_65__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_66__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_67__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_68__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_69__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_70__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_71__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_72__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_73__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_74__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_75__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_76__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_77__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_78__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_79__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_80__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_81__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_82__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_83__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_84__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_85__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_86__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_87__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_88__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_89__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_90__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_91__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_92__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_93__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_94__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_95__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_96__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_97__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_98__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_99__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_100__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_101__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_102__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_103__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_104__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_105__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_106__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_107__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_108__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_109__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_110__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_111__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_112__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_113__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_114__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_115__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_116__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_117__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_118__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_119__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_120__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_121__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_122__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_123__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_124__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_125__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_126__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_127__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_128__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_129__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_130__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_131__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_132__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_133__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_134__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_135__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_136__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_137__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_138__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_139__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_140__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_141__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_142__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_143__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_144__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_145__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_146__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_147__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_148__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_149__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_150__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_151__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_152__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_153__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_154__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="424.44421138703" y="92.43545318153001" width="28.252275699339975" height="53.936162698740006" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="424.44421138703" y="92.43545318153001" width="28.252275699339975" height="53.936162698740006" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="93.7196475315" x2="419.30743398715" y2="93.7196475315" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="419.050595117156" y="93.462808661506" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="93.462808661506" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="93.7196475315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDR2</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="96.28803623144" x2="419.30743398715" y2="96.28803623144" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="419.050595117156" y="96.031197361446" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="96.031197361446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="96.28803623144" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO8</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="98.85642493137999" x2="419.30743398715" y2="98.85642493137999" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="419.050595117156" y="98.59958606138599" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="98.59958606138599" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="98.85642493137999" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO9</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="101.42481363132" x2="419.30743398715" y2="101.42481363132" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="419.050595117156" y="101.16797476132601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="101.16797476132601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="101.42481363132" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO10</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="103.99320233126" x2="419.30743398715" y2="103.99320233126" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="419.050595117156" y="103.736363461266" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="103.736363461266" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="103.99320233126" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO11</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="106.5615910312" x2="419.30743398715" y2="106.5615910312" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="419.050595117156" y="106.304752161206" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="106.304752161206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="106.5615910312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO12</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="109.12997973114" x2="419.30743398715" y2="109.12997973114" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="419.050595117156" y="108.873140861146" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="108.873140861146" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="109.12997973114" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO13</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="111.69836843108" x2="419.30743398715" y2="111.69836843108" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="419.050595117156" y="111.441529561086" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="111.441529561086" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="111.69836843108" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDS4</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="114.26675713102" x2="419.30743398715" y2="114.26675713102" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="419.050595117156" y="114.009918261026" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="114.009918261026" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="114.26675713102" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO14</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="116.83514583096" x2="419.30743398715" y2="116.83514583096" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="419.050595117156" y="116.578306960966" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="116.57830696096599" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="116.83514583096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO15</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="119.40353453089999" x2="419.30743398715" y2="119.40353453089999" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="419.050595117156" y="119.14669566090599" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="119.14669566090599" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="119.40353453089999" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO16_SWDIO</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="121.97192323083999" x2="419.30743398715" y2="121.97192323083999" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="419.050595117156" y="121.71508436084599" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="121.71508436084599" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="121.97192323083999" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO17_SWDCK</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="124.54031193077999" x2="419.30743398715" y2="124.54031193077999" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><rect x="419.050595117156" y="124.283473060786" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="124.283473060786" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="124.54031193077999" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO18</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="127.10870063072" x2="419.30743398715" y2="127.10870063072" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><rect x="419.050595117156" y="126.851861760726" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="126.851861760726" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="127.10870063072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO19</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="129.67708933066" x2="419.30743398715" y2="129.67708933066" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_14__stack1"><rect x="419.050595117156" y="129.420250460666" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="129.420250460666" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="129.67708933066" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO20_A11</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="132.2454780306" x2="419.30743398715" y2="132.2454780306" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_15__stack1"><rect x="419.050595117156" y="131.988639160606" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="131.988639160606" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="132.2454780306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO21_A10</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="134.81386673054" x2="419.30743398715" y2="134.81386673054" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_16__stack1"><rect x="419.050595117156" y="134.55702786054601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="134.55702786054601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="134.81386673054" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDS3</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="137.38225543048" x2="419.564272857144" y2="137.38225543048" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="419.30743398715" cy="137.38225543048" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="419.050595117156" y="137.125416560486" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="137.125416560486" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="137.38225543048" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO22_A9</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="139.95064413042002" x2="419.564272857144" y2="139.95064413042002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_18__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="419.30743398715" cy="139.95064413042002" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="419.050595117156" y="139.69380526042602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="139.69380526042602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="139.95064413042002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO23_A8</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="142.51903283036" x2="419.564272857144" y2="142.51903283036" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_19__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="419.30743398715" cy="142.51903283036" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="419.050595117156" y="142.262193960366" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="142.262193960366" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="142.51903283036" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO24_A7</text><line class="component-pin sch-component-pin sch-port-line" x1="424.44421138703" y1="145.08742153030002" x2="419.564272857144" y2="145.08742153030002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_20__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="419.30743398715" cy="145.08742153030002" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="419.050595117156" y="144.83058266030602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="421.87582268709" y="144.830582660306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="425.728405737" y="145.08742153030002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO25_A6</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="143.80322718033" x2="457.576425616256" y2="143.80322718033" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_21__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="143.80322718033" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="143.546388310336" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="143.546388310336" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="143.80322718033" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO0_A5</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="141.23483848039" x2="457.576425616256" y2="141.23483848039" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_22__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="141.23483848039" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="140.977999610396" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="140.977999610396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="141.23483848039" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO1_A4</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="138.66644978045002" x2="457.576425616256" y2="138.66644978045002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_23__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="138.66644978045002" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="138.40961091045602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="138.409610910456" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="138.66644978045002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO2_A3</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="136.09806108051" x2="457.83326448625" y2="136.09806108051" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_24__stack1"><rect x="457.576425616256" y="135.841222210516" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="135.841222210516" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="136.09806108051" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">RSTN</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="133.52967238057002" x2="457.83326448625" y2="133.52967238057002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_25__stack1"><rect x="457.576425616256" y="133.27283351057602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="133.27283351057602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="133.52967238057002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO3_X32P</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="130.96128368063" x2="457.83326448625" y2="130.96128368063" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_26__stack1"><rect x="457.576425616256" y="130.704444810636" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="130.704444810636" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="130.96128368063" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO4_X32N</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="128.39289498069002" x2="457.83326448625" y2="128.39289498069002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_27__stack1"><rect x="457.576425616256" y="128.13605611069602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="128.13605611069602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="128.39289498069002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDD</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="125.82450628075001" x2="457.576425616256" y2="125.82450628075001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_28__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="125.82450628075001" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="125.56766741075602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="125.56766741075602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="125.82450628075001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO5_A2</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="123.25611758081001" x2="457.83326448625" y2="123.25611758081001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_29__stack1"><rect x="457.576425616256" y="122.99927871081601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="122.99927871081601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="123.25611758081001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DCDC</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="120.68772888087001" x2="457.83326448625" y2="120.68772888087001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_30__stack1"><rect x="457.576425616256" y="120.43089001087601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="120.43089001087601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="120.68772888087001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDS2</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="118.11934018093001" x2="457.83326448625" y2="118.11934018093001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_31__stack1"><rect x="457.576425616256" y="117.86250131093601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="117.86250131093601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="118.11934018093001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO6_A1</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="115.55095148099001" x2="457.576425616256" y2="115.55095148099001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_32__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="115.55095148099001" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="115.29411261099601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="115.29411261099601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="115.55095148099001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">DIO7_A0</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="112.98256278105" x2="457.83326448625" y2="112.98256278105" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_33__stack1"><rect x="457.576425616256" y="112.72572391105601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="112.72572391105601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="112.98256278105" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDR1</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="110.41417408111" x2="457.83326448625" y2="110.41417408111" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_34__stack1"><rect x="457.576425616256" y="110.157335211116" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="110.157335211116" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="110.41417408111" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">X48P</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="107.84578538117" x2="457.83326448625" y2="107.84578538117" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_35__stack1"><rect x="457.576425616256" y="107.588946511176" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="107.588946511176" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="107.84578538117" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">X48N</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="105.27739668123" x2="457.576425616256" y2="105.27739668123" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_36__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="457.83326448625" cy="105.27739668123" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="457.576425616256" y="105.020557811236" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="105.020557811236" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="105.27739668123" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">NC</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="102.70900798129" x2="457.83326448625" y2="102.70900798129" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_37__stack1"><rect x="457.576425616256" y="102.452169111296" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="102.452169111296" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="102.70900798129" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDS1</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="100.14061928135" x2="457.83326448625" y2="100.14061928135" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_38__stack1"><rect x="457.576425616256" y="99.883780411356" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="99.883780411356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="100.14061928135" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">ANT</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="97.57223058141" x2="457.83326448625" y2="97.57223058141" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_39__stack1"><rect x="457.576425616256" y="97.315391711416" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="97.315391711416" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="97.57223058141" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">RFGND</text><line class="component-pin sch-component-pin sch-port-line" x1="452.69648708637" y1="95.00384188147" x2="457.83326448625" y2="95.00384188147" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_0_40__stack1"><rect x="457.576425616256" y="94.747003011476" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="455.26487578631" y="94.747003011476" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="451.4122927364" y="95.00384188147" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">EP</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="597.168351457995" y="79.59350968183001" width="16.694526549610032" height="28.25227569933999" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="597.168351457995" y="79.59350968183001" width="16.694526549610032" height="28.25227569933999" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="82.16189838177002" x2="592.031574058115" y2="82.16189838177002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="591.774735188121" y="81.90505951177602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="81.90505951177602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="82.16189838177002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">IN</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="84.73028708171" x2="592.031574058115" y2="84.73028708171" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="591.774735188121" y="84.473448211716" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="84.473448211716" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="84.73028708171" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">PMID1</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="87.29867578165" x2="592.031574058115" y2="87.29867578165" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="591.774735188121" y="87.041836911656" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="87.041836911656" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="87.29867578165" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">BAT1</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="89.86706448159" x2="592.031574058115" y2="89.86706448159" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="591.774735188121" y="89.61022561159601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="89.61022561159601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="89.86706448159" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="92.43545318153001" x2="592.031574058115" y2="92.43545318153001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="591.774735188121" y="92.17861431153601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="92.17861431153601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="92.43545318153001" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.5410332199639998px" transform="">PG</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="95.00384188147001" x2="592.031574058115" y2="95.00384188147001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="591.774735188121" y="94.74700301147601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="94.74700301147601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="95.00384188147001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">PMID2</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="97.57223058141" x2="592.031574058115" y2="97.57223058141" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><rect x="591.774735188121" y="97.315391711416" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="97.315391711416" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="97.57223058141" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">BAT2</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="100.14061928135001" x2="592.031574058115" y2="100.14061928135001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><rect x="591.774735188121" y="99.88378041135601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="99.883780411356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="100.14061928135001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">TS</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="102.70900798129" x2="592.031574058115" y2="102.70900798129" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><rect x="591.774735188121" y="102.452169111296" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="102.452169111296" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="102.70900798129" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.5410332199639998px" transform="">MR</text><line class="component-pin sch-component-pin sch-port-line" x1="597.168351457995" y1="105.27739668123" x2="592.031574058115" y2="105.27739668123" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><rect x="591.774735188121" y="105.020557811236" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.599962758055" y="105.020557811236" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="598.452545807965" y="105.27739668123" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.5410332199639998px" transform="">CE</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="105.27739668123" x2="618.999655407485" y2="105.27739668123" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><rect x="618.742816537491" y="105.020557811236" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="105.020557811236" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="105.27739668123" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">IMAX</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="102.70900798129" x2="618.999655407485" y2="102.70900798129" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><rect x="618.742816537491" y="102.452169111296" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="102.452169111296" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="102.70900798129" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">ADCIN</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="100.14061928135001" x2="618.999655407485" y2="100.14061928135001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="618.742816537491" y="99.88378041135601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="99.883780411356" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="100.14061928135001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDD</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="97.57223058141" x2="618.999655407485" y2="97.57223058141" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="618.742816537491" y="97.315391711416" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="97.315391711416" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="97.57223058141" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.5410332199639998px" transform="">INT</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="95.00384188147001" x2="618.999655407485" y2="95.00384188147001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_14__stack1"><rect x="618.742816537491" y="94.74700301147601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="94.74700301147601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="95.00384188147001" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.5410332199639998px" transform="">LP</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="92.43545318153001" x2="618.742816537491" y2="92.43545318153001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_15__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="618.999655407485" cy="92.43545318153001" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="618.742816537491" y="92.17861431153601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="92.17861431153601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="92.43545318153001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">LSLDO</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="89.86706448159" x2="618.999655407485" y2="89.86706448159" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_16__stack1"><rect x="618.742816537491" y="89.61022561159601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="89.61022561159601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="89.86706448159" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VIO</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="87.29867578165" x2="618.999655407485" y2="87.29867578165" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_17__stack1"><rect x="618.742816537491" y="87.041836911656" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="87.041836911656" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="87.29867578165" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SDA</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="84.73028708171" x2="618.999655407485" y2="84.73028708171" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_18__stack1"><rect x="618.742816537491" y="84.473448211716" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="84.473448211716" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="84.73028708171" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SCL</text><line class="component-pin sch-component-pin sch-port-line" x1="613.862878007605" y1="82.16189838177002" x2="618.999655407485" y2="82.16189838177002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_1_19__stack1"><rect x="618.742816537491" y="81.90505951177602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="616.431266707545" y="81.90505951177602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="612.578683657635" y="82.16189838177002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VINLS</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component chip sch-component-body" x="738.429729954695" y="87.29867578165" width="16.694526549610032" height="12.841943499700008" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="738.429729954695" y="87.29867578165" width="16.694526549610032" height="12.841943499700008" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="88.58287013162001" x2="733.292952554815" y2="88.58287013162001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="733.036113684821" y="88.32603126162601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="88.32603126162601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="88.58287013162001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">GPOUT</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="91.15125883156" x2="733.292952554815" y2="91.15125883156" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="733.036113684821" y="90.894419961566" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="90.894419961566" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="91.15125883156" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">BIN</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="93.7196475315" x2="733.292952554815" y2="93.7196475315" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="733.036113684821" y="93.462808661506" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="93.462808661506" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="93.7196475315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VSS1</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="96.28803623144" x2="733.292952554815" y2="96.28803623144" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><rect x="733.036113684821" y="96.031197361446" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="96.031197361446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="96.28803623144" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">SDA</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="98.85642493138" x2="733.292952554815" y2="98.85642493138" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="733.036113684821" y="98.599586061386" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="98.599586061386" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="98.85642493138" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VSS2</text><line class="component-pin sch-component-pin sch-port-line" x1="755.124256504305" y1="97.57223058141" x2="760.2610339041851" y2="97.57223058141" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_5__stack1"><rect x="760.0041950341911" y="97.315391711416" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.6926452042451" y="97.315391711416" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.840062154335" y="97.57223058141" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SRX</text><line class="component-pin sch-component-pin sch-port-line" x1="755.124256504305" y1="95.00384188147001" x2="760.2610339041851" y2="95.00384188147001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_6__stack1"><rect x="760.0041950341911" y="94.74700301147601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.6926452042451" y="94.74700301147601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.840062154335" y="95.00384188147001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SCL</text><line class="component-pin sch-component-pin sch-port-line" x1="755.124256504305" y1="92.43545318153001" x2="760.0041950341911" y2="92.43545318153001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="760.2610339041851" cy="92.43545318153001" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="760.0041950341911" y="92.17861431153601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.6926452042451" y="92.17861431153601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.840062154335" y="92.43545318153001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDD</text><line class="component-pin sch-component-pin sch-port-line" x1="755.124256504305" y1="89.86706448159" x2="760.0041950341911" y2="89.86706448159" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_2_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="760.2610339041851" cy="89.86706448159" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="760.0041950341911" y="89.61022561159601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.6926452042451" y="89.61022561159601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.840062154335" y="89.86706448159" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">BAT</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="739.07182712968" y="200.30777857901" width="15.410332199640038" height="17.978720899579997" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="739.07182712968" y="200.30777857901" width="15.410332199640038" height="17.978720899579997" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="202.87616727895" x2="734.191888599794" y2="202.87616727895" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="733.9350497298" cy="202.87616727895" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="733.678210859806" y="202.619328408956" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="202.619328408956" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="202.87616727895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">SDO</text><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="205.44455597888998" x2="733.9350497298" y2="205.44455597888998" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="733.678210859806" y="205.18771710889598" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="205.187717108896" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="205.44455597888998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">SDX</text><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="208.01294467883002" x2="733.9350497298" y2="208.01294467883002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_2__stack1"><rect x="733.678210859806" y="207.75610580883603" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="207.75610580883603" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="208.01294467883002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDDIO</text><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="210.58133337877" x2="734.191888599794" y2="210.58133337877" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="733.9350497298" cy="210.58133337877" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="733.678210859806" y="210.324494508776" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="210.324494508776" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="210.58133337877" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">NC2</text><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="213.14972207871" x2="733.9350497298" y2="213.14972207871" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_4__stack1"><rect x="733.678210859806" y="212.892883208716" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="212.892883208716" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="213.14972207871" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">INT1</text><line class="component-pin sch-component-pin sch-port-line" x1="739.07182712968" y1="215.71811077865" x2="733.9350497298" y2="215.71811077865" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_5__stack1"><rect x="733.678210859806" y="215.461271908656" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="736.50343842974" y="215.461271908656" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="740.35602147965" y="215.71811077865" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">INT2</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="215.71811077865" x2="759.6189367292" y2="215.71811077865" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_6__stack1"><rect x="759.362097859206" y="215.461271908656" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="215.461271908656" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="215.71811077865" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDD</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="213.14972207871" x2="759.6189367292" y2="213.14972207871" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_7__stack1"><rect x="759.362097859206" y="212.892883208716" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="212.892883208716" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="213.14972207871" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">GNDIO</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="210.58133337877" x2="759.6189367292" y2="210.58133337877" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_8__stack1"><rect x="759.362097859206" y="210.324494508776" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="210.324494508776" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="210.58133337877" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="208.01294467883002" x2="759.6189367292" y2="208.01294467883002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_9__stack1"><rect x="759.362097859206" y="207.75610580883603" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="207.75610580883603" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="208.01294467883002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">CSB</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="205.44455597888998" x2="759.362097859206" y2="205.44455597888998" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="759.6189367292" cy="205.44455597888998" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="759.362097859206" y="205.18771710889598" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="205.187717108896" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="205.44455597888998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">NC1</text><line class="component-pin sch-component-pin sch-port-line" x1="754.48215932932" y1="202.87616727895" x2="759.6189367292" y2="202.87616727895" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_3_11__stack1"><rect x="759.362097859206" y="202.619328408956" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="757.05054802926" y="202.619328408956" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="753.19796497935" y="202.87616727895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SCX</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="597.81044863298" y="205.44455597888998" width="15.410332199640038" height="7.705166099820019" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="597.81044863298" y="205.44455597888998" width="15.410332199640038" height="7.705166099820019" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="597.81044863298" y1="206.72875032886" x2="592.6736712331" y2="206.72875032886" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="592.416832363106" y="206.471911458866" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="595.24205993304" y="206.471911458866" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="599.09464298295" y="206.72875032886" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">IN</text><line class="component-pin sch-component-pin sch-port-line" x1="597.81044863298" y1="209.29713902880002" x2="592.6736712331" y2="209.29713902880002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="592.416832363106" y="209.04030015880602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="595.24205993304" y="209.04030015880602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="599.09464298295" y="209.29713902880002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="597.81044863298" y1="211.86552772874" x2="592.6736712331" y2="211.86552772874" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><rect x="592.416832363106" y="211.608688858746" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="595.24205993304" y="211.608688858746" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="599.09464298295" y="211.86552772874" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">EN</text><line class="component-pin sch-component-pin sch-port-line" x1="613.22078083262" y1="210.58133337877" x2="618.100719362506" y2="210.58133337877" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_4_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="618.3575582325" cy="210.58133337877" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="618.100719362506" y="210.324494508776" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="615.78916953256" y="210.324494508776" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="611.93658648265" y="210.58133337877" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">NC</text><line class="component-pin sch-component-pin sch-port-line" x1="613.22078083262" y1="208.01294467883002" x2="618.3575582325" y2="208.01294467883002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_4_4__stack1"><rect x="618.100719362506" y="207.75610580883603" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="615.78916953256" y="207.75610580883603" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="611.93658648265" y="208.01294467883002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">OUT</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="879.6911084513949" y="88.58287013162001" width="16.694526549610032" height="10.273554799759992" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="879.6911084513949" y="88.58287013162001" width="16.694526549610032" height="10.273554799759992" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="879.6911084513949" y1="91.15125883156" x2="874.554331051515" y2="91.15125883156" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="874.297492181521" y="90.894419961566" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.1227197514551" y="90.894419961566" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="880.9753028013649" y="91.15125883156" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VOUT</text><line class="component-pin sch-component-pin sch-port-line" x1="879.6911084513949" y1="93.7196475315" x2="874.554331051515" y2="93.7196475315" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><rect x="874.297492181521" y="93.462808661506" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.1227197514551" y="93.462808661506" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="880.9753028013649" y="93.7196475315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">EN</text><line class="component-pin sch-component-pin sch-port-line" x1="879.6911084513949" y1="96.28803623144" x2="874.554331051515" y2="96.28803623144" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><rect x="874.297492181521" y="96.031197361446" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.1227197514551" y="96.031197361446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="880.9753028013649" y="96.28803623144" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">SW</text><line class="component-pin sch-component-pin sch-port-line" x1="896.385635001005" y1="96.28803623144" x2="901.522412400885" y2="96.28803623144" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_3__stack1"><rect x="901.265573530891" y="96.031197361446" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="898.9540237009448" y="96.031197361446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="895.1014406510349" y="96.28803623144" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">FB</text><line class="component-pin sch-component-pin sch-port-line" x1="896.385635001005" y1="93.7196475315" x2="901.522412400885" y2="93.7196475315" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_4__stack1"><rect x="901.265573530891" y="93.462808661506" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="898.9540237009448" y="93.462808661506" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="895.1014406510349" y="93.7196475315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="896.385635001005" y1="91.15125883156" x2="901.522412400885" y2="91.15125883156" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_5_5__stack1"><rect x="901.265573530891" y="90.894419961566" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="898.9540237009448" y="90.894419961566" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="895.1014406510349" y="91.15125883156" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VIN</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="877.7648169264398" y="199.02358422904" width="20.547109599520127" height="20.547109599519985" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="877.7648169264398" y="199.02358422904" width="20.547109599520127" height="20.547109599519985" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="201.59197292898" x2="872.884878396554" y2="201.59197292898" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="872.6280395265599" cy="201.59197292898" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="872.3712006565659" y="201.335134058986" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="201.335134058986" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="201.59197292898" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">C2P</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="204.16036162892" x2="872.884878396554" y2="204.16036162892" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="872.6280395265599" cy="204.16036162892" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="872.3712006565659" y="203.903522758926" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="203.903522758926" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="204.16036162892" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">C2N</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="206.72875032886" x2="872.884878396554" y2="206.72875032886" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="872.6280395265599" cy="206.72875032886" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="872.3712006565659" y="206.471911458866" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="206.471911458866" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="206.72875032886" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">C1P</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="209.29713902880002" x2="872.884878396554" y2="209.29713902880002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="872.6280395265599" cy="209.29713902880002" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="872.3712006565659" y="209.04030015880602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="209.04030015880602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="209.29713902880002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">C1N</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="211.86552772874" x2="872.6280395265599" y2="211.86552772874" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_4__stack1"><rect x="872.3712006565659" y="211.608688858746" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="211.608688858746" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="211.86552772874" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VBAT</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="214.43391642868" x2="872.884878396554" y2="214.43391642868" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="872.6280395265599" cy="214.43391642868" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="872.3712006565659" y="214.177077558686" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="214.177077558686" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="214.43391642868" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VBREF</text><line class="component-pin sch-component-pin sch-port-line" x1="877.7648169264398" y1="217.00230512861998" x2="872.6280395265599" y2="217.00230512861998" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_6__stack1"><rect x="872.3712006565659" y="216.74546625862598" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="875.1964282265" y="216.74546625862598" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="879.0490112764099" y="217.00230512861998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">VSS</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="217.00230512861998" x2="903.4487039258399" y2="217.00230512861998" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_7__stack1"><rect x="903.1918650558459" y="216.74546625862598" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="216.74546625862598" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="217.00230512861998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VDD</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="214.43391642868" x2="903.4487039258399" y2="214.43391642868" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_8__stack1"><rect x="903.1918650558459" y="214.177077558686" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="214.177077558686" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="214.43391642868" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">RESN</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="211.86552772874" x2="903.4487039258399" y2="211.86552772874" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_9__stack1"><rect x="903.1918650558459" y="211.608688858746" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="211.608688858746" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="211.86552772874" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SCL</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="209.29713902880002" x2="903.4487039258399" y2="209.29713902880002" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_10__stack1"><rect x="903.1918650558459" y="209.04030015880602" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="209.04030015880602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="209.29713902880002" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">SDA</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="206.72875032886" x2="903.4487039258399" y2="206.72875032886" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_11__stack1"><rect x="903.1918650558459" y="206.471911458866" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="206.471911458866" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="206.72875032886" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">IREF</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="204.16036162892" x2="903.4487039258399" y2="204.16036162892" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_12__stack1"><rect x="903.1918650558459" y="203.903522758926" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="203.903522758926" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="204.16036162892" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VCOMH</text><line class="component-pin sch-component-pin sch-port-line" x1="898.31192652596" y1="201.59197292898" x2="903.4487039258399" y2="201.59197292898" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_6_13__stack1"><rect x="903.1918650558459" y="201.335134058986" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.8803152259" y="201.335134058986" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="897.02773217599" y="201.59197292898" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">VCC</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component chip sch-component-body" x="300.519456614925" y="89.86706448159" width="19.26291524955002" height="7.705166099819991" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="300.519456614925" y="89.86706448159" width="19.26291524955002" height="7.705166099819991" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="300.519456614925" y1="92.43545318153001" x2="295.38267921504496" y2="92.43545318153001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_7_0__stack1"><rect x="295.12584034505096" y="92.17861431153601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="297.951067914985" y="92.17861431153601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="301.80365096489504" y="92.43545318153001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">X1</text><line class="component-pin sch-component-pin sch-port-line" x1="300.519456614925" y1="95.00384188147001" x2="295.38267921504496" y2="95.00384188147001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_7_1__stack1"><rect x="295.12584034505096" y="94.74700301147601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="297.951067914985" y="94.74700301147601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="301.80365096489504" y="95.00384188147001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND1</text><line class="component-pin sch-component-pin sch-port-line" x1="319.782371864475" y1="95.00384188147001" x2="324.91914926435504" y2="95.00384188147001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_7_2__stack1"><rect x="324.66231039436104" y="94.74700301147601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="322.350760564415" y="94.74700301147601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="318.498177514505" y="95.00384188147001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">X2</text><line class="component-pin sch-component-pin sch-port-line" x1="319.782371864475" y1="92.43545318153001" x2="324.91914926435504" y2="92.43545318153001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_7_3__stack1"><rect x="324.66231039436104" y="92.17861431153601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="322.350760564415" y="92.17861431153601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="318.498177514505" y="92.43545318153001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">GND2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_8__stack1"><rect class="component chip sch-component-body" x="309.508817064715" y="143.289549440342" width="1.2841943499699937" height="3.595744179916011" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="309.508817064715" y="143.289549440342" width="1.2841943499699937" height="3.595744179916011" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="310.793011414685" y1="145.0874215303" x2="315.28769163958" y2="145.0874215303" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_8_0__stack1"><rect x="315.030852769586" y="144.830582660306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="313.0403515271325" y="144.830582660306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="309.508817064715" y1="145.0874215303" x2="305.01413683982" y2="145.0874215303" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_8_1__stack1"><rect x="304.757297969826" y="144.830582660306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="307.2614769522675" y="144.830582660306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_9__stack1"><rect class="component chip sch-component-body" x="309.508817064715" y="195.17100117913" width="1.2841943499699937" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="309.508817064715" y="195.17100117913" width="1.2841943499699937" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="310.1509142397" y1="196.4551955291" x2="310.1509142397" y2="201.59197292898" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_9_0__stack1"><rect x="309.894075369706" y="201.335134058986" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="309.894075369706" y="199.02358422904" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 309.894075369706 199.02358422904)"></text><text class="pin-number sch-pin-label" x="310.1509142397" y="195.17100117913" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 310.1509142397 195.17100117913)">ANT</text><line class="component-pin sch-component-pin sch-port-line" x1="309.508817064715" y1="192.60261247919" x2="307.839364409754" y2="192.60261247919" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_9_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="307.58252553976" cy="192.60261247919" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="307.325686669766" y="192.345773609196" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="308.5456713022375" y="192.345773609196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_10__stack1"><rect class="component chip sch-component-body" x="604.6166786878209" y="268.89075123193516" width="1.7978720899581049" height="9.232210590729721" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="604.6166786878209" y="268.89075123193516" width="1.7978720899581049" height="9.232210590729721" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="604.6166786878209" y1="273.5068565273" x2="599.479901287941" y2="273.5068565273" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_10_0__stack1"><rect x="599.223062417947" y="273.250017657306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="602.0482899878809" y="273.250017657306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="606.414550777779" y1="273.5068565273" x2="611.551328177659" y2="273.5068565273" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_10_1__stack1"><rect x="611.294489307665" y="273.250017657306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="608.982939477719" y="273.250017657306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_11__stack1"><rect class="component chip sch-component-body" x="746.1348960545149" y="271.195306697354" width="1.2841943499699937" height="4.623099659891977" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="746.1348960545149" y="271.195306697354" width="1.2841943499699937" height="4.623099659891977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="747.4190904044849" y1="273.5068565273" x2="751.91377062938" y2="273.5068565273" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_11_0__stack1"><rect x="751.656931759386" y="273.250017657306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="749.6664305169325" y="273.250017657306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="746.1348960545149" y1="273.5068565273" x2="741.64021582962" y2="273.5068565273" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_11_1__stack1"><rect x="741.383376959626" y="273.250017657306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="743.8875559420675" y="273.250017657306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_12__stack1"><rect class="component chip sch-component-body" x="879.6911084513949" y="282.49621697708994" width="16.694526549610032" height="7.705166099820076" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="879.6911084513949" y="282.49621697708994" width="16.694526549610032" height="7.705166099820076" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="879.6911084513949" y1="285.06460567703" x2="874.554331051515" y2="285.06460567703" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_12_0__stack1"><rect x="874.297492181521" y="284.807766807036" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.1227197514551" y="284.80776680703605" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="880.9753028013649" y="285.06460567703" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">P1</text><line class="component-pin sch-component-pin sch-port-line" x1="879.6911084513949" y1="287.63299437697" x2="874.554331051515" y2="287.63299437697" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_12_1__stack1"><rect x="874.297492181521" y="287.376155506976" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.1227197514551" y="287.37615550697603" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="880.9753028013649" y="287.63299437697" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">P2</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_13__stack1"><rect class="component chip sch-component-body" x="738.429729954695" y="11.531209133420006" width="16.694526549610032" height="10.273554799760007" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="738.429729954695" y="11.531209133420006" width="16.694526549610032" height="10.273554799760007" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="14.099597833360022" x2="733.292952554815" y2="14.099597833360022" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_13_0__stack1"><rect x="733.036113684821" y="13.842758963366022" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="13.842758963366023" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="14.099597833360022" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">P1</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="16.66798653330001" x2="733.292952554815" y2="16.66798653330001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_13_1__stack1"><rect x="733.036113684821" y="16.41114766330601" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="16.41114766330601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="16.66798653330001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">P2</text><line class="component-pin sch-component-pin sch-port-line" x1="738.429729954695" y1="19.23637523324001" x2="733.292952554815" y2="19.23637523324001" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_13_2__stack1"><rect x="733.036113684821" y="18.979536363246012" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.861341254755" y="18.979536363246012" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="739.7139243046649" y="19.23637523324001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">P3</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_14__stack1"><rect class="component chip sch-component-body" x="278.68815266543504" y="375.600307349915" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="278.68815266543504" y="375.600307349915" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="375.600307349915" x2="284.4670272403" y2="371.36246599501396" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_14_0__stack1"><rect x="284.210188370306" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="376.884501699885" x2="284.4670272403" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_14_1__stack1"><rect x="284.210188370306" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_15__stack1"><rect class="component chip sch-component-body" x="355.739813663635" y="375.600307349915" width="13.419830957186491" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="355.739813663635" y="375.600307349915" width="13.419830957186491" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="375.600307349915" x2="361.5186882385" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_15_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="361.5186882385" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="361.261849368506" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="376.884501699885" x2="361.5186882385" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_15_1__stack1"><rect x="361.261849368506" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_16__stack1"><rect class="component chip sch-component-body" x="432.79147466183497" y="375.600307349915" width="11.878797737222555" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="432.79147466183497" y="375.600307349915" width="11.878797737222555" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="375.600307349915" x2="438.5703492367" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_16_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="438.5703492367" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="438.313510366706" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="376.884501699885" x2="438.5703492367" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_16_1__stack1"><rect x="438.313510366706" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_17__stack1"><rect class="component chip sch-component-body" x="509.843135660035" y="375.600307349915" width="14.96086417715054" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="509.843135660035" y="375.600307349915" width="14.96086417715054" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="375.600307349915" x2="515.6220102349" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_17_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="515.6220102349" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="515.365171364906" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="376.884501699885" x2="515.6220102349" y2="380.865504184792" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_17_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="515.6220102349" cy="381.122343054786" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="515.365171364906" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_18__stack1"><rect class="component chip sch-component-body" x="586.894796658235" y="375.600307349915" width="11.878797737222385" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="586.894796658235" y="375.600307349915" width="11.878797737222385" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="375.600307349915" x2="592.6736712331" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_18_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="592.6736712331" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="592.416832363106" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="376.884501699885" x2="592.6736712331" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_18_1__stack1"><rect x="592.416832363106" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_19__stack1"><rect class="component chip sch-component-body" x="663.946457656435" y="375.600307349915" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="663.946457656435" y="375.600307349915" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="375.600307349915" x2="669.7253322313" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_19_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="669.7253322313" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="669.468493361306" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="376.884501699885" x2="669.7253322313" y2="380.865504184792" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_19_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="669.7253322313" cy="381.122343054786" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="669.468493361306" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_20__stack1"><rect class="component chip sch-component-body" x="740.9981186546349" y="375.600307349915" width="14.960864177150597" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="740.9981186546349" y="375.600307349915" width="14.960864177150597" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="375.600307349915" x2="746.7769932295" y2="371.36246599501396" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_20_0__stack1"><rect x="746.520154359506" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="376.884501699885" x2="746.7769932295" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_20_1__stack1"><rect x="746.520154359506" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_21__stack1"><rect class="component chip sch-component-body" x="818.049779652835" y="375.600307349915" width="11.878797737222385" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="818.049779652835" y="375.600307349915" width="11.878797737222385" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="375.600307349915" x2="823.8286542277" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_21_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="823.8286542277" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="823.571815357706" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="376.884501699885" x2="823.8286542277" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_21_1__stack1"><rect x="823.571815357706" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_22__stack1"><rect class="component chip sch-component-body" x="895.1014406510349" y="375.600307349915" width="14.960864177150597" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="895.1014406510349" y="375.600307349915" width="14.960864177150597" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="375.600307349915" x2="900.8803152259" y2="371.61930486500796" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_22_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="900.8803152259" cy="371.36246599501396" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="900.623476355906" y="371.10562712501996" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="373.4813866724645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 373.4813866724645)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="376.884501699885" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 376.884501699885)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="376.884501699885" x2="900.8803152259" y2="381.122343054786" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_22_1__stack1"><rect x="900.623476355906" y="380.865504184792" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="379.0034223773355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 379.0034223773355)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="375.600307349915" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 375.600307349915)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_23__stack1"><rect class="component chip sch-component-body" x="278.68815266543504" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="278.68815266543504" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="426.968081348715" x2="284.4670272403" y2="422.987078863808" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_23_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="284.4670272403" cy="422.730239993814" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="284.210188370306" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="428.25227569868497" x2="284.4670272403" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_23_1__stack1"><rect x="284.210188370306" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_24__stack1"><rect class="component chip sch-component-body" x="355.739813663635" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="355.739813663635" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="426.968081348715" x2="361.5186882385" y2="422.987078863808" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_24_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="361.5186882385" cy="422.730239993814" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="361.261849368506" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="428.25227569868497" x2="361.5186882385" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_24_1__stack1"><rect x="361.261849368506" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_25__stack1"><rect class="component chip sch-component-body" x="432.79147466183497" y="426.968081348715" width="14.96086417715054" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="432.79147466183497" y="426.968081348715" width="14.96086417715054" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="426.968081348715" x2="438.5703492367" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_25_0__stack1"><rect x="438.313510366706" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="428.25227569868497" x2="438.5703492367" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_25_1__stack1"><rect x="438.313510366706" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_26__stack1"><rect class="component chip sch-component-body" x="509.843135660035" y="426.968081348715" width="14.96086417715054" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="509.843135660035" y="426.968081348715" width="14.96086417715054" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="426.968081348715" x2="515.6220102349" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_26_0__stack1"><rect x="515.365171364906" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="428.25227569868497" x2="515.6220102349" y2="432.233278183592" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_26_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="515.6220102349" cy="432.49011705358595" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="515.365171364906" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_27__stack1"><rect class="component chip sch-component-body" x="586.894796658235" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="586.894796658235" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="426.968081348715" x2="592.6736712331" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_27_0__stack1"><rect x="592.416832363106" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="428.25227569868497" x2="592.6736712331" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_27_1__stack1"><rect x="592.416832363106" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_28__stack1"><rect class="component chip sch-component-body" x="663.946457656435" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="663.946457656435" y="426.968081348715" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="426.968081348715" x2="669.7253322313" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_28_0__stack1"><rect x="669.468493361306" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="428.25227569868497" x2="669.7253322313" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_28_1__stack1"><rect x="669.468493361306" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_29__stack1"><rect class="component chip sch-component-body" x="740.9981186546349" y="426.968081348715" width="13.419830957186605" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="740.9981186546349" y="426.968081348715" width="13.419830957186605" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="426.968081348715" x2="746.7769932295" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_29_0__stack1"><rect x="746.520154359506" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="428.25227569868497" x2="746.7769932295" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_29_1__stack1"><rect x="746.520154359506" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_30__stack1"><rect class="component chip sch-component-body" x="818.049779652835" y="426.968081348715" width="13.419830957186377" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="818.049779652835" y="426.968081348715" width="13.419830957186377" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="426.968081348715" x2="823.8286542277" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_30_0__stack1"><rect x="823.571815357706" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="428.25227569868497" x2="823.8286542277" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_30_1__stack1"><rect x="823.571815357706" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_31__stack1"><rect class="component chip sch-component-body" x="895.1014406510349" y="426.968081348715" width="14.960864177150597" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="895.1014406510349" y="426.968081348715" width="14.960864177150597" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="426.968081348715" x2="900.8803152259" y2="422.730239993814" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_31_0__stack1"><rect x="900.623476355906" y="422.47340112382" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="424.8491606712645" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 424.8491606712645)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="428.25227569868497" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 428.25227569868497)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="428.25227569868497" x2="900.8803152259" y2="432.49011705358595" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_31_1__stack1"><rect x="900.623476355906" y="432.23327818359195" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="430.37119637613546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 430.37119637613546)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="426.968081348715" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 426.968081348715)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_32__stack1"><rect class="component chip sch-component-body" x="278.68815266543504" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="278.68815266543504" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="478.33585534751495" x2="284.4670272403" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_32_0__stack1"><rect x="284.210188370306" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="479.620049697485" x2="284.4670272403" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_32_1__stack1"><rect x="284.210188370306" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_33__stack1"><rect class="component chip sch-component-body" x="355.739813663635" y="478.33585534751495" width="11.878797737222499" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="355.739813663635" y="478.33585534751495" width="11.878797737222499" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="478.33585534751495" x2="361.5186882385" y2="474.35485286260797" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_33_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="361.5186882385" cy="474.09801399261397" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="361.261849368506" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="479.620049697485" x2="361.5186882385" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_33_1__stack1"><rect x="361.261849368506" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_34__stack1"><rect class="component chip sch-component-body" x="432.79147466183497" y="478.33585534751495" width="14.96086417715054" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="432.79147466183497" y="478.33585534751495" width="14.96086417715054" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="478.33585534751495" x2="438.5703492367" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_34_0__stack1"><rect x="438.313510366706" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="479.620049697485" x2="438.5703492367" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_34_1__stack1"><rect x="438.313510366706" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_35__stack1"><rect class="component chip sch-component-body" x="509.843135660035" y="478.33585534751495" width="13.419830957186548" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="509.843135660035" y="478.33585534751495" width="13.419830957186548" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="478.33585534751495" x2="515.6220102349" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_35_0__stack1"><rect x="515.365171364906" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="479.620049697485" x2="515.6220102349" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_35_1__stack1"><rect x="515.365171364906" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_36__stack1"><rect class="component chip sch-component-body" x="586.894796658235" y="478.33585534751495" width="13.419830957186491" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="586.894796658235" y="478.33585534751495" width="13.419830957186491" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="478.33585534751495" x2="592.6736712331" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_36_0__stack1"><rect x="592.416832363106" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="479.620049697485" x2="592.6736712331" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_36_1__stack1"><rect x="592.416832363106" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_37__stack1"><rect class="component chip sch-component-body" x="663.946457656435" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="663.946457656435" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="478.33585534751495" x2="669.7253322313" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_37_0__stack1"><rect x="669.468493361306" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="479.620049697485" x2="669.7253322313" y2="483.601052182392" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_37_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="669.7253322313" cy="483.857891052386" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="669.468493361306" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_38__stack1"><rect class="component chip sch-component-body" x="740.9981186546349" y="478.33585534751495" width="14.960864177150597" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="740.9981186546349" y="478.33585534751495" width="14.960864177150597" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="478.33585534751495" x2="746.7769932295" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_38_0__stack1"><rect x="746.520154359506" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="479.620049697485" x2="746.7769932295" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_38_1__stack1"><rect x="746.520154359506" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_39__stack1"><rect class="component chip sch-component-body" x="818.049779652835" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="818.049779652835" y="478.33585534751495" width="14.960864177150484" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="478.33585534751495" x2="823.8286542277" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_39_0__stack1"><rect x="823.571815357706" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="479.620049697485" x2="823.8286542277" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_39_1__stack1"><rect x="823.571815357706" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_40__stack1"><rect class="component chip sch-component-body" x="895.1014406510349" y="478.33585534751495" width="14.960864177150597" height="1.2841943499700506" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="895.1014406510349" y="478.33585534751495" width="14.960864177150597" height="1.2841943499700506" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="478.33585534751495" x2="900.8803152259" y2="474.09801399261397" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_40_0__stack1"><rect x="900.623476355906" y="473.84117512262" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="476.21693467006446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 476.21693467006446)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="479.620049697485" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 479.620049697485)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="479.620049697485" x2="900.8803152259" y2="483.857891052386" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_40_1__stack1"><rect x="900.623476355906" y="483.601052182392" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="481.7389703749355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 481.7389703749355)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="478.33585534751495" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 478.33585534751495)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_41__stack1"><rect class="component chip sch-component-body" x="278.68815266543504" y="529.703629346315" width="13.419830957186491" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="278.68815266543504" y="529.703629346315" width="13.419830957186491" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="529.703629346315" x2="284.4670272403" y2="525.4657879914139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_41_0__stack1"><rect x="284.210188370306" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="530.987823696285" x2="284.4670272403" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_41_1__stack1"><rect x="284.210188370306" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_42__stack1"><rect class="component chip sch-component-body" x="355.739813663635" y="529.703629346315" width="11.878797737222499" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="355.739813663635" y="529.703629346315" width="11.878797737222499" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="529.703629346315" x2="361.5186882385" y2="525.4657879914139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_42_0__stack1"><rect x="361.261849368506" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="530.987823696285" x2="361.5186882385" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_42_1__stack1"><rect x="361.261849368506" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_43__stack1"><rect class="component chip sch-component-body" x="432.79147466183497" y="529.703629346315" width="11.878797737222555" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="432.79147466183497" y="529.703629346315" width="11.878797737222555" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="529.703629346315" x2="438.5703492367" y2="525.4657879914139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_43_0__stack1"><rect x="438.313510366706" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="438.5703492367" y1="530.987823696285" x2="438.5703492367" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_43_1__stack1"><rect x="438.313510366706" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="438.313510366706" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 438.313510366706 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="438.5703492367" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 438.5703492367 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_44__stack1"><rect class="component chip sch-component-body" x="509.843135660035" y="529.703629346315" width="14.96086417715054" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="509.843135660035" y="529.703629346315" width="14.96086417715054" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="529.703629346315" x2="515.6220102349" y2="525.7226268614079" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_44_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="515.6220102349" cy="525.4657879914139" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="515.365171364906" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="515.6220102349" y1="530.987823696285" x2="515.6220102349" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_44_1__stack1"><rect x="515.365171364906" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.365171364906" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 515.365171364906 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="515.6220102349" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 515.6220102349 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_45__stack1"><rect class="component chip sch-component-body" x="586.894796658235" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="586.894796658235" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="529.703629346315" x2="592.6736712331" y2="525.4657879914139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_45_0__stack1"><rect x="592.416832363106" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="592.6736712331" y1="530.987823696285" x2="592.6736712331" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_45_1__stack1"><rect x="592.416832363106" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="592.416832363106" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 592.416832363106 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="592.6736712331" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 592.6736712331 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_46__stack1"><rect class="component chip sch-component-body" x="663.946457656435" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="663.946457656435" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="529.703629346315" x2="669.7253322313" y2="525.7226268614079" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_46_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="669.7253322313" cy="525.4657879914139" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="669.468493361306" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="669.7253322313" y1="530.987823696285" x2="669.7253322313" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_46_1__stack1"><rect x="669.468493361306" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="669.468493361306" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 669.468493361306 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="669.7253322313" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 669.7253322313 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_47__stack1"><rect class="component chip sch-component-body" x="740.9981186546349" y="529.703629346315" width="14.960864177150597" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="740.9981186546349" y="529.703629346315" width="14.960864177150597" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="529.703629346315" x2="746.7769932295" y2="525.7226268614079" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_47_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="746.7769932295" cy="525.4657879914139" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="746.520154359506" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="746.7769932295" y1="530.987823696285" x2="746.7769932295" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_47_1__stack1"><rect x="746.520154359506" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="746.520154359506" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 746.520154359506 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="746.7769932295" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 746.7769932295 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_48__stack1"><rect class="component chip sch-component-body" x="818.049779652835" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="818.049779652835" y="529.703629346315" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="529.703629346315" x2="823.8286542277" y2="525.4657879914139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_48_0__stack1"><rect x="823.571815357706" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="823.8286542277" y1="530.987823696285" x2="823.8286542277" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_48_1__stack1"><rect x="823.571815357706" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="823.571815357706" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 823.571815357706 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="823.8286542277" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 823.8286542277 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_49__stack1"><rect class="component chip sch-component-body" x="895.1014406510349" y="529.703629346315" width="14.960864177150597" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="895.1014406510349" y="529.703629346315" width="14.960864177150597" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="529.703629346315" x2="900.8803152259" y2="525.7226268614079" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_49_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="900.8803152259" cy="525.4657879914139" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="900.623476355906" y="525.2089491214199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="527.5847086688646" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 527.5847086688646)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="530.987823696285" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 530.987823696285)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="900.8803152259" y1="530.987823696285" x2="900.8803152259" y2="535.2256650511861" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_49_1__stack1"><rect x="900.623476355906" y="534.9688261811921" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="900.623476355906" y="533.1067443737355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 900.623476355906 533.1067443737355)"></text><text class="pin-number sch-pin-label" x="900.8803152259" y="529.703629346315" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 900.8803152259 529.703629346315)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_50__stack1"><rect class="component chip sch-component-body" x="278.68815266543504" y="581.071403345115" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="278.68815266543504" y="581.071403345115" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="581.071403345115" x2="284.4670272403" y2="576.8335619902139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_50_0__stack1"><rect x="284.210188370306" y="576.5767231202199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="578.9524826676644" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 578.9524826676644)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="582.355597695085" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 582.355597695085)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="284.4670272403" y1="582.355597695085" x2="284.4670272403" y2="586.336600179992" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_50_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="284.4670272403" cy="586.593439049986" r="0.25683886999399996" stroke-width="0.25683886999399996px"/><rect x="284.210188370306" y="586.336600179992" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="284.210188370306" y="584.4745183725355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 284.210188370306 584.4745183725355)"></text><text class="pin-number sch-pin-label" x="284.4670272403" y="581.071403345115" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 284.4670272403 581.071403345115)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_51__stack1"><rect class="component chip sch-component-body" x="355.739813663635" y="581.071403345115" width="14.960864177150484" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="355.739813663635" y="581.071403345115" width="14.960864177150484" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="581.071403345115" x2="361.5186882385" y2="576.8335619902139" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_51_0__stack1"><rect x="361.261849368506" y="576.5767231202199" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="578.9524826676644" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 578.9524826676644)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="582.355597695085" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 582.355597695085)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="361.5186882385" y1="582.355597695085" x2="361.5186882385" y2="586.593439049986" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_51_1__stack1"><rect x="361.261849368506" y="586.336600179992" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="361.261849368506" y="584.4745183725355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 361.261849368506 584.4745183725355)"></text><text class="pin-number sch-pin-label" x="361.5186882385" y="581.071403345115" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="rotate(-90 361.5186882385 581.071403345115)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_52__stack1"><rect class="component chip sch-component-body" x="437.928252061715" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="437.928252061715" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="437.928252061715" y1="581.7135005201" x2="434.71776618679" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_52_0__stack1"><rect x="434.460927316796" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.3230091242525" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="439.212446411685" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="439.212446411685" y1="581.7135005201" x2="442.42293228661" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_52_1__stack1"><rect x="442.166093416616" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="440.8176893491475" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="437.928252061715" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_53__stack1"><rect class="component chip sch-component-body" x="514.979913059915" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="514.979913059915" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="514.979913059915" y1="581.7135005201" x2="511.76942718499" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_53_0__stack1"><rect x="511.512588314996" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="513.3746701224525" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="516.264107409885" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="516.264107409885" y1="581.7135005201" x2="519.47459328481" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_53_1__stack1"><rect x="519.217754414816" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="517.8693503473474" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="514.979913059915" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_54__stack1"><rect class="component chip sch-component-body" x="592.031574058115" y="570.412590240364" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="592.031574058115" y="570.412590240364" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.031574058115" y1="574.778851030262" x2="588.82108818319" y2="574.778851030262" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_54_0__stack1"><rect x="588.564249313196" y="574.522012160268" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="590.4263311206525" y="574.5220121602679" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="593.315768408085" y="574.778851030262" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="593.315768408085" y1="574.778851030262" x2="596.52625428301" y2="574.778851030262" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_54_1__stack1"><rect x="596.269415413016" y="574.522012160268" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.9210113455475" y="574.5220121602679" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="592.031574058115" y="574.778851030262" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_55__stack1"><rect class="component chip sch-component-body" x="669.083235056315" y="577.3472397302021" width="1.2841943499701074" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="669.083235056315" y="577.3472397302021" width="1.2841943499701074" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.083235056315" y1="581.7135005201" x2="665.87274918139" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_55_0__stack1"><rect x="665.615910311396" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.4779921188525" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="670.367429406285" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="670.367429406285" y1="581.7135005201" x2="673.5779152812099" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_55_1__stack1"><rect x="673.3210764112159" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="671.9726723437475" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="669.083235056315" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_56__stack1"><rect class="component chip sch-component-body" x="746.1348960545149" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="746.1348960545149" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.1348960545149" y1="581.7135005201" x2="742.92441017959" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_56_0__stack1"><rect x="742.667571309596" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="744.5296531170525" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="747.4190904044849" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="747.4190904044849" y1="581.7135005201" x2="750.62957627941" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_56_1__stack1"><rect x="750.372737409416" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="749.0243333419476" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="746.1348960545149" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_57__stack1"><rect class="component chip sch-component-body" x="823.186557052715" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="823.186557052715" y="577.3472397302021" width="1.2841943499699937" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.186557052715" y1="581.7135005201" x2="819.9760711777899" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_57_0__stack1"><rect x="819.7192323077959" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="821.5813141152524" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="824.470751402685" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="824.470751402685" y1="581.7135005201" x2="827.68123727761" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_57_1__stack1"><rect x="827.424398407616" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="826.0759943401474" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="823.186557052715" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_58__stack1"><rect class="component chip sch-component-body" x="900.2382180509151" y="577.3472397302021" width="1.28419434996988" height="8.732521579795844" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="900.2382180509151" y="577.3472397302021" width="1.28419434996988" height="8.732521579795844" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.2382180509151" y1="581.7135005201" x2="897.02773217599" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_58_0__stack1"><rect x="896.770893305996" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="898.6329751134525" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="901.522412400885" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="901.522412400885" y1="581.7135005201" x2="904.7328982758099" y2="581.7135005201" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_58_1__stack1"><rect x="904.4760594058159" y="581.456661650106" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="903.1276553383475" y="581.456661650106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="900.2382180509151" y="581.7135005201" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_59__stack1"><rect class="component chip sch-component-body" x="283.824930065315" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="283.824930065315" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="283.824930065315" y1="633.0812745189" x2="280.61444419039003" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_59_0__stack1"><rect x="280.35760532039603" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="282.21968712785247" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="285.109124415285" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="285.109124415285" y1="633.0812745189" x2="288.31961029021" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_59_1__stack1"><rect x="288.062771420216" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="286.7143673527475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="283.824930065315" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_60__stack1"><rect class="component chip sch-component-body" x="360.876591063515" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.876591063515" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="360.876591063515" y1="633.0812745189" x2="357.66610518859" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_60_0__stack1"><rect x="357.409266318596" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="359.2713481260525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="362.160785413485" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="362.160785413485" y1="633.0812745189" x2="365.37127128841" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_60_1__stack1"><rect x="365.114432418416" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="363.7660283509475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="360.876591063515" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_61__stack1"><rect class="component chip sch-component-body" x="437.928252061715" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="437.928252061715" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="437.928252061715" y1="633.0812745189" x2="434.71776618679" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_61_0__stack1"><rect x="434.460927316796" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.3230091242525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="439.212446411685" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="439.212446411685" y1="633.0812745189" x2="442.42293228661" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_61_1__stack1"><rect x="442.166093416616" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="440.8176893491475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="437.928252061715" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_62__stack1"><rect class="component chip sch-component-body" x="514.979913059915" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="514.979913059915" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="514.979913059915" y1="633.0812745189" x2="511.76942718499" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_62_0__stack1"><rect x="511.512588314996" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="513.3746701224525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="516.264107409885" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="516.264107409885" y1="633.0812745189" x2="519.47459328481" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_62_1__stack1"><rect x="519.217754414816" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="517.8693503473474" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="514.979913059915" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_63__stack1"><rect class="component chip sch-component-body" x="592.031574058115" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="592.031574058115" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="592.031574058115" y1="633.0812745189" x2="588.82108818319" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_63_0__stack1"><rect x="588.564249313196" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="590.4263311206525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="593.315768408085" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="593.315768408085" y1="633.0812745189" x2="596.52625428301" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_63_1__stack1"><rect x="596.269415413016" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="594.9210113455475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="592.031574058115" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_64__stack1"><rect class="component chip sch-component-body" x="669.083235056315" y="628.7150137290021" width="1.2841943499701074" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="669.083235056315" y="628.7150137290021" width="1.2841943499701074" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="669.083235056315" y1="633.0812745189" x2="665.87274918139" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_64_0__stack1"><rect x="665.615910311396" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.4779921188525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="670.367429406285" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="670.367429406285" y1="633.0812745189" x2="673.5779152812099" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_64_1__stack1"><rect x="673.3210764112159" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="671.9726723437475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="669.083235056315" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_65__stack1"><rect class="component chip sch-component-body" x="746.1348960545149" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="746.1348960545149" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="746.1348960545149" y1="633.0812745189" x2="742.92441017959" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_65_0__stack1"><rect x="742.667571309596" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="744.5296531170525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="747.4190904044849" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="747.4190904044849" y1="633.0812745189" x2="750.62957627941" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_65_1__stack1"><rect x="750.372737409416" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="749.0243333419476" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="746.1348960545149" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_66__stack1"><rect class="component chip sch-component-body" x="823.186557052715" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="823.186557052715" y="628.7150137290021" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="823.186557052715" y1="633.0812745189" x2="819.9760711777899" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_66_0__stack1"><rect x="819.7192323077959" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="821.5813141152524" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="824.470751402685" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="824.470751402685" y1="633.0812745189" x2="827.68123727761" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_66_1__stack1"><rect x="827.424398407616" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="826.0759943401474" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="823.186557052715" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_67__stack1"><rect class="component chip sch-component-body" x="900.2382180509151" y="628.7150137290021" width="1.28419434996988" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="900.2382180509151" y="628.7150137290021" width="1.28419434996988" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="900.2382180509151" y1="633.0812745189" x2="897.02773217599" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_67_0__stack1"><rect x="896.770893305996" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="898.6329751134525" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="901.522412400885" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="901.522412400885" y1="633.0812745189" x2="904.7328982758099" y2="633.0812745189" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_67_1__stack1"><rect x="904.4760594058159" y="632.824435648906" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="903.1276553383475" y="632.824435648906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="900.2382180509151" y="633.0812745189" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_68__stack1"><rect class="component chip sch-component-body" x="283.824930065315" y="680.082787727802" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="283.824930065315" y="680.082787727802" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="283.824930065315" y1="684.4490485177" x2="280.61444419039003" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_68_0__stack1"><rect x="280.35760532039603" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="282.21968712785247" y="684.192209647706" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="285.109124415285" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="285.109124415285" y1="684.4490485177" x2="288.31961029021" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_68_1__stack1"><rect x="288.062771420216" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="286.7143673527475" y="684.192209647706" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="283.824930065315" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_69__stack1"><rect class="component chip sch-component-body" x="360.876591063515" y="680.082787727802" width="1.2841943499699937" height="8.732521579795957" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.876591063515" y="680.082787727802" width="1.2841943499699937" height="8.732521579795957" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="360.876591063515" y1="684.4490485177" x2="357.66610518859" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_69_0__stack1"><rect x="357.409266318596" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="359.2713481260525" y="684.192209647706" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="362.160785413485" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="362.160785413485" y1="684.4490485177" x2="365.37127128841" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_69_1__stack1"><rect x="365.114432418416" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="363.7660283509475" y="684.192209647706" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="360.876591063515" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_70__stack1"><rect class="component chip sch-component-body" x="436.92770413879464" y="678.877309996805" width="3.285290195810717" height="11.143477041789993" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="436.92770413879464" y="678.877309996805" width="3.285290195810717" height="11.143477041789993" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="436.92770413879464" y1="684.4153441948879" x2="431.7909267389146" y2="684.4153441948879" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_70_0__stack1"><rect x="431.5340878689206" y="684.1585053248939" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="434.3593154388546" y="684.1585053248939" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="438.21189848876463" y="684.4153441948879" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="440.21299433460536" y1="684.4827528405121" x2="445.3497717344854" y2="684.4827528405121" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_70_1__stack1"><rect x="445.0929328644914" y="684.2259139705181" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="442.7813830345454" y="684.2259139705181" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="438.92879998463536" y="684.4827528405121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_71__stack1"><rect class="component chip sch-component-body" x="513.9793651369946" y="678.877309996805" width="3.285290195810717" height="11.143477041789993" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="513.9793651369946" y="678.877309996805" width="3.285290195810717" height="11.143477041789993" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="513.9793651369946" y1="684.4153441948879" x2="508.8425877371146" y2="684.4153441948879" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_71_0__stack1"><rect x="508.5857488671206" y="684.1585053248939" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="511.4109764370546" y="684.1585053248939" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="515.2635594869646" y="684.4153441948879" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="1.926291524955px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="517.2646553328053" y1="684.4827528405121" x2="522.4014327326854" y2="684.4827528405121" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_71_1__stack1"><rect x="522.1445938626914" y="684.2259139705181" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="519.8330440327454" y="684.2259139705181" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform=""></text><text class="pin-number sch-pin-label" x="515.9804609828353" y="684.4827528405121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="1.926291524955px" transform="">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_72__stack1"><rect class="component chip sch-component-body" x="587.4829576705213" y="683.3134937606183" width="10.327490962458683" height="1.2841943499699937" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="587.4829576705213" y="683.3134937606183" width="10.327490962458683" height="1.2841943499699937" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="597.81044863298" y1="684.4490485177" x2="597.81044863298" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_72_0__stack1"><rect x="597.553609762986" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="597.553609762986" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 597.553609762986 684.4490485177)">2</text><line class="component-pin sch-component-pin sch-port-line" x1="587.53689383322" y1="684.4490485177" x2="587.53689383322" y2="684.4490485177" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_72_1__stack1"><rect x="587.280054963226" y="684.192209647706" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="587.280054963226" y="684.4490485177" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="rotate(-90 587.280054963226 684.4490485177)">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_73__stack1"><rect class="component chip sch-component-body" x="311.5795804540416" y="785.90040216533" width="1.2841943499700506" height="2.5683886999399874" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="311.5795804540416" y="785.90040216533" width="1.2841943499700506" height="2.5683886999399874" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="311.5795804540416" y1="787.1845965153" x2="307.58252553976" y2="787.1845965153" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_73_0__stack1"><rect x="307.325686669766" y="786.927757645306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="309.5810529969008" y="786.927757645306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_74__stack1"><rect class="component chip sch-component-body" x="388.6312414522416" y="785.90040216533" width="1.2841943499699937" height="2.5683886999399874" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="388.6312414522416" y="785.90040216533" width="1.2841943499699937" height="2.5683886999399874" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="388.6312414522416" y1="787.1845965153" x2="384.63418653796" y2="787.1845965153" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_74_0__stack1"><rect x="384.377347667966" y="786.927757645306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="386.6327139951008" y="786.927757645306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_75__stack1"><rect class="component chip sch-component-body" x="465.68290245044165" y="785.90040216533" width="1.2841943499699937" height="2.5683886999399874" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="465.68290245044165" y="785.90040216533" width="1.2841943499699937" height="2.5683886999399874" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="465.68290245044165" y1="787.1845965153" x2="461.68584753616" y2="787.1845965153" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_75_0__stack1"><rect x="461.429008666166" y="786.927757645306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.6843749933008" y="786.927757645306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_76__stack1"><rect class="component chip sch-component-body" x="542.7345634486416" y="785.90040216533" width="1.2841943499701074" height="2.5683886999399874" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="542.7345634486416" y="785.90040216533" width="1.2841943499701074" height="2.5683886999399874" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="542.7345634486416" y1="787.1845965153" x2="538.73750853436" y2="787.1845965153" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_76_0__stack1"><rect x="538.480669664366" y="786.927757645306" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="540.7360359915008" y="786.927757645306" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_77__stack1"><rect class="component chip sch-component-body" x="619.7862244468416" y="463.8116172493543" width="1.2841943499699937" height="2.5683886999399874" stroke-width="0.25683886999399996px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="619.7862244468416" y="463.8116172493543" width="1.2841943499699937" height="2.5683886999399874" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="619.7862244468416" y1="465.0958115993243" x2="615.78916953256" y2="465.0958115993243" stroke-width="0.25683886999399996px"/><g class="sch-port" data-schematic-port-id="source_port_77_0__stack1"><rect x="615.532330662566" y="464.8389727293303" width="0.5136777399879999" height="0.5136777399879999" opacity="0"/></g><text class="pin-number sch-pin-number" x="617.7876969897009" y="464.8389727293303" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="1.926291524955px" transform="">1</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="419.30743398715" cy="93.7196475315" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="419.30743398715" cy="96.28803623144" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="419.30743398715" cy="98.85642493137999" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="419.30743398715" cy="101.42481363132" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="419.30743398715" cy="103.99320233126" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="419.30743398715" cy="106.5615910312" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="419.30743398715" cy="109.12997973114" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="419.30743398715" cy="111.69836843108" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="419.30743398715" cy="114.26675713102" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="419.30743398715" cy="116.83514583096" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="419.30743398715" cy="119.40353453089999" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="419.30743398715" cy="121.97192323083999" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="419.30743398715" cy="124.54031193077999" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="419.30743398715" cy="127.10870063072" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_14__stack1"><circle cx="419.30743398715" cy="129.67708933066" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_15__stack1"><circle cx="419.30743398715" cy="132.2454780306" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_16__stack1"><circle cx="419.30743398715" cy="134.81386673054" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_17__stack1"><circle cx="419.30743398715" cy="137.38225543048" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_18__stack1"><circle cx="419.30743398715" cy="139.95064413042002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_19__stack1"><circle cx="419.30743398715" cy="142.51903283036" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_20__stack1"><circle cx="419.30743398715" cy="145.08742153030002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_21__stack1"><circle cx="457.83326448625" cy="143.80322718033" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_22__stack1"><circle cx="457.83326448625" cy="141.23483848039" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_23__stack1"><circle cx="457.83326448625" cy="138.66644978045002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_24__stack1"><circle cx="457.83326448625" cy="136.09806108051" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_25__stack1"><circle cx="457.83326448625" cy="133.52967238057002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_26__stack1"><circle cx="457.83326448625" cy="130.96128368063" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_27__stack1"><circle cx="457.83326448625" cy="128.39289498069002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_28__stack1"><circle cx="457.83326448625" cy="125.82450628075001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_29__stack1"><circle cx="457.83326448625" cy="123.25611758081001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_30__stack1"><circle cx="457.83326448625" cy="120.68772888087001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_31__stack1"><circle cx="457.83326448625" cy="118.11934018093001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_32__stack1"><circle cx="457.83326448625" cy="115.55095148099001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_33__stack1"><circle cx="457.83326448625" cy="112.98256278105" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_34__stack1"><circle cx="457.83326448625" cy="110.41417408111" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_35__stack1"><circle cx="457.83326448625" cy="107.84578538117" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_36__stack1"><circle cx="457.83326448625" cy="105.27739668123" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_37__stack1"><circle cx="457.83326448625" cy="102.70900798129" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_38__stack1"><circle cx="457.83326448625" cy="100.14061928135" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_39__stack1"><circle cx="457.83326448625" cy="97.57223058141" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_40__stack1"><circle cx="457.83326448625" cy="95.00384188147" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="592.031574058115" cy="82.16189838177002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="592.031574058115" cy="84.73028708171" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="592.031574058115" cy="87.29867578165" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="592.031574058115" cy="89.86706448159" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="592.031574058115" cy="92.43545318153001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="592.031574058115" cy="95.00384188147001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="592.031574058115" cy="97.57223058141" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="592.031574058115" cy="100.14061928135001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="592.031574058115" cy="102.70900798129" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="592.031574058115" cy="105.27739668123" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="618.999655407485" cy="105.27739668123" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="618.999655407485" cy="102.70900798129" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="618.999655407485" cy="100.14061928135001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="618.999655407485" cy="97.57223058141" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_14__stack1"><circle cx="618.999655407485" cy="95.00384188147001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_15__stack1"><circle cx="618.999655407485" cy="92.43545318153001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_16__stack1"><circle cx="618.999655407485" cy="89.86706448159" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_17__stack1"><circle cx="618.999655407485" cy="87.29867578165" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_18__stack1"><circle cx="618.999655407485" cy="84.73028708171" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_19__stack1"><circle cx="618.999655407485" cy="82.16189838177002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="733.292952554815" cy="88.58287013162001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="733.292952554815" cy="91.15125883156" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="733.292952554815" cy="93.7196475315" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="733.292952554815" cy="96.28803623144" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="733.292952554815" cy="98.85642493138" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_5__stack1"><circle cx="760.2610339041851" cy="97.57223058141" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_6__stack1"><circle cx="760.2610339041851" cy="95.00384188147001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_7__stack1"><circle cx="760.2610339041851" cy="92.43545318153001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_8__stack1"><circle cx="760.2610339041851" cy="89.86706448159" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="733.9350497298" cy="202.87616727895" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="733.9350497298" cy="205.44455597888998" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_2__stack1"><circle cx="733.9350497298" cy="208.01294467883002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_3__stack1"><circle cx="733.9350497298" cy="210.58133337877" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_4__stack1"><circle cx="733.9350497298" cy="213.14972207871" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_5__stack1"><circle cx="733.9350497298" cy="215.71811077865" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_6__stack1"><circle cx="759.6189367292" cy="215.71811077865" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_7__stack1"><circle cx="759.6189367292" cy="213.14972207871" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_8__stack1"><circle cx="759.6189367292" cy="210.58133337877" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_9__stack1"><circle cx="759.6189367292" cy="208.01294467883002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_10__stack1"><circle cx="759.6189367292" cy="205.44455597888998" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_11__stack1"><circle cx="759.6189367292" cy="202.87616727895" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="592.6736712331" cy="206.72875032886" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="592.6736712331" cy="209.29713902880002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="592.6736712331" cy="211.86552772874" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_3__stack1"><circle cx="618.3575582325" cy="210.58133337877" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_4__stack1"><circle cx="618.3575582325" cy="208.01294467883002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="874.554331051515" cy="91.15125883156" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="874.554331051515" cy="93.7196475315" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="874.554331051515" cy="96.28803623144" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_3__stack1"><circle cx="901.522412400885" cy="96.28803623144" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_4__stack1"><circle cx="901.522412400885" cy="93.7196475315" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_5__stack1"><circle cx="901.522412400885" cy="91.15125883156" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="872.6280395265599" cy="201.59197292898" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="872.6280395265599" cy="204.16036162892" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_2__stack1"><circle cx="872.6280395265599" cy="206.72875032886" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_3__stack1"><circle cx="872.6280395265599" cy="209.29713902880002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_4__stack1"><circle cx="872.6280395265599" cy="211.86552772874" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_5__stack1"><circle cx="872.6280395265599" cy="214.43391642868" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_6__stack1"><circle cx="872.6280395265599" cy="217.00230512861998" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_7__stack1"><circle cx="903.4487039258399" cy="217.00230512861998" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_8__stack1"><circle cx="903.4487039258399" cy="214.43391642868" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_9__stack1"><circle cx="903.4487039258399" cy="211.86552772874" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_10__stack1"><circle cx="903.4487039258399" cy="209.29713902880002" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_11__stack1"><circle cx="903.4487039258399" cy="206.72875032886" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_12__stack1"><circle cx="903.4487039258399" cy="204.16036162892" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_13__stack1"><circle cx="903.4487039258399" cy="201.59197292898" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="295.38267921504496" cy="92.43545318153001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="295.38267921504496" cy="95.00384188147001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_2__stack1"><circle cx="324.91914926435504" cy="95.00384188147001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_3__stack1"><circle cx="324.91914926435504" cy="92.43545318153001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="315.28769163958" cy="145.0874215303" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="305.01413683982" cy="145.0874215303" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="310.1509142397" cy="201.59197292898" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="307.58252553976" cy="192.60261247919" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="599.479901287941" cy="273.5068565273" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="611.551328177659" cy="273.5068565273" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="751.91377062938" cy="273.5068565273" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="741.64021582962" cy="273.5068565273" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="874.554331051515" cy="285.06460567703" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="874.554331051515" cy="287.63299437697" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="733.292952554815" cy="14.099597833360022" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="733.292952554815" cy="16.66798653330001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_2__stack1"><circle cx="733.292952554815" cy="19.23637523324001" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="284.4670272403" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="284.4670272403" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="361.5186882385" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="361.5186882385" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="438.5703492367" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="438.5703492367" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="515.6220102349" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="515.6220102349" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="592.6736712331" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="592.6736712331" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="669.7253322313" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="669.7253322313" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="746.7769932295" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="746.7769932295" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="823.8286542277" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="823.8286542277" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="900.8803152259" cy="371.36246599501396" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="900.8803152259" cy="381.122343054786" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="284.4670272403" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="284.4670272403" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="361.5186882385" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="361.5186882385" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="438.5703492367" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="438.5703492367" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="515.6220102349" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="515.6220102349" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_0__stack1"><circle cx="592.6736712331" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_1__stack1"><circle cx="592.6736712331" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_0__stack1"><circle cx="669.7253322313" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_1__stack1"><circle cx="669.7253322313" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_0__stack1"><circle cx="746.7769932295" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_1__stack1"><circle cx="746.7769932295" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_0__stack1"><circle cx="823.8286542277" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_1__stack1"><circle cx="823.8286542277" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_0__stack1"><circle cx="900.8803152259" cy="422.730239993814" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_1__stack1"><circle cx="900.8803152259" cy="432.49011705358595" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_0__stack1"><circle cx="284.4670272403" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_1__stack1"><circle cx="284.4670272403" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_0__stack1"><circle cx="361.5186882385" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_1__stack1"><circle cx="361.5186882385" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_0__stack1"><circle cx="438.5703492367" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_1__stack1"><circle cx="438.5703492367" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_0__stack1"><circle cx="515.6220102349" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_1__stack1"><circle cx="515.6220102349" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_0__stack1"><circle cx="592.6736712331" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_36_1__stack1"><circle cx="592.6736712331" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_0__stack1"><circle cx="669.7253322313" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_37_1__stack1"><circle cx="669.7253322313" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_0__stack1"><circle cx="746.7769932295" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_38_1__stack1"><circle cx="746.7769932295" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_39_0__stack1"><circle cx="823.8286542277" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_39_1__stack1"><circle cx="823.8286542277" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_40_0__stack1"><circle cx="900.8803152259" cy="474.09801399261397" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_40_1__stack1"><circle cx="900.8803152259" cy="483.857891052386" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_41_0__stack1"><circle cx="284.4670272403" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_41_1__stack1"><circle cx="284.4670272403" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_42_0__stack1"><circle cx="361.5186882385" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_42_1__stack1"><circle cx="361.5186882385" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_43_0__stack1"><circle cx="438.5703492367" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_43_1__stack1"><circle cx="438.5703492367" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_44_0__stack1"><circle cx="515.6220102349" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_44_1__stack1"><circle cx="515.6220102349" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_45_0__stack1"><circle cx="592.6736712331" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_45_1__stack1"><circle cx="592.6736712331" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_46_0__stack1"><circle cx="669.7253322313" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_46_1__stack1"><circle cx="669.7253322313" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_47_0__stack1"><circle cx="746.7769932295" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_47_1__stack1"><circle cx="746.7769932295" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_48_0__stack1"><circle cx="823.8286542277" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_48_1__stack1"><circle cx="823.8286542277" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_49_0__stack1"><circle cx="900.8803152259" cy="525.4657879914139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_49_1__stack1"><circle cx="900.8803152259" cy="535.2256650511861" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_50_0__stack1"><circle cx="284.4670272403" cy="576.8335619902139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_50_1__stack1"><circle cx="284.4670272403" cy="586.593439049986" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_51_0__stack1"><circle cx="361.5186882385" cy="576.8335619902139" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_51_1__stack1"><circle cx="361.5186882385" cy="586.593439049986" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_52_0__stack1"><circle cx="434.71776618679" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_52_1__stack1"><circle cx="442.42293228661" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_53_0__stack1"><circle cx="511.76942718499" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_53_1__stack1"><circle cx="519.47459328481" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_54_0__stack1"><circle cx="588.82108818319" cy="574.778851030262" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_54_1__stack1"><circle cx="596.52625428301" cy="574.778851030262" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_55_0__stack1"><circle cx="665.87274918139" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_55_1__stack1"><circle cx="673.5779152812099" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_56_0__stack1"><circle cx="742.92441017959" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_56_1__stack1"><circle cx="750.62957627941" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_57_0__stack1"><circle cx="819.9760711777899" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_57_1__stack1"><circle cx="827.68123727761" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_58_0__stack1"><circle cx="897.02773217599" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_58_1__stack1"><circle cx="904.7328982758099" cy="581.7135005201" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_59_0__stack1"><circle cx="280.61444419039003" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_59_1__stack1"><circle cx="288.31961029021" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_60_0__stack1"><circle cx="357.66610518859" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_60_1__stack1"><circle cx="365.37127128841" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_61_0__stack1"><circle cx="434.71776618679" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_61_1__stack1"><circle cx="442.42293228661" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_62_0__stack1"><circle cx="511.76942718499" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_62_1__stack1"><circle cx="519.47459328481" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_63_0__stack1"><circle cx="588.82108818319" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_63_1__stack1"><circle cx="596.52625428301" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_64_0__stack1"><circle cx="665.87274918139" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_64_1__stack1"><circle cx="673.5779152812099" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_65_0__stack1"><circle cx="742.92441017959" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_65_1__stack1"><circle cx="750.62957627941" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_66_0__stack1"><circle cx="819.9760711777899" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_66_1__stack1"><circle cx="827.68123727761" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_67_0__stack1"><circle cx="897.02773217599" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_67_1__stack1"><circle cx="904.7328982758099" cy="633.0812745189" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_68_0__stack1"><circle cx="280.61444419039003" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_68_1__stack1"><circle cx="288.31961029021" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_69_0__stack1"><circle cx="357.66610518859" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_69_1__stack1"><circle cx="365.37127128841" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_70_0__stack1"><circle cx="431.7909267389146" cy="684.4153441948879" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_70_1__stack1"><circle cx="445.3497717344854" cy="684.4827528405121" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_71_0__stack1"><circle cx="508.8425877371146" cy="684.4153441948879" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_71_1__stack1"><circle cx="522.4014327326854" cy="684.4827528405121" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_72_0__stack1"><circle cx="597.81044863298" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_72_1__stack1"><circle cx="587.53689383322" cy="684.4490485177" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_73_0__stack1"><circle cx="307.58252553976" cy="787.1845965153" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_74_0__stack1"><circle cx="384.63418653796" cy="787.1845965153" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_75_0__stack1"><circle cx="461.68584753616" cy="787.1845965153" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_76_0__stack1"><circle cx="538.73750853436" cy="787.1845965153" r="0.5136777399879999" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_77_0__stack1"><circle cx="615.78916953256" cy="465.0958115993243" r="0.5136777399879999" 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="
735
+ M 284.4670272403,453.29406552309996
736
+ L 283.18283289033,452.6006005741162
737
+ L 283.18283289033,448.1966700832857
738
+ L 285.75122159027,448.1966700832857
739
+ L 285.75122159027,452.6006005741162
740
+ Z
741
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="284.4670272403" y="452.13829060812697" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 284.4670272403 452.13829060812697)">XX</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="
742
+ M 477.1090216792997,112.32762366256532
743
+ L 475.8248273293297,111.63415871358151
744
+ L 475.8248273293297,107.23022822275107
745
+ L 478.3932160292697,107.23022822275107
746
+ L 478.3932160292697,111.63415871358151
747
+ Z
748
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="477.1090216792997" y="111.17184874759232" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 477.1090216792997 111.17184874759232)">XX</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="
749
+ M 823.8286542277,420.161851293874
750
+ L 822.54445987773,419.46838634489023
751
+ L 822.54445987773,415.06445585405976
752
+ L 825.11284857767,415.06445585405976
753
+ L 825.11284857767,419.46838634489023
754
+ Z
755
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="823.8286542277" y="419.006076378901" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 823.8286542277 419.006076378901)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="
756
+ M 449.2151967278951,678.6910363221475
757
+ L 447.9310023779251,677.9975713731637
758
+ L 447.9310023779251,673.5936408823333
759
+ L 450.4993910778651,673.5936408823333
760
+ L 450.4993910778651,677.9975713731637
761
+ Z
762
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" x="449.2151967278951" y="677.5352614071745" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 449.2151967278951 677.5352614071745)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="
763
+ M 402.6000654940403,111.69836843108
764
+ L 401.3158711440703,111.0049034820962
765
+ L 401.3158711440703,106.60097299126575
766
+ L 403.8842598440103,106.60097299126575
767
+ L 403.8842598440103,111.0049034820962
768
+ Z
769
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" x="402.6000654940403" y="110.542593516107" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 402.6000654940403 110.542593516107)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="
770
+ M 468.98123889339865,102.70900798129
771
+ L 470.26543324336865,103.4024729302738
772
+ L 470.26543324336865,107.80640342110425
773
+ L 467.69704454342866,107.80640342110425
774
+ L 467.69704454342866,103.4024729302738
775
+ Z
776
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" x="468.98123889339865" y="103.864782896263" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(90 468.98123889339865 103.864782896263)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="
777
+ M 629.144790772248,110.41417408111
778
+ L 628.4513258232643,111.69836843108
779
+ L 624.0473953324338,111.69836843108
780
+ L 624.0473953324338,109.12997973114001
781
+ L 628.4513258232643,109.12997973114001
782
+ Z
783
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="627.989015857275" y="110.41417408111" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_7__stack1" d="
784
+ M 672.5377178577344,207.3580055603453
785
+ L 671.2535235077644,206.6645406113615
786
+ L 671.2535235077644,202.26061012053106
787
+ L 673.8219122077044,202.26061012053106
788
+ L 673.8219122077044,206.6645406113615
789
+ Z
790
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="672.5377178577344" y="206.2022306453723" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 672.5377178577344 206.2022306453723)">XX</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="
791
+ M 763.4715197791099,210.58133337877
792
+ L 764.1649847280937,209.29713902880002
793
+ L 768.5689152189242,209.29713902880002
794
+ L 768.5689152189242,211.86552772874
795
+ L 764.1649847280937,211.86552772874
796
+ Z
797
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="764.6272946940829" y="210.58133337877" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_9__stack1" d="
798
+ M 746.7769932295,368.794077295074
799
+ L 745.49279887953,368.1006123460902
800
+ L 745.49279887953,363.6966818552597
801
+ L 748.06118757947,363.6966818552597
802
+ L 748.06118757947,368.1006123460902
803
+ Z
804
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" x="746.7769932295" y="367.638302380101" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 746.7769932295 367.638302380101)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" d="
805
+ M 361.5186882385,422.730239993814
806
+ L 360.23449388853,422.0367750448302
807
+ L 360.23449388853,417.63284455399975
808
+ L 362.80288258846997,417.63284455399975
809
+ L 362.80288258846997,422.0367750448302
810
+ Z
811
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" x="361.5186882385" y="421.574465078841" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 361.5186882385 421.574465078841)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" d="
812
+ M 438.5703492367,420.161851293874
813
+ L 437.28615488673,419.46838634489023
814
+ L 437.28615488673,415.06445585405976
815
+ L 439.85454358667,415.06445585405976
816
+ L 439.85454358667,419.46838634489023
817
+ Z
818
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11__stack1" x="438.5703492367" y="419.006076378901" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 438.5703492367 419.006076378901)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" d="
819
+ M 592.6736712331,420.161851293874
820
+ L 591.38947688313,419.46838634489023
821
+ L 591.38947688313,415.06445585405976
822
+ L 593.95786558307,415.06445585405976
823
+ L 593.95786558307,419.46838634489023
824
+ Z
825
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12__stack1" x="592.6736712331" y="419.006076378901" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 592.6736712331 419.006076378901)">XX</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="
826
+ M 515.6220102349,525.4657879914139
827
+ L 514.33781588493,524.7723230424301
828
+ L 514.33781588493,520.3683925515996
829
+ L 516.90620458487,520.3683925515996
830
+ L 516.90620458487,524.7723230424301
831
+ Z
832
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="515.6220102349" y="524.3100130764409" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 515.6220102349 524.3100130764409)">XX</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="
833
+ M 592.6736712331,518.7751354280701
834
+ L 591.38947688313,518.0816704790864
835
+ L 591.38947688313,513.6777399882559
836
+ L 593.95786558307,513.6777399882559
837
+ L 593.95786558307,518.0816704790864
838
+ Z
839
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="592.6736712331" y="517.6193605130971" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 592.6736712331 517.6193605130971)">XX</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="
840
+ M 753.19796497935,581.7135005201
841
+ L 751.91377062938,581.0200355711162
842
+ L 751.91377062938,576.6161050802857
843
+ L 754.48215932932,576.6161050802857
844
+ L 754.48215932932,581.0200355711162
845
+ Z
846
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="753.19796497935" y="580.557725605127" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 753.19796497935 580.557725605127)">XX</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="
847
+ M 907.0572900492556,577.2059783517053
848
+ L 905.7730956992856,576.5125134027215
849
+ L 905.7730956992856,572.1085829118911
850
+ L 908.3414843992256,572.1085829118911
851
+ L 908.3414843992256,576.5125134027215
852
+ Z
853
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="907.0572900492556" y="576.0502034367323" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 907.0572900492556 576.0502034367323)">XX</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="
854
+ M 290.88799899015,633.0812745189
855
+ L 289.60380464018,632.3878095699163
856
+ L 289.60380464018,627.9838790790858
857
+ L 292.17219334012,627.9838790790858
858
+ L 292.17219334012,632.3878095699163
859
+ Z
860
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="290.88799899015" y="631.925499603927" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 290.88799899015 631.925499603927)">XX</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="
861
+ M 444.99132098655,633.0812745189
862
+ L 443.70712663658,632.3878095699163
863
+ L 443.70712663658,627.9838790790858
864
+ L 446.27551533652,627.9838790790858
865
+ L 446.27551533652,632.3878095699163
866
+ Z
867
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="444.99132098655" y="631.925499603927" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 444.99132098655 631.925499603927)">XX</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="
868
+ M 469.4038555794797,127.73795586220531
869
+ L 468.1196612295097,127.04449091322151
870
+ L 468.1196612295097,122.64056042239106
871
+ L 470.6880499294497,122.64056042239106
872
+ L 470.6880499294497,127.04449091322151
873
+ Z
874
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="469.4038555794797" y="126.58218094723232" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 469.4038555794797 126.58218094723232)">XX</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="
875
+ M 361.5186882385,474.09801399261397
876
+ L 360.23449388853,473.4045490436302
877
+ L 360.23449388853,469.0006185527997
878
+ L 362.80288258846997,469.0006185527997
879
+ L 362.80288258846997,473.4045490436302
880
+ Z
881
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="361.5186882385" y="472.942239077641" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 361.5186882385 472.942239077641)">XX</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_21__stack1" x="537.8385724893808" y="97.57223058141001" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_21__stack1" d="M 537.8385724893808 99.883780411356 L 540.9206389293088 99.883780411356" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_21__stack1" d="M 539.3796057093448 99.883780411356 L 539.3796057093448 97.57223058141001" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_21__stack1" x="539.3796057093448" y="100.52587758634101" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_22__stack1" x="570.7011059051133" y="96.30087817493971" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_22__stack1" d="M 570.7011059051133 98.6124280048857 L 573.7831723450413 98.6124280048857" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_22__stack1" d="M 572.2421391250773 98.6124280048857 L 572.2421391250773 96.30087817493971" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_22__stack1" x="572.2421391250773" y="99.25452517987071" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_23__stack1" x="631.327921167197" y="106.5744329746997" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_23__stack1" d="M 631.327921167197 108.88598280464569 L 634.409987607125 108.88598280464569" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_23__stack1" d="M 632.868954387161 108.88598280464569 L 632.868954387161 106.5744329746997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_23__stack1" x="632.868954387161" y="109.5280799796307" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_24__stack1" x="718.1266172816693" y="98.85642493138002" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_24__stack1" d="M 718.1266172816693 101.16797476132601 L 721.2086837215973 101.16797476132601" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_24__stack1" d="M 719.6676505016333 101.16797476132601 L 719.6676505016333 98.85642493138002" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_24__stack1" x="719.6676505016333" y="101.81007193631102" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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="
882
+ M 733.9350497298,202.87616727895
883
+ L 733.2415847808162,204.16036162892
884
+ L 728.8376542899857,204.16036162892
885
+ L 728.8376542899857,201.59197292898
886
+ L 733.2415847808162,201.59197292898
887
+ Z
888
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><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="732.779274814827" y="202.87616727895" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="">XX</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_26__stack1" x="588.0377296297083" y="213.16256402220972" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_26__stack1" d="M 588.0377296297083 215.4741138521557 L 591.1197960696363 215.4741138521557" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_26__stack1" d="M 589.5787628496723 215.4741138521557 L 589.5787628496723 213.16256402220972" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_26__stack1" x="589.5787628496723" y="216.1162110271407" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_27__stack1" x="864.3963537432522" y="217.00230512861998" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_27__stack1" d="M 864.3963537432522 219.31385495856597 L 867.4784201831802 219.31385495856597" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_27__stack1" d="M 865.9373869632162 219.31385495856597 L 865.9373869632162 217.00230512861998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_27__stack1" x="865.9373869632162" y="219.95595213355097" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_28__stack1" x="278.55973323043804" y="95.00384188147001" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_28__stack1" d="M 278.55973323043804 97.315391711416 L 281.641799670366 97.315391711416" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_28__stack1" d="M 280.10076645040203 97.315391711416 L 280.10076645040203 95.00384188147001" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_28__stack1" x="280.10076645040203" y="97.95748888640101" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_29__stack1" x="591.132638013136" y="383.69073175472596" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_29__stack1" d="M 591.132638013136 386.00228158467195 L 594.214704453064 386.00228158467195" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_29__stack1" d="M 592.6736712331 386.00228158467195 L 592.6736712331 383.69073175472596" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_29__stack1" x="592.6736712331" y="386.64437875965695" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_30__stack1" x="753.4676457928437" y="276.08808717073964" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_30__stack1" d="M 753.4676457928437 278.39963700068563 L 756.5497122327716 278.39963700068563" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_30__stack1" d="M 755.0086790128076 278.39963700068563 L 755.0086790128076 276.08808717073964" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_30__stack1" x="755.0086790128076" y="279.0417341756706" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_31__stack1" x="899.339282005936" y="383.69073175472596" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_31__stack1" d="M 899.339282005936 386.00228158467195 L 902.4213484458639 386.00228158467195" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_31__stack1" d="M 900.8803152259 386.00228158467195 L 900.8803152259 383.69073175472596" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_31__stack1" x="900.8803152259" y="386.64437875965695" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_32__stack1" x="726.7307194264683" y="20.533411526709706" width="3.082066439927985" height="2.311549829946003" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_32__stack1" d="M 726.7307194264683 22.84496135665571 L 729.8127858663963 22.84496135665571" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_32__stack1" d="M 728.2717526464323 22.84496135665571 L 728.2717526464323 20.533411526709706" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_32__stack1" x="728.2717526464323" y="23.487058531640706" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_33__stack1" x="282.925994020336" y="435.058505753526" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_33__stack1" d="M 282.925994020336 437.370055583472 L 286.008060460264 437.370055583472" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_33__stack1" d="M 284.4670272403 437.370055583472 L 284.4670272403 435.058505753526" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_33__stack1" x="284.4670272403" y="438.012152758457" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_34__stack1" x="359.977655018536" y="435.058505753526" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_34__stack1" d="M 359.977655018536 437.370055583472 L 363.05972145846397 437.370055583472" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_34__stack1" d="M 361.5186882385 437.370055583472 L 361.5186882385 435.058505753526" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_34__stack1" x="361.5186882385" y="438.012152758457" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_35__stack1" x="437.029316016736" y="435.058505753526" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_35__stack1" d="M 437.029316016736 437.370055583472 L 440.111382456664 437.370055583472" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_35__stack1" d="M 438.5703492367 437.370055583472 L 438.5703492367 435.058505753526" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_35__stack1" x="438.5703492367" y="438.012152758457" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_36__stack1" x="514.080977014936" y="381.122343054786" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_36__stack1" d="M 514.080977014936 383.43389288473196 L 517.163043454864 383.43389288473196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_36__stack1" d="M 515.6220102349 383.43389288473196 L 515.6220102349 381.122343054786" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_36__stack1" x="515.6220102349" y="384.07599005971696" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_37__stack1" x="668.184299011336" y="381.122343054786" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_37__stack1" d="M 668.184299011336 383.43389288473196 L 671.2663654512639 383.43389288473196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_37__stack1" d="M 669.7253322313 383.43389288473196 L 669.7253322313 381.122343054786" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_37__stack1" x="669.7253322313" y="384.07599005971696" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_38__stack1" x="745.235960009536" y="383.69073175472596" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_38__stack1" d="M 745.235960009536 386.00228158467195 L 748.318026449464 386.00228158467195" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_38__stack1" d="M 746.7769932295 386.00228158467195 L 746.7769932295 383.69073175472596" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_38__stack1" x="746.7769932295" y="386.64437875965695" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_39__stack1" x="514.080977014936" y="432.490117053586" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_39__stack1" d="M 514.080977014936 434.801666883532 L 517.163043454864 434.801666883532" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_39__stack1" d="M 515.6220102349 434.801666883532 L 515.6220102349 432.490117053586" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_39__stack1" x="515.6220102349" y="435.443764058517" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_40__stack1" x="668.184299011336" y="435.058505753526" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_40__stack1" d="M 668.184299011336 437.370055583472 L 671.2663654512639 437.370055583472" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_40__stack1" d="M 669.7253322313 437.370055583472 L 669.7253322313 435.058505753526" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_40__stack1" x="669.7253322313" y="438.012152758457" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_41__stack1" x="822.287621007736" y="435.058505753526" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_41__stack1" d="M 822.287621007736 437.370055583472 L 825.369687447664 437.370055583472" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_41__stack1" d="M 823.8286542277 437.370055583472 L 823.8286542277 435.058505753526" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_41__stack1" x="823.8286542277" y="438.012152758457" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_42__stack1" x="899.339282005936" y="486.426279752326" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_42__stack1" d="M 899.339282005936 488.737829582272 L 902.4213484458639 488.737829582272" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_42__stack1" d="M 900.8803152259 488.737829582272 L 900.8803152259 486.426279752326" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_42__stack1" x="900.8803152259" y="489.379926757257" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_43__stack1" x="282.925994020336" y="486.42627975232597" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_43__stack1" d="M 282.925994020336 488.73782958227196 L 286.008060460264 488.73782958227196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_43__stack1" d="M 284.4670272403 488.73782958227196 L 284.4670272403 486.42627975232597" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_43__stack1" x="284.4670272403" y="489.37992675725695" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_44__stack1" x="514.0809770149359" y="486.42627975232597" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_44__stack1" d="M 514.0809770149359 488.73782958227196 L 517.1630434548639 488.73782958227196" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_44__stack1" d="M 515.6220102348999 488.73782958227196 L 515.6220102348999 486.42627975232597" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_44__stack1" x="515.6220102348999" y="489.37992675725695" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_45__stack1" x="591.132638013136" y="537.794053751126" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_45__stack1" d="M 591.132638013136 540.1056035810719 L 594.214704453064 540.1056035810719" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_45__stack1" d="M 592.6736712331 540.1056035810719 L 592.6736712331 537.794053751126" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_45__stack1" x="592.6736712331" y="540.7477007560569" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_46__stack1" x="668.184299011336" y="483.857891052386" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_46__stack1" d="M 668.184299011336 486.16944088233197 L 671.2663654512639 486.16944088233197" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_46__stack1" d="M 669.7253322313 486.16944088233197 L 669.7253322313 483.857891052386" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_46__stack1" x="669.7253322313" y="486.81153805731697" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_47__stack1" x="745.235960009536" y="537.794053751126" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_47__stack1" d="M 745.235960009536 540.1056035810719 L 748.318026449464 540.1056035810719" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_47__stack1" d="M 746.7769932295 540.1056035810719 L 746.7769932295 537.794053751126" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_47__stack1" x="746.7769932295" y="540.7477007560569" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_48__stack1" x="822.287621007736" y="537.794053751126" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_48__stack1" d="M 822.287621007736 540.1056035810719 L 825.369687447664 540.1056035810719" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_48__stack1" d="M 823.8286542277 540.1056035810719 L 823.8286542277 537.794053751126" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_48__stack1" x="823.8286542277" y="540.7477007560569" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_49__stack1" x="359.977655018536" y="589.1618277499261" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_49__stack1" d="M 359.977655018536 591.4733775798721 L 363.05972145846397 591.4733775798721" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_49__stack1" d="M 361.5186882385 591.4733775798721 L 361.5186882385 589.1618277499261" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_49__stack1" x="361.5186882385" y="592.1154747548571" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_50__stack1" x="437.029316016736" y="558.469582785643" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_50__stack1" d="M 437.029316016736 560.781132615589 L 440.111382456664 560.781132615589" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_50__stack1" d="M 438.5703492367 560.781132615589 L 438.5703492367 558.469582785643" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_50__stack1" x="438.5703492367" y="561.4232297905739" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_51__stack1" x="514.080977014936" y="558.469582785643" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_51__stack1" d="M 514.080977014936 560.781132615589 L 517.163043454864 560.781132615589" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_51__stack1" d="M 515.6220102349 560.781132615589 L 515.6220102349 558.469582785643" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_51__stack1" x="515.6220102349" y="561.4232297905739" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_52__stack1" x="631.584760037191" y="574.778851030262" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_52__stack1" d="M 631.584760037191 577.090400860208 L 634.666826477119 577.090400860208" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_52__stack1" d="M 633.125793257155 577.090400860208 L 633.125793257155 574.778851030262" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_52__stack1" x="633.125793257155" y="577.732498035193" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_53__stack1" x="899.339282005936" y="556.2864523906941" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_53__stack1" d="M 899.339282005936 558.5980022206401 L 902.4213484458639 558.5980022206401" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_53__stack1" d="M 900.8803152259 558.5980022206401 L 900.8803152259 556.2864523906941" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_53__stack1" x="900.8803152259" y="559.2400993956251" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_54__stack1" x="282.925994020336" y="586.593439049986" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_54__stack1" d="M 282.925994020336 588.904988879932 L 286.008060460264 588.904988879932" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_54__stack1" d="M 284.4670272403 588.904988879932 L 284.4670272403 586.593439049986" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_54__stack1" x="284.4670272403" y="589.547086054917" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_55__stack1" x="752.1834514428738" y="637.5887966872948" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_55__stack1" d="M 752.1834514428738 639.9003465172408 L 755.2655178828018 639.9003465172408" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_55__stack1" d="M 753.7244846628378 639.9003465172408 L 753.7244846628378 637.5887966872948" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_55__stack1" x="753.7244846628378" y="640.5424436922258" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_56__stack1" x="289.8734854536737" y="688.9565706860948" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_56__stack1" d="M 289.8734854536737 691.2681205160408 L 292.9555518936017 691.2681205160408" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_56__stack1" d="M 291.4145186736377 691.2681205160408 L 291.4145186736377 688.9565706860948" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_56__stack1" x="291.4145186736377" y="691.9102176910258" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</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_57__stack1" x="379.9982449345683" y="788.4816328087696" width="3.082066439927985" height="2.3115498299459887" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_57__stack1" d="M 379.9982449345683 790.7931826387156 L 383.08031137449626 790.7931826387156" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_57__stack1" d="M 381.53927815453227 790.7931826387156 L 381.53927815453227 788.4816328087696" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.25683886999399996px" 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_57__stack1" x="381.53927815453227" y="791.4352798137006" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="2.311549829946px">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_58__stack1" d="
889
+ M 284.4670272403,82.16189838177002
890
+ L 283.18283289033,81.46843343278621
891
+ L 283.18283289033,77.06450294195577
892
+ L 285.75122159027,77.06450294195577
893
+ L 285.75122159027,81.46843343278621
894
+ Z
895
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_58__stack1" x="284.4670272403" y="81.00612346679702" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 284.4670272403 81.00612346679702)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_59__stack1" d="
896
+ M 737.7876327797101,273.5068565273
897
+ L 736.5034384297401,272.8133915783162
898
+ L 736.5034384297401,268.40946108748574
899
+ L 739.0718271296801,268.40946108748574
900
+ L 739.0718271296801,272.8133915783162
901
+ Z
902
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_59__stack1" x="737.7876327797101" y="272.351081612327" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 737.7876327797101 272.351081612327)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_60__stack1" d="
903
+ M 575.3242055650053,87.29867578165
904
+ L 574.6307406160215,88.58287013162
905
+ L 570.226810125191,88.58287013162
906
+ L 570.226810125191,86.01448143168001
907
+ L 574.6307406160215,86.01448143168001
908
+ Z
909
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_60__stack1" x="574.1684306500323" y="87.29867578165" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_61__stack1" d="
910
+ M 904.090801100825,82.16189838177002
911
+ L 902.806606750855,81.46843343278621
912
+ L 902.806606750855,77.06450294195577
913
+ L 905.374995450795,77.06450294195577
914
+ L 905.374995450795,81.46843343278621
915
+ Z
916
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_61__stack1" x="904.090801100825" y="81.00612346679702" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 904.090801100825 81.00612346679702)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_62__stack1" d="
917
+ M 585.9830186697563,206.72875032886
918
+ L 584.6988243197864,206.0352853798762
919
+ L 584.6988243197864,201.63135488904575
920
+ L 587.2672130197263,201.63135488904575
921
+ L 587.2672130197263,206.0352853798762
922
+ Z
923
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_62__stack1" x="585.9830186697563" y="205.572975413887" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 585.9830186697563 205.572975413887)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_63__stack1" d="
924
+ M 361.5186882385,371.36246599501396
925
+ L 360.23449388853,370.6690010460302
926
+ L 360.23449388853,366.2650705551997
927
+ L 362.80288258846997,366.2650705551997
928
+ L 362.80288258846997,370.6690010460302
929
+ Z
930
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_63__stack1" x="361.5186882385" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 361.5186882385 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_64__stack1" d="
931
+ M 592.6736712331,371.36246599501396
932
+ L 591.38947688313,370.6690010460302
933
+ L 591.38947688313,366.2650705551997
934
+ L 593.95786558307,366.2650705551997
935
+ L 593.95786558307,370.6690010460302
936
+ Z
937
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_64__stack1" x="592.6736712331" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 592.6736712331 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_65__stack1" d="
938
+ M 284.4670272403,422.730239993814
939
+ L 283.18283289033,422.0367750448302
940
+ L 283.18283289033,417.63284455399975
941
+ L 285.75122159027,417.63284455399975
942
+ L 285.75122159027,422.0367750448302
943
+ Z
944
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_65__stack1" x="284.4670272403" y="421.574465078841" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 284.4670272403 421.574465078841)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_66__stack1" d="
945
+ M 669.7253322313,525.4657879914139
946
+ L 668.44113788133,524.7723230424301
947
+ L 668.44113788133,520.3683925515996
948
+ L 671.0095265812699,520.3683925515996
949
+ L 671.0095265812699,524.7723230424301
950
+ Z
951
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_66__stack1" x="669.7253322313" y="524.3100130764409" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 669.7253322313 524.3100130764409)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_67__stack1" d="
952
+ M 583.042213608325,683.7941093992154
953
+ L 581.758019258355,683.1006444502316
954
+ L 581.758019258355,678.6967139594011
955
+ L 584.326407958295,678.6967139594011
956
+ L 584.326407958295,683.1006444502316
957
+ Z
958
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_67__stack1" x="583.042213608325" y="682.6383344842424" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 583.042213608325 682.6383344842424)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_68__stack1" d="
959
+ M 778.4966065157025,93.70680558800031
960
+ L 777.2124121657325,93.0133406390165
961
+ L 777.2124121657325,88.60941014818606
962
+ L 779.7808008656725,88.60941014818606
963
+ L 779.7808008656725,93.0133406390165
964
+ Z
965
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_68__stack1" x="778.4966065157025" y="92.55103067302731" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 778.4966065157025 92.55103067302731)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_69__stack1" d="
966
+ M 438.5703492367,371.36246599501396
967
+ L 437.28615488673,370.6690010460302
968
+ L 437.28615488673,366.2650705551997
969
+ L 439.85454358667,366.2650705551997
970
+ L 439.85454358667,370.6690010460302
971
+ Z
972
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_69__stack1" x="438.5703492367" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 438.5703492367 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_70__stack1" d="
973
+ M 635.951020827089,93.70680558800031
974
+ L 634.666826477119,93.0133406390165
975
+ L 634.666826477119,88.60941014818606
976
+ L 637.235215177059,88.60941014818606
977
+ L 637.235215177059,93.0133406390165
978
+ Z
979
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_70__stack1" x="635.951020827089" y="92.55103067302731" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 635.951020827089 92.55103067302731)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_71__stack1" d="
980
+ M 515.6220102349,371.36246599501396
981
+ L 514.33781588493,370.6690010460302
982
+ L 514.33781588493,366.2650705551997
983
+ L 516.90620458487,366.2650705551997
984
+ L 516.90620458487,370.6690010460302
985
+ Z
986
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_71__stack1" x="515.6220102349" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 515.6220102349 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_72__stack1" d="
987
+ M 618.999655407485,92.43545318153001
988
+ L 619.6931203564687,91.15125883156001
989
+ L 624.0970508472992,91.15125883156001
990
+ L 624.0970508472992,93.7196475315
991
+ L 619.6931203564687,93.7196475315
992
+ Z
993
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_72__stack1" x="620.155430322458" y="92.43545318153001" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_73__stack1" d="
994
+ M 858.1038014283993,211.2105886102553
995
+ L 856.8196070784293,210.51712366127148
996
+ L 856.8196070784293,206.11319317044104
997
+ L 859.3879957783693,206.11319317044104
998
+ L 859.3879957783693,210.51712366127148
999
+ Z
1000
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_73__stack1" x="858.1038014283993" y="210.0548136952823" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 858.1038014283993 210.0548136952823)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_74__stack1" d="
1001
+ M 923.7518165988656,216.3473660101353
1002
+ L 922.4676222488956,215.6539010611515
1003
+ L 922.4676222488956,211.24997057032104
1004
+ L 925.0360109488356,211.24997057032104
1005
+ L 925.0360109488356,215.6539010611515
1006
+ Z
1007
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_74__stack1" x="923.7518165988656" y="215.1915910951623" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 923.7518165988656 215.1915910951623)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_75__stack1" d="
1008
+ M 669.7253322313,371.36246599501396
1009
+ L 668.44113788133,370.6690010460302
1010
+ L 668.44113788133,366.2650705551997
1011
+ L 671.0095265812699,366.2650705551997
1012
+ L 671.0095265812699,370.6690010460302
1013
+ Z
1014
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_75__stack1" x="669.7253322313" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 669.7253322313 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_76__stack1" d="
1015
+ M 532.7146370330007,632.4263354004154
1016
+ L 531.4304426830307,631.7328704514316
1017
+ L 531.4304426830307,627.3289399606011
1018
+ L 533.9988313829707,627.3289399606011
1019
+ L 533.9988313829707,631.7328704514316
1020
+ Z
1021
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_76__stack1" x="532.7146370330007" y="631.2705604854424" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 532.7146370330007 631.2705604854424)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_77__stack1" d="
1022
+ M 602.690387162866,633.0812745189
1023
+ L 601.406192812896,632.3878095699163
1024
+ L 601.406192812896,627.9838790790858
1025
+ L 603.974581512836,627.9838790790858
1026
+ L 603.974581512836,632.3878095699163
1027
+ Z
1028
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_77__stack1" x="602.690387162866" y="631.925499603927" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 602.690387162866 631.925499603927)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_78__stack1" d="
1029
+ M 760.2610339041851,92.43545318153001
1030
+ L 760.9544988531688,91.15125883156001
1031
+ L 765.3584293439993,91.15125883156001
1032
+ L 765.3584293439993,93.7196475315
1033
+ L 760.9544988531688,93.7196475315
1034
+ Z
1035
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_78__stack1" x="761.4168088191581" y="92.43545318153001" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_79__stack1" d="
1036
+ M 900.8803152259,371.36246599501396
1037
+ L 899.59612087593,370.6690010460302
1038
+ L 899.59612087593,366.2650705551997
1039
+ L 902.1645095758699,366.2650705551997
1040
+ L 902.1645095758699,370.6690010460302
1041
+ Z
1042
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_79__stack1" x="900.8803152259" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 900.8803152259 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" d="
1043
+ M 760.2610339041851,89.86706448159
1044
+ L 760.9544988531688,88.58287013162001
1045
+ L 765.3584293439993,88.58287013162001
1046
+ L 765.3584293439993,91.15125883156
1047
+ L 760.9544988531688,91.15125883156
1048
+ Z
1049
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" x="761.4168088191581" y="89.86706448159" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" 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_81__stack1" d="
1050
+ M 727.8864943414412,11.51836718992034
1051
+ L 726.6022999914712,10.82490224093654
1052
+ L 726.6022999914712,6.420971750106087
1053
+ L 729.1706886914112,6.420971750106087
1054
+ L 729.1706886914112,10.82490224093654
1055
+ Z
1056
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_81__stack1" x="727.8864943414412" y="10.36259227494734" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 727.8864943414412 10.36259227494734)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" d="
1057
+ M 823.8286542277,371.36246599501396
1058
+ L 822.54445987773,370.6690010460302
1059
+ L 822.54445987773,366.2650705551997
1060
+ L 825.11284857767,366.2650705551997
1061
+ L 825.11284857767,370.6690010460302
1062
+ Z
1063
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" x="823.8286542277" y="370.20669108004097" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 823.8286542277 370.20669108004097)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" d="
1064
+ M 867.7352590531743,90.49631971307531
1065
+ L 866.4510647032043,89.8028547640915
1066
+ L 866.4510647032043,85.39892427326106
1067
+ L 869.0194534031443,85.39892427326106
1068
+ L 869.0194534031443,89.8028547640915
1069
+ Z
1070
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" x="867.7352590531743" y="89.34054479810231" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 867.7352590531743 89.34054479810231)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" d="
1071
+ M 823.8286542277,504.6618395219
1072
+ L 822.54445987773,503.9683745729162
1073
+ L 822.54445987773,499.56444408208574
1074
+ L 825.11284857767,499.56444408208574
1075
+ L 825.11284857767,503.9683745729162
1076
+ Z
1077
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" x="823.8286542277" y="503.506064606927" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 823.8286542277 503.506064606927)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" d="
1078
+ M 746.7769932295,525.4657879914139
1079
+ L 745.49279887953,524.7723230424301
1080
+ L 745.49279887953,520.3683925515996
1081
+ L 748.06118757947,520.3683925515996
1082
+ L 748.06118757947,524.7723230424301
1083
+ Z
1084
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" x="746.7769932295" y="524.3100130764409" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 746.7769932295 524.3100130764409)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" d="
1085
+ M 813.7990963544343,628.5737523505053
1086
+ L 812.5149020044643,627.8802874015215
1087
+ L 812.5149020044643,623.476356910691
1088
+ L 815.0832907044042,623.476356910691
1089
+ L 815.0832907044042,627.8802874015215
1090
+ Z
1091
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" x="813.7990963544343" y="627.4179774355323" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 813.7990963544343 627.4179774355323)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" d="
1092
+ M 918.8718780689796,195.8002564106153
1093
+ L 917.5876837190096,195.1067914616315
1094
+ L 917.5876837190096,190.70286097080105
1095
+ L 920.1560724189496,190.70286097080105
1096
+ L 920.1560724189496,195.1067914616315
1097
+ Z
1098
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" x="918.8718780689796" y="194.6444814956423" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 918.8718780689796 194.6444814956423)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" d="
1099
+ M 900.8803152259,525.4657879914139
1100
+ L 899.59612087593,524.7723230424301
1101
+ L 899.59612087593,520.3683925515996
1102
+ L 902.1645095758699,520.3683925515996
1103
+ L 902.1645095758699,524.7723230424301
1104
+ Z
1105
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.25683886999399996px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" x="900.8803152259" y="524.3100130764409" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="2.311549829946px" transform="rotate(-90 900.8803152259 524.3100130764409)">XX</text><text class="sch-text" x="436.00196053676" y="148.041068535231" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.3115498299459962px" transform="rotate(0, 436.00196053676, 148.041068535231)">CC2340R52E0RKPR</text><text class="sch-text" x="425.985244606994" y="90.9586296790645" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 425.985244606994, 90.9586296790645)">U1</text><text class="sch-text" x="605.6440341677969" y="109.515238036131" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829945999px" transform="rotate(0, 605.6440341677969, 109.515238036131)">BQ25150YFPR</text><text class="sch-text" x="598.709384677959" y="78.1166861793645" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 598.709384677959, 78.1166861793645)">U2</text><text class="sch-text" x="746.905412664497" y="101.810071936311" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 746.905412664497, 101.810071936311)">BQ27427YZFR</text><text class="sch-text" x="739.9707631746589" y="85.8218522791845" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 739.9707631746589, 85.8218522791845)">U3</text><text class="sch-text" x="743.694926789572" y="219.955952133551" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.3115498299459962px" transform="rotate(0, 743.694926789572, 219.955952133551)">BMA400</text><text class="sch-text" x="740.6128603496439" y="198.8309550765445" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 740.6128603496439, 198.8309550765445)">U4</text><text class="sch-text" x="608.597681172728" y="214.819174733671" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.3115498299459962px" transform="rotate(0, 608.597681172728, 214.819174733671)">TPS7A0230PDBVR</text><text class="sch-text" x="599.351481852944" y="203.96773247642452" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 599.351481852944, 203.96773247642452)">U5</text><text class="sch-text" x="888.9373077711789" y="100.52587758634101" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 888.9373077711789, 100.52587758634101)">TPS61046YFFR</text><text class="sch-text" x="881.2321416713589" y="87.10604662915452" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 881.2321416713589, 87.10604662915452)">U6</text><text class="sch-text" x="893.17514912608" y="221.240146483521" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.3115498299459962px" transform="rotate(0, 893.17514912608, 221.240146483521)">X091-2832TSWFG02-H14</text><text class="sch-text" x="880.076366756386" y="197.54676072657452" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 880.076366756386, 197.54676072657452)">DS1</text><text class="sch-text" x="316.70030542454697" y="99.241683236371" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 316.70030542454697, 99.241683236371)">XC32M4-48.000-F08NLDT</text><text class="sch-text" x="302.06048983488904" y="88.39024097912451" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 302.06048983488904, 88.39024097912451)">Y1</text><text class="sch-text" x="881.2321416713589" y="281.0193934746245" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 881.2321416713589, 281.0193934746245)">J1</text><text class="sch-text" x="739.9707631746589" y="10.0543856309545" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="2.311549829946px" transform="rotate(0, 739.9707631746589, 10.0543856309545)">J2</text><text class="sch-text" x="413.913817717276" y="94.875422446473" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.913817717276, 94.875422446473)">XXXXXXX</text><text class="sch-text" x="675.0547387836755" y="146.37161588026999" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 675.0547387836755, 146.37161588026999)">XXXXXXX</text><text class="sch-text" x="727.899336284941" y="94.87542244647301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 727.899336284941, 94.87542244647301)">XXXXXXX</text><text class="sch-text" x="352.272488918716" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 352.272488918716, 631.6686607339329)">XXXXXXX</text><text class="sch-text" x="414.427495457264" y="105.148977246233" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 414.427495457264, 105.148977246233)">XXXXXX</text><text class="sch-text" x="587.151635528229" y="103.864782896263" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 587.151635528229, 103.864782896263)">XXXXXX</text><text class="sch-text" x="738.0444716497041" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 738.0444716497041, 580.300886735133)">XXXXXX</text><text class="sch-text" x="413.913817717276" y="107.717365946173" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.913817717276, 107.717365946173)">XXXXXXX</text><text class="sch-text" x="623.7511745023739" y="98.984844366377" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 623.7511745023739, 98.984844366377)">XXXXXXX</text><text class="sch-text" x="814.5824549079159" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 814.5824549079159, 580.300886735133)">XXXXXXX</text><text class="sch-text" x="412.8864622373" y="112.854143346053" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 412.8864622373, 112.854143346053)">XXXXXXXXX</text><text class="sch-text" x="726.871980804965" y="87.170256346653" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 726.871980804965, 87.170256346653)">XXXXXXXXX</text><text class="sch-text" x="659.45177743154" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 659.45177743154, 580.300886735133)">XXXXXXXXX</text><text class="sch-text" x="412.8864622373" y="115.422532045993" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 412.8864622373, 115.422532045993)">XXXXXXXXX</text><text class="sch-text" x="586.25269948325" y="91.02283939656301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 586.25269948325, 91.02283939656301)">XXXXXXXXX</text><text class="sch-text" x="890.60676042614" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 890.60676042614, 580.300886735133)">XXXXXXXXX</text><text class="sch-text" x="413.400139977288" y="123.127698145813" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 123.127698145813)">XXXXXXXX</text><text class="sch-text" x="909.355997935702" y="210.452913943773" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 909.355997935702, 210.452913943773)">XXXXXXXX</text><text class="sch-text" x="505.862133175128" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 505.862133175128, 631.6686607339329)">XXXXXXXX</text><text class="sch-text" x="413.400139977288" y="125.696086845753" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 125.696086845753)">XXXXXXXX</text><text class="sch-text" x="909.355997935702" y="207.884525243833" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 909.355997935702, 207.884525243833)">XXXXXXXX</text><text class="sch-text" x="582.9137941733279" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 582.9137941733279, 631.6686607339329)">XXXXXXXX</text><text class="sch-text" x="413.400139977288" y="128.264475545693" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 128.264475545693)">XXXXXXXX</text><text class="sch-text" x="909.355997935702" y="213.021302643713" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 909.355997935702, 213.021302643713)">XXXXXXXX</text><text class="sch-text" x="659.965455171528" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 659.965455171528, 631.6686607339329)">XXXXXXXX</text><text class="sch-text" x="413.400139977288" y="130.832864245633" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 130.832864245633)">XXXXXXXX</text><text class="sch-text" x="868.647037041653" y="92.30703374653301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 868.647037041653, 92.30703374653301)">XXXXXXXX</text><text class="sch-text" x="274.70715018052795" y="683.0364347327329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 274.70715018052795, 683.0364347327329)">XXXXXXXX</text><text class="sch-text" x="462.713203016136" y="134.685447295543" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 462.713203016136, 134.685447295543)">XXXXXX</text><text class="sch-text" x="527.17975938463" y="463.6831978143573" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 527.17975938463, 463.6831978143573)">XXXXXX</text><text class="sch-text" x="275.734505660504" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 275.734505660504, 631.6686607339329)">XXXXXX</text><text class="sch-text" x="461.68584753616" y="132.117058595603" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 461.68584753616, 132.117058595603)">XXXX</text><text class="sch-text" x="301.16155378991004" y="143.674807745333" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 301.16155378991004, 143.674807745333)">XXXX</text><text class="sch-text" x="514.209396449933" y="470.245430942704" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 514.209396449933, 470.245430942704)">XXXX</text><text class="sch-text" x="461.68584753616" y="129.548669895663" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 461.68584753616, 129.548669895663)">XXXX</text><text class="sch-text" x="319.14027468949" y="143.674807745333" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 319.14027468949, 143.674807745333)">XXXX</text><text class="sch-text" x="591.261057448133" y="470.245430942704" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 591.261057448133, 470.245430942704)">XXXX</text><text class="sch-text" x="463.226880756124" y="116.70672639596302" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 463.226880756124, 116.70672639596302)">XXXXXXX</text><text class="sch-text" x="695.3450159341733" y="83.31767329674301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 695.3450159341733, 83.31767329674301)">XXXXXXX</text><text class="sch-text" x="765.654650174059" y="96.416455666437" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 765.654650174059, 96.416455666437)">XXXXXXX</text><text class="sch-text" x="429.324149916916" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 429.324149916916, 631.6686607339329)">XXXXXXX</text><text class="sch-text" x="461.68584753616" y="109.00156029614301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 461.68584753616, 109.00156029614301)">XXXX</text><text class="sch-text" x="291.530096165135" y="91.022839396563" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 291.530096165135, 91.022839396563)">XXXX</text><text class="sch-text" x="668.312718446333" y="470.245430942704" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 668.312718446333, 470.245430942704)">XXXX</text><text class="sch-text" x="461.68584753616" y="106.43317159620301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 461.68584753616, 106.43317159620301)">XXXX</text><text class="sch-text" x="328.771732314265" y="93.59122809650302" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 328.771732314265, 93.59122809650302)">XXXX</text><text class="sch-text" x="745.3643794445329" y="470.245430942704" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 745.3643794445329, 470.245430942704)">XXXX</text><text class="sch-text" x="523.5198054872155" y="276.717342402225" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 523.5198054872155, 276.717342402225)">XXXXXX</text><text class="sch-text" x="503.9626492072286" y="683.0027304099208" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 503.9626492072286, 683.0027304099208)">XXXXXX</text><text class="sch-text" x="588.178991008205" y="98.728005496383" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 588.178991008205, 98.728005496383)">XX</text><text class="sch-text" x="731.1034011881161" y="17.823761448273004" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 731.1034011881161, 17.823761448273004)">XX</text><text class="sch-text" x="507.91684413508" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 507.91684413508, 580.300886735133)">XX</text><text class="sch-text" x="907.4297064107469" y="94.87542244647301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 907.4297064107469, 94.87542244647301)">XXXXXXXX</text><text class="sch-text" x="862.3544847267999" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 862.3544847267999, 631.6686607339329)">XXXXXXXX</text><text class="sch-text" x="370.251209818296" y="683.0364347327329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 370.251209818296, 683.0364347327329)">XXXXXX</text><text class="sch-text" x="308.738300454733" y="206.471911458866" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 308.738300454733, 206.471911458866)">XXXXXX</text><text class="sch-text" x="437.157735451733" y="520.5858494615279" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 437.157735451733, 520.5858494615279)">XXXXXX</text><text class="sch-text" x="404.7184243364627" y="511.9689053732292" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 404.7184243364627, 511.9689053732292)">XXXXXXXXX</text><text class="sch-text" x="899.467701440933" y="467.677042242764" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 899.467701440933, 467.677042242764)">XXXXXXXXX</text><text class="sch-text" x="303.72994248985003" y="536.381439966159" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 303.72994248985003, 536.381439966159)">XXXXX</text><text class="sch-text" x="353.299844398692" y="683.0364347327329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 353.299844398692, 683.0364347327329)">XXXXX</text><text class="sch-text" x="413.400139977288" y="97.443811146413" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 97.443811146413)">XXXXXXXX</text><text class="sch-text" x="728.0277557199379" y="211.737108293743" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 728.0277557199379, 211.737108293743)">XXXXXXXX</text><text class="sch-text" x="413.400139977288" y="100.012199846353" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 413.400139977288, 100.012199846353)">XXXXXXXX</text><text class="sch-text" x="728.0277557199379" y="214.305496993683" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 728.0277557199379, 214.305496993683)">XXXXXXXX</text><text class="sch-text" x="414.427495457264" y="102.580588546293" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 414.427495457264, 102.580588546293)">XXXXXX</text><text class="sch-text" x="623.7511745023739" y="96.416455666437" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 623.7511745023739, 96.416455666437)">XXXXXX</text><text class="sch-text" x="414.941173197252" y="117.990920745933" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 414.941173197252, 117.990920745933)">XXXXX</text><text class="sch-text" x="457.319586746262" y="785.7719827303329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 457.319586746262, 785.7719827303329)">XXXXX</text><text class="sch-text" x="414.941173197252" y="120.559309445873" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 414.941173197252, 120.559309445873)">XXXXX</text><text class="sch-text" x="534.371247744462" y="785.7719827303329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 534.371247744462, 785.7719827303329)">XXXXX</text><text class="sch-text" x="461.68584753616" y="121.84350379584302" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 461.68584753616, 121.84350379584302)">XXXX</text><text class="sch-text" x="427.9383436890046" y="683.0027304099208" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 427.9383436890046, 683.0027304099208)">XXXX</text><text class="sch-text" x="588.178991008205" y="101.296394196323" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 588.178991008205, 101.296394196323)">XXX</text><text class="sch-text" x="595.627318238031" y="272.094242742333" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 595.627318238031, 272.094242742333)">XXX</text><text class="sch-text" x="622.8522384573951" y="103.864782896263" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 622.8522384573951, 103.864782896263)">XXXX</text><text class="sch-text" x="430.86518313688" y="580.300886735133" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 430.86518313688, 580.300886735133)">XXXX</text><text class="sch-text" x="729.440369504905" y="89.738645046593" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 729.440369504905, 89.738645046593)">XXX</text><text class="sch-text" x="584.9685051332799" y="573.366237245295" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 584.9685051332799, 573.366237245295)">XXX</text><text class="sch-text" x="868.647037041653" y="94.87542244647301" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 868.647037041653, 94.87542244647301)">XXXXXXXX</text><text class="sch-text" x="596.397834848013" y="690.356342527562" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(-90, 596.397834848013, 690.356342527562)">XXXXXXXX</text><text class="sch-text" x="909.86967567569" y="205.31613654389298" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 909.86967567569, 205.31613654389298)">XXXXXXXXX</text><text class="sch-text" x="736.50343842974" y="631.6686607339329" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="1.5410332199639998px" transform="rotate(0, 736.50343842974, 631.6686607339329)">XXXXXXXXX</text><rect class="schematic-box sch-box" x="424.44421138703" y="146.885293620258" width="23.11549829946" height="2.3115498299459887" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="423.673694777048" y="89.35338674160201" width="4.623099659891977" height="3.2104858749249985" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="597.168351457995" y="108.359463121158" width="16.95136541960403" height="2.311549829946003" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="596.397834848013" y="76.51144324190201" width="4.623099659891977" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="738.429729954695" y="100.65429702133801" width="16.95136541960403" height="2.3115498299459887" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="737.659213344713" y="84.216609341722" width="4.623099659891977" height="3.2104858749249985" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="739.07182712968" y="218.800177218578" width="9.246199319784068" height="2.311549829946017" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="738.301310519698" y="197.22571213908202" width="4.623099659891864" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="597.81044863298" y="213.663399818698" width="21.574465079496008" height="2.3115498299459887" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="597.039932022998" y="202.36248953896202" width="4.623099659892091" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="879.6911084513949" y="99.370102671368" width="18.492398639568023" height="2.311549829946003" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="878.9205918414129" y="85.50080369169201" width="4.623099659891977" height="3.2104858749249985" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="877.7648169264401" y="220.084371568548" width="30.82066439927985" height="2.311549829946017" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="876.994300316458" y="195.94151778911203" width="6.1641328798560835" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="300.519456614925" y="98.08590832139801" width="32.36169761924401" height="2.311549829946003" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="299.74894000494305" y="86.78499804166202" width="4.623099659891977" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="878.9205918414129" y="279.41415053716196" width="4.623099659891977" height="3.2104858749249843" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/><rect class="schematic-box sch-box" x="737.659213344713" y="8.449142693492007" width="4.623099659891977" height="3.2104858749249985" stroke-width="0.25683886999399996px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="2.0547109599519997 1.0273554799759999"/>
1106
+ </g>
1107
+ </svg>