@tscircuit/schematic-trace-solver 0.0.186 → 0.0.188

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 (53) hide show
  1. package/dist/index.d.ts +40 -23
  2. package/dist/index.js +1041 -319
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +611 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  6. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  7. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  8. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  9. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  10. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +83 -14
  11. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  12. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +14 -11
  13. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  14. package/lib/types/InputProblem.ts +2 -2
  15. package/package.json +1 -1
  16. package/site/bug-reports/bug-report-20260907T083336Z.page.tsx +4 -0
  17. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  18. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  19. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  20. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  21. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  23. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  24. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  25. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  26. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  27. package/tests/bug-reports/bug-report-20260907T083336Z/__snapshots__/bug-report-20260907T083336Z.snap.svg +520 -0
  28. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.json +2031 -0
  29. package/tests/bug-reports/bug-report-20260907T083336Z/bug-report-20260907T083336Z.test.ts +27 -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__/board-1273-trace-overlap-cycle.snap.svg +2 -2
  37. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  38. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  39. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  40. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  41. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  42. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  43. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  44. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  45. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  46. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  47. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  48. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  49. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  50. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  51. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  52. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  53. package/tests/solvers/SameNetJunctionAlignmentSolver/parallel-load-rails.test.ts +24 -0
@@ -0,0 +1,520 @@
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="-12.930497016666665,-5.4925 -12.930497016666665,-5.692499999999999" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 92.69338003527855,263.7380607830161" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -12.930497016666665,-5.092499999999999" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 92.69338003527855,253.19059522132568" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -12.930497016666665,-5.2924999999999995" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 92.69338003527855,256.7064170752225" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -12.930497016666665,-4.692499999999999" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 92.69338003527855,246.15895151353203" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -12.930497016666665,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 92.69338003527855,249.67477336742886" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.4925 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,260.2222389291193 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -12.930497016666665,-5.092499999999999" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 92.69338003527855,253.19059522132568" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -12.930497016666665,-5.2924999999999995" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 92.69338003527855,256.7064170752225" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -12.930497016666665,-4.692499999999999" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 92.69338003527855,246.15895151353203" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -12.930497016666665,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 92.69338003527855,249.67477336742886" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -12.930497016666665,-5.2924999999999995" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 92.69338003527855,256.7064170752225" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -12.930497016666665,-4.692499999999999" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 92.69338003527855,246.15895151353203" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -12.930497016666665,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 92.69338003527855,249.67477336742886" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -12.930497016666665,-4.692499999999999" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 92.69338003527855,246.15895151353203" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -12.930497016666665,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 92.69338003527855,249.67477336742886" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -12.930497016666665,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 92.69338003527855,249.67477336742886" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -12.530497016666665,-7.4975" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 99.7250237430722,295.4683530144349" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -15.477997016666666,-8.9775" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -13.912997016666665,-8.9775" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-7.4975 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="99.7250237430722,295.4683530144349 119.85310385663149,263.7380607830162" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-7.4975 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="99.7250237430722,295.4683530144349 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-7.4975 -15.477997016666666,-8.9775" data-type="line" data-label="" points="99.7250237430722,295.4683530144349 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-7.4975 -13.912997016666665,-8.9775" data-type="line" data-label="" points="99.7250237430722,295.4683530144349 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.939663683333332,-6.089999999999999 -6.480497016666665,-5.2799999999999985" data-type="line" data-label="" points="233.16511235618106,270.72575671763605 206.07863482345095,256.48667820935395" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.939663683333332,-6.089999999999999 -5.035497016666666,-5.2799999999999985" data-type="line" data-label="" points="233.16511235618106,270.72575671763605 231.48044771785547,256.48667820935395" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-4.035" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,234.60068716884626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-3.835" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,231.08486531494944" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-3.635" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,227.56904346105262" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-3.4349999999999996" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,224.0532216071558" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,220.53739975325897" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.235 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,238.11650902274306 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-3.835" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,231.08486531494944" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-3.635" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,227.56904346105262" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-3.4349999999999996" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,224.0532216071558" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,220.53739975325897" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.035 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-3.635" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,227.56904346105262" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-3.4349999999999996" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,224.0532216071558" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,220.53739975325897" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.835 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-3.4349999999999996" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,224.0532216071558" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,220.53739975325897" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.635 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,220.53739975325897" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,217.02157789936214" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-2.834999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,213.50575604546532" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 4.59408631666667,-2.734999999999999" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 400.759945354125,211.74784511851692" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="400.759945354125,211.74784511851692 400.759945354125,215.26366697241374" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="400.759945354125,211.74784511851692 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="400.759945354125,211.74784511851692 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-5.035" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="400.759945354125,211.74784511851692 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,211.74784511851692 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,211.74784511851692 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="400.759945354125,211.74784511851692 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="400.759945354125,215.26366697241374 400.759945354125,246.9060636574851" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="400.759945354125,215.26366697241374 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-5.035" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="400.759945354125,215.26366697241374 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,215.26366697241374 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,215.26366697241374 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-2.934999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="400.759945354125,215.26366697241374 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 4.59408631666667,-5.334999999999999" data-type="line" data-label="" points="400.759945354125,246.9060636574851 400.759945354125,257.45352921917555" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-5.035" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="400.759945354125,246.9060636574851 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,246.9060636574851 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,246.9060636574851 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 2.987836316666669,-5.9875" data-type="line" data-label="" points="400.759945354125,246.9060636574851 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-7.835000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,301.40130239288584" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-5.035" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="400.759945354125,257.45352921917555 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,257.45352921917555 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="400.759945354125,257.45352921917555 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="400.759945354125,257.45352921917555 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,297.885480538989" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,294.3696586850922" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,297.885480538989 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,297.885480538989 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,297.885480538989 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,297.885480538989 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,290.8538368311954" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,287.3380149772986" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,283.82219312340175" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,280.3063712695049" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,276.7905494156081" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,273.2747275617113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,269.7589057078145" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,266.24308385391765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,262.7272620000208" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,259.211440146124" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.59408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,259.211440146124 435.9181638930932,255.6956182922272" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,259.211440146124 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,259.211440146124 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,259.211440146124 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,259.211440146124 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,259.211440146124 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,259.211440146124 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,259.211440146124 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 6.59408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 435.9181638930932,252.17979643833036" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 6.59408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 435.9181638930932,248.66397458443356" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-5.035 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 6.59408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 435.9181638930932,245.1481527305367" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.635000000000001 6.59408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,245.1481527305367 435.9181638930932,241.6323308766399" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.635000000000001 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,245.1481527305367 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.635000000000001 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,245.1481527305367 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.635000000000001 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,245.1481527305367 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.4350000000000005 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,241.6323308766399 350.0002673384897,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.4350000000000005 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="435.9181638930932,241.6323308766399 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.59408631666667,-4.4350000000000005 2.987836316666669,-5.9875" data-type="line" data-label="" points="435.9181638930932,241.6323308766399 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="15.56854166666667,-7.232499999999999 15.56854166666667,-5.0825" data-type="line" data-label="" points="593.6810951248493,290.8098890580216 593.6810951248493,253.01480412863083" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-11.385497016666665,-5.692500000000001 -11.385497016666665,-3.8824999999999994" data-type="line" data-label="" points="119.85310385663149,263.7380607830162 119.85310385663149,231.91987300524994" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-11.385497016666665,-5.692500000000001 -15.477997016666666,-8.9775" data-type="line" data-label="" points="119.85310385663149,263.7380607830162 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-11.385497016666665,-5.692500000000001 -13.912997016666665,-8.9775" data-type="line" data-label="" points="119.85310385663149,263.7380607830162 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-11.385497016666665,-3.8824999999999994 -15.477997016666666,-8.9775" data-type="line" data-label="" points="119.85310385663149,231.91987300524994 47.91059917126779,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-11.385497016666665,-3.8824999999999994 -13.912997016666665,-8.9775" data-type="line" data-label="" points="119.85310385663149,231.91987300524994 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.480497016666665,-5.2799999999999985 -5.035497016666666,-5.2799999999999985" data-type="line" data-label="" points="206.07863482345095,256.48667820935395 231.48044771785547,256.48667820935395" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.7065863166666695,-4.014999999999999 3.2115863166666694,-4.014999999999999" data-type="line" data-label="" points="350.0002673384897,234.24910498345656 376.45682678906326,234.24910498345656" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.7065863166666695,-4.014999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="350.0002673384897,234.24910498345656 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.2115863166666694,-4.014999999999999 2.987836316666669,-5.9875" data-type="line" data-label="" points="376.45682678906326,234.24910498345656 372.5235010900162,268.9238980175139" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-15.477997016666666,-8.9775 -13.912997016666665,-8.9775" data-type="line" data-label="" points="47.91059917126779,321.4854347332714 75.42190517801043,321.4854347332714" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.8575000000000004,-14.2875 4.2675,-14.2875" data-type="line" data-label="" points="352.65319546806666,414.8305049542319 395.01884880752334,414.8305049542319" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-2.0924999999999994 -12.930497016666665,-2.2924999999999986" data-type="line" data-label="" points="92.69338003527855,200.4532674128734 92.69338003527855,203.9690892667702" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.939663683333332,-5.889999999999999 -4.939663683333332,-6.289999999999999" data-type="line" data-label="" points="233.16511235618106,267.20993486373925 233.16511235618106,274.24157857153284" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.939663683333332,-5.889999999999999 -6.480497016666665,-4.519999999999999" data-type="line" data-label="" points="233.16511235618106,267.20993486373925 206.07863482345095,243.126555164546" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.939663683333332,-6.289999999999999 -6.480497016666665,-4.519999999999999" data-type="line" data-label="" points="233.16511235618106,274.24157857153284 206.07863482345095,243.126555164546" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-2.642499999999999 -11.385497016666665,-5.092499999999999" data-type="line" data-label="" points="92.69338003527855,210.12177751108965 119.85310385663149,253.19059522132568" fill="none" stroke="hsl(273, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.7924999999999995 -12.930497016666665,-3.5924999999999994" data-type="line" data-label="" points="92.69338003527855,230.33775317099634 92.69338003527855,226.82193131709954" fill="none" stroke="hsl(324, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.7924999999999995 -12.530497016666665,-8.4975" data-type="line" data-label="" points="92.69338003527855,230.33775317099634 99.7250237430722,313.047462283919" fill="none" stroke="hsl(324, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.5924999999999994 -12.530497016666665,-8.4975" data-type="line" data-label="" points="92.69338003527855,226.82193131709954 99.7250237430722,313.047462283919" fill="none" stroke="hsl(324, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.192499999999999 -12.930497016666665,-3.3925" data-type="line" data-label="" points="92.69338003527855,219.7902876093059 92.69338003527855,223.30610946320274" fill="none" stroke="hsl(327, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.192499999999999 -12.530497016666665,-8.2975" data-type="line" data-label="" points="92.69338003527855,219.7902876093059 99.7250237430722,309.5316404300222" fill="none" stroke="hsl(327, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-3.3925 -12.530497016666665,-8.2975" data-type="line" data-label="" points="92.69338003527855,223.30610946320274 99.7250237430722,309.5316404300222" fill="none" stroke="hsl(327, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-2.8424999999999994 -11.385497016666665,-3.2824999999999998" data-type="line" data-label="" points="92.69338003527855,213.63759936498647 119.85310385663149,221.37240744355947" fill="none" stroke="hsl(274, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-8.0975 -10.530497016666665,-7.4975" data-type="line" data-label="" points="99.7250237430722,306.0158185761254 134.88324228204038,295.4683530144349" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-8.0975 -15.477997016666666,-8.217500000000001" data-type="line" data-label="" points="99.7250237430722,306.0158185761254 47.91059917126779,308.1253116884635" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.530497016666665,-8.0975 -13.912997016666665,-8.217500000000001" data-type="line" data-label="" points="99.7250237430722,306.0158185761254 75.42190517801043,308.1253116884635" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.530497016666665,-7.4975 -15.477997016666666,-8.217500000000001" data-type="line" data-label="" points="134.88324228204038,295.4683530144349 47.91059917126779,308.1253116884635" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.530497016666665,-7.4975 -13.912997016666665,-8.217500000000001" data-type="line" data-label="" points="134.88324228204038,295.4683530144349 75.42190517801043,308.1253116884635" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.9396636833333316,-5.989999999999999 -5.035497016666666,-4.519999999999999" data-type="line" data-label="" points="268.32333089514924,268.96784579068765 231.48044771785547,243.126555164546" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 0.9853363166666691,-5.3075" data-type="line" data-label="" points="400.759945354125,218.77948882631057 337.3213347778743,256.9701037142648" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 3.0490863166666697,-7.079999999999999" data-type="line" data-label="" points="400.759945354125,218.77948882631057 373.6002215327721,288.1290748944253" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 3.0490863166666697,-8.889999999999997" data-type="line" data-label="" points="400.759945354125,218.77948882631057 373.6002215327721,319.94726267219147" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 3.0490863166666697,-1.5" data-type="line" data-label="" points="400.759945354125,218.77948882631057 373.6002215327721,190.03764517070408" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 1.7065863166666695,-3.254999999999999" data-type="line" data-label="" points="400.759945354125,218.77948882631057 350.0002673384897,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="400.759945354125,218.77948882631057 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.3075 3.0490863166666697,-7.079999999999999" data-type="line" data-label="" points="337.3213347778743,256.9701037142648 373.6002215327721,288.1290748944253" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.3075 3.0490863166666697,-8.889999999999997" data-type="line" data-label="" points="337.3213347778743,256.9701037142648 373.6002215327721,319.94726267219147" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.3075 3.0490863166666697,-1.5" data-type="line" data-label="" points="337.3213347778743,256.9701037142648 373.6002215327721,190.03764517070408" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.3075 1.7065863166666695,-3.254999999999999" data-type="line" data-label="" points="337.3213347778743,256.9701037142648 350.0002673384897,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.3075 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="337.3213347778743,256.9701037142648 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-7.079999999999999 3.0490863166666697,-8.889999999999997" data-type="line" data-label="" points="373.6002215327721,288.1290748944253 373.6002215327721,319.94726267219147" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-7.079999999999999 3.0490863166666697,-1.5" data-type="line" data-label="" points="373.6002215327721,288.1290748944253 373.6002215327721,190.03764517070408" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-7.079999999999999 1.7065863166666695,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,288.1290748944253 350.0002673384897,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-7.079999999999999 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,288.1290748944253 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-8.889999999999997 3.0490863166666697,-1.5" data-type="line" data-label="" points="373.6002215327721,319.94726267219147 373.6002215327721,190.03764517070408" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-8.889999999999997 1.7065863166666695,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,319.94726267219147 350.0002673384897,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-8.889999999999997 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,319.94726267219147 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-1.5 1.7065863166666695,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,190.03764517070408 350.0002673384897,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.0490863166666697,-1.5 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="373.6002215327721,190.03764517070408 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.7065863166666695,-3.254999999999999 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="350.0002673384897,220.88898193864864 376.45682678906326,220.88898193864864" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-15.477997016666666,-8.217500000000001 -13.912997016666665,-8.217500000000001" data-type="line" data-label="" points="47.91059917126779,308.1253116884635 75.42190517801043,308.1253116884635" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.00408631666667,-6.3925 10.19408631666667,-5.092499999999999" data-type="line" data-label="" points="531.0211450410022,276.043437271655 499.20295726323593,253.19059522132568" fill="none" stroke="hsl(354, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.00408631666667,-3.9924999999999993 10.19408631666667,-6.972499999999999" data-type="line" data-label="" points="531.0211450410022,233.8535750248932 499.20295726323593,286.23932064795576" fill="none" stroke="hsl(129, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-3.5349999999999993 3.0490863166666697,-2.0999999999999996" data-type="line" data-label="" points="400.759945354125,225.8111325341042 373.6002215327721,200.58511073239453" fill="none" stroke="hsl(292, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.134999999999999 0.9853363166666691,-5.9075" data-type="line" data-label="" points="400.759945354125,236.35859809579466 337.3213347778743,267.5175692759552" fill="none" stroke="hsl(57, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-4.134999999999999 2.987836316666669,-5.2275" data-type="line" data-label="" points="400.759945354125,236.35859809579466 372.5235010900162,255.56377497270603" fill="none" stroke="hsl(57, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.00408631666667,-3.892499999999999 15.56854166666667,-4.1425" data-type="line" data-label="" points="566.1793635799704,232.09566409794476 593.6810951248493,236.4904414153158" fill="none" stroke="hsl(57, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9853363166666691,-5.9075 2.987836316666669,-5.2275" data-type="line" data-label="" points="337.3213347778743,267.5175692759552 372.5235010900162,255.56377497270603" fill="none" stroke="hsl(57, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-6.9350000000000005 3.0490863166666697,-9.489999999999998" data-type="line" data-label="" points="400.759945354125,285.58010405035014 373.6002215327721,330.4947282338819" fill="none" stroke="hsl(298, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.59408631666667,-7.135 3.0490863166666697,-7.679999999999999" data-type="line" data-label="" points="400.759945354125,289.09592590424694 373.6002215327721,298.67654045611573" fill="none" stroke="hsl(299, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.00408631666667,-6.2924999999999995 15.56854166666667,-6.2924999999999995" data-type="line" data-label="" points="566.1793635799704,274.28552634470657 593.6810951248493,274.28552634470657" fill="none" stroke="hsl(299, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.00408631666667,-3.792499999999999 10.794086316666672,-5.092499999999999" data-type="line" data-label="" points="531.0211450410022,230.33775317099634 509.75042282492643,253.19059522132568" fill="none" stroke="hsl(15, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.00408631666667,-6.192499999999999 10.794086316666672,-6.972499999999999" data-type="line" data-label="" points="531.0211450410022,272.52761541775817 509.75042282492643,286.23932064795576" fill="none" stroke="hsl(176, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.2675,-15.354999999999997 -3.2675,-13.814999999999998" data-type="line" data-label="" points="262.56026046196064,433.5962040994061 262.56026046196064,406.52437582440064" fill="none" stroke="hsl(133, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.930497016666665,-5.692499999999999 -11.740497016666666,-5.692499999999999 -11.740497016666666,-5.4925 -12.930497016666665,-5.4925" data-type="line" data-label="" points="92.69338003527855,263.7380607830161 113.61252006596462,263.7380607830161 113.61252006596462,260.2222389291193 92.69338003527855,260.2222389291193" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-5.2924999999999995 -12.730497016666666,-5.2924999999999995 -12.730497016666666,-5.4925" data-type="line" data-label="" points="92.69338003527855,256.7064170752225 96.20920188917538,256.7064170752225 96.20920188917538,260.2222389291193" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-5.092499999999999 -12.730497016666666,-5.092499999999999 -12.730497016666666,-5.2924999999999995" data-type="line" data-label="" points="92.69338003527855,253.19059522132568 96.20920188917538,253.19059522132568 96.20920188917538,256.7064170752225" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-4.892499999999999 -12.730497016666666,-4.892499999999999 -12.730497016666666,-5.092499999999999" data-type="line" data-label="" points="92.69338003527855,249.67477336742886 96.20920188917538,249.67477336742886 96.20920188917538,253.19059522132568" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-4.692499999999999 -12.730497016666666,-4.692499999999999 -12.730497016666666,-4.892499999999999" data-type="line" data-label="" points="92.69338003527855,246.15895151353203 96.20920188917538,246.15895151353203 96.20920188917538,249.67477336742886" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.385497016666665,-5.692500000000001 -11.385497016666665,-5.892500000000001 -11.740497016666666,-5.892500000000001 -11.740497016666666,-5.692499999999999 -12.930497016666665,-5.692499999999999" data-type="line" data-label="" points="119.85310385663149,263.7380607830162 119.85310385663149,267.253882636913 113.61252006596462,267.253882636913 113.61252006596462,263.7380607830161 92.69338003527855,263.7380607830161" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.385497016666665,-3.8824999999999985 -11.385497016666665,-4.082499999999998 -10.425497016666665,-4.082499999999998 -10.425497016666665,-5.8925 -11.385497016666665,-5.8925 -11.385497016666665,-5.692500000000001" data-type="line" data-label="" points="119.85310385663149,231.9198730052499 119.85310385663149,235.4356948591467 136.72904875533624,235.4356948591467 136.72904875533624,267.253882636913 119.85310385663149,267.253882636913 119.85310385663149,263.7380607830162" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="15.56854166666667,-5.082499999999998 15.56854166666667,-5.282499999999997 15.009086316666671,-5.282499999999997 15.009086316666671,-7.432499999999998 15.56854166666667,-7.432499999999998 15.56854166666667,-7.232499999999999" data-type="line" data-label="" points="593.6810951248493,253.0148041286308 593.6810951248493,256.5306259825276 583.8463683958018,256.5306259825276 583.8463683958018,294.32571091191846 593.6810951248493,294.32571091191846 593.6810951248493,290.8098890580216" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.035497016666666,-5.479999999999999 -6.480497016666665,-5.479999999999999 -6.480497016666665,-5.2799999999999985" data-type="line" data-label="" points="231.48044771785547,260.00250006325075 206.07863482345095,260.00250006325075 206.07863482345095,256.48667820935395" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.939663683333332,-6.089999999999999 -5.035497016666666,-6.089999999999999 -5.035497016666666,-5.2799999999999985" data-type="line" data-label="" points="233.16511235618106,270.72575671763605 231.48044771785547,270.72575671763605 231.48044771785547,256.48667820935395" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.2115863166666694,-4.014999999999999 3.2115863166666694,-4.7349999999999985 1.7065863166666695,-4.7349999999999985 1.7065863166666695,-4.014999999999999" data-type="line" data-label="" points="376.45682678906326,234.24910498345656 376.45682678906326,246.9060636574851 350.0002673384897,246.9060636574851 350.0002673384897,234.24910498345656" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-4.7349999999999985 3.2115863166666694,-4.7349999999999985" data-type="line" data-label="" points="400.759945354125,246.9060636574851 376.45682678906326,246.9060636574851" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-2.734999999999999 4.013086316666669,-2.734999999999999 4.013086316666669,-2.934999999999999 4.59408631666667,-2.934999999999999" data-type="line" data-label="" points="400.759945354125,211.74784511851692 390.5464828685548,211.74784511851692 390.5464828685548,215.26366697241374 400.759945354125,215.26366697241374" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-13.912997016666665,-8.9775 -13.912997016666665,-9.177499999999998 -15.477997016666666,-9.177499999999998 -15.477997016666666,-8.9775" data-type="line" data-label="" points="75.42190517801043,321.4854347332714 75.42190517801043,325.0012565871682 47.91059917126779,325.0012565871682 47.91059917126779,321.4854347332714" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-4.035 6.79408631666667,-4.035 6.79408631666667,-4.235 6.59408631666667,-4.235" data-type="line" data-label="" points="435.9181638930932,234.60068716884626 439.43398574699006,234.60068716884626 439.43398574699006,238.11650902274306 435.9181638930932,238.11650902274306" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-3.835 6.79408631666667,-3.835 6.79408631666667,-4.035" data-type="line" data-label="" points="435.9181638930932,231.08486531494944 439.43398574699006,231.08486531494944 439.43398574699006,234.60068716884626" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-3.635 6.79408631666667,-3.635 6.79408631666667,-3.835" data-type="line" data-label="" points="435.9181638930932,227.56904346105262 439.43398574699006,227.56904346105262 439.43398574699006,231.08486531494944" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-3.4349999999999996 6.79408631666667,-3.4349999999999996 6.79408631666667,-3.635" data-type="line" data-label="" points="435.9181638930932,224.0532216071558 439.43398574699006,224.0532216071558 439.43398574699006,227.56904346105262" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-3.2349999999999994 6.79408631666667,-3.2349999999999994 6.79408631666667,-3.4349999999999996" data-type="line" data-label="" points="435.9181638930932,220.53739975325897 439.43398574699006,220.53739975325897 439.43398574699006,224.0532216071558" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-3.0349999999999993 6.79408631666667,-3.0349999999999993 6.79408631666667,-3.2349999999999994" data-type="line" data-label="" points="435.9181638930932,217.02157789936214 439.43398574699006,217.02157789936214 439.43398574699006,220.53739975325897" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-2.834999999999999 6.79408631666667,-2.834999999999999 6.79408631666667,-3.0349999999999993" data-type="line" data-label="" points="435.9181638930932,213.50575604546532 439.43398574699006,213.50575604546532 439.43398574699006,217.02157789936214" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-4.4350000000000005 6.79408631666667,-4.4350000000000005 6.79408631666667,-4.235 6.59408631666667,-4.235" data-type="line" data-label="" points="435.9181638930932,241.6323308766399 439.43398574699006,241.6323308766399 439.43398574699006,238.11650902274306 435.9181638930932,238.11650902274306" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-4.635000000000001 6.79408631666667,-4.635000000000001 6.79408631666667,-4.4350000000000005" data-type="line" data-label="" points="435.9181638930932,245.1481527305367 439.43398574699006,245.1481527305367 439.43398574699006,241.6323308766399" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-4.835000000000001 6.79408631666667,-4.835000000000001 6.79408631666667,-4.635000000000001" data-type="line" data-label="" points="435.9181638930932,248.66397458443356 439.43398574699006,248.66397458443356 439.43398574699006,245.1481527305367" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-5.035 6.79408631666667,-5.035 6.79408631666667,-4.835000000000001" data-type="line" data-label="" points="435.9181638930932,252.17979643833036 439.43398574699006,252.17979643833036 439.43398574699006,248.66397458443356" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-5.235000000000001 6.79408631666667,-5.235000000000001 6.79408631666667,-5.035" data-type="line" data-label="" points="435.9181638930932,255.6956182922272 439.43398574699006,255.6956182922272 439.43398574699006,252.17979643833036" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-5.4350000000000005 6.79408631666667,-5.4350000000000005 6.79408631666667,-5.235000000000001" data-type="line" data-label="" points="435.9181638930932,259.211440146124 439.43398574699006,259.211440146124 439.43398574699006,255.6956182922272" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-5.635000000000002 6.79408631666667,-5.635000000000002 6.79408631666667,-5.4350000000000005" data-type="line" data-label="" points="435.9181638930932,262.7272620000208 439.43398574699006,262.7272620000208 439.43398574699006,259.211440146124" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-5.835000000000001 6.79408631666667,-5.835000000000001 6.79408631666667,-5.635000000000002" data-type="line" data-label="" points="435.9181638930932,266.24308385391765 439.43398574699006,266.24308385391765 439.43398574699006,262.7272620000208" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-6.035000000000002 6.79408631666667,-6.035000000000002 6.79408631666667,-5.835000000000001" data-type="line" data-label="" points="435.9181638930932,269.7589057078145 439.43398574699006,269.7589057078145 439.43398574699006,266.24308385391765" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-6.235000000000001 6.79408631666667,-6.235000000000001 6.79408631666667,-6.035000000000002" data-type="line" data-label="" points="435.9181638930932,273.2747275617113 439.43398574699006,273.2747275617113 439.43398574699006,269.7589057078145" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-6.435000000000002 6.79408631666667,-6.435000000000002 6.79408631666667,-6.235000000000001" data-type="line" data-label="" points="435.9181638930932,276.7905494156081 439.43398574699006,276.7905494156081 439.43398574699006,273.2747275617113" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-6.635000000000002 6.79408631666667,-6.635000000000002 6.79408631666667,-6.435000000000002" data-type="line" data-label="" points="435.9181638930932,280.3063712695049 439.43398574699006,280.3063712695049 439.43398574699006,276.7905494156081" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-6.835000000000002 6.79408631666667,-6.835000000000002 6.79408631666667,-6.635000000000002" data-type="line" data-label="" points="435.9181638930932,283.82219312340175 439.43398574699006,283.82219312340175 439.43398574699006,280.3063712695049" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.035000000000002 6.79408631666667,-7.035000000000002 6.79408631666667,-6.835000000000002" data-type="line" data-label="" points="435.9181638930932,287.3380149772986 439.43398574699006,287.3380149772986 439.43398574699006,283.82219312340175" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.235000000000001 6.79408631666667,-7.235000000000001 6.79408631666667,-7.035000000000002" data-type="line" data-label="" points="435.9181638930932,290.8538368311954 439.43398574699006,290.8538368311954 439.43398574699006,287.3380149772986" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.435000000000001 6.79408631666667,-7.435000000000001 6.79408631666667,-7.235000000000001" data-type="line" data-label="" points="435.9181638930932,294.3696586850922 439.43398574699006,294.3696586850922 439.43398574699006,290.8538368311954" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.635000000000002 6.79408631666667,-7.635000000000002 6.79408631666667,-7.435000000000001" data-type="line" data-label="" points="435.9181638930932,297.885480538989 439.43398574699006,297.885480538989 439.43398574699006,294.3696586850922" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 6.79408631666667,-7.835000000000002 6.79408631666667,-7.635000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 439.43398574699006,301.40130239288584 439.43398574699006,297.885480538989" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-2.0924999999999994 -12.730497016666666,-2.0924999999999994 -12.730497016666666,-2.2924999999999986 -12.930497016666665,-2.2924999999999986" data-type="line" data-label="" points="92.69338003527855,200.4532674128734 96.20920188917538,200.4532674128734 96.20920188917538,203.9690892667702 92.69338003527855,203.9690892667702" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-4.939663683333332,-6.289999999999999 -5.139663683333332,-6.289999999999999 -5.139663683333332,-5.889999999999999 -4.939663683333332,-5.889999999999999" data-type="line" data-label="" points="233.16511235618106,274.24157857153284 229.6492905022842,274.24157857153284 229.6492905022842,267.20993486373925 233.16511235618106,267.20993486373925" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-2.8424999999999994 -11.385497016666665,-2.8424999999999994 -11.385497016666665,-3.2824999999999998" data-type="line" data-label="" points="92.69338003527855,213.63759936498647 119.85310385663149,213.63759936498647 119.85310385663149,221.37240744355947" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.0490863166666697,-8.889999999999997 3.0490863166666697,-8.689999999999998 2.5240863166666694,-8.689999999999998 2.5240863166666694,-6.879999999999999 3.0490863166666697,-6.879999999999999 3.0490863166666697,-7.079999999999999" data-type="line" data-label="" points="373.6002215327721,319.94726267219147 373.6002215327721,316.4314408182947 364.37118916629294,316.4314408182947 364.37118916629294,284.6132530405285 373.6002215327721,284.6132530405285 373.6002215327721,288.1290748944253" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-3.134999999999999 3.2115863166666694,-3.134999999999999 3.2115863166666694,-3.254999999999999" data-type="line" data-label="" points="400.759945354125,218.77948882631057 376.45682678906326,218.77948882631057 376.45682678906326,220.88898193864864" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.7065863166666695,-3.254999999999999 1.7065863166666695,-3.134999999999999 3.2115863166666694,-3.134999999999999" data-type="line" data-label="" points="350.0002673384897,220.88898193864864 350.0002673384897,218.77948882631057 376.45682678906326,218.77948882631057" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-13.912997016666665,-8.217500000000001 -13.912997016666665,-8.0975 -15.477997016666666,-8.0975 -15.477997016666666,-8.217500000000001" data-type="line" data-label="" points="75.42190517801043,308.1253116884635 75.42190517801043,306.0158185761254 47.91059917126779,306.0158185761254 47.91059917126779,308.1253116884635" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-8.0975 -13.912997016666665,-8.0975 -13.912997016666665,-8.217500000000001" data-type="line" data-label="" points="99.7250237430722,306.0158185761254 75.42190517801043,306.0158185761254 75.42190517801043,308.1253116884635" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="15.56854166666667,-4.1425 15.56854166666667,-3.892499999999999 14.00408631666667,-3.892499999999999" data-type="line" data-label="" points="593.6810951248493,236.4904414153158 593.6810951248493,232.09566409794476 566.1793635799704,232.09566409794476" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="15.56854166666667,-6.2924999999999995 15.56854166666667,-6.092499999999999 14.78631399166667,-6.092499999999999 14.78631399166667,-6.2924999999999995 14.00408631666667,-6.2924999999999995" data-type="line" data-label="" points="593.6810951248493,274.28552634470657 593.6810951248493,270.7697044908098 579.9302293524099,270.7697044908098 579.9302293524099,274.28552634470657 566.1793635799704,274.28552634470657" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.594086316666669,-7.135 3.8215863166666697,-7.135 3.8215863166666697,-7.879999999999999 3.0490863166666697,-7.879999999999999 3.0490863166666697,-7.679999999999999" data-type="line" data-label="" points="400.759945354125,289.09592590424694 387.18008344344855,289.09592590424694 387.18008344344855,302.1923623100126 373.6002215327721,302.1923623100126 373.6002215327721,298.67654045611573" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.2675,-15.354999999999997 -3.2675,-15.154999999999998 -3.067500000000001,-15.154999999999998 -3.067500000000001,-13.814999999999998 -3.2675,-13.814999999999998" data-type="line" data-label="" points="262.56026046196064,433.5962040994061 262.56026046196064,430.0803822455093 266.0760823158575,430.0803822455093 266.0760823158575,406.52437582440064 262.56026046196064,406.52437582440064" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.9396636833333316,-5.989999999999999 -2.7396636833333314,-5.989999999999999 -2.7396636833333314,-4.3199999999999985 -5.035497016666666,-4.3199999999999985 -5.035497016666666,-4.519999999999999" data-type="line" data-label="" points="268.32333089514924,268.96784579068765 271.83915274904604,268.96784579068765 271.83915274904604,239.6107333106492 231.48044771785547,239.6107333106492 231.48044771785547,243.126555164546" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.00408631666667,-6.3925 9.994086316666671,-6.3925 9.994086316666671,-5.092499999999999 10.19408631666667,-5.092499999999999" data-type="line" data-label="" points="531.0211450410022,276.043437271655 495.68713540933913,276.043437271655 495.68713540933913,253.19059522132568 499.20295726323593,253.19059522132568" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.9853363166666691,-5.9075 0.9853363166666691,-6.1075 1.9865863166666688,-6.1075 1.9865863166666688,-5.0275 2.9878363166666695,-5.0275 2.9878363166666695,-5.2275" data-type="line" data-label="" points="337.3213347778743,267.5175692759552 337.3213347778743,271.033391129852 354.9224179339452,271.033391129852 354.9224179339452,252.04795311880923 372.5235010900162,252.04795311880923 372.5235010900162,255.56377497270603" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.0490863166666697,-1.5 3.0490863166666697,-1.3 2.4590863166666694,-1.3 2.4590863166666694,-3.134999999999999" data-type="line" data-label="" points="373.6002215327721,190.03764517070408 373.6002215327721,186.52182331680726 363.2285470637765,186.52182331680726 363.2285470637765,218.77948882631057" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-5.334999999999999 4.013086316666669,-5.334999999999997 4.013086316666669,-4.734999999999999" data-type="line" data-label="" points="400.759945354125,257.45352921917555 390.5464828685548,257.45352921917555 390.5464828685548,246.9060636574851" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.013086316666669,-2.934999999999999 4.013086316666669,-4.7349999999999985 4.59408631666667,-4.7349999999999985" data-type="line" data-label="" points="390.5464828685548,215.26366697241374 390.5464828685548,246.9060636574851 400.759945354125,246.9060636574851" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-14.2875 2.4385,-14.2875 2.4385,-16.287499999999998 4.9685,-16.287499999999998 4.9685,-14.2875 4.2675,-14.2875" data-type="line" data-label="" points="352.65319546806666,414.8305049542319 362.8666579536369,414.8305049542319 362.8666579536369,449.98872349320004 407.3418044054316,449.98872349320004 407.3418044054316,414.8305049542319 395.01884880752334,414.8305049542319" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-7.4975 -13.371497016666664,-7.4975 -13.371497016666664,-7.5485" data-type="line" data-label="" points="99.7250237430722,295.4683530144349 84.94099284743609,295.4683530144349 84.94099284743609,296.3648875871786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.59408631666667,-7.835000000000002 7.08408631666667,-7.835000000000002" data-type="line" data-label="" points="435.9181638930932,301.40130239288584 444.5319274351404,301.40130239288584" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.730497016666666,-2.0924999999999994 -12.380497016666665,-2.0924999999999994 -12.380497016666665,-2.0914999999999995" data-type="line" data-label="" points="96.20920188917538,200.4532674128734 102.36189013349482,200.4532674128734 102.36189013349482,200.4356883036039" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5.139663683333332,-5.889999999999999 -5.417997016666666,-5.889999999999999 -5.417997016666666,-5.999999999999998 -6.097997016666666,-5.999999999999998 -6.097997016666666,-5.889999999999999 -6.789663683333332,-5.889999999999999" data-type="line" data-label="" points="229.6492905022842,267.20993486373925 224.7564384222778,267.20993486373925 224.7564384222778,269.14363688338244 212.80264411902863,269.14363688338244 212.80264411902863,267.20993486373925 200.64376020763547,267.20993486373925" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-14.087499999999999 4.5685,-14.087499999999999 4.5685,-13.8865" data-type="line" data-label="" points="395.01884880752334,411.31468310033506 400.310160697638,411.31468310033506 400.310160697638,407.7812821371688" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.530497016666665,-7.4975 -10.229497016666665,-7.4975 -10.229497016666665,-7.296499999999999" data-type="line" data-label="" points="134.88324228204038,295.4683530144349 140.1745541721551,295.4683530144349 140.1745541721551,291.9349520512686" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-14.087499999999999 2.1585,-14.087499999999999 2.1585,-13.8865" data-type="line" data-label="" points="352.65319546806666,411.31468310033506 357.94450735818134,411.31468310033506 357.94450735818134,407.7812821371688" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-2.642499999999999 -12.170497016666666,-2.642499999999999" data-type="line" data-label="" points="92.69338003527855,210.12177751108965 106.05350308008647,210.12177751108965" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.385497016666665,-5.092499999999999 -11.385497016666665,-4.4925" data-type="line" data-label="" points="119.85310385663149,253.19059522132568 119.85310385663149,242.64312965963524" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-3.7924999999999995 -12.170497016666666,-3.7924999999999995" data-type="line" data-label="" points="92.69338003527855,230.33775317099634 106.05350308008647,230.33775317099634" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-3.5924999999999994 -12.170497016666666,-3.5924999999999994" data-type="line" data-label="" points="92.69338003527855,226.82193131709954 106.05350308008647,226.82193131709954" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-8.4975 -13.290497016666665,-8.4975" data-type="line" data-label="" points="99.7250237430722,313.047462283919 86.36490069826431,313.047462283919" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-3.192499999999999 -12.170497016666666,-3.192499999999999" data-type="line" data-label="" points="92.69338003527855,219.7902876093059 106.05350308008647,219.7902876093059" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.930497016666665,-3.3925 -12.170497016666666,-3.3925" data-type="line" data-label="" points="92.69338003527855,223.30610946320274 106.05350308008647,223.30610946320274" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-8.2975 -13.290497016666665,-8.2975" data-type="line" data-label="" points="99.7250237430722,309.5316404300222 86.36490069826431,309.5316404300222" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-7.6975 -13.130497016666665,-7.6975" data-type="line" data-label="" points="99.7250237430722,298.9841748683317 89.17755818138176,298.9841748683317" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-8.535000000000002 3.9940863166666696,-8.535000000000002" data-type="line" data-label="" points="400.759945354125,313.7066788815247 390.2124797924346,313.7066788815247" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-14.8875 4.8675,-14.8875" data-type="line" data-label="" points="395.01884880752334,425.37797051592236 405.5663143692137,425.37797051592236" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.530497016666665,-7.8975 -13.130497016666665,-7.8975" data-type="line" data-label="" points="99.7250237430722,302.49999672222856 89.17755818138176,302.49999672222856" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-8.735000000000001 3.9940863166666696,-8.735000000000001" data-type="line" data-label="" points="400.759945354125,317.2225007354215 390.2124797924346,317.2225007354215" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-14.687499999999998 4.8675,-14.687499999999998" data-type="line" data-label="" points="395.01884880752334,421.8621486620255 405.5663143692137,421.8621486620255" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.530497016666665,-8.0975 -9.930497016666665,-8.0975" data-type="line" data-label="" points="134.88324228204038,306.0158185761254 145.43070784373083,306.0158185761254" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.530497016666665,-7.8975 -9.930497016666665,-7.8975" data-type="line" data-label="" points="134.88324228204038,302.49999672222856 145.43070784373083,302.49999672222856" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.00408631666667,-3.9924999999999993 11.16408631666667,-3.9924999999999993" data-type="line" data-label="" points="531.0211450410022,233.8535750248932 516.2546932546355,233.8535750248932" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.19408631666667,-6.972499999999999 9.59408631666667,-6.972499999999999" data-type="line" data-label="" points="499.20295726323593,286.23932064795576 488.65549170154554,286.23932064795576" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-3.5349999999999993 4.063086316666669,-3.5349999999999993" data-type="line" data-label="" points="400.759945354125,225.8111325341042 391.425438332029,225.8111325341042" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.0490863166666697,-2.0999999999999996 3.0490863166666697,-2.6999999999999997" data-type="line" data-label="" points="373.6002215327721,200.58511073239453 373.6002215327721,211.132576294085" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-14.8875 2.3884999999999996,-14.8875" data-type="line" data-label="" points="352.65319546806666,425.37797051592236 361.9877024901627,425.37797051592236" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-4.134999999999999 4.063086316666669,-4.134999999999999" data-type="line" data-label="" points="400.759945354125,236.35859809579466 391.425438332029,236.35859809579466" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-14.487499999999999 4.8675,-14.487499999999999" data-type="line" data-label="" points="395.01884880752334,418.3463268081287 405.5663143692137,418.3463268081287" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-5.734999999999999 3.9940863166666696,-5.734999999999999" data-type="line" data-label="" points="400.759945354125,264.4851729269692 390.2124797924346,264.4851729269692" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.8674999999999997,-13.814999999999998 -4.467499999999999,-13.814999999999998" data-type="line" data-label="" points="252.01279490027022,406.52437582440064 241.46532933857975,406.52437582440064" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-15.487499999999999 4.8675,-15.487499999999999" data-type="line" data-label="" points="395.01884880752334,435.9254360776128 405.5663143692137,435.9254360776128" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-6.9350000000000005 3.9940863166666696,-6.9350000000000005" data-type="line" data-label="" points="400.759945354125,285.58010405035014 390.2124797924346,285.58010405035014" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.0490863166666697,-9.489999999999998 3.0490863166666697,-10.089999999999998" data-type="line" data-label="" points="373.6002215327721,330.4947282338819 373.6002215327721,341.0421937955724" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-15.8875 4.8675,-15.8875" data-type="line" data-label="" points="395.01884880752334,442.95707978540645 405.5663143692137,442.95707978540645" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-15.687499999999998 4.8675,-15.687499999999998" data-type="line" data-label="" points="395.01884880752334,439.4412579315096 405.5663143692137,439.4412579315096" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-3.734999999999999 4.063086316666669,-3.734999999999999" data-type="line" data-label="" points="400.759945354125,229.326954388001 391.425438332029,229.326954388001" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-15.087499999999999 2.3884999999999996,-15.087499999999999" data-type="line" data-label="" points="352.65319546806666,428.89379236981915 361.9877024901627,428.89379236981915" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-4.934999999999999 4.063086316666669,-4.934999999999999" data-type="line" data-label="" points="400.759945354125,250.4218855113819 391.425438332029,250.4218855113819" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-14.487499999999999 2.3884999999999996,-14.487499999999999" data-type="line" data-label="" points="352.65319546806666,418.3463268081287 361.9877024901627,418.3463268081287" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-5.134999999999999 4.063086316666669,-5.134999999999999" data-type="line" data-label="" points="400.759945354125,253.93770736527875 391.425438332029,253.93770736527875" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-14.687499999999998 2.3884999999999996,-14.687499999999998" data-type="line" data-label="" points="352.65319546806666,421.8621486620255 361.9877024901627,421.8621486620255" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-6.135 3.9940863166666696,-6.135" data-type="line" data-label="" points="400.759945354125,271.51681663476285 390.2124797924346,271.51681663476285" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-15.287499999999998 2.3884999999999996,-15.287499999999998" data-type="line" data-label="" points="352.65319546806666,432.40961422371595 361.9877024901627,432.40961422371595" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-6.335 3.9940863166666696,-6.335" data-type="line" data-label="" points="400.759945354125,275.0326384886597 390.2124797924346,275.0326384886597" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-15.487499999999999 2.3884999999999996,-15.487499999999999" data-type="line" data-label="" points="352.65319546806666,435.9254360776128 361.9877024901627,435.9254360776128" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-6.535 3.9940863166666696,-6.535" data-type="line" data-label="" points="400.759945354125,278.5484603425565 390.2124797924346,278.5484603425565" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-15.687499999999998 2.3884999999999996,-15.687499999999998" data-type="line" data-label="" points="352.65319546806666,439.4412579315096 361.9877024901627,439.4412579315096" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-6.734999999999999 3.9940863166666696,-6.734999999999999" data-type="line" data-label="" points="400.759945354125,282.0642821964533 390.2124797924346,282.0642821964533" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.8575000000000004,-15.8875 2.3884999999999996,-15.8875" data-type="line" data-label="" points="352.65319546806666,442.95707978540645 361.9877024901627,442.95707978540645" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-7.735000000000001 3.9940863166666696,-7.735000000000001" data-type="line" data-label="" points="400.759945354125,299.6433914659374 390.2124797924346,299.6433914659374" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-15.287499999999998 4.8675,-15.287499999999998" data-type="line" data-label="" points="395.01884880752334,432.40961422371595 405.5663143692137,432.40961422371595" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.59408631666667,-7.9350000000000005 3.9940863166666696,-7.9350000000000005" data-type="line" data-label="" points="400.759945354125,303.15921331983424 390.2124797924346,303.15921331983424" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.2675,-15.087499999999999 4.8675,-15.087499999999999" data-type="line" data-label="" points="395.01884880752334,428.89379236981915 405.5663143692137,428.89379236981915" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.00408631666667,-3.792499999999999 11.16408631666667,-3.792499999999999" data-type="line" data-label="" points="531.0211450410022,230.33775317099634 516.2546932546355,230.33775317099634" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.794086316666672,-5.092499999999999 11.634086316666671,-5.092499999999999" data-type="line" data-label="" points="509.75042282492643,253.19059522132568 524.5168746112931,253.19059522132568" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.00408631666667,-6.192499999999999 11.00408631666667,-6.192499999999999" data-type="line" data-label="" points="531.0211450410022,272.52761541775817 513.442035771518,272.52761541775817" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.794086316666672,-6.972499999999999 11.794086316666672,-6.972499999999999" data-type="line" data-label="" points="509.75042282492643,286.23932064795576 527.3295320944105,286.23932064795576" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-13.930497016666665" data-y="-3.892499999999999" x="57.535161496310366" y="196.93744555897655" width="35.158218538968185" height="70.31643707793643" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-11.530497016666665" data-y="-8.1975" x="99.7250237430722" y="291.9525311605381" width="35.158218538968185" height="31.64239668507139" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-3.9396636833333316" data-y="-6.089999999999999" x="233.16511235618106" y="265.45202393679085" width="35.158218538968185" height="10.547465561690387" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="5.59408631666667" data-y="-5.735" x="400.759945354125" y="209.98993419156852" width="35.158218538968185" height="108.99047747080135" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="13.00408631666667" data-y="-3.892499999999999" x="531.0211450410021" y="228.57984224404794" width="35.158218538968185" height="7.0316437077936484" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="13.00408631666667" data-y="-6.2924999999999995" x="531.0211450410021" y="270.7697044908098" width="35.158218538968185" height="7.0316437077936484" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="15.56854166666667" data-y="-6.762499999999999" x="587.3621902496986" y="274.28552634470657" width="12.637809750301358" height="16.524362713315043" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="15.56854166666667" data-y="-4.6125" x="587.3621902496986" y="236.49044141531581" width="12.637809750301358" height="16.524362713315043" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="-3.0300000000000002" data-y="-15.919999999999998" x="256.8470499493783" y="433.5962040994061" width="19.77649792816959" height="19.8643934745171" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="-11.167997016666664" data-y="-5.3925" x="114.13989334404917" y="253.19059522132568" width="19.073333557390242" height="10.547465561690501" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="-11.167997016666664" data-y="-3.5824999999999996" x="114.13989334404917" y="221.37240744355944" width="19.073333557390242" height="10.547465561690473" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="1.142836316666669" data-y="-5.6075" x="331.60812426529196" y="256.9701037142647" width="16.963840445052142" height="10.547465561690444" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="3.2065863166666695" data-y="-7.379999999999999" x="367.8870110201898" y="288.12907489442534" width="16.963840445052142" height="10.547465561690444" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="3.2065863166666695" data-y="-9.189999999999998" x="367.8870110201898" y="319.9472626721915" width="16.963840445052142" height="10.547465561690444" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="3.2065863166666695" data-y="-1.7999999999999998" x="367.8870110201898" y="190.03764517070408" width="16.963840445052142" height="10.547465561690444" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="10.494086316666671" data-y="-5.092499999999999" x="499.202957263236" y="247.21369806970108" width="10.547465561690501" height="11.953794303249197" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="10.494086316666671" data-y="-6.972499999999999" x="499.202957263236" y="280.26242349633117" width="10.547465561690501" height="11.953794303249197" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="-3.5675" data-y="-13.814999999999998" x="252.01279490027025" y="400.54747867277604" width="10.547465561690416" height="11.953794303249197" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="-6.407997016666665" data-y="-4.899999999999999" x="198.1680356521831" y="243.12655516454598" width="18.370169186610894" height="13.360123044807949" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="-4.962997016666666" data-y="-4.899999999999999" x="223.5698485465876" y="243.12655516454598" width="18.370169186610923" height="13.360123044807949" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="1.7790863166666693" data-y="-3.634999999999999" x="342.0896681672218" y="220.88898193864867" width="18.370169186610894" height="13.36012304480792" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="3.3440863166666697" data-y="-3.634999999999999" x="368.54622761779547" y="220.88898193864867" width="20.479662298948995" height="13.36012304480792" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="3.000336316666669" data-y="-5.6075" x="364.6129019187483" y="255.56377497270603" width="16.260676074272794" height="13.360123044807892" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="-15.345497016666666" data-y="-8.5975" x="40" y="308.12531168846346" width="20.479662298948938" height="13.360123044807892" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="-13.780497016666665" data-y="-8.5975" x="67.51130600674261" y="308.12531168846346" width="20.479662298948938" height="13.360123044807892" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="1.2575000000000003" data-y="-14.987499999999999" x="331.55826434468577" y="407.79886124643826" width="21.094931123380945" height="38.67404039286498" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="3.6675000000000004" data-y="-14.987499999999999" x="373.92391768414234" y="407.79886124643826" width="21.094931123380945" height="38.67404039286498" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="TYPE-C 16PIN 2MD(073)" data-x="-13.270497016666665" data-y="-6.022499999999999" x="64.56680520410403" y="267.95704700769227" width="44.299355359099906" height="3.1642396685071503" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="J1" data-x="-14.410497016666664" data-y="-1.7774999999999985" x="63.51205864793499" y="192.7184593343004" width="6.328479337014244" height="4.394777317371023" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="CH340C" data-x="-11.770497016666663" data-y="-9.2275" x="106.75666745086589" y="324.2980922163888" width="12.656958674028516" height="3.1642396685071503" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="U2" data-x="-12.010497016666665" data-y="-7.182499999999999" x="105.70192089469678" y="287.7335449358619" width="6.328479337014272" height="4.394777317370995" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="AP2112K-3.3TRG1" data-x="-3.6396636833333322" data-y="-6.519999999999999" x="240.19675606397465" y="276.70265386926064" width="31.64239668507139" height="3.1642396685070935" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="U3" data-x="-4.419663683333332" data-y="-5.674999999999999" x="239.1420095078056" y="261.23303771211465" width="6.328479337014272" height="4.394777317370995" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="ESP32-C3-MINI-1-H4X" data-x="6.134086316666669" data-y="-8.965" x="407.79158906191867" y="319.6835760331493" width="40.08036913442368" height="3.1642396685070935" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="U1" data-x="5.114086316666669" data-y="-2.5200000000000005" x="406.7368425057497" y="205.77094796689238" width="6.328479337014244" height="4.394777317371023" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="MMBT3904" data-x="12.884086316666671" data-y="-4.222499999999999" x="538.0527887487958" y="236.31465032262093" width="16.8759448987048" height="3.1642396685071503" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="Q1" data-x="12.524086316666672" data-y="-3.577499999999999" x="536.9980421926268" y="224.36085601937174" width="6.328479337014187" height="4.394777317371052" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="MMBT3904" data-x="12.884086316666671" data-y="-6.6225" x="538.0527887487958" y="278.50451256938277" width="16.8759448987048" height="3.1642396685071503" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="Q2" data-x="12.524086316666672" data-y="-5.977499999999999" x="536.9980421926268" y="266.5507182661336" width="6.328479337014187" height="4.394777317371052" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="J2" data-x="1.1775000000000002" data-y="-13.772499999999999" x="337.5351614963103" y="403.57987502176206" width="6.328479337014301" height="4.394777317371052" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="J3" data-x="3.5875000000000004" data-y="-13.772499999999999" x="379.90081483576705" y="403.57987502176206" width="6.328479337014244" height="4.394777317371052" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
4
+ globalConnNetId: connectivity_net0" data-x="-11.385497016666665" data-y="-6.102500000000001" x="115.6341176319553" y="267.253882636913" width="8.437972449352372" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
5
+ globalConnNetId: connectivity_net0" data-x="-13.371497016666664" data-y="-7.7585" x="80.7220066227599" y="296.36488758717866" width="8.437972449352372" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
6
+ globalConnNetId: connectivity_net0" data-x="-5.757997016666666" data-y="-5.689999999999999" x="214.56055504597703" y="260.00250006325075" width="8.437972449352372" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
7
+ globalConnNetId: connectivity_net0" data-x="7.08408631666667" data-y="-8.045000000000002" x="440.31294121046426" y="301.4013023928858" width="8.437972449352344" height="7.383225893183351" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
8
+ globalConnNetId: connectivity_net0" data-x="1.7065863166666695" data-y="-4.9449999999999985" x="345.7812811138135" y="246.9060636574851" width="8.4379724493524" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
9
+ globalConnNetId: connectivity_net0" data-x="15.56854166666667" data-y="-7.642499999999998" x="589.4621089001731" y="294.3257109119184" width="8.4379724493524" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
10
+ globalConnNetId: connectivity_net0" data-x="-3.2675" data-y="-16.696" x="258.34127423728444" y="453.4781766831927" width="8.437972449352344" height="7.383225893183351" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
11
+ globalConnNetId: connectivity_net0" data-x="2.987836316666669" data-y="-6.1985" x="368.30451486534" y="268.9414771267834" width="8.437972449352344" height="7.383225893183351" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
12
+ globalConnNetId: connectivity_net0" data-x="-13.912997016666665" data-y="-9.3875" x="71.20291895333425" y="325.0012565871682" width="8.437972449352372" height="7.383225893183294" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: GND
13
+ globalConnNetId: connectivity_net0" data-x="2.4385" data-y="-16.4975" x="358.64767172896074" y="449.98872349320004" width="8.437972449352344" height="7.383225893183351" fill="#00000066" stroke="#000000" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: VBUS
14
+ globalConnNetId: connectivity_net1" data-x="-12.380497016666665" data-y="-1.8814999999999995" x="97.08815735264957" y="193.05246241042062" width="10.547465561690501" height="7.383225893183322" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: VBUS
15
+ globalConnNetId: connectivity_net1" data-x="-6.789663683333332" data-y="-5.679999999999999" x="195.37002742679024" y="259.82670897055584" width="10.547465561690444" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: VBUS
16
+ globalConnNetId: connectivity_net1" data-x="-6.480497016666665" data-y="-4.308999999999998" x="200.8049020426057" y="235.72575016209322" width="10.547465561690473" height="7.383225893183294" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: VBUS
17
+ globalConnNetId: connectivity_net1" data-x="4.5685" data-y="-13.676499999999999" x="395.03642791679283" y="400.3980562439855" width="10.547465561690387" height="7.383225893183294" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
18
+ globalConnNetId: connectivity_net8" data-x="-13.912997016666665" data-y="-7.8875" x="70.1481723971652" y="298.632592682942" width="10.547465561690473" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
19
+ globalConnNetId: connectivity_net8" data-x="-10.229497016666665" data-y="-7.086499999999999" x="134.90082139130988" y="284.5517261580852" width="10.547465561690473" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
20
+ globalConnNetId: connectivity_net8" data-x="-5.035497016666666" data-y="-4.1099999999999985" x="226.20671493701025" y="232.22750741746586" width="10.547465561690444" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
21
+ globalConnNetId: connectivity_net8" data-x="3.0490863166666697" data-y="-1.09" x="368.32648875192683" y="179.13859742362393" width="10.547465561690444" height="7.383225893183322" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
22
+ globalConnNetId: connectivity_net8" data-x="0.9853363166666691" data-y="-5.0965" x="332.0476019970291" y="249.56929871181194" width="10.547465561690444" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
23
+ globalConnNetId: connectivity_net8" data-x="3.0490863166666697" data-y="-6.669999999999999" x="368.32648875192683" y="277.23002714734514" width="10.547465561690444" height="7.383225893183351" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="netId: V3V3
24
+ globalConnNetId: connectivity_net8" data-x="2.1585" data-y="-13.676499999999999" x="352.67077457733615" y="400.3980562439855" width="10.547465561690444" height="7.383225893183294" fill="#ef444466" stroke="#ef4444" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: CC1
25
+ axis: x
26
+ side: y+" data-x="-12.630497016666666" data-y="-2.5324999999999993" x="95.15445533300633" y="207.13332893527735" width="5.625314966234896" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: CC1
27
+ axis: y
28
+ side: x-" data-x="-11.495497016666665" data-y="-4.7924999999999995" x="116.86465528081919" y="245.10420495736298" width="2.1094931123381" height="5.625314966234924" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DM
29
+ axis: x
30
+ side: y+" data-x="-12.550497016666665" data-y="-3.6824999999999997" x="94.45129096222699" y="227.34930459518404" width="9.844301190911068" height="2.109493112338072" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DM
31
+ axis: x
32
+ side: y+" data-x="-12.550497016666665" data-y="-3.4824999999999995" x="94.45129096222699" y="223.83348274128724" width="9.844301190911068" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DM
33
+ axis: x
34
+ side: y+" data-x="-12.910497016666664" data-y="-8.387500000000001" x="88.12281162521272" y="310.05901370810676" width="9.844301190911068" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DP
35
+ axis: x
36
+ side: y+" data-x="-12.550497016666665" data-y="-3.082499999999999" x="94.45129096222699" y="216.8018390334936" width="9.844301190911068" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DP
37
+ axis: x
38
+ side: y+" data-x="-12.550497016666665" data-y="-3.2825" x="94.45129096222699" y="220.31766088739045" width="9.844301190911068" height="2.109493112338072" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_DP
39
+ axis: x
40
+ side: y+" data-x="-12.910497016666664" data-y="-8.1875" x="88.12281162521272" y="306.5431918542099" width="9.844301190911068" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO20
41
+ axis: x
42
+ side: y+" data-x="-12.830497016666666" data-y="-7.5874999999999995" x="90.93546910833017" y="295.99572629251946" width="7.03164370779362" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO20
43
+ axis: x
44
+ side: y+" data-x="4.29408631666667" data-y="-8.425000000000002" x="391.970390719383" y="310.71823030571244" width="7.0316437077936484" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO20
45
+ axis: x
46
+ side: y+" data-x="4.5675" data-y="-14.7775" x="396.77675973447174" y="422.38952194011006" width="7.031643707793592" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO21
47
+ axis: x
48
+ side: y+" data-x="-12.830497016666666" data-y="-7.7875" x="90.93546910833017" y="299.51154814641626" width="7.03164370779362" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO21
49
+ axis: x
50
+ side: y+" data-x="4.29408631666667" data-y="-8.625000000000002" x="391.970390719383" y="314.2340521596092" width="7.0316437077936484" height="2.109493112338157" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO21
51
+ axis: x
52
+ side: y+" data-x="4.5675" data-y="-14.577499999999999" x="396.77675973447174" y="418.8737000862132" width="7.031643707793592" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: DTR
53
+ axis: x
54
+ side: y+" data-x="-10.230497016666664" data-y="-7.9875" x="137.3443175797682" y="303.0273700003131" width="5.625314966234924" height="2.1094931123380434" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: DTR
55
+ axis: x
56
+ side: y+" data-x="10.99908631666667" data-y="-6.2825" x="510.54148274205323" y="273.0549886958428" width="5.625314966234896" height="2.1094931123380434" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: RTS
57
+ axis: x
58
+ side: y+" data-x="-10.230497016666664" data-y="-7.7875" x="137.3443175797682" y="299.51154814641626" width="5.625314966234924" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: RTS
59
+ axis: x
60
+ side: y+" data-x="11.704086316666672" data-y="-3.8824999999999994" x="522.9347547770396" y="230.8651264490809" width="5.625314966234896" height="2.109493112338072" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: RTS
61
+ axis: x
62
+ side: y+" data-x="9.89408631666667" data-y="-6.862499999999999" x="491.11656699927323" y="283.25087207214347" width="5.625314966234953" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO2
63
+ axis: x
64
+ side: y+" data-x="4.328586316666669" data-y="-3.4249999999999994" x="393.2800343599595" y="222.82268395829192" width="5.625314966234953" height="2.109493112338072" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO2
65
+ axis: y
66
+ side: x-" data-x="2.93908631666667" data-y="-2.3999999999999995" x="370.61177295695984" y="203.04618603012227" width="2.1094931123380434" height="5.625314966234924" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO2
67
+ axis: x
68
+ side: y+" data-x="2.123" data-y="-14.7775" x="354.5077914959972" y="422.38952194011006" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: EN
69
+ axis: x
70
+ side: y+" data-x="4.328586316666669" data-y="-4.024999999999999" x="393.9831987307389" y="233.37014951998236" width="4.2189862246762" height="2.109493112338072" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: EN
71
+ axis: x
72
+ side: y+" data-x="14.78631399166667" data-y="-3.7824999999999993" x="577.8207362400718" y="229.10721552213246" width="4.2189862246762" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: EN
73
+ axis: y
74
+ side: x-" data-x="1.8765863166666688" data-y="-5.5675" x="351.933969358133" y="259.4311790119925" width="2.1094931123380434" height="4.2189862246762" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: EN
75
+ axis: x
76
+ side: y+" data-x="4.5675" data-y="-14.3775" x="398.18308847603043" y="415.35787823231635" width="4.2189862246762" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO10
77
+ axis: x
78
+ side: y+" data-x="4.29408631666667" data-y="-5.624999999999999" x="391.970390719383" y="261.4967243511569" width="7.0316437077936484" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO10
79
+ axis: x
80
+ side: y+" data-x="-4.1674999999999995" data-y="-13.704999999999998" x="243.2232402655282" y="403.5359272485884" width="7.03164370779362" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO10
81
+ axis: x
82
+ side: y+" data-x="4.5675" data-y="-15.3775" x="396.77675973447174" y="432.9369875018005" width="7.031643707793592" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO8
83
+ axis: x
84
+ side: y+" data-x="4.29408631666667" data-y="-6.825" x="392.6735550901623" y="282.5916554745379" width="5.625314966234896" height="2.1094931123380434" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO8
85
+ axis: y
86
+ side: x-" data-x="2.93908631666667" data-y="-9.79" x="370.61177295695984" y="332.9558035316098" width="2.1094931123380434" height="5.625314966234896" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO8
87
+ axis: x
88
+ side: y+" data-x="4.5675" data-y="-15.7775" x="397.4799241052511" y="439.96863120959415" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO9
89
+ axis: x
90
+ side: y+" data-x="3.4353363166666697" data-y="-7.769999999999999" x="377.5774950049929" y="299.20391373420034" width="5.625314966234896" height="2.1094931123380434" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO9
91
+ axis: x
92
+ side: y+" data-x="15.177427829166671" data-y="-5.982499999999999" x="583.9930047555122" y="267.7812559149975" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO9
93
+ axis: x
94
+ side: y+" data-x="4.5675" data-y="-15.577499999999999" x="397.4799241052511" y="436.45280935569724" width="5.625314966234896" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: CC2
95
+ axis: x
96
+ side: y+" data-x="-12.157997016666666" data-y="-2.7324999999999995" x="103.46058446283753" y="210.64915078917417" width="5.625314966234924" height="2.1094931123381" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO3
97
+ axis: x
98
+ side: y+" data-x="4.328586316666669" data-y="-3.624999999999999" x="393.2800343599595" y="226.3385058121887" width="5.625314966234953" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO3
99
+ axis: x
100
+ side: y+" data-x="2.123" data-y="-14.9775" x="354.5077914959972" y="425.90534379400685" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO0
101
+ axis: x
102
+ side: y+" data-x="4.328586316666669" data-y="-4.824999999999998" x="393.2800343599595" y="247.4334369355696" width="5.625314966234953" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO0
103
+ axis: x
104
+ side: y+" data-x="2.123" data-y="-14.3775" x="354.5077914959972" y="415.35787823231635" width="5.625314966234896" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO1
105
+ axis: x
106
+ side: y+" data-x="4.328586316666669" data-y="-5.024999999999999" x="393.2800343599595" y="250.94925878946646" width="5.625314966234953" height="2.109493112338072" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO1
107
+ axis: x
108
+ side: y+" data-x="2.123" data-y="-14.577499999999999" x="354.5077914959972" y="418.8737000862132" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO4
109
+ axis: x
110
+ side: y+" data-x="4.29408631666667" data-y="-6.0249999999999995" x="392.6735550901623" y="268.52836805895055" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO4
111
+ axis: x
112
+ side: y+" data-x="2.123" data-y="-15.177499999999998" x="354.5077914959972" y="429.42116564790365" width="5.625314966234896" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO5
113
+ axis: x
114
+ side: y+" data-x="4.29408631666667" data-y="-6.225" x="392.6735550901623" y="272.0441899128474" width="5.625314966234896" height="2.1094931123380434" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO5
115
+ axis: x
116
+ side: y+" data-x="2.123" data-y="-15.3775" x="354.5077914959972" y="432.9369875018005" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO6
117
+ axis: x
118
+ side: y+" data-x="4.29408631666667" data-y="-6.425" x="392.6735550901623" y="275.5600117667442" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO6
119
+ axis: x
120
+ side: y+" data-x="2.123" data-y="-15.577499999999999" x="354.5077914959972" y="436.45280935569724" width="5.625314966234896" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO7
121
+ axis: x
122
+ side: y+" data-x="4.29408631666667" data-y="-6.624999999999999" x="392.6735550901623" y="279.075833620641" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO7
123
+ axis: x
124
+ side: y+" data-x="2.123" data-y="-15.7775" x="354.5077914959972" y="439.96863120959415" width="5.625314966234896" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO18
125
+ axis: x
126
+ side: y+" data-x="4.29408631666667" data-y="-7.625000000000001" x="391.970390719383" y="296.65494289012514" width="7.0316437077936484" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO18
127
+ axis: x
128
+ side: y+" data-x="4.5675" data-y="-15.177499999999998" x="396.77675973447174" y="429.42116564790365" width="7.031643707793592" height="2.109493112338157" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO19
129
+ axis: x
130
+ side: y+" data-x="4.29408631666667" data-y="-7.825" x="391.970390719383" y="300.170764744022" width="7.0316437077936484" height="2.1094931123380434" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: IO19
131
+ axis: x
132
+ side: y+" data-x="4.5675" data-y="-14.9775" x="396.77675973447174" y="425.90534379400685" width="7.031643707793592" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: BASE_EN
133
+ axis: x
134
+ side: y+" data-x="11.58408631666667" data-y="-3.682499999999999" x="518.0126041815838" y="227.34930459518404" width="11.250629932469906" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: BASE_EN
135
+ axis: x
136
+ side: y+" data-x="11.214086316666672" data-y="-4.982499999999999" x="511.5083337518748" y="250.20214664551338" width="11.250629932469906" height="2.109493112338072" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: BASE_BOOT
137
+ axis: x
138
+ side: y+" data-x="11.50408631666667" data-y="-6.082499999999999" x="515.1999466984664" y="269.53916684194587" width="14.06328741558741" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: BASE_BOOT
139
+ axis: x
140
+ side: y+" data-x="11.294086316666672" data-y="-6.862499999999999" x="511.5083337518749" y="283.25087207214347" width="14.063287415587297" height="2.1094931123381" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><g><rect data-type="rect" data-label="INLINE netId: LED_A
141
+ axis: y
142
+ side: x-" data-x="-3.1775000000000007" data-y="-14.484999999999998" x="263.0876337400452" y="414.08339281027884" width="2.1094931123381" height="8.437972449352344" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.05688570363095238"/></g><text data-type="text" data-label="CC1" data-x="-12.790497016666666" data-y="-2.5324999999999993" x="95.15445533300633" y="208.1880754914464" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">CC1</text><text data-type="text" data-label="CC1" data-x="-11.495497016666665" data-y="-4.9525" x="117.91940183698824" y="250.7295199235979" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central" transform="rotate(-90, 117.91940183698824, 250.7295199235979)">CC1</text><text data-type="text" data-label="USB_DM" data-x="-12.830497016666664" data-y="-3.6824999999999997" x="94.451290962227" y="228.4040511513531" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_DM</text><text data-type="text" data-label="USB_DM" data-x="-12.830497016666664" data-y="-3.4824999999999995" x="94.451290962227" y="224.8882292974563" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_DM</text><text data-type="text" data-label="USB_DM" data-x="-12.630497016666665" data-y="-8.387500000000001" x="97.9671128161238" y="311.1137602642758" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">USB_DM</text><text data-type="text" data-label="USB_DP" data-x="-12.830497016666664" data-y="-3.082499999999999" x="94.451290962227" y="217.85658558966264" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_DP</text><text data-type="text" data-label="USB_DP" data-x="-12.830497016666664" data-y="-3.2825" x="94.451290962227" y="221.3724074435595" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_DP</text><text data-type="text" data-label="USB_DP" data-x="-12.630497016666665" data-y="-8.1875" x="97.9671128161238" y="307.59793841037896" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">USB_DP</text><text data-type="text" data-label="IO20" data-x="-12.630497016666666" data-y="-7.5874999999999995" x="97.96711281612377" y="297.0504728486885" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO20</text><text data-type="text" data-label="IO20" data-x="4.49408631666667" data-y="-8.425000000000002" x="399.0020344271766" y="311.7729768618815" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO20</text><text data-type="text" data-label="IO20" data-x="4.3675" data-y="-14.7775" x="396.77675973447174" y="423.4442684962791" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO20</text><text data-type="text" data-label="IO21" data-x="-12.630497016666666" data-y="-7.7875" x="97.96711281612377" y="300.5662947025853" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO21</text><text data-type="text" data-label="IO21" data-x="4.49408631666667" data-y="-8.625000000000002" x="399.0020344271766" y="315.2887987157783" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO21</text><text data-type="text" data-label="IO21" data-x="4.3675" data-y="-14.577499999999999" x="396.77675973447174" y="419.92844664238226" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO21</text><text data-type="text" data-label="DTR" data-x="-10.390497016666664" data-y="-7.9875" x="137.34431757976816" y="304.0821165564821" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">DTR</text><text data-type="text" data-label="DTR" data-x="10.99908631666667" data-y="-6.2825" x="513.3541402251707" y="274.1097352520118" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">DTR</text><text data-type="text" data-label="RTS" data-x="-10.390497016666664" data-y="-7.7875" x="137.34431757976816" y="300.5662947025853" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">RTS</text><text data-type="text" data-label="RTS" data-x="11.864086316666672" data-y="-3.8824999999999994" x="528.5600697432744" y="231.91987300524994" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">RTS</text><text data-type="text" data-label="RTS" data-x="10.05408631666667" data-y="-6.862499999999999" x="496.7418819655082" y="284.3056186283125" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">RTS</text><text data-type="text" data-label="IO2" data-x="4.4885863166666695" data-y="-3.4249999999999994" x="398.9053493261945" y="223.87743051446094" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO2</text><text data-type="text" data-label="IO2" data-x="2.93908631666667" data-y="-2.2399999999999993" x="371.66651951312883" y="203.0461860301223" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 371.66651951312883, 203.0461860301223)">IO2</text><text data-type="text" data-label="IO2" data-x="1.9630000000000003" data-y="-14.7775" x="354.50779149599725" y="423.4442684962791" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO2</text><text data-type="text" data-label="EN" data-x="4.4485863166666695" data-y="-4.024999999999999" x="398.2021849554151" y="234.42489607615138" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">EN</text><text data-type="text" data-label="EN" data-x="14.78631399166667" data-y="-3.7824999999999993" x="579.9302293524099" y="230.1619620783015" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">EN</text><text data-type="text" data-label="EN" data-x="1.8765863166666688" data-y="-5.5675" x="352.988715914302" y="261.5406721243306" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central" transform="rotate(-90, 352.988715914302, 261.5406721243306)">EN</text><text data-type="text" data-label="EN" data-x="4.4475" data-y="-14.3775" x="398.18308847603043" y="416.41262478848546" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">EN</text><text data-type="text" data-label="IO10" data-x="4.49408631666667" data-y="-5.624999999999999" x="399.0020344271766" y="262.55147090732595" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO10</text><text data-type="text" data-label="IO10" data-x="-3.9674999999999994" data-y="-13.704999999999998" x="250.2548839733218" y="404.59067380475744" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO10</text><text data-type="text" data-label="IO10" data-x="4.3675" data-y="-15.3775" x="396.77675973447174" y="433.99173405796955" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO10</text><text data-type="text" data-label="IO8" data-x="4.45408631666667" data-y="-6.825" x="398.2988700563973" y="283.6464020307069" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO8</text><text data-type="text" data-label="IO8" data-x="2.93908631666667" data-y="-9.629999999999999" x="371.66651951312883" y="332.9558035316097" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 371.66651951312883, 332.9558035316097)">IO8</text><text data-type="text" data-label="IO8" data-x="4.4075" data-y="-15.7775" x="397.4799241052511" y="441.0233777657632" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO8</text><text data-type="text" data-label="IO9" data-x="3.4353363166666697" data-y="-7.769999999999999" x="380.39015248811035" y="300.25866029036933" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">IO9</text><text data-type="text" data-label="IO9" data-x="15.177427829166671" data-y="-5.982499999999999" x="586.8056622386296" y="268.8360024711665" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">IO9</text><text data-type="text" data-label="IO9" data-x="4.4075" data-y="-15.577499999999999" x="397.4799241052511" y="437.50755591186635" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO9</text><text data-type="text" data-label="CC2" data-x="-12.157997016666666" data-y="-2.7324999999999995" x="106.273241945955" y="211.70389734534322" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central">CC2</text><text data-type="text" data-label="IO3" data-x="4.4885863166666695" data-y="-3.624999999999999" x="398.9053493261945" y="227.39325236835776" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO3</text><text data-type="text" data-label="IO3" data-x="1.9630000000000003" data-y="-14.9775" x="354.50779149599725" y="426.9600903501759" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO3</text><text data-type="text" data-label="IO0" data-x="4.4885863166666695" data-y="-4.824999999999998" x="398.9053493261945" y="248.48818349173865" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO0</text><text data-type="text" data-label="IO0" data-x="1.9630000000000003" data-y="-14.3775" x="354.50779149599725" y="416.41262478848546" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO0</text><text data-type="text" data-label="IO1" data-x="4.4885863166666695" data-y="-5.024999999999999" x="398.9053493261945" y="252.00400534563548" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO1</text><text data-type="text" data-label="IO1" data-x="1.9630000000000003" data-y="-14.577499999999999" x="354.50779149599725" y="419.92844664238226" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO1</text><text data-type="text" data-label="IO4" data-x="4.45408631666667" data-y="-6.0249999999999995" x="398.2988700563973" y="269.5831146151196" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO4</text><text data-type="text" data-label="IO4" data-x="1.9630000000000003" data-y="-15.177499999999998" x="354.50779149599725" y="430.47591220407276" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO4</text><text data-type="text" data-label="IO5" data-x="4.45408631666667" data-y="-6.225" x="398.2988700563973" y="273.0989364690164" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO5</text><text data-type="text" data-label="IO5" data-x="1.9630000000000003" data-y="-15.3775" x="354.50779149599725" y="433.99173405796955" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO5</text><text data-type="text" data-label="IO6" data-x="4.45408631666667" data-y="-6.425" x="398.2988700563973" y="276.61475832291325" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO6</text><text data-type="text" data-label="IO6" data-x="1.9630000000000003" data-y="-15.577499999999999" x="354.50779149599725" y="437.50755591186635" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO6</text><text data-type="text" data-label="IO7" data-x="4.45408631666667" data-y="-6.624999999999999" x="398.2988700563973" y="280.13058017681004" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO7</text><text data-type="text" data-label="IO7" data-x="1.9630000000000003" data-y="-15.7775" x="354.50779149599725" y="441.0233777657632" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO7</text><text data-type="text" data-label="IO18" data-x="4.49408631666667" data-y="-7.625000000000001" x="399.0020344271766" y="297.7096894462942" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO18</text><text data-type="text" data-label="IO18" data-x="4.3675" data-y="-15.177499999999998" x="396.77675973447174" y="430.47591220407276" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO18</text><text data-type="text" data-label="IO19" data-x="4.49408631666667" data-y="-7.825" x="399.0020344271766" y="301.225511300191" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IO19</text><text data-type="text" data-label="IO19" data-x="4.3675" data-y="-14.9775" x="396.77675973447174" y="426.9600903501759" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">IO19</text><text data-type="text" data-label="BASE_EN" data-x="11.904086316666671" data-y="-3.682499999999999" x="529.2632341140538" y="228.4040511513531" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BASE_EN</text><text data-type="text" data-label="BASE_EN" data-x="10.894086316666671" data-y="-4.982499999999999" x="511.50833375187483" y="251.25689320168243" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">BASE_EN</text><text data-type="text" data-label="BASE_BOOT" data-x="11.904086316666671" data-y="-6.082499999999999" x="529.2632341140538" y="270.5939133981149" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="end" dominant-baseline="central">BASE_BOOT</text><text data-type="text" data-label="BASE_BOOT" data-x="10.894086316666671" data-y="-6.862499999999999" x="511.50833375187483" y="284.3056186283125" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="start" dominant-baseline="central">BASE_BOOT</text><text data-type="text" data-label="LED_A" data-x="-3.1775000000000007" data-y="-14.484999999999998" x="264.14238029621424" y="418.302379034955" fill="green" font-size="2.109493112338091" font-family="sans-serif" text-anchor="middle" dominant-baseline="central" transform="rotate(-90, 264.14238029621424, 418.302379034955)">LED_A</text><g><circle data-type="point" data-label="SHELL3
143
+ x+" data-x="-12.930497016666665" data-y="-5.4925" cx="92.69338003527855" cy="260.2222389291193" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SHELL4
144
+ x+" data-x="-12.930497016666665" data-y="-5.692499999999999" cx="92.69338003527855" cy="263.7380607830161" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SHELL1
145
+ x+" data-x="-12.930497016666665" data-y="-5.092499999999999" cx="92.69338003527855" cy="253.19059522132568" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SHELL2
146
+ x+" data-x="-12.930497016666665" data-y="-5.2924999999999995" cx="92.69338003527855" cy="256.7064170752225" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A1B12
147
+ x+" data-x="-12.930497016666665" data-y="-4.692499999999999" cx="92.69338003527855" cy="246.15895151353203" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A4B9
148
+ x+" data-x="-12.930497016666665" data-y="-2.0924999999999994" cx="92.69338003527855" cy="200.4532674128734" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B8
149
+ x+" data-x="-12.930497016666665" data-y="-4.342499999999999" cx="92.69338003527855" cy="240.0062632692126" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A5
150
+ x+" data-x="-12.930497016666665" data-y="-2.642499999999999" cx="92.69338003527855" cy="210.12177751108965" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B7
151
+ x+" data-x="-12.930497016666665" data-y="-3.7924999999999995" cx="92.69338003527855" cy="230.33775317099634" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A6
152
+ x+" data-x="-12.930497016666665" data-y="-3.192499999999999" cx="92.69338003527855" cy="219.7902876093059" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A7
153
+ x+" data-x="-12.930497016666665" data-y="-3.5924999999999994" cx="92.69338003527855" cy="226.82193131709954" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B6
154
+ x+" data-x="-12.930497016666665" data-y="-3.3925" cx="92.69338003527855" cy="223.30610946320274" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="A8
155
+ x+" data-x="-12.930497016666665" data-y="-4.1425" cx="92.69338003527855" cy="236.4904414153158" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B5
156
+ x+" data-x="-12.930497016666665" data-y="-2.8424999999999994" cx="92.69338003527855" cy="213.63759936498647" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B4A9
157
+ x+" data-x="-12.930497016666665" data-y="-2.2924999999999986" cx="92.69338003527855" cy="203.9690892667702" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B1A12
158
+ x+" data-x="-12.930497016666665" data-y="-4.892499999999999" cx="92.69338003527855" cy="249.67477336742886" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
159
+ x-" data-x="-12.530497016666665" data-y="-7.4975" cx="99.7250237430722" cy="295.4683530144349" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="TXD
160
+ x-" data-x="-12.530497016666665" data-y="-7.6975" cx="99.7250237430722" cy="298.9841748683317" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RXD
161
+ x-" data-x="-12.530497016666665" data-y="-7.8975" cx="99.7250237430722" cy="302.49999672222856" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="V3
162
+ x-" data-x="-12.530497016666665" data-y="-8.0975" cx="99.7250237430722" cy="306.0158185761254" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_POS
163
+ x-" data-x="-12.530497016666665" data-y="-8.2975" cx="99.7250237430722" cy="309.5316404300222" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="D_NEG
164
+ x-" data-x="-12.530497016666665" data-y="-8.4975" cx="99.7250237430722" cy="313.047462283919" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="7
165
+ x-" data-x="-12.530497016666665" data-y="-8.6975" cx="99.7250237430722" cy="316.5632841378158" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_OUT
166
+ x-" data-x="-12.530497016666665" data-y="-8.897499999999999" cx="99.7250237430722" cy="320.07910599171265" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_CTS
167
+ x+" data-x="-10.530497016666665" data-y="-8.897499999999999" cx="134.88324228204038" cy="320.07910599171265" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_DSR
168
+ x+" data-x="-10.530497016666665" data-y="-8.6975" cx="134.88324228204038" cy="316.5632841378158" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_RI
169
+ x+" data-x="-10.530497016666665" data-y="-8.4975" cx="134.88324228204038" cy="313.047462283919" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_DCD
170
+ x+" data-x="-10.530497016666665" data-y="-8.2975" cx="134.88324228204038" cy="309.5316404300222" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_DTR
171
+ x+" data-x="-10.530497016666665" data-y="-8.0975" cx="134.88324228204038" cy="306.0158185761254" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="N_RTS
172
+ x+" data-x="-10.530497016666665" data-y="-7.8975" cx="134.88324228204038" cy="302.49999672222856" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="R232
173
+ x+" data-x="-10.530497016666665" data-y="-7.6975" cx="134.88324228204038" cy="298.9841748683317" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VCC
174
+ x+" data-x="-10.530497016666665" data-y="-7.4975" cx="134.88324228204038" cy="295.4683530144349" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VIN
175
+ x-" data-x="-4.939663683333332" data-y="-5.889999999999999" cx="233.16511235618106" cy="267.20993486373925" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND
176
+ x-" data-x="-4.939663683333332" data-y="-6.089999999999999" cx="233.16511235618106" cy="270.72575671763605" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="EN
177
+ x-" data-x="-4.939663683333332" data-y="-6.289999999999999" cx="233.16511235618106" cy="274.24157857153284" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC
178
+ x+" data-x="-2.9396636833333316" data-y="-6.189999999999999" cx="268.32333089514924" cy="272.48366764458444" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VOUT
179
+ x+" data-x="-2.9396636833333316" data-y="-5.989999999999999" cx="268.32333089514924" cy="268.96784579068765" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND23
180
+ x+" data-x="6.59408631666667" data-y="-4.235" cx="435.9181638930932" cy="238.11650902274306" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND24
181
+ x+" data-x="6.59408631666667" data-y="-4.035" cx="435.9181638930932" cy="234.60068716884626" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND25
182
+ x+" data-x="6.59408631666667" data-y="-3.835" cx="435.9181638930932" cy="231.08486531494944" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND26
183
+ x+" data-x="6.59408631666667" data-y="-3.635" cx="435.9181638930932" cy="227.56904346105262" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND27
184
+ x+" data-x="6.59408631666667" data-y="-3.4349999999999996" cx="435.9181638930932" cy="224.0532216071558" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND28
185
+ x+" data-x="6.59408631666667" data-y="-3.2349999999999994" cx="435.9181638930932" cy="220.53739975325897" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND29
186
+ x+" data-x="6.59408631666667" data-y="-3.0349999999999993" cx="435.9181638930932" cy="217.02157789936214" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND30
187
+ x+" data-x="6.59408631666667" data-y="-2.834999999999999" cx="435.9181638930932" cy="213.50575604546532" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND1
188
+ x-" data-x="4.59408631666667" data-y="-2.734999999999999" cx="400.759945354125" cy="211.74784511851692" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND2
189
+ x-" data-x="4.59408631666667" data-y="-2.934999999999999" cx="400.759945354125" cy="215.26366697241374" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="3V3
190
+ x-" data-x="4.59408631666667" data-y="-3.134999999999999" cx="400.759945354125" cy="218.77948882631057" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC1
191
+ x-" data-x="4.59408631666667" data-y="-3.334999999999999" cx="400.759945354125" cy="222.29531068020736" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO2
192
+ x-" data-x="4.59408631666667" data-y="-3.5349999999999993" cx="400.759945354125" cy="225.8111325341042" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO3
193
+ x-" data-x="4.59408631666667" data-y="-3.734999999999999" cx="400.759945354125" cy="229.326954388001" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC2
194
+ x-" data-x="4.59408631666667" data-y="-3.9349999999999987" cx="400.759945354125" cy="232.8427762418978" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="EN
195
+ x-" data-x="4.59408631666667" data-y="-4.134999999999999" cx="400.759945354125" cy="236.35859809579466" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC3
196
+ x-" data-x="4.59408631666667" data-y="-4.334999999999999" cx="400.759945354125" cy="239.87441994969146" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC4
197
+ x-" data-x="4.59408631666667" data-y="-4.534999999999998" cx="400.759945354125" cy="243.39024180358825" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND3
198
+ x-" data-x="4.59408631666667" data-y="-4.7349999999999985" cx="400.759945354125" cy="246.9060636574851" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO0
199
+ x-" data-x="4.59408631666667" data-y="-4.934999999999999" cx="400.759945354125" cy="250.4218855113819" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO1
200
+ x-" data-x="4.59408631666667" data-y="-5.134999999999999" cx="400.759945354125" cy="253.93770736527875" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND4
201
+ x-" data-x="4.59408631666667" data-y="-5.334999999999999" cx="400.759945354125" cy="257.45352921917555" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC5
202
+ x-" data-x="4.59408631666667" data-y="-5.534999999999999" cx="400.759945354125" cy="260.9693510730724" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO10
203
+ x-" data-x="4.59408631666667" data-y="-5.734999999999999" cx="400.759945354125" cy="264.4851729269692" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC6
204
+ x-" data-x="4.59408631666667" data-y="-5.935" cx="400.759945354125" cy="268.000994780866" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO4
205
+ x-" data-x="4.59408631666667" data-y="-6.135" cx="400.759945354125" cy="271.51681663476285" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO5
206
+ x-" data-x="4.59408631666667" data-y="-6.335" cx="400.759945354125" cy="275.0326384886597" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO6
207
+ x-" data-x="4.59408631666667" data-y="-6.535" cx="400.759945354125" cy="278.5484603425565" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO7
208
+ x-" data-x="4.59408631666667" data-y="-6.734999999999999" cx="400.759945354125" cy="282.0642821964533" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO8
209
+ x-" data-x="4.59408631666667" data-y="-6.9350000000000005" cx="400.759945354125" cy="285.58010405035014" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO9
210
+ x-" data-x="4.59408631666667" data-y="-7.135" cx="400.759945354125" cy="289.09592590424694" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC7
211
+ x-" data-x="4.59408631666667" data-y="-7.335000000000001" cx="400.759945354125" cy="292.6117477581438" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC8
212
+ x-" data-x="4.59408631666667" data-y="-7.535" cx="400.759945354125" cy="296.1275696120406" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO18
213
+ x-" data-x="4.59408631666667" data-y="-7.735000000000001" cx="400.759945354125" cy="299.6433914659374" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="IO19
214
+ x-" data-x="4.59408631666667" data-y="-7.9350000000000005" cx="400.759945354125" cy="303.15921331983424" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC9
215
+ x-" data-x="4.59408631666667" data-y="-8.135000000000002" cx="400.759945354125" cy="306.6750351737311" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC10
216
+ x-" data-x="4.59408631666667" data-y="-8.335" cx="400.759945354125" cy="310.1908570276279" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="RXD0
217
+ x-" data-x="4.59408631666667" data-y="-8.535000000000002" cx="400.759945354125" cy="313.7066788815247" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="TXD0
218
+ x-" data-x="4.59408631666667" data-y="-8.735000000000001" cx="400.759945354125" cy="317.2225007354215" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC11
219
+ x+" data-x="6.59408631666667" data-y="-8.635000000000002" cx="435.9181638930932" cy="315.4645898084731" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC12
220
+ x+" data-x="6.59408631666667" data-y="-8.435000000000002" cx="435.9181638930932" cy="311.9487679545763" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC13
221
+ x+" data-x="6.59408631666667" data-y="-8.235000000000001" cx="435.9181638930932" cy="308.4329461006795" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC14
222
+ x+" data-x="6.59408631666667" data-y="-8.035000000000002" cx="435.9181638930932" cy="304.9171242467827" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND5
223
+ x+" data-x="6.59408631666667" data-y="-7.835000000000002" cx="435.9181638930932" cy="301.40130239288584" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND6
224
+ x+" data-x="6.59408631666667" data-y="-7.635000000000002" cx="435.9181638930932" cy="297.885480538989" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND7
225
+ x+" data-x="6.59408631666667" data-y="-7.435000000000001" cx="435.9181638930932" cy="294.3696586850922" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND8
226
+ x+" data-x="6.59408631666667" data-y="-7.235000000000001" cx="435.9181638930932" cy="290.8538368311954" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND9
227
+ x+" data-x="6.59408631666667" data-y="-7.035000000000002" cx="435.9181638930932" cy="287.3380149772986" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND10
228
+ x+" data-x="6.59408631666667" data-y="-6.835000000000002" cx="435.9181638930932" cy="283.82219312340175" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND11
229
+ x+" data-x="6.59408631666667" data-y="-6.635000000000002" cx="435.9181638930932" cy="280.3063712695049" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND12
230
+ x+" data-x="6.59408631666667" data-y="-6.435000000000002" cx="435.9181638930932" cy="276.7905494156081" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND13
231
+ x+" data-x="6.59408631666667" data-y="-6.235000000000001" cx="435.9181638930932" cy="273.2747275617113" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND14
232
+ x+" data-x="6.59408631666667" data-y="-6.035000000000002" cx="435.9181638930932" cy="269.7589057078145" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND15
233
+ x+" data-x="6.59408631666667" data-y="-5.835000000000001" cx="435.9181638930932" cy="266.24308385391765" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND16
234
+ x+" data-x="6.59408631666667" data-y="-5.635000000000002" cx="435.9181638930932" cy="262.7272620000208" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND17
235
+ x+" data-x="6.59408631666667" data-y="-5.4350000000000005" cx="435.9181638930932" cy="259.211440146124" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND22
236
+ x+" data-x="6.59408631666667" data-y="-5.235000000000001" cx="435.9181638930932" cy="255.6956182922272" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND18
237
+ x+" data-x="6.59408631666667" data-y="-5.035" cx="435.9181638930932" cy="252.17979643833036" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND19
238
+ x+" data-x="6.59408631666667" data-y="-4.835000000000001" cx="435.9181638930932" cy="248.66397458443356" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND20
239
+ x+" data-x="6.59408631666667" data-y="-4.635000000000001" cx="435.9181638930932" cy="245.1481527305367" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND21
240
+ x+" data-x="6.59408631666667" data-y="-4.4350000000000005" cx="435.9181638930932" cy="241.6323308766399" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B
241
+ x-" data-x="12.00408631666667" data-y="-3.792499999999999" cx="531.0211450410022" cy="230.33775317099634" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="E
242
+ x-" data-x="12.00408631666667" data-y="-3.9924999999999993" cx="531.0211450410022" cy="233.8535750248932" r="3" fill="hsl(184, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C
243
+ x+" data-x="14.00408631666667" data-y="-3.892499999999999" cx="566.1793635799704" cy="232.09566409794476" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="B
244
+ x-" data-x="12.00408631666667" data-y="-6.192499999999999" cx="531.0211450410022" cy="272.52761541775817" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="E
245
+ x-" data-x="12.00408631666667" data-y="-6.3925" cx="531.0211450410022" cy="276.043437271655" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C
246
+ x+" data-x="14.00408631666667" data-y="-6.2924999999999995" cx="566.1793635799704" cy="274.28552634470657" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
247
+ y+" data-x="15.56854166666667" data-y="-6.2924999999999995" cx="593.6810951248493" cy="274.28552634470657" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
248
+ y-" data-x="15.56854166666667" data-y="-7.232499999999999" cx="593.6810951248493" cy="290.8098890580216" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
249
+ y+" data-x="15.56854166666667" data-y="-4.1425" cx="593.6810951248493" cy="236.4904414153158" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
250
+ y-" data-x="15.56854166666667" data-y="-5.0825" cx="593.6810951248493" cy="253.01480412863083" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
251
+ y+" data-x="-3.2675" data-y="-15.354999999999997" cx="262.56026046196064" cy="433.5962040994061" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
252
+ y-" data-x="-3.2675" data-y="-16.485" cx="262.56026046196064" cy="453.4605975739232" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
253
+ y+" data-x="-11.385497016666665" data-y="-5.092499999999999" cx="119.85310385663149" cy="253.19059522132568" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
254
+ y-" data-x="-11.385497016666665" data-y="-5.692500000000001" cx="119.85310385663149" cy="263.7380607830162" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
255
+ y+" data-x="-11.385497016666665" data-y="-3.2824999999999998" cx="119.85310385663149" cy="221.37240744355947" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
256
+ y-" data-x="-11.385497016666665" data-y="-3.8824999999999994" cx="119.85310385663149" cy="231.91987300524994" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
257
+ y+" data-x="0.9853363166666691" data-y="-5.3075" cx="337.3213347778743" cy="256.9701037142648" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
258
+ y-" data-x="0.9853363166666691" data-y="-5.9075" cx="337.3213347778743" cy="267.5175692759552" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
259
+ y+" data-x="3.0490863166666697" data-y="-7.079999999999999" cx="373.6002215327721" cy="288.1290748944253" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
260
+ y-" data-x="3.0490863166666697" data-y="-7.679999999999999" cx="373.6002215327721" cy="298.67654045611573" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
261
+ y+" data-x="3.0490863166666697" data-y="-8.889999999999997" cx="373.6002215327721" cy="319.94726267219147" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
262
+ y-" data-x="3.0490863166666697" data-y="-9.489999999999998" cx="373.6002215327721" cy="330.4947282338819" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
263
+ y+" data-x="3.0490863166666697" data-y="-1.5" cx="373.6002215327721" cy="190.03764517070408" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
264
+ y-" data-x="3.0490863166666697" data-y="-2.0999999999999996" cx="373.6002215327721" cy="200.58511073239453" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
265
+ x-" data-x="10.19408631666667" data-y="-5.092499999999999" cx="499.20295726323593" cy="253.19059522132568" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
266
+ x+" data-x="10.794086316666672" data-y="-5.092499999999999" cx="509.75042282492643" cy="253.19059522132568" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
267
+ x-" data-x="10.19408631666667" data-y="-6.972499999999999" cx="499.20295726323593" cy="286.23932064795576" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
268
+ x+" data-x="10.794086316666672" data-y="-6.972499999999999" cx="509.75042282492643" cy="286.23932064795576" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
269
+ x-" data-x="-3.8674999999999997" data-y="-13.814999999999998" cx="252.01279490027022" cy="406.52437582440064" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
270
+ x+" data-x="-3.2675" data-y="-13.814999999999998" cx="262.56026046196064" cy="406.52437582440064" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
271
+ y+" data-x="-6.480497016666665" data-y="-4.519999999999999" cx="206.07863482345095" cy="243.126555164546" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
272
+ y-" data-x="-6.480497016666665" data-y="-5.2799999999999985" cx="206.07863482345095" cy="256.48667820935395" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
273
+ y+" data-x="-5.035497016666666" data-y="-4.519999999999999" cx="231.48044771785547" cy="243.126555164546" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
274
+ y-" data-x="-5.035497016666666" data-y="-5.2799999999999985" cx="231.48044771785547" cy="256.48667820935395" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
275
+ y+" data-x="1.7065863166666695" data-y="-3.254999999999999" cx="350.0002673384897" cy="220.88898193864864" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
276
+ y-" data-x="1.7065863166666695" data-y="-4.014999999999999" cx="350.0002673384897" cy="234.24910498345656" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
277
+ y+" data-x="3.2115863166666694" data-y="-3.254999999999999" cx="376.45682678906326" cy="220.88898193864864" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
278
+ y-" data-x="3.2115863166666694" data-y="-4.014999999999999" cx="376.45682678906326" cy="234.24910498345656" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
279
+ y+" data-x="2.987836316666669" data-y="-5.2275" cx="372.5235010900162" cy="255.56377497270603" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
280
+ y-" data-x="2.987836316666669" data-y="-5.9875" cx="372.5235010900162" cy="268.9238980175139" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
281
+ y+" data-x="-15.477997016666666" data-y="-8.217500000000001" cx="47.91059917126779" cy="308.1253116884635" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
282
+ y-" data-x="-15.477997016666666" data-y="-8.9775" cx="47.91059917126779" cy="321.4854347332714" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
283
+ y+" data-x="-13.912997016666665" data-y="-8.217500000000001" cx="75.42190517801043" cy="308.1253116884635" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
284
+ y-" data-x="-13.912997016666665" data-y="-8.9775" cx="75.42190517801043" cy="321.4854347332714" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
285
+ x+" data-x="1.8575000000000004" data-y="-14.087499999999999" cx="352.65319546806666" cy="411.31468310033506" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
286
+ x+" data-x="1.8575000000000004" data-y="-14.2875" cx="352.65319546806666" cy="414.8305049542319" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="3
287
+ x+" data-x="1.8575000000000004" data-y="-14.487499999999999" cx="352.65319546806666" cy="418.3463268081287" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="4
288
+ x+" data-x="1.8575000000000004" data-y="-14.687499999999998" cx="352.65319546806666" cy="421.8621486620255" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="5
289
+ x+" data-x="1.8575000000000004" data-y="-14.8875" cx="352.65319546806666" cy="425.37797051592236" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="6
290
+ x+" data-x="1.8575000000000004" data-y="-15.087499999999999" cx="352.65319546806666" cy="428.89379236981915" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="7
291
+ x+" data-x="1.8575000000000004" data-y="-15.287499999999998" cx="352.65319546806666" cy="432.40961422371595" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="8
292
+ x+" data-x="1.8575000000000004" data-y="-15.487499999999999" cx="352.65319546806666" cy="435.9254360776128" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="9
293
+ x+" data-x="1.8575000000000004" data-y="-15.687499999999998" cx="352.65319546806666" cy="439.4412579315096" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="10
294
+ x+" data-x="1.8575000000000004" data-y="-15.8875" cx="352.65319546806666" cy="442.95707978540645" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
295
+ x+" data-x="4.2675" data-y="-14.087499999999999" cx="395.01884880752334" cy="411.31468310033506" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
296
+ x+" data-x="4.2675" data-y="-14.2875" cx="395.01884880752334" cy="414.8305049542319" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="3
297
+ x+" data-x="4.2675" data-y="-14.487499999999999" cx="395.01884880752334" cy="418.3463268081287" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="4
298
+ x+" data-x="4.2675" data-y="-14.687499999999998" cx="395.01884880752334" cy="421.8621486620255" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="5
299
+ x+" data-x="4.2675" data-y="-14.8875" cx="395.01884880752334" cy="425.37797051592236" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="6
300
+ x+" data-x="4.2675" data-y="-15.087499999999999" cx="395.01884880752334" cy="428.89379236981915" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="7
301
+ x+" data-x="4.2675" data-y="-15.287499999999998" cx="395.01884880752334" cy="432.40961422371595" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="8
302
+ x+" data-x="4.2675" data-y="-15.487499999999999" cx="395.01884880752334" cy="435.9254360776128" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="9
303
+ x+" data-x="4.2675" data-y="-15.687499999999998" cx="395.01884880752334" cy="439.4412579315096" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="10
304
+ x+" data-x="4.2675" data-y="-15.8875" cx="395.01884880752334" cy="442.95707978540645" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
305
+ orientation: y-" data-x="-11.385497016666665" data-y="-5.892500000000001" cx="119.85310385663149" cy="267.253882636913" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
306
+ orientation: y-" data-x="-13.371497016666664" data-y="-7.5485" cx="84.94099284743609" cy="296.3648875871786" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
307
+ orientation: y-" data-x="-5.757997016666666" data-y="-5.479999999999999" cx="218.77954127065323" cy="260.00250006325075" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
308
+ orientation: y-" data-x="7.08408631666667" data-y="-7.835000000000002" cx="444.5319274351404" cy="301.40130239288584" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
309
+ orientation: y-" data-x="1.7065863166666695" data-y="-4.7349999999999985" cx="350.0002673384897" cy="246.9060636574851" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
310
+ orientation: y-" data-x="15.56854166666667" data-y="-7.432499999999998" cx="593.6810951248493" cy="294.32571091191846" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
311
+ orientation: y-" data-x="-3.2675" data-y="-16.485" cx="262.56026046196064" cy="453.4605975739232" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
312
+ orientation: y-" data-x="2.987836316666669" data-y="-5.9875" cx="372.5235010900162" cy="268.9238980175139" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
313
+ orientation: y-" data-x="-13.912997016666665" data-y="-9.177499999999998" cx="75.42190517801043" cy="325.0012565871682" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
314
+ orientation: y-" data-x="2.4385" data-y="-16.287499999999998" cx="362.8666579536369" cy="449.98872349320004" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
315
+ orientation: y+" data-x="-12.380497016666665" data-y="-2.0914999999999995" cx="102.36189013349482" cy="200.4356883036039" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
316
+ orientation: y+" data-x="-6.789663683333332" data-y="-5.889999999999999" cx="200.64376020763547" cy="267.20993486373925" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
317
+ orientation: y+" data-x="-6.480497016666665" data-y="-4.519999999999999" cx="206.07863482345095" cy="243.126555164546" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
318
+ orientation: y+" data-x="4.5685" data-y="-13.8865" cx="400.310160697638" cy="407.7812821371688" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
319
+ orientation: y+" data-x="-13.912997016666665" data-y="-8.0975" cx="75.42190517801043" cy="306.0158185761254" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
320
+ orientation: y+" data-x="-10.229497016666665" data-y="-7.296499999999999" cx="140.1745541721551" cy="291.9349520512686" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
321
+ orientation: y+" data-x="-5.035497016666666" data-y="-4.3199999999999985" cx="231.48044771785547" cy="239.6107333106492" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
322
+ orientation: y+" data-x="3.0490863166666697" data-y="-1.3" cx="373.6002215327721" cy="186.52182331680726" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
323
+ orientation: y+" data-x="0.9853363166666691" data-y="-5.3075" cx="337.3213347778743" cy="256.9701037142648" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
324
+ orientation: y+" data-x="3.0490863166666697" data-y="-6.879999999999999" cx="373.6002215327721" cy="284.6132530405285" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
325
+ orientation: y+" data-x="2.1585" data-y="-13.8865" cx="357.94450735818134" cy="407.7812821371688" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="inline anchor
326
+ CC1" data-x="-12.550497016666665" data-y="-2.642499999999999" cx="99.37344155768253" cy="210.12177751108965" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
327
+ CC1" data-x="-11.385497016666665" data-y="-4.7924999999999995" cx="119.85310385663149" cy="247.91686244048043" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
328
+ USB_DM" data-x="-12.550497016666665" data-y="-3.7924999999999995" cx="99.37344155768253" cy="230.33775317099634" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
329
+ USB_DM" data-x="-12.550497016666665" data-y="-3.5924999999999994" cx="99.37344155768253" cy="226.82193131709954" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
330
+ USB_DM" data-x="-12.910497016666664" data-y="-8.4975" cx="93.04496222066825" cy="313.047462283919" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
331
+ USB_DP" data-x="-12.550497016666665" data-y="-3.192499999999999" cx="99.37344155768253" cy="219.7902876093059" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
332
+ USB_DP" data-x="-12.550497016666665" data-y="-3.3925" cx="99.37344155768253" cy="223.30610946320274" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
333
+ USB_DP" data-x="-12.910497016666664" data-y="-8.2975" cx="93.04496222066825" cy="309.5316404300222" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
334
+ IO20" data-x="-12.830497016666666" data-y="-7.6975" cx="94.45129096222698" cy="298.9841748683317" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
335
+ IO20" data-x="4.29408631666667" data-y="-8.535000000000002" cx="395.4862125732798" cy="313.7066788815247" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
336
+ IO20" data-x="4.5675" data-y="-14.8875" cx="400.29258158836853" cy="425.37797051592236" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
337
+ IO21" data-x="-12.830497016666666" data-y="-7.8975" cx="94.45129096222698" cy="302.49999672222856" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
338
+ IO21" data-x="4.29408631666667" data-y="-8.735000000000001" cx="395.4862125732798" cy="317.2225007354215" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
339
+ IO21" data-x="4.5675" data-y="-14.687499999999998" cx="400.29258158836853" cy="421.8621486620255" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
340
+ DTR" data-x="-10.230497016666664" data-y="-8.0975" cx="140.15697506288564" cy="306.0158185761254" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
341
+ DTR" data-x="10.99908631666667" data-y="-6.3925" cx="513.3541402251707" cy="276.043437271655" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
342
+ RTS" data-x="-10.230497016666664" data-y="-7.8975" cx="140.15697506288564" cy="302.49999672222856" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
343
+ RTS" data-x="11.58408631666667" data-y="-3.9924999999999993" cx="523.6379191478188" cy="233.8535750248932" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
344
+ RTS" data-x="9.89408631666667" data-y="-6.972499999999999" cx="493.92922448239074" cy="286.23932064795576" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
345
+ IO2" data-x="4.328586316666669" data-y="-3.5349999999999993" cx="396.092691843077" cy="225.8111325341042" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
346
+ IO2" data-x="3.0490863166666697" data-y="-2.3999999999999995" cx="373.6002215327721" cy="205.85884351323975" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
347
+ IO2" data-x="2.123" data-y="-14.8875" cx="357.32044897911464" cy="425.37797051592236" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
348
+ EN" data-x="4.328586316666669" data-y="-4.134999999999999" cx="396.092691843077" cy="236.35859809579466" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
349
+ EN" data-x="14.78631399166667" data-y="-3.892499999999999" cx="579.9302293524099" cy="232.09566409794476" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
350
+ EN" data-x="1.9865863166666688" data-y="-5.5675" cx="354.9224179339452" cy="261.5406721243306" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
351
+ EN" data-x="4.5675" data-y="-14.487499999999999" cx="400.29258158836853" cy="418.3463268081287" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
352
+ IO10" data-x="4.29408631666667" data-y="-5.734999999999999" cx="395.4862125732798" cy="264.4851729269692" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
353
+ IO10" data-x="-4.1674999999999995" data-y="-13.814999999999998" cx="246.739062119425" cy="406.52437582440064" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
354
+ IO10" data-x="4.5675" data-y="-15.487499999999999" cx="400.29258158836853" cy="435.9254360776128" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
355
+ IO8" data-x="4.29408631666667" data-y="-6.9350000000000005" cx="395.4862125732798" cy="285.58010405035014" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
356
+ IO8" data-x="3.0490863166666697" data-y="-9.79" cx="373.6002215327721" cy="335.7684610147272" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
357
+ IO8" data-x="4.5675" data-y="-15.8875" cx="400.29258158836853" cy="442.95707978540645" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
358
+ IO9" data-x="3.4353363166666697" data-y="-7.879999999999999" cx="380.39015248811035" cy="302.1923623100126" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
359
+ IO9" data-x="15.177427829166671" data-y="-6.092499999999999" cx="586.8056622386296" cy="270.7697044908098" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
360
+ IO9" data-x="4.5675" data-y="-15.687499999999998" cx="400.29258158836853" cy="439.4412579315096" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
361
+ CC2" data-x="-12.157997016666666" data-y="-2.8424999999999994" cx="106.273241945955" cy="213.63759936498647" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
362
+ IO3" data-x="4.328586316666669" data-y="-3.734999999999999" cx="396.092691843077" cy="229.326954388001" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
363
+ IO3" data-x="2.123" data-y="-15.087499999999999" cx="357.32044897911464" cy="428.89379236981915" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
364
+ IO0" data-x="4.328586316666669" data-y="-4.934999999999999" cx="396.092691843077" cy="250.4218855113819" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
365
+ IO0" data-x="2.123" data-y="-14.487499999999999" cx="357.32044897911464" cy="418.3463268081287" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
366
+ IO1" data-x="4.328586316666669" data-y="-5.134999999999999" cx="396.092691843077" cy="253.93770736527875" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
367
+ IO1" data-x="2.123" data-y="-14.687499999999998" cx="357.32044897911464" cy="421.8621486620255" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
368
+ IO4" data-x="4.29408631666667" data-y="-6.135" cx="395.4862125732798" cy="271.51681663476285" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
369
+ IO4" data-x="2.123" data-y="-15.287499999999998" cx="357.32044897911464" cy="432.40961422371595" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
370
+ IO5" data-x="4.29408631666667" data-y="-6.335" cx="395.4862125732798" cy="275.0326384886597" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
371
+ IO5" data-x="2.123" data-y="-15.487499999999999" cx="357.32044897911464" cy="435.9254360776128" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
372
+ IO6" data-x="4.29408631666667" data-y="-6.535" cx="395.4862125732798" cy="278.5484603425565" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
373
+ IO6" data-x="2.123" data-y="-15.687499999999998" cx="357.32044897911464" cy="439.4412579315096" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
374
+ IO7" data-x="4.29408631666667" data-y="-6.734999999999999" cx="395.4862125732798" cy="282.0642821964533" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
375
+ IO7" data-x="2.123" data-y="-15.8875" cx="357.32044897911464" cy="442.95707978540645" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
376
+ IO18" data-x="4.29408631666667" data-y="-7.735000000000001" cx="395.4862125732798" cy="299.6433914659374" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
377
+ IO18" data-x="4.5675" data-y="-15.287499999999998" cx="400.29258158836853" cy="432.40961422371595" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
378
+ IO19" data-x="4.29408631666667" data-y="-7.9350000000000005" cx="395.4862125732798" cy="303.15921331983424" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
379
+ IO19" data-x="4.5675" data-y="-15.087499999999999" cx="400.29258158836853" cy="428.89379236981915" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
380
+ BASE_EN" data-x="11.58408631666667" data-y="-3.792499999999999" cx="523.6379191478188" cy="230.33775317099634" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
381
+ BASE_EN" data-x="11.214086316666672" data-y="-5.092499999999999" cx="517.1336487181097" cy="253.19059522132568" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
382
+ BASE_BOOT" data-x="11.50408631666667" data-y="-6.192499999999999" cx="522.2315904062601" cy="272.52761541775817" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
383
+ BASE_BOOT" data-x="11.294086316666672" data-y="-6.972499999999999" cx="518.5399774596685" cy="286.23932064795576" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
384
+ LED_A" data-x="-3.067500000000001" data-y="-14.484999999999998" cx="266.0760823158575" cy="418.302379034955" 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[
385
+ document.currentScript.parentElement.addEventListener('mousemove', (e) => {
386
+ const svg = e.currentTarget;
387
+ const rect = svg.getBoundingClientRect();
388
+ const x = e.clientX - rect.left;
389
+ const y = e.clientY - rect.top;
390
+ const crosshair = svg.getElementById('crosshair');
391
+ const h = svg.getElementById('crosshair-h');
392
+ const v = svg.getElementById('crosshair-v');
393
+ const coords = svg.getElementById('coordinates');
394
+
395
+ crosshair.style.display = 'block';
396
+ h.setAttribute('x1', '0');
397
+ h.setAttribute('x2', '640');
398
+ h.setAttribute('y1', y);
399
+ h.setAttribute('y2', y);
400
+ v.setAttribute('x1', x);
401
+ v.setAttribute('x2', x);
402
+ v.setAttribute('y1', '0');
403
+ v.setAttribute('y2', '640');
404
+
405
+ // Calculate real coordinates using inverse transformation
406
+ const matrix = {"a":17.579109269484093,"c":0,"e":319.99999999999994,"b":0,"d":-17.579109269484093,"f":163.66898126647794};
407
+ // Manually invert and apply the affine transform
408
+ // Since we only use translate and scale, we can directly compute:
409
+ // x' = (x - tx) / sx
410
+ // y' = (y - ty) / sy
411
+ const sx = matrix.a;
412
+ const sy = matrix.d;
413
+ const tx = matrix.e;
414
+ const ty = matrix.f;
415
+ const realPoint = {
416
+ x: (x - tx) / sx,
417
+ y: (y - ty) / sy // Flip y back since we used negative scale
418
+ }
419
+
420
+ coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
421
+ coords.setAttribute('x', (x + 5).toString());
422
+ coords.setAttribute('y', (y - 5).toString());
423
+ });
424
+ document.currentScript.parentElement.addEventListener('mouseleave', () => {
425
+ document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
426
+ });
427
+ ]]></script>
428
+ </g>
429
+ <g transform="translate(0, 1216)">
430
+ <style>
431
+ .boundary { fill: rgb(245, 241, 237); }
432
+ .schematic-boundary { fill: none; stroke: #fff; }
433
+ .component { fill: none; stroke: rgb(132, 0, 0); }
434
+ .chip { fill: rgb(255, 255, 194); stroke: rgb(132, 0, 0); }
435
+ .component-pin { fill: none; stroke: rgb(132, 0, 0); }
436
+ .text { font-family: sans-serif; fill: rgb(0, 150, 0); }
437
+ .pin-number { fill: rgb(169, 0, 0); }
438
+ .port-label { fill: rgb(0, 100, 100); }
439
+ .component-name { fill: rgb(0, 100, 100); }
440
+
441
+ </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 127.73924890946921 283.12634838865546 L 171.20163810250318 283.12634838865546 L 171.20163810250318 275.8217451629355 L 127.73924890946921 275.8217451629355" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 283.12634838865546 L 171.20163810250318 283.12634838865546 L 171.20163810250318 275.8217451629355 L 127.73924890946921 275.8217451629355" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 268.51714193721546 L 135.04385213518918 268.51714193721546 L 135.04385213518918 275.8217451629355" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 268.51714193721546 L 135.04385213518918 268.51714193721546 L 135.04385213518918 275.8217451629355" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 261.2125387114954 L 135.04385213518918 261.2125387114954 L 135.04385213518918 268.51714193721546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 261.2125387114954 L 135.04385213518918 261.2125387114954 L 135.04385213518918 268.51714193721546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 253.90793548577545 L 135.04385213518918 253.90793548577545 L 135.04385213518918 261.2125387114954" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 253.90793548577545 L 135.04385213518918 253.90793548577545 L 135.04385213518918 261.2125387114954" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 246.60333226005545 L 135.04385213518918 246.60333226005545 L 135.04385213518918 253.90793548577545" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 246.60333226005545 L 135.04385213518918 246.60333226005545 L 135.04385213518918 253.90793548577545" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 184.1673088281562 283.1263483886555 L 184.1673088281562 290.43095161437554 L 171.20163810250318 290.43095161437554 L 171.20163810250318 283.12634838865546 L 127.73924890946921 283.12634838865546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 184.1673088281562 283.1263483886555 L 184.1673088281562 290.43095161437554 L 171.20163810250318 290.43095161437554 L 171.20163810250318 283.12634838865546 L 127.73924890946921 283.12634838865546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 184.1673088281562 217.01968919588944 L 184.1673088281562 224.3242924216094 L 219.22940431161226 224.3242924216094 L 219.22940431161226 290.4309516143755 L 184.1673088281562 290.4309516143755 L 184.1673088281562 283.1263483886555" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 184.1673088281562 217.01968919588944 L 184.1673088281562 224.3242924216094 L 219.22940431161226 224.3242924216094 L 219.22940431161226 290.4309516143755 L 184.1673088281562 290.4309516143755 L 184.1673088281562 283.1263483886555" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1168.610098390448 260.8473085502094 L 1168.610098390448 268.1519117759294 L 1148.1771016191665 268.1519117759294 L 1148.1771016191665 346.6763964524194 L 1168.610098390448 346.6763964524194 L 1168.610098390448 339.3717932266994" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1168.610098390448 260.8473085502094 L 1168.610098390448 268.1519117759294 L 1148.1771016191665 268.1519117759294 L 1148.1771016191665 346.6763964524194 L 1168.610098390448 346.6763964524194 L 1168.610098390448 339.3717932266994" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 416.0884612447662 275.36520746132794 L 363.3127029389392 275.36520746132794 L 363.3127029389392 268.0606042356079" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 416.0884612447662 275.36520746132794 L 363.3127029389392 275.36520746132794 L 363.3127029389392 268.0606042356079" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 419.588583623757 297.64424729977395 L 416.0884612447662 297.64424729977395 L 416.0884612447662 268.0606042356079" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.588583623757 297.64424729977395 L 416.0884612447662 297.64424729977395 L 416.0884612447662 268.0606042356079" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 717.2968188420078 221.85898883292896 L 717.2968188420078 248.15556044552093 L 662.3296795684648 248.15556044552093 L 662.3296795684648 221.85898883292896" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 717.2968188420078 221.85898883292896 L 717.2968188420078 248.15556044552093 L 662.3296795684648 248.15556044552093 L 662.3296795684648 221.85898883292896" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 248.15556044552093 L 717.2968188420078 248.15556044552093" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 248.15556044552093 L 717.2968188420078 248.15556044552093" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 175.10952818832095 L 746.5700162690807 175.10952818832095 L 746.5700162690807 182.41413141404098 L 767.7898886397974 182.41413141404098" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 175.10952818832095 L 746.5700162690807 175.10952818832095 L 746.5700162690807 182.41413141404098 L 767.7898886397974 182.41413141404098" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 91.85538556311974 403.10445637110644 L 91.85538556311974 410.4090595968264 L 34.69686532186063 410.4090595968264 L 34.69686532186063 403.10445637110644" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 91.85538556311974 403.10445637110644 L 91.85538556311974 410.4090595968264 L 34.69686532186063 410.4090595968264 L 34.69686532186063 403.10445637110644" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 222.589449155501 L 848.1405241227174 222.589449155501 L 848.1405241227174 229.894052381221 L 840.8359208969973 229.894052381221" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 222.589449155501 L 848.1405241227174 222.589449155501 L 848.1405241227174 229.894052381221 L 840.8359208969973 229.894052381221" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 215.284845929781 L 848.1405241227174 215.284845929781 L 848.1405241227174 222.589449155501" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 215.284845929781 L 848.1405241227174 215.284845929781 L 848.1405241227174 222.589449155501" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 207.98024270406097 L 848.1405241227174 207.98024270406097 L 848.1405241227174 215.284845929781" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 207.98024270406097 L 848.1405241227174 207.98024270406097 L 848.1405241227174 215.284845929781" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 200.675639478341 L 848.1405241227174 200.675639478341 L 848.1405241227174 207.98024270406097" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 200.675639478341 L 848.1405241227174 200.675639478341 L 848.1405241227174 207.98024270406097" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 193.37103625262097 L 848.1405241227174 193.37103625262097 L 848.1405241227174 200.675639478341" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 193.37103625262097 L 848.1405241227174 193.37103625262097 L 848.1405241227174 200.675639478341" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 186.06643302690097 L 848.1405241227174 186.06643302690097 L 848.1405241227174 193.37103625262097" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 186.06643302690097 L 848.1405241227174 186.06643302690097 L 848.1405241227174 193.37103625262097" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 178.76182980118097 L 848.1405241227174 178.76182980118097 L 848.1405241227174 186.06643302690097" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 178.76182980118097 L 848.1405241227174 178.76182980118097 L 848.1405241227174 186.06643302690097" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 237.198655606941 L 848.1405241227174 237.198655606941 L 848.1405241227174 229.894052381221 L 840.8359208969973 229.894052381221" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 237.198655606941 L 848.1405241227174 237.198655606941 L 848.1405241227174 229.894052381221 L 840.8359208969973 229.894052381221" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 244.503258832661 L 848.1405241227174 244.503258832661 L 848.1405241227174 237.198655606941" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 244.503258832661 L 848.1405241227174 244.503258832661 L 848.1405241227174 237.198655606941" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 251.80786205838103 L 848.1405241227174 251.80786205838103 L 848.1405241227174 244.503258832661" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 251.80786205838103 L 848.1405241227174 251.80786205838103 L 848.1405241227174 244.503258832661" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 259.112465284101 L 848.1405241227174 259.112465284101 L 848.1405241227174 251.80786205838103" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 259.112465284101 L 848.1405241227174 259.112465284101 L 848.1405241227174 251.80786205838103" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 266.41706850982104 L 848.1405241227174 266.41706850982104 L 848.1405241227174 259.112465284101" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 266.41706850982104 L 848.1405241227174 266.41706850982104 L 848.1405241227174 259.112465284101" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 273.721671735541 L 848.1405241227174 273.721671735541 L 848.1405241227174 266.41706850982104" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 273.721671735541 L 848.1405241227174 273.721671735541 L 848.1405241227174 266.41706850982104" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 281.02627496126104 L 848.1405241227174 281.02627496126104 L 848.1405241227174 273.721671735541" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 281.02627496126104 L 848.1405241227174 281.02627496126104 L 848.1405241227174 273.721671735541" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 288.330878186981 L 848.1405241227174 288.330878186981 L 848.1405241227174 281.02627496126104" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 288.330878186981 L 848.1405241227174 288.330878186981 L 848.1405241227174 281.02627496126104" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 295.6354814127011 L 848.1405241227174 295.6354814127011 L 848.1405241227174 288.330878186981" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 295.6354814127011 L 848.1405241227174 295.6354814127011 L 848.1405241227174 288.330878186981" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 302.940084638421 L 848.1405241227174 302.940084638421 L 848.1405241227174 295.6354814127011" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 302.940084638421 L 848.1405241227174 302.940084638421 L 848.1405241227174 295.6354814127011" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 310.24468786414104 L 848.1405241227174 310.24468786414104 L 848.1405241227174 302.940084638421" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 310.24468786414104 L 848.1405241227174 310.24468786414104 L 848.1405241227174 302.940084638421" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 317.5492910898611 L 848.1405241227174 317.5492910898611 L 848.1405241227174 310.24468786414104" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 317.5492910898611 L 848.1405241227174 317.5492910898611 L 848.1405241227174 310.24468786414104" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 324.85389431558104 L 848.1405241227174 324.85389431558104 L 848.1405241227174 317.5492910898611" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 324.85389431558104 L 848.1405241227174 324.85389431558104 L 848.1405241227174 317.5492910898611" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 332.1584975413011 L 848.1405241227174 332.1584975413011 L 848.1405241227174 324.85389431558104" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 332.1584975413011 L 848.1405241227174 332.1584975413011 L 848.1405241227174 324.85389431558104" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 339.46310076702105 L 848.1405241227174 339.46310076702105 L 848.1405241227174 332.1584975413011" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 339.46310076702105 L 848.1405241227174 339.46310076702105 L 848.1405241227174 332.1584975413011" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 346.767703992741 L 848.1405241227174 346.767703992741 L 848.1405241227174 339.46310076702105" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 346.767703992741 L 848.1405241227174 346.767703992741 L 848.1405241227174 339.46310076702105" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 354.07230721846105 L 848.1405241227174 354.07230721846105 L 848.1405241227174 346.767703992741" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 354.07230721846105 L 848.1405241227174 354.07230721846105 L 848.1405241227174 346.767703992741" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 361.376910444181 L 848.1405241227174 361.376910444181 L 848.1405241227174 354.07230721846105" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 361.376910444181 L 848.1405241227174 361.376910444181 L 848.1405241227174 354.07230721846105" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 151.64349032569547 L 135.04385213518918 151.64349032569547 L 135.04385213518918 158.94809355141544 L 127.73924890946921 158.94809355141544" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 151.64349032569547 L 135.04385213518918 151.64349032569547 L 135.04385213518918 158.94809355141544 L 127.73924890946921 158.94809355141544" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 419.588583623757 304.948850525494 L 412.28398039803704 304.948850525494 L 412.28398039803704 290.3396440740539 L 419.588583623757 290.3396440740539" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 419.588583623757 304.948850525494 L 412.28398039803704 304.948850525494 L 412.28398039803704 290.3396440740539 L 419.588583623757 290.3396440740539" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 179.03575242214546 L 184.1673088281562 179.03575242214546 L 184.1673088281562 195.10587951872947" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 179.03575242214546 L 184.1673088281562 179.03575242214546 L 184.1673088281562 195.10587951872947" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 711.3618287211103 399.90869245985385 L 711.3618287211103 392.6040892341339 L 692.1872452535954 392.6040892341339 L 692.1872452535954 326.4974300413679 L 711.3618287211103 326.4974300413679 L 711.3618287211103 333.80203326708795" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 711.3618287211103 399.90869245985385 L 711.3618287211103 392.6040892341339 L 692.1872452535954 392.6040892341339 L 692.1872452535954 326.4974300413679 L 711.3618287211103 326.4974300413679 L 711.3618287211103 333.80203326708795" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 189.71873463976095 L 717.2968188420078 189.71873463976095 L 717.2968188420078 194.10149657519295" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 189.71873463976095 L 717.2968188420078 189.71873463976095 L 717.2968188420078 194.10149657519295" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 662.3296795684648 194.10149657519295 L 662.3296795684648 189.71873463976095 L 717.2968188420078 189.71873463976095" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 662.3296795684648 194.10149657519295 L 662.3296795684648 189.71873463976095 L 717.2968188420078 189.71873463976095" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 91.85538556311974 375.3469641133705 L 91.85538556311974 370.9642021779385 L 34.69686532186063 370.9642021779385 L 34.69686532186063 375.3469641133705" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 91.85538556311974 375.3469641133705 L 91.85538556311974 370.9642021779385 L 34.69686532186063 370.9642021779385 L 34.69686532186063 375.3469641133705" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 370.9642021779385 L 91.85538556311974 370.9642021779385 L 91.85538556311974 375.3469641133705" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 370.9642021779385 L 91.85538556311974 370.9642021779385 L 91.85538556311974 375.3469641133705" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1168.610098390448 226.51567338932549 L 1168.610098390448 217.38491935717545 L 1111.4714704099233 217.38491935717545" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1168.610098390448 226.51567338932549 L 1168.610098390448 217.38491935717545 L 1111.4714704099233 217.38491935717545" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1168.610098390448 305.0401580658155 L 1168.610098390448 297.73555484009546 L 1140.0407844001857 297.73555484009546 L 1140.0407844001857 305.0401580658155 L 1111.4714704099233 305.0401580658155" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1168.610098390448 305.0401580658155 L 1168.610098390448 297.73555484009546 L 1140.0407844001857 297.73555484009546 L 1140.0407844001857 305.0401580658155 L 1111.4714704099233 305.0401580658155" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397973 335.810799154161 L 739.5758586804538 335.810799154161 L 739.5758586804538 363.02044616996795 L 711.3618287211103 363.02044616996795 L 711.3618287211103 355.7158429442479" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397973 335.810799154161 L 739.5758586804538 335.810799154161 L 739.5758586804538 363.02044616996795 L 711.3618287211103 363.02044616996795 L 711.3618287211103 355.7158429442479" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 480.66104479979947 636.0299917312528 L 480.66104479979947 628.7253885055329 L 487.9656480255195 628.7253885055329 L 487.9656480255195 579.7845468932089 L 480.66104479979947 579.7845468932089" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 480.66104479979947 636.0299917312528 L 480.66104479979947 628.7253885055329 L 487.9656480255195 628.7253885055329 L 487.9656480255195 579.7845468932089 L 480.66104479979947 579.7845468932089" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 492.6346158809571 293.99194568691394 L 499.93921910667706 293.99194568691394 L 499.93921910667706 232.99850875215193 L 416.0884612447662 232.99850875215193 L 416.0884612447662 240.30311197787194" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 492.6346158809571 293.99194568691394 L 499.93921910667706 293.99194568691394 L 499.93921910667706 232.99850875215193 L 416.0884612447662 232.99850875215193 L 416.0884612447662 240.30311197787194" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1038.4254381527235 308.6924596786755 L 965.0141757342374 308.6924596786755 L 965.0141757342374 261.2125387114954 L 972.3187789599574 261.2125387114954" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1038.4254381527235 308.6924596786755 L 965.0141757342374 308.6924596786755 L 965.0141757342374 261.2125387114954 L 972.3187789599574 261.2125387114954" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 635.9874541857121 290.9787968563045 L 635.9874541857121 298.2834000820245 L 672.5561240844728 298.2834000820245 L 672.5561240844728 258.8385426631365 L 709.1247939832335 258.8385426631365 L 709.1247939832335 266.14314588885645" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 635.9874541857121 290.9787968563045 L 635.9874541857121 298.2834000820245 L 672.5561240844728 298.2834000820245 L 672.5561240844728 258.8385426631365 L 709.1247939832335 258.8385426631365 L 709.1247939832335 266.14314588885645" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 711.3618287211103 130.0036032695 L 711.3618287211103 122.69900004377999 L 689.8132492052364 122.69900004377999 L 689.8132492052364 189.71873463976095" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 711.3618287211103 130.0036032695 L 711.3618287211103 122.69900004377999 L 689.8132492052364 122.69900004377999 L 689.8132492052364 189.71873463976095" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 270.069370122681 L 746.5700162690807 270.0693701226809 L 746.5700162690807 248.15556044552096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 270.069370122681 L 746.5700162690807 270.0693701226809 L 746.5700162690807 248.15556044552096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 746.5700162690807 182.41413141404098 L 746.5700162690807 248.15556044552093 L 767.7898886397974 248.15556044552093" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 746.5700162690807 182.41413141404098 L 746.5700162690807 248.15556044552093 L 767.7898886397974 248.15556044552093" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 597.0416720139725 L 689.061374829591 597.0416720139725 L 689.061374829591 670.0877042711724 L 781.4646056349491 670.0877042711724 L 781.4646056349491 597.0416720139725 L 755.8619713288006 597.0416720139725" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 597.0416720139725 L 689.061374829591 597.0416720139725 L 689.061374829591 670.0877042711724 L 781.4646056349491 670.0877042711724 L 781.4646056349491 597.0416720139725 L 755.8619713288006 597.0416720139725" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 349.05039250077846 L 111.63259879675667 349.05039250077846 L 111.63259879675667 350.9130663233371" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 349.05039250077846 L 111.63259879675667 349.05039250077846 L 111.63259879675667 350.9130663233371" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 840.8359208969973 361.376910444181 L 858.7321988000114 361.376910444181" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 840.8359208969973 361.376910444181 L 858.7321988000114 361.376910444181" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 135.04385213518918 151.64349032569547 L 147.82690778019924 151.64349032569547 L 147.82690778019924 151.60696730956687" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 135.04385213518918 151.64349032569547 L 147.82690778019924 151.64349032569547 L 147.82690778019924 151.60696730956687" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 412.28398039803704 290.3396440740539 L 402.1184075755767 290.3396440740539 L 402.1184075755767 294.3571758481999 L 377.2827566081287 294.3571758481999 L 377.2827566081287 290.3396440740539 L 352.02100378584703 290.3396440740539" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 412.28398039803704 290.3396440740539 L 402.1184075755767 290.3396440740539 L 402.1184075755767 294.3571758481999 L 377.2827566081287 294.3571758481999 L 377.2827566081287 290.3396440740539 L 352.02100378584703 290.3396440740539" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 589.7370687882524 L 766.8553991835091 589.7370687882524 L 766.8553991835091 582.3959425464038" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 589.7370687882524 L 766.8553991835091 589.7370687882524 L 766.8553991835091 582.3959425464038" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 215.39448761810922 349.05039250077846 L 226.38791547281784 349.05039250077846 L 226.38791547281784 341.70926625892986" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 215.39448761810922 349.05039250077846 L 226.38791547281784 349.05039250077846 L 226.38791547281784 341.70926625892986" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 589.7370687882524 L 678.8349303135831 589.7370687882524 L 678.8349303135831 582.3959425464038" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 589.7370687882524 L 678.8349303135831 589.7370687882524 L 678.8349303135831 582.3959425464038" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 171.73114919642546 L 155.4967411672052 171.73114919642546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 171.73114919642546 L 155.4967411672052 171.73114919642546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 184.1673088281562 261.2125387114954 L 184.1673088281562 239.29872903433548" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 184.1673088281562 261.2125387114954 L 184.1673088281562 239.29872903433548" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 213.73261774431546 L 155.4967411672052 213.73261774431546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 213.73261774431546 L 155.4967411672052 213.73261774431546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 206.42801451859546 L 155.4967411672052 206.42801451859546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 206.42801451859546 L 155.4967411672052 206.42801451859546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 385.5734086293785 L 114.59096310317324 385.5734086293785" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 385.5734086293785 L 114.59096310317324 385.5734086293785" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 191.81880806715546 L 155.4967411672052 191.81880806715546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 191.81880806715546 L 155.4967411672052 191.81880806715546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 127.73924890946921 199.1234112928755 L 155.4967411672052 199.1234112928755" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 127.73924890946921 199.1234112928755 L 155.4967411672052 199.1234112928755" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 378.26880540365846 L 114.59096310317324 378.26880540365846" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 378.26880540365846 L 114.59096310317324 378.26880540365846" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 356.3549957264985 L 120.43464568374924 356.3549957264985" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 356.3549957264985 L 120.43464568374924 356.3549957264985" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 386.94302173420107 L 745.8760789626374 386.94302173420107" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 386.94302173420107 L 745.8760789626374 386.94302173420107" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 618.9554816911325 L 777.7757810059604 618.9554816911325" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 618.9554816911325 L 777.7757810059604 618.9554816911325" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 142.3484553609092 363.65959895221846 L 120.43464568374924 363.65959895221846" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 142.3484553609092 363.65959895221846 L 120.43464568374924 363.65959895221846" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 394.24762495992104 L 745.8760789626374 394.24762495992104" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 394.24762495992104 L 745.8760789626374 394.24762495992104" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 611.6508784654125 L 777.7757810059604 611.6508784654125" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 611.6508784654125 L 777.7757810059604 611.6508784654125" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 215.39448761810922 370.9642021779385 L 237.3082972952692 370.9642021779385" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 215.39448761810922 370.9642021779385 L 237.3082972952692 370.9642021779385" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 215.39448761810922 363.65959895221846 L 237.3082972952692 363.65959895221846" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 215.39448761810922 363.65959895221846 L 237.3082972952692 363.65959895221846" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1038.4254381527235 221.03722097003546 L 1007.7461046046994 221.03722097003546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1038.4254381527235 221.03722097003546 L 1007.7461046046994 221.03722097003546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 972.3187789599574 329.87580903326347 L 950.4049692827973 329.87580903326347" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 972.3187789599574 329.87580903326347 L 950.4049692827973 329.87580903326347" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 204.32794109120096 L 748.3961670755107 204.32794109120096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 204.32794109120096 L 748.3961670755107 204.32794109120096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 711.3618287211103 151.91741294665997 L 711.3618287211103 173.83122262382" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 711.3618287211103 151.91741294665997 L 711.3618287211103 173.83122262382" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 618.9554816911325 L 687.2352240231611 618.9554816911325" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 618.9554816911325 L 687.2352240231611 618.9554816911325" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 226.24175076836096 L 748.3961670755107 226.24175076836096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 226.24175076836096 L 748.3961670755107 226.24175076836096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 604.3462752396924 L 777.7757810059604 604.3462752396924" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 604.3462752396924 L 777.7757810059604 604.3462752396924" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 284.67857657412094 L 745.8760789626374 284.67857657412094" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 284.67857657412094 L 745.8760789626374 284.67857657412094" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 458.7472351226395 579.7845468932089 L 436.8334254454795 579.7845468932089" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 458.7472351226395 579.7845468932089 L 436.8334254454795 579.7845468932089" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 640.8692913682925 L 777.7757810059604 640.8692913682925" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 640.8692913682925 L 777.7757810059604 640.8692913682925" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 328.506195928441 L 745.8760789626374 328.506195928441" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 328.506195928441 L 745.8760789626374 328.506195928441" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 711.3618287211103 421.82250213701394 L 711.3618287211103 443.7363118141739" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 711.3618287211103 421.82250213701394 L 711.3618287211103 443.7363118141739" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 655.4784978197324 L 777.7757810059604 655.4784978197324" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 655.4784978197324 L 777.7757810059604 655.4784978197324" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 648.1738945940124 L 777.7757810059604 648.1738945940124" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 648.1738945940124 L 777.7757810059604 648.1738945940124" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 211.63254431692096 L 748.3961670755107 211.63254431692096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 211.63254431692096 L 748.3961670755107 211.63254431692096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 626.2600849168524 L 687.2352240231611 626.2600849168524" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 626.2600849168524 L 687.2352240231611 626.2600849168524" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 255.46016367124093 L 748.3961670755107 255.46016367124093" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 255.46016367124093 L 748.3961670755107 255.46016367124093" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 604.3462752396924 L 687.2352240231611 604.3462752396924" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 604.3462752396924 L 687.2352240231611 604.3462752396924" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 262.76476689696096 L 748.3961670755107 262.76476689696096" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 262.76476689696096 L 748.3961670755107 262.76476689696096" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 611.6508784654125 L 687.2352240231611 611.6508784654125" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 611.6508784654125 L 687.2352240231611 611.6508784654125" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 299.287783025561 L 745.8760789626374 299.287783025561" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 299.287783025561 L 745.8760789626374 299.287783025561" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 633.5646881425724 L 687.2352240231611 633.5646881425724" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 633.5646881425724 L 687.2352240231611 633.5646881425724" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 306.59238625128097 L 745.8760789626374 306.59238625128097" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 306.59238625128097 L 745.8760789626374 306.59238625128097" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 640.8692913682925 L 687.2352240231611 640.8692913682925" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 640.8692913682925 L 687.2352240231611 640.8692913682925" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 313.896989477001 L 745.8760789626374 313.896989477001" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 313.896989477001 L 745.8760789626374 313.896989477001" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 648.1738945940124 L 687.2352240231611 648.1738945940124" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 648.1738945940124 L 687.2352240231611 648.1738945940124" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 321.201592702721 L 745.8760789626374 321.201592702721" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 321.201592702721 L 745.8760789626374 321.201592702721" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 667.8415024588745 655.4784978197324 L 687.2352240231611 655.4784978197324" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 667.8415024588745 655.4784978197324 L 687.2352240231611 655.4784978197324" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 357.724608831321 L 745.8760789626374 357.724608831321" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 357.724608831321 L 745.8760789626374 357.724608831321" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 633.5646881425724 L 777.7757810059604 633.5646881425724" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 633.5646881425724 L 777.7757810059604 633.5646881425724" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 767.7898886397974 365.029212057041 L 745.8760789626374 365.029212057041" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 767.7898886397974 365.029212057041 L 745.8760789626374 365.029212057041" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 755.8619713288006 626.2600849168524 L 777.7757810059604 626.2600849168524" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 755.8619713288006 626.2600849168524 L 777.7757810059604 626.2600849168524" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1038.4254381527235 213.73261774431546 L 1007.7461046046994 213.73261774431546" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1038.4254381527235 213.73261774431546 L 1007.7461046046994 213.73261774431546" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 994.2325886371174 261.2125387114954 L 1024.9119221851415 261.2125387114954" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.2325886371174 261.2125387114954 L 1024.9119221851415 261.2125387114954" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 1038.4254381527235 301.3878564529555 L 1001.9024220241233 301.3878564529555" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1038.4254381527235 301.3878564529555 L 1001.9024220241233 301.3878564529555" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round" 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 994.2325886371174 329.87580903326347 L 1030.7556047657174 329.87580903326347" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="5.843682580576px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 994.2325886371174 329.87580903326347 L 1030.7556047657174 329.87580903326347" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.730460322572px" 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="127.73924890946921" cy="283.12634838865546" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="171.20163810250318" cy="283.12634838865546" r="1.095690483858" 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="135.04385213518918" cy="268.51714193721546" r="1.095690483858" 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"><circle cx="135.04385213518918" cy="261.2125387114954" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="135.04385213518918" cy="253.90793548577545" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><circle cx="184.1673088281562" cy="283.1263483886555" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="184.1673088281562" cy="290.43095161437554" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"><circle cx="717.2968188420078" cy="248.15556044552093" r="1.095690483858" 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"><circle cx="767.7898886397974" cy="248.15556044552093" r="1.095690483858" 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_12__stack1"><circle cx="746.5700162690807" cy="182.41413141404098" r="1.095690483858" 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_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"><circle cx="848.1405241227174" cy="222.589449155501" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="848.1405241227174" cy="229.894052381221" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="840.8359208969973" cy="229.894052381221" r="1.095690483858" 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_15__stack1"><circle cx="848.1405241227174" cy="215.284845929781" r="1.095690483858" 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_16__stack1"><circle cx="848.1405241227174" cy="207.98024270406097" r="1.095690483858" 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_17__stack1"><circle cx="848.1405241227174" cy="200.675639478341" r="1.095690483858" 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_18__stack1"><circle cx="848.1405241227174" cy="193.37103625262097" r="1.095690483858" 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_19__stack1"><circle cx="848.1405241227174" cy="186.06643302690097" r="1.095690483858" 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_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"><circle cx="848.1405241227174" cy="237.198655606941" r="1.095690483858" 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_22__stack1"><circle cx="848.1405241227174" cy="244.503258832661" r="1.095690483858" 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_23__stack1"><circle cx="848.1405241227174" cy="251.80786205838103" r="1.095690483858" 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_24__stack1"><circle cx="848.1405241227174" cy="259.112465284101" r="1.095690483858" 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_25__stack1"><circle cx="848.1405241227174" cy="266.41706850982104" r="1.095690483858" 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_26__stack1"><circle cx="848.1405241227174" cy="273.721671735541" r="1.095690483858" 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_27__stack1"><circle cx="848.1405241227174" cy="281.02627496126104" r="1.095690483858" 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_28__stack1"><circle cx="848.1405241227174" cy="288.330878186981" r="1.095690483858" 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_29__stack1"><circle cx="848.1405241227174" cy="295.6354814127011" r="1.095690483858" 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_30__stack1"><circle cx="848.1405241227174" cy="302.940084638421" r="1.095690483858" 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_31__stack1"><circle cx="848.1405241227174" cy="310.24468786414104" r="1.095690483858" 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_32__stack1"><circle cx="848.1405241227174" cy="317.5492910898611" r="1.095690483858" 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_33__stack1"><circle cx="848.1405241227174" cy="324.85389431558104" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"><circle cx="848.1405241227174" cy="332.1584975413011" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__stack1"><circle cx="848.1405241227174" cy="339.46310076702105" r="1.095690483858" 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_36__stack1"><circle cx="848.1405241227174" cy="346.767703992741" r="1.095690483858" 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_37__stack1"><circle cx="848.1405241227174" cy="354.07230721846105" r="1.095690483858" 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_38__stack1"><circle cx="840.8359208969973" cy="361.376910444181" r="1.095690483858" 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_39__stack1"><circle cx="135.04385213518918" cy="151.64349032569547" r="1.095690483858" 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_40__stack1"><circle cx="412.28398039803704" cy="290.3396440740539" r="1.095690483858" 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_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"><circle cx="717.2968188420078" cy="189.71873463976095" r="1.095690483858" 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_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"><circle cx="91.85538556311974" cy="375.3469641133705" r="1.095690483858" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="91.85538556311974" cy="370.9642021779385" r="1.095690483858" 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_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"><circle cx="746.5700162690807" cy="248.15556044552096" r="1.095690483858" 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_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="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="69.3024231037092" y="144.33888709997544" width="43.82761935432001" height="146.09206451440005" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="69.3024231037092" y="144.33888709997544" width="43.82761935432001" height="146.09206451440005" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="275.8217451629355" x2="127.73924890946921" y2="275.8217451629355" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="127.00878858689721" y="275.09128484036347" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="275.0912848403635" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="275.8217451629355" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">SHELL3</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="283.12634838865546" x2="127.73924890946921" y2="283.12634838865546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="127.00878858689721" y="282.39588806608344" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="282.39588806608344" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="283.12634838865546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">SHELL4</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="261.2125387114954" x2="127.73924890946921" y2="261.2125387114954" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="127.00878858689721" y="260.4820783889234" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="260.48207838892347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="261.2125387114954" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">SHELL1</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="268.51714193721546" x2="127.73924890946921" y2="268.51714193721546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="127.00878858689721" y="267.78668161464344" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="267.7866816146435" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="268.51714193721546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">SHELL2</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="246.60333226005545" x2="127.73924890946921" y2="246.60333226005545" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="127.00878858689721" y="245.87287193748347" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="245.87287193748347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="246.60333226005545" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A1B12</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="151.64349032569547" x2="127.73924890946921" y2="151.64349032569547" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="127.00878858689721" y="150.91303000312348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="150.91303000312348" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="151.64349032569547" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A4B9</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="233.82027661504546" x2="127.00878858689725" y2="233.82027661504546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="127.73924890946921" cy="233.82027661504546" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="127.00878858689721" y="233.08981629247347" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="233.08981629247347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="233.82027661504546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B8</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="171.73114919642546" x2="127.73924890946921" y2="171.73114919642546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="127.00878858689721" y="171.00068887385348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="171.00068887385345" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="171.73114919642546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A5</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="213.73261774431546" x2="127.73924890946921" y2="213.73261774431546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="127.00878858689721" y="213.00215742174348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="213.00215742174348" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="213.73261774431546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B7</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="191.81880806715546" x2="127.73924890946921" y2="191.81880806715546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="127.00878858689721" y="191.08834774458347" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="191.08834774458347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="191.81880806715546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A6</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="206.42801451859546" x2="127.73924890946921" y2="206.42801451859546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="127.00878858689721" y="205.69755419602348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="205.69755419602348" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="206.42801451859546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A7</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="199.1234112928755" x2="127.73924890946921" y2="199.1234112928755" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="127.00878858689721" y="198.3929509703035" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="198.3929509703035" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="199.1234112928755" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B6</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="226.51567338932549" x2="127.00878858689725" y2="226.51567338932549" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="127.73924890946921" cy="226.51567338932549" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="127.00878858689721" y="225.7852130667535" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="225.7852130667535" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="226.51567338932549" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">A8</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="179.03575242214546" x2="127.73924890946921" y2="179.03575242214546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><rect x="127.00878858689721" y="178.30529209957348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="178.30529209957348" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="179.03575242214546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B5</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="158.94809355141544" x2="127.73924890946921" y2="158.94809355141544" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_14__stack1"><rect x="127.00878858689721" y="158.21763322884345" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="158.21763322884345" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="158.94809355141544" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B4A9</text><line class="component-pin sch-component-pin sch-port-line" x1="113.13004245802921" y1="253.90793548577545" x2="127.73924890946921" y2="253.90793548577545" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_0_15__stack1"><rect x="127.00878858689721" y="253.17747516320347" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="120.43464568374924" y="253.17747516320347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="109.47774084516925" y="253.90793548577545" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">B1A12</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="156.95766181234927" y="341.7457892750585" width="43.82761935431995" height="65.74142903147998" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="156.95766181234927" y="341.7457892750585" width="43.82761935431995" height="65.74142903147998" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="349.05039250077846" x2="142.3484553609092" y2="349.05039250077846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="141.61799503833723" y="348.31993217820644" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="348.3199321782065" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="349.05039250077846" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="356.3549957264985" x2="142.3484553609092" y2="356.3549957264985" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="141.61799503833723" y="355.6245354039265" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="355.6245354039265" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="356.3549957264985" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">TXD</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="363.65959895221846" x2="142.3484553609092" y2="363.65959895221846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="141.61799503833723" y="362.92913862964645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="362.9291386296465" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="363.65959895221846" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">RXD</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="370.9642021779385" x2="142.3484553609092" y2="370.9642021779385" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="141.61799503833723" y="370.2337418553665" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="370.23374185536653" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="370.9642021779385" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">V3</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="378.26880540365846" x2="142.3484553609092" y2="378.26880540365846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="141.61799503833723" y="377.53834508108645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="377.5383450810865" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="378.26880540365846" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">D_POS</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="385.5734086293785" x2="142.3484553609092" y2="385.5734086293785" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="141.61799503833723" y="384.8429483068065" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="384.84294830680653" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="385.5734086293785" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">D_NEG</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="392.87801185509846" x2="143.07891568348123" y2="392.87801185509846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="142.3484553609092" cy="392.87801185509846" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="141.61799503833723" y="392.14755153252645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="392.1475515325265" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="156.95766181234927" y1="400.18261508081844" x2="143.07891568348123" y2="400.18261508081844" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="142.3484553609092" cy="400.18261508081844" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="141.61799503833723" y="399.4521547582464" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="149.6530585866292" y="399.4521547582465" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="160.60996342520923" y="400.18261508081844" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="4.382761935432px" transform="">OUT</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="400.18261508081844" x2="214.66402729553727" y2="400.18261508081844" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="215.39448761810922" cy="400.18261508081844" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="214.66402729553724" y="399.4521547582464" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="399.4521547582465" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="400.18261508081844" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">CTS</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="392.87801185509846" x2="214.66402729553727" y2="392.87801185509846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="215.39448761810922" cy="392.87801185509846" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="214.66402729553724" y="392.14755153252645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="392.1475515325265" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="392.87801185509846" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">DSR</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="385.5734086293785" x2="214.66402729553727" y2="385.5734086293785" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="215.39448761810922" cy="385.5734086293785" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="214.66402729553724" y="384.8429483068065" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="384.84294830680653" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="385.5734086293785" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">RI</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="378.26880540365846" x2="214.66402729553727" y2="378.26880540365846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="215.39448761810922" cy="378.26880540365846" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="214.66402729553724" y="377.53834508108645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="377.5383450810865" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="378.26880540365846" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">DCD</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="370.9642021779385" x2="215.39448761810922" y2="370.9642021779385" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="214.66402729553724" y="370.2337418553665" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="370.23374185536653" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="370.9642021779385" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">DTR</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="363.65959895221846" x2="215.39448761810922" y2="363.65959895221846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="214.66402729553724" y="362.92913862964645" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="362.9291386296465" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="363.65959895221846" style="font-family: sans-serif; text-decoration: overline;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="4.382761935432px" transform="">RTS</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="356.3549957264985" x2="214.66402729553727" y2="356.3549957264985" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="215.39448761810922" cy="356.3549957264985" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="214.66402729553724" y="355.6245354039265" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="355.6245354039265" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="356.3549957264985" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">R232</text><line class="component-pin sch-component-pin sch-port-line" x1="200.78528116666922" y1="349.05039250077846" x2="215.39448761810922" y2="349.05039250077846" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_1_15__stack1"><rect x="214.66402729553724" y="348.31993217820644" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="208.08988439238925" y="348.3199321782065" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="197.1329795538092" y="349.05039250077846" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">VCC</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="434.1977900751971" y="286.68734246119396" width="43.82761935431995" height="21.913809677159975" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="434.1977900751971" y="286.68734246119396" width="43.82761935431995" height="21.913809677159975" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="434.1977900751971" y1="290.3396440740539" x2="419.588583623757" y2="290.3396440740539" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="418.858123301185" y="289.6091837514819" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="426.89318684947705" y="289.60918375148196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="437.8500916880571" y="290.3396440740539" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">VIN</text><line class="component-pin sch-component-pin sch-port-line" x1="434.1977900751971" y1="297.64424729977395" x2="419.588583623757" y2="297.64424729977395" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="418.858123301185" y="296.91378697720194" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="426.89318684947705" y="296.913786977202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="437.8500916880571" y="297.64424729977395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND</text><line class="component-pin sch-component-pin sch-port-line" x1="434.1977900751971" y1="304.948850525494" x2="419.588583623757" y2="304.948850525494" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="418.858123301185" y="304.21839020292197" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="426.89318684947705" y="304.21839020292197" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="437.8500916880571" y="304.948850525494" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">EN</text><line class="component-pin sch-component-pin sch-port-line" x1="478.025409429517" y1="301.29654891263397" x2="491.90415555838507" y2="301.29654891263397" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="492.6346158809571" cy="301.29654891263397" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="491.90415555838507" y="300.56608859006195" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="485.33001265523706" y="300.56608859006195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="474.37310781665707" y="301.29654891263397" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC</text><line class="component-pin sch-component-pin sch-port-line" x1="478.025409429517" y1="293.99194568691394" x2="492.6346158809571" y2="293.99194568691394" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="491.90415555838507" y="293.2614853643419" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="485.33001265523706" y="293.261485364342" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="474.37310781665707" y="293.99194568691394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">VOUT</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="782.3990950912373" y="171.457226575461" width="43.82761935431995" height="226.44269999732" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="782.3990950912373" y="171.457226575461" width="43.82761935431995" height="226.44269999732" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="229.894052381221" x2="840.8359208969973" y2="229.894052381221" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="840.1054605744254" y="229.16359205864902" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="229.16359205864902" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="229.894052381221" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND23</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="222.589449155501" x2="840.8359208969973" y2="222.589449155501" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="840.1054605744254" y="221.85898883292901" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="221.85898883292901" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="222.589449155501" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND24</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="215.284845929781" x2="840.8359208969973" y2="215.284845929781" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_2__stack1"><rect x="840.1054605744254" y="214.554385607209" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="214.55438560720899" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="215.284845929781" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND25</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="207.98024270406097" x2="840.8359208969973" y2="207.98024270406097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_3__stack1"><rect x="840.1054605744254" y="207.24978238148898" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="207.24978238148898" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="207.98024270406097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND26</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="200.675639478341" x2="840.8359208969973" y2="200.675639478341" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_4__stack1"><rect x="840.1054605744254" y="199.945179155769" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="199.94517915576898" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="200.675639478341" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND27</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="193.37103625262097" x2="840.8359208969973" y2="193.37103625262097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_5__stack1"><rect x="840.1054605744254" y="192.64057593004898" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="192.64057593004895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="193.37103625262097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND28</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="186.06643302690097" x2="840.8359208969973" y2="186.06643302690097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_6__stack1"><rect x="840.1054605744254" y="185.33597270432898" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="185.33597270432898" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="186.06643302690097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND29</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="178.76182980118097" x2="840.8359208969973" y2="178.76182980118097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_7__stack1"><rect x="840.1054605744254" y="178.03136947860898" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="178.03136947860895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="178.76182980118097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND30</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="175.10952818832095" x2="767.7898886397974" y2="175.10952818832095" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_8__stack1"><rect x="767.0594283172254" y="174.37906786574897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="174.37906786574894" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="175.10952818832095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND1</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="182.41413141404098" x2="767.7898886397974" y2="182.41413141404098" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_9__stack1"><rect x="767.0594283172254" y="181.683671091469" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="181.68367109146897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="182.41413141404098" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND2</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="189.71873463976095" x2="767.7898886397974" y2="189.71873463976095" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_10__stack1"><rect x="767.0594283172254" y="188.98827431718897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="188.98827431718894" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="189.71873463976095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">3V3</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="197.02333786548095" x2="768.5203489623693" y2="197.02333786548095" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="197.02333786548095" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="196.29287754290897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="196.29287754290897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="197.02333786548095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC1</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="204.32794109120096" x2="767.7898886397974" y2="204.32794109120096" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_12__stack1"><rect x="767.0594283172254" y="203.59748076862897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="203.59748076862897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="204.32794109120096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO2</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="211.63254431692096" x2="767.7898886397974" y2="211.63254431692096" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_13__stack1"><rect x="767.0594283172254" y="210.90208399434897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="210.90208399434894" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="211.63254431692096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO3</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="218.93714754264093" x2="768.5203489623693" y2="218.93714754264093" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="218.93714754264093" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="218.20668722006894" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="218.20668722006894" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="218.93714754264093" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC2</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="226.24175076836096" x2="767.7898886397974" y2="226.24175076836096" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_15__stack1"><rect x="767.0594283172254" y="225.51129044578897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="225.51129044578897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="226.24175076836096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">EN</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="233.54635399408096" x2="768.5203489623693" y2="233.54635399408096" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_16__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="233.54635399408096" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="232.81589367150897" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="232.81589367150897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="233.54635399408096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC3</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="240.85095721980093" x2="768.5203489623693" y2="240.85095721980093" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="240.85095721980093" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="240.12049689722895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="240.12049689722895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="240.85095721980093" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC4</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="248.15556044552093" x2="767.7898886397974" y2="248.15556044552093" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_18__stack1"><rect x="767.0594283172254" y="247.42510012294895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="247.42510012294895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="248.15556044552093" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND3</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="255.46016367124093" x2="767.7898886397974" y2="255.46016367124093" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_19__stack1"><rect x="767.0594283172254" y="254.72970334866895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="254.72970334866895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="255.46016367124093" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO0</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="262.76476689696096" x2="767.7898886397974" y2="262.76476689696096" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_20__stack1"><rect x="767.0594283172254" y="262.03430657438895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="262.03430657438895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="262.76476689696096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO1</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="270.069370122681" x2="767.7898886397974" y2="270.069370122681" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_21__stack1"><rect x="767.0594283172254" y="269.338909800109" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="269.338909800109" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="270.069370122681" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND4</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="277.37397334840097" x2="768.5203489623693" y2="277.37397334840097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_22__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="277.37397334840097" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="276.64351302582895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="276.64351302582895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="277.37397334840097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC5</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="284.67857657412094" x2="767.7898886397974" y2="284.67857657412094" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_23__stack1"><rect x="767.0594283172254" y="283.9481162515489" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="283.948116251549" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="284.67857657412094" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO10</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="291.98317979984097" x2="768.5203489623693" y2="291.98317979984097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_24__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="291.98317979984097" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="291.25271947726895" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="291.252719477269" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="291.98317979984097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC6</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="299.287783025561" x2="767.7898886397974" y2="299.287783025561" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_25__stack1"><rect x="767.0594283172254" y="298.557322702989" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="298.557322702989" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="299.287783025561" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO4</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="306.59238625128097" x2="767.7898886397974" y2="306.59238625128097" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_26__stack1"><rect x="767.0594283172254" y="305.86192592870896" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="305.861925928709" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="306.59238625128097" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO5</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="313.896989477001" x2="767.7898886397974" y2="313.896989477001" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_27__stack1"><rect x="767.0594283172254" y="313.166529154429" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="313.166529154429" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="313.896989477001" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO6</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="321.201592702721" x2="767.7898886397974" y2="321.201592702721" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_28__stack1"><rect x="767.0594283172254" y="320.47113238014896" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="320.471132380149" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="321.201592702721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO7</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="328.506195928441" x2="767.7898886397974" y2="328.506195928441" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_29__stack1"><rect x="767.0594283172254" y="327.775735605869" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="327.77573560586904" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="328.506195928441" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO8</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="335.810799154161" x2="767.7898886397974" y2="335.810799154161" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_30__stack1"><rect x="767.0594283172254" y="335.08033883158896" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="335.080338831589" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="335.810799154161" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO9</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="343.115402379881" x2="768.5203489623693" y2="343.115402379881" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_31__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="343.115402379881" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="342.384942057309" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="342.38494205730905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="343.115402379881" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC7</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="350.420005605601" x2="768.5203489623693" y2="350.420005605601" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_32__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="350.420005605601" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="349.68954528302896" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="349.689545283029" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="350.420005605601" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC8</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="357.724608831321" x2="767.7898886397974" y2="357.724608831321" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_33__stack1"><rect x="767.0594283172254" y="356.994148508749" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="356.99414850874905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="357.724608831321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO18</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="365.029212057041" x2="767.7898886397974" y2="365.029212057041" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_34__stack1"><rect x="767.0594283172254" y="364.29875173446896" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="364.298751734469" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="365.029212057041" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">IO19</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="372.33381528276107" x2="768.5203489623693" y2="372.33381528276107" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_35__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="372.33381528276107" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="371.60335496018905" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="371.60335496018905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="372.33381528276107" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC9</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="379.63841850848104" x2="768.5203489623693" y2="379.63841850848104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_36__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="767.7898886397974" cy="379.63841850848104" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="767.0594283172254" y="378.907958185909" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="378.907958185909" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="379.63841850848104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC10</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="386.94302173420107" x2="767.7898886397974" y2="386.94302173420107" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_37__stack1"><rect x="767.0594283172254" y="386.21256141162905" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="386.21256141162905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="386.94302173420107" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">RXD0</text><line class="component-pin sch-component-pin sch-port-line" x1="782.3990950912373" y1="394.24762495992104" x2="767.7898886397974" y2="394.24762495992104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_38__stack1"><rect x="767.0594283172254" y="393.517164637349" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="775.0944918655173" y="393.517164637349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="786.0513967040973" y="394.24762495992104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">TXD0</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="390.595323347061" x2="840.1054605744254" y2="390.595323347061" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_39__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="840.8359208969973" cy="390.595323347061" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="840.1054605744254" y="389.864863024489" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="389.86486302448907" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="390.595323347061" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC11</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="383.29072012134105" x2="840.1054605744254" y2="383.29072012134105" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_40__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="840.8359208969973" cy="383.29072012134105" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="840.1054605744254" y="382.56025979876904" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="382.5602597987691" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="383.29072012134105" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC12</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="375.986116895621" x2="840.1054605744254" y2="375.986116895621" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_41__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="840.8359208969973" cy="375.986116895621" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="840.1054605744254" y="375.255656573049" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="375.25565657304907" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="375.986116895621" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC13</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="368.68151366990105" x2="840.1054605744254" y2="368.68151366990105" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_42__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="840.8359208969973" cy="368.68151366990105" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="840.1054605744254" y="367.95105334732904" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="367.9510533473291" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="368.68151366990105" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">NC14</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="361.376910444181" x2="840.8359208969973" y2="361.376910444181" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_43__stack1"><rect x="840.1054605744254" y="360.646450121609" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="360.64645012160906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="361.376910444181" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND5</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="354.07230721846105" x2="840.8359208969973" y2="354.07230721846105" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_44__stack1"><rect x="840.1054605744254" y="353.34184689588903" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="353.34184689588903" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="354.07230721846105" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND6</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="346.767703992741" x2="840.8359208969973" y2="346.767703992741" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_45__stack1"><rect x="840.1054605744254" y="346.037243670169" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="346.03724367016906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="346.767703992741" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND7</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="339.46310076702105" x2="840.8359208969973" y2="339.46310076702105" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_46__stack1"><rect x="840.1054605744254" y="338.73264044444903" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="338.73264044444903" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="339.46310076702105" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND8</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="332.1584975413011" x2="840.8359208969973" y2="332.1584975413011" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_47__stack1"><rect x="840.1054605744254" y="331.42803721872906" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="331.42803721872906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="332.1584975413011" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND9</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="324.85389431558104" x2="840.8359208969973" y2="324.85389431558104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_48__stack1"><rect x="840.1054605744254" y="324.12343399300903" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="324.12343399300903" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="324.85389431558104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND10</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="317.5492910898611" x2="840.8359208969973" y2="317.5492910898611" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_49__stack1"><rect x="840.1054605744254" y="316.81883076728906" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="316.81883076728906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="317.5492910898611" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND11</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="310.24468786414104" x2="840.8359208969973" y2="310.24468786414104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_50__stack1"><rect x="840.1054605744254" y="309.514227541569" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="309.5142275415691" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="310.24468786414104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND12</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="302.940084638421" x2="840.8359208969973" y2="302.940084638421" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_51__stack1"><rect x="840.1054605744254" y="302.209624315849" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="302.20962431584906" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="302.940084638421" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND13</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="295.6354814127011" x2="840.8359208969973" y2="295.6354814127011" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_52__stack1"><rect x="840.1054605744254" y="294.9050210901291" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="294.9050210901291" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="295.6354814127011" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND14</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="288.330878186981" x2="840.8359208969973" y2="288.330878186981" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_53__stack1"><rect x="840.1054605744254" y="287.600417864409" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="287.600417864409" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="288.330878186981" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND15</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="281.02627496126104" x2="840.8359208969973" y2="281.02627496126104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_54__stack1"><rect x="840.1054605744254" y="280.295814638689" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="280.2958146386891" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="281.02627496126104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND16</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="273.721671735541" x2="840.8359208969973" y2="273.721671735541" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_55__stack1"><rect x="840.1054605744254" y="272.991211412969" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="272.99121141296905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="273.721671735541" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND17</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="266.41706850982104" x2="840.8359208969973" y2="266.41706850982104" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_56__stack1"><rect x="840.1054605744254" y="265.686608187249" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="265.686608187249" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="266.41706850982104" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND22</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="259.112465284101" x2="840.8359208969973" y2="259.112465284101" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_57__stack1"><rect x="840.1054605744254" y="258.382004961529" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="258.382004961529" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="259.112465284101" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND18</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="251.80786205838103" x2="840.8359208969973" y2="251.80786205838103" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_58__stack1"><rect x="840.1054605744254" y="251.07740173580905" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="251.07740173580905" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="251.80786205838103" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND19</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="244.503258832661" x2="840.8359208969973" y2="244.503258832661" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_59__stack1"><rect x="840.1054605744254" y="243.77279851008902" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="243.77279851008902" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="244.503258832661" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND20</text><line class="component-pin sch-component-pin sch-port-line" x1="826.2267144455573" y1="237.198655606941" x2="840.8359208969973" y2="237.198655606941" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_3_60__stack1"><rect x="840.1054605744254" y="236.46819528436902" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="833.5313176712773" y="236.46819528436902" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="822.5744128326974" y="237.198655606941" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">GND21</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="1053.0346446041633" y="210.08031613145545" width="43.82761935431995" height="14.60920645144003" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1053.0346446041633" y="210.08031613145545" width="43.82761935431995" height="14.60920645144003" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1053.0346446041633" y1="213.73261774431546" x2="1038.4254381527235" y2="213.73261774431546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="1037.6949778301514" y="213.00215742174348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1045.7300413784433" y="213.00215742174345" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1056.6869462170234" y="213.73261774431546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">B</text><line class="component-pin sch-component-pin sch-port-line" x1="1053.0346446041633" y1="221.03722097003546" x2="1038.4254381527235" y2="221.03722097003546" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="1037.6949778301514" y="220.30676064746348" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1045.7300413784433" y="220.30676064746345" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1056.6869462170234" y="221.03722097003546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">E</text><line class="component-pin sch-component-pin sch-port-line" x1="1096.8622639584833" y1="217.38491935717545" x2="1111.4714704099233" y2="217.38491935717545" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_4_2__stack1"><rect x="1110.7410100873512" y="216.65445903460346" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1104.1668671842035" y="216.65445903460346" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1093.2099623456234" y="217.38491935717545" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">C</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="1053.0346446041633" y="297.73555484009546" width="43.82761935431995" height="14.609206451440002" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1053.0346446041633" y="297.73555484009546" width="43.82761935431995" height="14.609206451440002" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1053.0346446041633" y1="301.3878564529555" x2="1038.4254381527235" y2="301.3878564529555" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="1037.6949778301514" y="300.65739613038346" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1045.7300413784433" y="300.65739613038346" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1056.6869462170234" y="301.3878564529555" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">B</text><line class="component-pin sch-component-pin sch-port-line" x1="1053.0346446041633" y1="308.6924596786755" x2="1038.4254381527235" y2="308.6924596786755" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><rect x="1037.6949778301514" y="307.9619993561035" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1045.7300413784433" y="307.9619993561035" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1056.6869462170234" y="308.6924596786755" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">E</text><line class="component-pin sch-component-pin sch-port-line" x1="1096.8622639584833" y1="305.0401580658155" x2="1111.4714704099233" y2="305.0401580658155" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><rect x="1110.7410100873512" y="304.3096977432435" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1104.1668671842035" y="304.3096977432435" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="1093.2099623456234" y="305.0401580658155" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">C</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="1155.4817048448863" y="319.6493645172555" width="26.256787091122987" height="5.1132222580039866" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1155.4817048448863" y="319.6493645172555" width="26.256787091122987" height="5.1132222580039866" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1168.610098390448" y1="319.6493645172555" x2="1168.610098390448" y2="305.0401580658155" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><rect x="1167.879638067876" y="304.3096977432435" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1167.879638067876" y="312.34476129153546" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 1167.879638067876 312.34476129153546)">1</text><line class="component-pin sch-component-pin sch-port-line" x1="1168.610098390448" y1="324.7625867752595" x2="1168.610098390448" y2="339.3717932266994" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><rect x="1167.879638067876" y="338.6413329041274" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1167.879638067876" y="332.06719000097945" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 1167.879638067876 332.06719000097945)">2</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="1155.4817048448863" y="241.12487984076552" width="26.256787091122987" height="5.113222258003958" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1155.4817048448863" y="241.12487984076552" width="26.256787091122987" height="5.113222258003958" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1168.610098390448" y1="241.12487984076552" x2="1168.610098390448" y2="226.51567338932549" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_7_0__stack1"><rect x="1167.879638067876" y="225.7852130667535" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1167.879638067876" y="233.8202766150455" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 1167.879638067876 233.8202766150455)">1</text><line class="component-pin sch-component-pin sch-port-line" x1="1168.610098390448" y1="246.23810209876947" x2="1168.610098390448" y2="260.8473085502095" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_7_1__stack1"><rect x="1167.879638067876" y="260.1168482276375" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="1167.879638067876" y="253.54270532448948" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 1167.879638067876 253.54270532448948)">2</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="468.7910645580045" y="650.6391981826929" width="41.08839314467497" height="12.052595322438151" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="468.7910645580045" y="650.6391981826929" width="41.08839314467497" height="12.052595322438151" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="480.66104479979947" y1="650.6391981826929" x2="480.66104479979947" y2="636.0299917312528" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_8_0__stack1"><rect x="479.93058447722746" y="635.2995314086809" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="479.9305844772275" y="643.3345949569729" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 479.9305844772275 643.3345949569729)"></text><text class="pin-number sch-pin-label" x="480.66104479979947" y="654.2914997955529" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 480.66104479979947 654.2914997955529)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="480.66104479979947" y1="662.691793505131" x2="480.66104479979947" y2="676.5705396339989" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_8_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="480.66104479979947" cy="677.300999956571" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="479.93058447722746" y="676.570539633999" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="479.9305844772275" y="669.996396730851" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 479.9305844772275 669.996396730851)"></text><text class="pin-number sch-pin-label" x="480.66104479979947" y="659.0394918922709" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 480.66104479979947 659.0394918922709)">cathode</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="172.29732858636123" y="270.3432927436455" width="39.62747249953105" height="3.652301612859958" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="172.29732858636123" y="270.3432927436455" width="39.62747249953105" height="3.652301612859958" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="184.1673088281562" y1="270.3432927436455" x2="184.1673088281562" y2="261.2125387114954" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_9_0__stack1"><rect x="183.4368485055842" y="260.4820783889234" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="183.43684850558424" y="265.7779157275705" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 183.43684850558424 265.7779157275705)"></text><text class="pin-number sch-pin-label" x="184.1673088281562" y="273.9955943565055" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 184.1673088281562 273.9955943565055)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="184.1673088281562" y1="273.9955943565055" x2="184.1673088281562" y2="283.1263483886555" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_9_1__stack1"><rect x="183.4368485055842" y="282.3958880660835" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="183.43684850558424" y="278.5609713725805" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 183.43684850558424 278.5609713725805)"></text><text class="pin-number sch-pin-label" x="184.1673088281562" y="270.3432927436455" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 184.1673088281562 270.3432927436455)">cathode</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="172.29732858636123" y="204.23663355087947" width="39.62747249953105" height="3.6523016128599863" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="172.29732858636123" y="204.23663355087947" width="39.62747249953105" height="3.6523016128599863" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="184.1673088281562" y1="204.23663355087947" x2="184.1673088281562" y2="195.10587951872947" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_10_0__stack1"><rect x="183.4368485055842" y="194.37541919615748" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="183.43684850558424" y="199.67125653480448" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 183.43684850558424 199.67125653480448)"></text><text class="pin-number sch-pin-label" x="184.1673088281562" y="207.88893516373946" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 184.1673088281562 207.88893516373946)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="184.1673088281562" y1="207.88893516373946" x2="184.1673088281562" y2="217.01968919588947" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_10_1__stack1"><rect x="183.4368485055842" y="216.28922887331748" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="183.43684850558424" y="212.45431217981448" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 183.43684850558424 212.45431217981448)"></text><text class="pin-number sch-pin-label" x="184.1673088281562" y="204.23663355087947" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 184.1673088281562 204.23663355087947)">cathode</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="624.117473943917" y="278.1957412112945" width="35.24471056409902" height="3.6523016128600148" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="624.117473943917" y="278.1957412112945" width="35.24471056409902" height="3.6523016128600148" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="635.9874541857121" y1="278.1957412112945" x2="635.9874541857121" y2="269.79544750171647" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_11_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="635.9874541857121" cy="269.0649871791445" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="635.2569938631401" y="268.3345268565725" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="635.2569938631401" y="273.6303641952195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 635.2569938631401 273.6303641952195)"></text><text class="pin-number sch-pin-label" x="635.9874541857121" y="281.8480428241545" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 635.9874541857121 281.8480428241545)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="635.9874541857121" y1="281.8480428241545" x2="635.9874541857121" y2="290.9787968563045" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_11_1__stack1"><rect x="635.2569938631401" y="290.24833653373247" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="635.2569938631401" y="286.4134198402295" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 635.2569938631401 286.4134198402295)"></text><text class="pin-number sch-pin-label" x="635.9874541857121" y="278.1957412112945" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 635.9874541857121 278.1957412112945)">cathode</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="699.4918484793153" y="342.93278729923793" width="35.24471056409902" height="3.6523016128600148" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="699.4918484793153" y="342.93278729923793" width="35.24471056409902" height="3.6523016128600148" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="342.93278729923793" x2="711.3618287211103" y2="333.80203326708795" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_12_0__stack1"><rect x="710.6313683985384" y="333.07157294451594" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="338.36741028316294" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 338.36741028316294)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="346.58508891209794" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 346.58508891209794)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="346.58508891209794" x2="711.3618287211103" y2="355.7158429442479" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_12_1__stack1"><rect x="710.6313683985384" y="354.9853826216759" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="351.15046592817293" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 351.15046592817293)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="342.93278729923793" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 342.93278729923793)">cathode</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="699.4918484793153" y="409.0394464920039" width="35.24471056409902" height="3.6523016128600148" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="699.4918484793153" y="409.0394464920039" width="35.24471056409902" height="3.6523016128600148" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="409.0394464920039" x2="711.3618287211103" y2="399.90869245985385" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_13_0__stack1"><rect x="710.6313683985384" y="399.17823213728184" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="404.4740694759289" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 404.4740694759289)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="412.6917481048639" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 412.6917481048639)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="412.6917481048639" x2="711.3618287211103" y2="421.82250213701394" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_13_1__stack1"><rect x="710.6313683985384" y="421.0920418144419" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="417.25712512093895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 417.25712512093895)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="409.0394464920039" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 409.0394464920039)">cathode</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="699.4918484793153" y="139.13435730164997" width="35.24471056409902" height="3.6523016128600148" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="699.4918484793153" y="139.13435730164997" width="35.24471056409902" height="3.6523016128600148" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="139.13435730164997" x2="711.3618287211103" y2="130.0036032695" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_14_0__stack1"><rect x="710.6313683985384" y="129.273142946928" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="134.56898028557498" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 134.56898028557498)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="142.78665891450999" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 142.78665891450999)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="711.3618287211103" y1="142.78665891450999" x2="711.3618287211103" y2="151.91741294665997" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_14_1__stack1"><rect x="710.6313683985384" y="151.18695262408798" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="710.6313683985384" y="147.35203593058498" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 710.6313683985384 147.35203593058498)"></text><text class="pin-number sch-pin-label" x="711.3618287211103" y="139.13435730164997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 711.3618287211103 139.13435730164997)">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="981.4495329921074" y="248.79471322777147" width="3.6523016128600148" height="24.835650967448032" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="981.4495329921074" y="248.79471322777147" width="3.6523016128600148" height="24.835650967448032" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="981.4495329921074" y1="261.2125387114954" x2="972.3187789599574" y2="261.2125387114954" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_15_0__stack1"><rect x="971.5883186373854" y="260.4820783889234" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="976.8841559760324" y="260.48207838892347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="985.1018346049674" y="261.2125387114954" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="985.1018346049674" y1="261.2125387114954" x2="994.2325886371174" y2="261.2125387114954" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_15_1__stack1"><rect x="993.5021283145454" y="260.4820783889234" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="989.6672116210424" y="260.48207838892347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="981.4495329921074" y="261.2125387114954" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">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="981.4495329921074" y="317.45798354953945" width="3.6523016128600148" height="24.835650967447975" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="981.4495329921074" y="317.45798354953945" width="3.6523016128600148" height="24.835650967447975" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="981.4495329921074" y1="329.87580903326347" x2="972.3187789599574" y2="329.87580903326347" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_16_0__stack1"><rect x="971.5883186373854" y="329.14534871069145" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="976.8841559760324" y="329.14534871069145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="985.1018346049674" y="329.87580903326347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="985.1018346049674" y1="329.87580903326347" x2="994.2325886371174" y2="329.87580903326347" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_16_1__stack1"><rect x="993.5021283145454" y="329.14534871069145" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="989.6672116210424" y="329.14534871069145" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="981.4495329921074" y="329.87580903326347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">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="467.8779891547895" y="567.3667214094849" width="3.6523016128600148" height="24.835650967448032" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="467.8779891547895" y="567.3667214094849" width="3.6523016128600148" height="24.835650967448032" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="467.8779891547895" y1="579.7845468932089" x2="458.7472351226395" y2="579.7845468932089" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_17_0__stack1"><rect x="458.0167748000675" y="579.054086570637" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.3126121387145" y="579.0540865706369" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="471.5302907676495" y="579.7845468932089" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="471.5302907676495" y1="579.7845468932089" x2="480.66104479979947" y2="579.7845468932089" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_17_1__stack1"><rect x="479.93058447722746" y="579.054086570637" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="476.0956677837245" y="579.0540865706369" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform=""></text><text class="pin-number sch-pin-label" x="467.8779891547895" y="579.7845468932089" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="">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="346.8773456810692" y="252.35570730030994" width="38.16655185438702" height="3.6523016128599863" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="346.8773456810692" y="252.35570730030994" width="38.16655185438702" height="3.6523016128599863" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="363.3127029389392" y1="252.35570730030994" x2="363.3127029389392" y2="241.03357230044392" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_18_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="363.3127029389392" cy="240.30311197787194" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="362.5822426163672" y="239.57265165529995" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="362.58224261636724" y="246.32940963909095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 362.58224261636724 246.32940963909095)"></text><text class="pin-number sch-pin-label" x="363.3127029389392" y="256.00800891316993" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 363.3127029389392 256.00800891316993)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="363.3127029389392" y1="256.00800891316993" x2="363.3127029389392" y2="268.0606042356079" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_18_1__stack1"><rect x="362.5822426163672" y="267.3301439130359" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="362.58224261636724" y="262.0343065743889" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 362.58224261636724 262.0343065743889)"></text><text class="pin-number sch-pin-label" x="363.3127029389392" y="252.35570730030994" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 363.3127029389392 252.35570730030994)">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="399.65310398689616" y="252.35570730030994" width="38.16655185438702" height="3.6523016128599863" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="399.65310398689616" y="252.35570730030994" width="38.16655185438702" height="3.6523016128599863" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="416.0884612447662" y1="252.35570730030994" x2="416.0884612447662" y2="240.30311197787194" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_19_0__stack1"><rect x="415.3580009221942" y="239.57265165529995" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="415.3580009221942" y="246.32940963909095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 415.3580009221942 246.32940963909095)"></text><text class="pin-number sch-pin-label" x="416.0884612447662" y="256.00800891316993" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 416.0884612447662 256.00800891316993)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="416.0884612447662" y1="256.00800891316993" x2="416.0884612447662" y2="268.0606042356079" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_19_1__stack1"><rect x="415.3580009221942" y="267.3301439130359" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="415.3580009221942" y="262.0343065743889" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 415.3580009221942 262.0343065743889)"></text><text class="pin-number sch-pin-label" x="416.0884612447662" y="252.35570730030994" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 416.0884612447662 252.35570730030994)">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="645.8943223105948" y="206.15409189763096" width="38.16655185438697" height="3.6523016128599863" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="645.8943223105948" y="206.15409189763096" width="38.16655185438697" height="3.6523016128599863" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="662.3296795684648" y1="206.15409189763096" x2="662.3296795684648" y2="194.10149657519295" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_20_0__stack1"><rect x="661.5992192458929" y="193.37103625262097" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="661.5992192458929" y="200.12779423641194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 661.5992192458929 200.12779423641194)"></text><text class="pin-number sch-pin-label" x="662.3296795684648" y="209.80639351049095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 662.3296795684648 209.80639351049095)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="662.3296795684648" y1="209.80639351049095" x2="662.3296795684648" y2="221.85898883292896" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_20_1__stack1"><rect x="661.5992192458929" y="221.12852851035697" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="661.5992192458929" y="215.83269117170994" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 661.5992192458929 215.83269117170994)"></text><text class="pin-number sch-pin-label" x="662.3296795684648" y="206.15409189763096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 662.3296795684648 206.15409189763096)">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="700.8614615841378" y="206.15409189763096" width="42.54931378981905" height="3.6523016128599863" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="700.8614615841378" y="206.15409189763096" width="42.54931378981905" height="3.6523016128599863" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="717.2968188420078" y1="206.15409189763096" x2="717.2968188420078" y2="194.10149657519295" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_21_0__stack1"><rect x="716.5663585194359" y="193.37103625262097" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="716.5663585194359" y="200.12779423641194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 716.5663585194359 200.12779423641194)"></text><text class="pin-number sch-pin-label" x="717.2968188420078" y="209.80639351049095" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 717.2968188420078 209.80639351049095)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="717.2968188420078" y1="209.80639351049095" x2="717.2968188420078" y2="221.85898883292896" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_21_1__stack1"><rect x="716.5663585194359" y="221.12852851035697" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="716.5663585194359" y="215.83269117170994" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 716.5663585194359 215.83269117170994)"></text><text class="pin-number sch-pin-label" x="717.2968188420078" y="206.15409189763096" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 717.2968188420078 206.15409189763096)">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="692.6894367253635" y="278.1957412112945" width="33.78378991895511" height="3.6523016128600148" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="692.6894367253635" y="278.1957412112945" width="33.78378991895511" height="3.6523016128600148" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="709.1247939832335" y1="278.1957412112945" x2="709.1247939832335" y2="266.14314588885645" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_22_0__stack1"><rect x="708.3943336606616" y="265.41268556628444" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.3943336606616" y="272.16944355007547" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 708.3943336606616 272.16944355007547)"></text><text class="pin-number sch-pin-label" x="709.1247939832335" y="281.8480428241545" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 709.1247939832335 281.8480428241545)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="709.1247939832335" y1="281.8480428241545" x2="709.1247939832335" y2="293.17017782402047" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_22_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="709.1247939832335" cy="293.9006381465925" r="0.730460322572" stroke-width="0.730460322572px"/><rect x="708.3943336606616" y="293.17017782402047" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.3943336606616" y="287.87434048537347" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 708.3943336606616 287.87434048537347)"></text><text class="pin-number sch-pin-label" x="709.1247939832335" y="278.1957412112945" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 709.1247939832335 278.1957412112945)">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="18.261508063990732" y="387.39955943580844" width="42.54931378981894" height="3.6523016128600716" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="18.261508063990732" y="387.39955943580844" width="42.54931378981894" height="3.6523016128600716" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="34.69686532186063" y1="387.39955943580844" x2="34.69686532186063" y2="375.3469641133705" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_23_0__stack1"><rect x="33.96640499928863" y="374.6165037907985" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="33.96640499928867" y="381.3732617745895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 33.96640499928867 381.3732617745895)"></text><text class="pin-number sch-pin-label" x="34.69686532186063" y="391.0518610486685" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 34.69686532186063 391.0518610486685)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="34.69686532186063" y1="391.0518610486685" x2="34.69686532186063" y2="403.10445637110644" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_23_1__stack1"><rect x="33.96640499928863" y="402.3739960485344" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="33.96640499928867" y="397.0781587098875" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 33.96640499928867 397.0781587098875)"></text><text class="pin-number sch-pin-label" x="34.69686532186063" y="387.39955943580844" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 34.69686532186063 387.39955943580844)">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="75.42002830524973" y="387.39955943580844" width="42.549313789818996" height="3.6523016128600716" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="75.42002830524973" y="387.39955943580844" width="42.549313789818996" height="3.6523016128600716" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="91.85538556311974" y1="387.39955943580844" x2="91.85538556311974" y2="375.3469641133705" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_24_0__stack1"><rect x="91.12492524054774" y="374.6165037907985" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="91.12492524054773" y="381.3732617745895" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 91.12492524054773 381.3732617745895)"></text><text class="pin-number sch-pin-label" x="91.85538556311974" y="391.0518610486685" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 91.85538556311974 391.0518610486685)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="91.85538556311974" y1="391.0518610486685" x2="91.85538556311974" y2="403.10445637110644" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_24_1__stack1"><rect x="91.12492524054774" y="402.3739960485344" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="91.12492524054773" y="397.0781587098875" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="rotate(-90 91.12492524054773 397.0781587098875)"></text><text class="pin-number sch-pin-label" x="91.85538556311974" y="387.39955943580844" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="5.47845241929px" transform="rotate(-90 91.85538556311974 387.39955943580844)">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="638.6230895559945" y="582.4324655625325" width="14.609206451440059" height="80.35063548291998" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="638.6230895559945" y="582.4324655625325" width="14.609206451440059" height="80.35063548291998" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="589.7370687882524" x2="667.8415024588745" y2="589.7370687882524" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_0__stack1"><rect x="667.1110421363026" y="589.0066084656804" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="589.0066084656804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="597.0416720139725" x2="667.8415024588745" y2="597.0416720139725" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_1__stack1"><rect x="667.1110421363026" y="596.3112116914006" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="596.3112116914004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="604.3462752396924" x2="667.8415024588745" y2="604.3462752396924" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_2__stack1"><rect x="667.1110421363026" y="603.6158149171205" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="603.6158149171205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="611.6508784654125" x2="667.8415024588745" y2="611.6508784654125" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_3__stack1"><rect x="667.1110421363026" y="610.9204181428405" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="610.9204181428404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="618.9554816911325" x2="667.8415024588745" y2="618.9554816911325" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_4__stack1"><rect x="667.1110421363026" y="618.2250213685605" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="618.2250213685604" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="626.2600849168524" x2="667.8415024588745" y2="626.2600849168524" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_5__stack1"><rect x="667.1110421363026" y="625.5296245942804" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="625.5296245942804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="633.5646881425724" x2="667.8415024588745" y2="633.5646881425724" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_6__stack1"><rect x="667.1110421363026" y="632.8342278200005" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="632.8342278200004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="640.8692913682925" x2="667.8415024588745" y2="640.8692913682925" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_7__stack1"><rect x="667.1110421363026" y="640.1388310457205" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="640.1388310457204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">8</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="648.1738945940124" x2="667.8415024588745" y2="648.1738945940124" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_8__stack1"><rect x="667.1110421363026" y="647.4434342714404" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="647.4434342714404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">9</text><line class="component-pin sch-component-pin sch-port-line" x1="653.2322960074346" y1="655.4784978197324" x2="667.8415024588745" y2="655.4784978197324" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_25_9__stack1"><rect x="667.1110421363026" y="654.7480374971605" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="660.5368992331545" y="654.7480374971605" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">10</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="726.6435584259206" y="582.4324655625325" width="14.609206451439945" height="80.35063548291998" stroke-width="0.730460322572px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="726.6435584259206" y="582.4324655625325" width="14.609206451439945" height="80.35063548291998" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="589.7370687882524" x2="755.8619713288006" y2="589.7370687882524" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_0__stack1"><rect x="755.1315110062286" y="589.0066084656804" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="589.0066084656804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="597.0416720139725" x2="755.8619713288006" y2="597.0416720139725" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_1__stack1"><rect x="755.1315110062286" y="596.3112116914006" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="596.3112116914004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="604.3462752396924" x2="755.8619713288006" y2="604.3462752396924" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_2__stack1"><rect x="755.1315110062286" y="603.6158149171205" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="603.6158149171205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="611.6508784654125" x2="755.8619713288006" y2="611.6508784654125" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_3__stack1"><rect x="755.1315110062286" y="610.9204181428405" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="610.9204181428404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="618.9554816911325" x2="755.8619713288006" y2="618.9554816911325" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_4__stack1"><rect x="755.1315110062286" y="618.2250213685605" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="618.2250213685604" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="626.2600849168524" x2="755.8619713288006" y2="626.2600849168524" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_5__stack1"><rect x="755.1315110062286" y="625.5296245942804" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="625.5296245942804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="633.5646881425724" x2="755.8619713288006" y2="633.5646881425724" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_6__stack1"><rect x="755.1315110062286" y="632.8342278200005" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="632.8342278200004" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="640.8692913682925" x2="755.8619713288006" y2="640.8692913682925" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_7__stack1"><rect x="755.1315110062286" y="640.1388310457205" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="640.1388310457204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">8</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="648.1738945940124" x2="755.8619713288006" y2="648.1738945940124" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_8__stack1"><rect x="755.1315110062286" y="647.4434342714404" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="647.4434342714404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">9</text><line class="component-pin sch-component-pin sch-port-line" x1="741.2527648773605" y1="655.4784978197324" x2="755.8619713288006" y2="655.4784978197324" stroke-width="0.730460322572px"/><g class="sch-port" data-schematic-port-id="source_port_26_9__stack1"><rect x="755.1315110062286" y="654.7480374971605" width="1.460920645144" height="1.460920645144" opacity="0"/></g><text class="pin-number sch-pin-number" x="748.5573681030805" y="654.7480374971605" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.47845241929px" transform="">10</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="127.73924890946921" cy="275.8217451629355" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="127.73924890946921" cy="283.12634838865546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="127.73924890946921" cy="261.2125387114954" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="127.73924890946921" cy="268.51714193721546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="127.73924890946921" cy="246.60333226005545" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="127.73924890946921" cy="151.64349032569547" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="127.73924890946921" cy="233.82027661504546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="127.73924890946921" cy="171.73114919642546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="127.73924890946921" cy="213.73261774431546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="127.73924890946921" cy="191.81880806715546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="127.73924890946921" cy="206.42801451859546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="127.73924890946921" cy="199.1234112928755" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="127.73924890946921" cy="226.51567338932549" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="127.73924890946921" cy="179.03575242214546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_14__stack1"><circle cx="127.73924890946921" cy="158.94809355141544" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_15__stack1"><circle cx="127.73924890946921" cy="253.90793548577545" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="142.3484553609092" cy="349.05039250077846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="142.3484553609092" cy="356.3549957264985" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="142.3484553609092" cy="363.65959895221846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="142.3484553609092" cy="370.9642021779385" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="142.3484553609092" cy="378.26880540365846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="142.3484553609092" cy="385.5734086293785" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="142.3484553609092" cy="392.87801185509846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="142.3484553609092" cy="400.18261508081844" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="215.39448761810922" cy="400.18261508081844" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="215.39448761810922" cy="392.87801185509846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="215.39448761810922" cy="385.5734086293785" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="215.39448761810922" cy="378.26880540365846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="215.39448761810922" cy="370.9642021779385" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="215.39448761810922" cy="363.65959895221846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_14__stack1"><circle cx="215.39448761810922" cy="356.3549957264985" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_15__stack1"><circle cx="215.39448761810922" cy="349.05039250077846" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="419.588583623757" cy="290.3396440740539" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="419.588583623757" cy="297.64424729977395" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="419.588583623757" cy="304.948850525494" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="492.6346158809571" cy="301.29654891263397" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="492.6346158809571" cy="293.99194568691394" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="840.8359208969973" cy="229.894052381221" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="840.8359208969973" cy="222.589449155501" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_2__stack1"><circle cx="840.8359208969973" cy="215.284845929781" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_3__stack1"><circle cx="840.8359208969973" cy="207.98024270406097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_4__stack1"><circle cx="840.8359208969973" cy="200.675639478341" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_5__stack1"><circle cx="840.8359208969973" cy="193.37103625262097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_6__stack1"><circle cx="840.8359208969973" cy="186.06643302690097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_7__stack1"><circle cx="840.8359208969973" cy="178.76182980118097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_8__stack1"><circle cx="767.7898886397974" cy="175.10952818832095" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_9__stack1"><circle cx="767.7898886397974" cy="182.41413141404098" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_10__stack1"><circle cx="767.7898886397974" cy="189.71873463976095" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_11__stack1"><circle cx="767.7898886397974" cy="197.02333786548095" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_12__stack1"><circle cx="767.7898886397974" cy="204.32794109120096" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_13__stack1"><circle cx="767.7898886397974" cy="211.63254431692096" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_14__stack1"><circle cx="767.7898886397974" cy="218.93714754264093" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_15__stack1"><circle cx="767.7898886397974" cy="226.24175076836096" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_16__stack1"><circle cx="767.7898886397974" cy="233.54635399408096" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_17__stack1"><circle cx="767.7898886397974" cy="240.85095721980093" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_18__stack1"><circle cx="767.7898886397974" cy="248.15556044552093" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_19__stack1"><circle cx="767.7898886397974" cy="255.46016367124093" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_20__stack1"><circle cx="767.7898886397974" cy="262.76476689696096" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_21__stack1"><circle cx="767.7898886397974" cy="270.069370122681" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_22__stack1"><circle cx="767.7898886397974" cy="277.37397334840097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_23__stack1"><circle cx="767.7898886397974" cy="284.67857657412094" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_24__stack1"><circle cx="767.7898886397974" cy="291.98317979984097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_25__stack1"><circle cx="767.7898886397974" cy="299.287783025561" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_26__stack1"><circle cx="767.7898886397974" cy="306.59238625128097" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_27__stack1"><circle cx="767.7898886397974" cy="313.896989477001" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_28__stack1"><circle cx="767.7898886397974" cy="321.201592702721" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_29__stack1"><circle cx="767.7898886397974" cy="328.506195928441" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_30__stack1"><circle cx="767.7898886397974" cy="335.810799154161" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_31__stack1"><circle cx="767.7898886397974" cy="343.115402379881" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_32__stack1"><circle cx="767.7898886397974" cy="350.420005605601" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_33__stack1"><circle cx="767.7898886397974" cy="357.724608831321" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_34__stack1"><circle cx="767.7898886397974" cy="365.029212057041" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_35__stack1"><circle cx="767.7898886397974" cy="372.33381528276107" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_36__stack1"><circle cx="767.7898886397974" cy="379.63841850848104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_37__stack1"><circle cx="767.7898886397974" cy="386.94302173420107" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_38__stack1"><circle cx="767.7898886397974" cy="394.24762495992104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_39__stack1"><circle cx="840.8359208969973" cy="390.595323347061" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_40__stack1"><circle cx="840.8359208969973" cy="383.29072012134105" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_41__stack1"><circle cx="840.8359208969973" cy="375.986116895621" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_42__stack1"><circle cx="840.8359208969973" cy="368.68151366990105" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_43__stack1"><circle cx="840.8359208969973" cy="361.376910444181" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_44__stack1"><circle cx="840.8359208969973" cy="354.07230721846105" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_45__stack1"><circle cx="840.8359208969973" cy="346.767703992741" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_46__stack1"><circle cx="840.8359208969973" cy="339.46310076702105" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_47__stack1"><circle cx="840.8359208969973" cy="332.1584975413011" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_48__stack1"><circle cx="840.8359208969973" cy="324.85389431558104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_49__stack1"><circle cx="840.8359208969973" cy="317.5492910898611" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_50__stack1"><circle cx="840.8359208969973" cy="310.24468786414104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_51__stack1"><circle cx="840.8359208969973" cy="302.940084638421" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_52__stack1"><circle cx="840.8359208969973" cy="295.6354814127011" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_53__stack1"><circle cx="840.8359208969973" cy="288.330878186981" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_54__stack1"><circle cx="840.8359208969973" cy="281.02627496126104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_55__stack1"><circle cx="840.8359208969973" cy="273.721671735541" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_56__stack1"><circle cx="840.8359208969973" cy="266.41706850982104" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_57__stack1"><circle cx="840.8359208969973" cy="259.112465284101" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_58__stack1"><circle cx="840.8359208969973" cy="251.80786205838103" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_59__stack1"><circle cx="840.8359208969973" cy="244.503258832661" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_60__stack1"><circle cx="840.8359208969973" cy="237.198655606941" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="1038.4254381527235" cy="213.73261774431546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="1038.4254381527235" cy="221.03722097003546" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_2__stack1"><circle cx="1111.4714704099233" cy="217.38491935717545" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="1038.4254381527235" cy="301.3878564529555" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="1038.4254381527235" cy="308.6924596786755" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="1111.4714704099233" cy="305.0401580658155" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="1168.610098390448" cy="305.0401580658155" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="1168.610098390448" cy="339.3717932266994" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="1168.610098390448" cy="226.51567338932549" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="1168.610098390448" cy="260.8473085502095" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="480.66104479979947" cy="636.0299917312528" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="480.66104479979947" cy="677.300999956571" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="184.1673088281562" cy="261.2125387114954" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="184.1673088281562" cy="283.1263483886555" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="184.1673088281562" cy="195.10587951872947" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="184.1673088281562" cy="217.01968919588947" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="635.9874541857121" cy="269.0649871791445" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="635.9874541857121" cy="290.9787968563045" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="711.3618287211103" cy="333.80203326708795" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="711.3618287211103" cy="355.7158429442479" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="711.3618287211103" cy="399.90869245985385" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="711.3618287211103" cy="421.82250213701394" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="711.3618287211103" cy="130.0036032695" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="711.3618287211103" cy="151.91741294665997" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="972.3187789599574" cy="261.2125387114954" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="994.2325886371174" cy="261.2125387114954" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="972.3187789599574" cy="329.87580903326347" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="994.2325886371174" cy="329.87580903326347" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="458.7472351226395" cy="579.7845468932089" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="480.66104479979947" cy="579.7845468932089" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="363.3127029389392" cy="240.30311197787194" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="363.3127029389392" cy="268.0606042356079" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="416.0884612447662" cy="240.30311197787194" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="416.0884612447662" cy="268.0606042356079" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="662.3296795684648" cy="194.10149657519295" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="662.3296795684648" cy="221.85898883292896" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="717.2968188420078" cy="194.10149657519295" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="717.2968188420078" cy="221.85898883292896" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="709.1247939832335" cy="266.14314588885645" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="709.1247939832335" cy="293.9006381465925" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="34.69686532186063" cy="375.3469641133705" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="34.69686532186063" cy="403.10445637110644" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="91.85538556311974" cy="375.3469641133705" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="91.85538556311974" cy="403.10445637110644" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="667.8415024588745" cy="589.7370687882524" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="667.8415024588745" cy="597.0416720139725" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_2__stack1"><circle cx="667.8415024588745" cy="604.3462752396924" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_3__stack1"><circle cx="667.8415024588745" cy="611.6508784654125" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_4__stack1"><circle cx="667.8415024588745" cy="618.9554816911325" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_5__stack1"><circle cx="667.8415024588745" cy="626.2600849168524" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_6__stack1"><circle cx="667.8415024588745" cy="633.5646881425724" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_7__stack1"><circle cx="667.8415024588745" cy="640.8692913682925" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_8__stack1"><circle cx="667.8415024588745" cy="648.1738945940124" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_9__stack1"><circle cx="667.8415024588745" cy="655.4784978197324" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="755.8619713288006" cy="589.7370687882524" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="755.8619713288006" cy="597.0416720139725" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_2__stack1"><circle cx="755.8619713288006" cy="604.3462752396924" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_3__stack1"><circle cx="755.8619713288006" cy="611.6508784654125" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_4__stack1"><circle cx="755.8619713288006" cy="618.9554816911325" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_5__stack1"><circle cx="755.8619713288006" cy="626.2600849168524" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_6__stack1"><circle cx="755.8619713288006" cy="633.5646881425724" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_7__stack1"><circle cx="755.8619713288006" cy="640.8692913682925" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_8__stack1"><circle cx="755.8619713288006" cy="648.1738945940124" r="1.460920645144" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_9__stack1"><circle cx="755.8619713288006" cy="655.4784978197324" r="1.460920645144" fill="red" opacity="0"/></g><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_0__stack1" x="179.7845468927242" y="290.43095161437554" width="8.765523870864001" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 179.7845468927242 297.0050945175235 L 188.5500707635882 297.0050945175235" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_0__stack1" d="M 184.1673088281562 297.0050945175235 L 184.1673088281562 290.43095161437554" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_0__stack1" x="184.1673088281562" y="298.8312453239535" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_1__stack1" x="107.24983686132467" y="350.9130663233371" width="8.765523870864001" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="M 107.24983686132467 357.48720922648505 L 116.01536073218867 357.48720922648505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_1__stack1" d="M 111.63259879675667 357.48720922648505 L 111.63259879675667 350.9130663233371" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_1__stack1" x="111.63259879675667" y="359.31336003291506" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_2__stack1" x="385.3178201564207" y="275.36520746132794" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="M 385.3178201564207 281.9393503644759 L 394.0833440272846 281.9393503644759" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_2__stack1" d="M 389.70058209185265 281.9393503644759 L 389.70058209185265 275.36520746132794" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_2__stack1" x="389.70058209185265" y="283.7655011709059" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_3__stack1" x="854.3494368645794" y="361.3769104441811" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="M 854.3494368645794 367.95105334732904 L 863.1149607354433 367.95105334732904" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="M 858.7321988000114 367.95105334732904 L 858.7321988000114 361.3769104441811" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" x="858.7321988000114" y="369.77720415375904" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_4__stack1" x="657.9469176330329" y="248.15556044552093" width="8.765523870863944" height="6.574142903148015" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="M 657.9469176330329 254.72970334866895 L 666.7124415038968 254.72970334866895" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="M 662.3296795684648 254.72970334866895 L 662.3296795684648 248.15556044552093" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" x="662.3296795684648" y="256.5558541550989" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_5__stack1" x="1164.227336455016" y="346.67639645241945" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="M 1164.227336455016 353.2505393555674 L 1172.99286032588 353.2505393555674" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="M 1168.610098390448 353.2505393555674 L 1168.610098390448 346.67639645241945" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" x="1168.610098390448" y="355.0766901619974" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_6__stack1" x="476.2782828643675" y="677.300999956571" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="M 476.2782828643675 683.875142859719 L 485.04380673523144 683.875142859719" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="M 480.66104479979947 683.875142859719 L 480.66104479979947 677.300999956571" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="480.66104479979947" y="685.701293666149" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_7__stack1" x="704.7420320478016" y="293.9006381465925" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="M 704.7420320478016 300.47478104974044 L 713.5075559186655 300.47478104974044" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="M 709.1247939832335 300.47478104974044 L 709.1247939832335 293.9006381465925" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="709.1247939832335" y="302.30093185617045" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_8__stack1" x="87.47262362768774" y="410.40905959682647" width="8.765523870864001" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" d="M 87.47262362768774 416.9832024999744 L 96.23814749855174 416.9832024999744" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_8__stack1" d="M 91.85538556311974 416.9832024999744 L 91.85538556311974 410.40905959682647" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" 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_8__stack1" x="91.85538556311974" y="418.80935330640443" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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_9__stack1" x="684.6786128941591" y="670.0877042711724" width="8.765523870863944" height="6.574142903147958" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="M 684.6786128941591 676.6618471743203 L 693.444136765023 676.6618471743203" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="M 689.061374829591 676.6618471743203 L 689.061374829591 670.0877042711724" stroke="rgb(132, 0, 0)" fill="none" stroke-width="0.730460322572px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" x="689.061374829591" y="678.4879979807504" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="6.574142903147999px">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="
442
+ M 147.82690778019924,151.60696730956687
443
+ L 144.17460616733925,149.63472443862247
444
+ L 144.17460616733925,137.1097647742546
445
+ L 151.47920939305925,137.1097647742546
446
+ L 151.47920939305922,149.63472443862247
447
+ Z
448
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="147.82690778019924" y="148.31989585799286" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 147.82690778019924 148.31989585799286)">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="
449
+ M 352.02100378584703,290.3396440740539
450
+ L 348.368702172987,288.3674012031095
451
+ L 348.368702172987,275.84244153874164
452
+ L 355.67330539870704,275.84244153874164
453
+ L 355.67330539870704,288.3674012031095
454
+ Z
455
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="352.02100378584703" y="287.05257262247994" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 352.02100378584703 287.05257262247994)">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="
456
+ M 363.3127029389392,240.30311197787194
457
+ L 359.6604013260792,238.33086910692754
458
+ L 359.6604013260792,225.80590944255965
459
+ L 366.9650045517992,225.80590944255965
460
+ L 366.9650045517992,238.33086910692754
461
+ Z
462
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="363.3127029389392" y="237.01604052629793" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 363.3127029389392 237.01604052629793)">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="
463
+ M 766.8553991835091,582.3959425464038
464
+ L 763.2030975706491,580.4236996754594
465
+ L 763.2030975706491,567.8987400110915
466
+ L 770.5077007963691,567.8987400110915
467
+ L 770.5077007963691,580.4236996754594
468
+ Z
469
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="766.8553991835091" y="579.1088710948299" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 766.8553991835091 579.1088710948299)">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="
470
+ M 91.85538556311974,370.9642021779385
471
+ L 88.20308395025974,368.9919593069941
472
+ L 88.20308395025974,356.4669996426262
473
+ L 95.50768717597974,356.4669996426262
474
+ L 95.50768717597974,368.9919593069941
475
+ Z
476
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="91.85538556311974" y="367.6771307263645" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 91.85538556311974 367.6771307263645)">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="
477
+ M 226.38791547281784,341.70926625892986
478
+ L 222.73561385995785,339.73702338798546
479
+ L 222.73561385995785,327.2120637236176
480
+ L 230.04021708567785,327.2120637236176
481
+ L 230.04021708567782,339.73702338798546
482
+ Z
483
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="226.38791547281784" y="338.4221948073559" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 226.38791547281784 338.4221948073559)">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="
484
+ M 416.0884612447662,232.99850875215193
485
+ L 412.4361596319062,231.02626588120754
486
+ L 412.4361596319062,218.50130621683965
487
+ L 419.74076285762624,218.50130621683965
488
+ L 419.74076285762624,231.02626588120754
489
+ Z
490
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="416.0884612447662" y="229.71143730057793" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 416.0884612447662 229.71143730057793)">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="
491
+ M 711.3618287211103,122.69900004377999
492
+ L 707.7095271082503,120.72675717283559
493
+ L 707.7095271082503,108.20179750846769
494
+ L 715.0141303339703,108.20179750846769
495
+ L 715.0141303339703,120.72675717283559
496
+ Z
497
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="711.3618287211103" y="119.411928592206" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 711.3618287211103 119.411928592206)">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="
498
+ M 635.9874541857121,269.0649871791445
499
+ L 632.335152572852,267.0927443082001
500
+ L 632.335152572852,254.56778464383223
501
+ L 639.6397557985721,254.56778464383223
502
+ L 639.6397557985721,267.0927443082001
503
+ Z
504
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="635.9874541857121" y="265.77791572757053" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 635.9874541857121 265.77791572757053)">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="
505
+ M 711.3618287211103,326.4974300413679
506
+ L 707.7095271082503,324.5251871704235
507
+ L 707.7095271082503,312.00022750605564
508
+ L 715.0141303339703,312.00022750605564
509
+ L 715.0141303339703,324.5251871704235
510
+ Z
511
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="711.3618287211103" y="323.21035858979394" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 711.3618287211103 323.21035858979394)">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="
512
+ M 678.8349303135831,582.3959425464038
513
+ L 675.1826287007231,580.4236996754594
514
+ L 675.1826287007231,567.8987400110915
515
+ L 682.4872319264431,567.8987400110915
516
+ L 682.4872319264431,580.4236996754594
517
+ Z
518
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.730460322572px"/><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="678.8349303135831" y="579.1088710948299" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.574142903147999px" transform="rotate(-90 678.8349303135831 579.1088710948299)">XX</text><text class="sch-text" x="115.32142342574525" y="295.17894371109344" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 115.32142342574525, 295.17894371109344)">TYPE-C 16PIN 2MD(073)</text><text class="sch-text" x="73.68518503914129" y="140.13874024518645" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 73.68518503914129, 140.13874024518645)">J1</text><text class="sch-text" x="170.1059476186453" y="412.2352104032565" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 170.1059476186453, 412.2352104032565)">CH340C</text><text class="sch-text" x="161.34042374778124" y="337.5456424202695" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 161.34042374778124, 337.5456424202695)">U2</text><text class="sch-text" x="467.06850459093704" y="313.34914423507195" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 467.06850459093704, 313.34914423507195)">AP2112K-3.3TRG1</text><text class="sch-text" x="438.58055201062905" y="282.48719560640495" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 438.58055201062905, 282.48719560640495)">U3</text><text class="sch-text" x="824.0353334778413" y="402.64791866949895" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 824.0353334778413, 402.64791866949895)">ESP32-C3-MINI-1-H4X</text><text class="sch-text" x="786.7818570266693" y="167.257079720672" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 786.7818570266693, 167.257079720672)">U1</text><text class="sch-text" x="1070.5656923458914" y="229.43751467961346" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 1070.5656923458914, 229.43751467961346)">MMBT3904</text><text class="sch-text" x="1057.4174065395955" y="205.88016927666644" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 1057.4174065395955, 205.88016927666644)">Q1</text><text class="sch-text" x="1070.5656923458914" y="317.09275338825347" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147989px" transform="rotate(0, 1070.5656923458914, 317.09275338825347)">MMBT3904</text><text class="sch-text" x="1057.4174065395955" y="293.53540798530645" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 1057.4174065395955, 293.53540798530645)">Q2</text><text class="sch-text" x="643.0058514914265" y="578.2323187077434" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 643.0058514914265, 578.2323187077434)">J2</text><text class="sch-text" x="731.0263203613525" y="578.2323187077434" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.574142903147999px" transform="rotate(0, 731.0263203613525, 578.2323187077434)">J3</text><text class="sch-text" x="138.6961537480492" y="167.71361742227947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 138.6961537480492, 167.71361742227947)">XXX</text><text class="sch-text" x="180.14977705401026" y="250.25563387291547" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(-90, 180.14977705401026, 250.25563387291547)">XXX</text><text class="sch-text" x="141.61799503833726" y="209.71508597016947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 141.61799503833726, 209.71508597016947)">XXXXXX</text><text class="sch-text" x="141.61799503833726" y="202.41048274444947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 141.61799503833726, 202.41048274444947)">XXXXXX</text><text class="sch-text" x="128.46970923204128" y="381.5558768552325" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 128.46970923204128, 381.5558768552325)">XXXXXX</text><text class="sch-text" x="141.61799503833726" y="187.80127629300947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 141.61799503833726, 187.80127629300947)">XXXXXX</text><text class="sch-text" x="141.61799503833726" y="195.1058795187295" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 141.61799503833726, 195.1058795187295)">XXXXXX</text><text class="sch-text" x="128.46970923204128" y="374.25127362951247" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 128.46970923204128, 374.25127362951247)">XXXXXX</text><text class="sch-text" x="131.39155052232923" y="352.33746395235244" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 131.39155052232923, 352.33746395235244)">XXXX</text><text class="sch-text" x="756.8329838012173" y="382.9254899600551" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 382.9254899600551)">XXXX</text><text class="sch-text" x="766.8188761673805" y="614.9379499169864" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 614.9379499169864)">XXXX</text><text class="sch-text" x="131.39155052232923" y="359.64206717807247" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 131.39155052232923, 359.64206717807247)">XXXX</text><text class="sch-text" x="756.8329838012173" y="390.23009318577505" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 390.23009318577505)">XXXX</text><text class="sch-text" x="766.8188761673805" y="607.6333466912664" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 607.6333466912664)">XXXX</text><text class="sch-text" x="226.35139245668927" y="366.9466704037925" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 226.35139245668927, 366.9466704037925)">XXX</text><text class="sch-text" x="1001.7198069434803" y="304.67492790452945" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1001.7198069434803, 304.67492790452945)">XXX</text><text class="sch-text" x="226.35139245668927" y="359.64206717807247" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 226.35139245668927, 359.64206717807247)">XXX</text><text class="sch-text" x="1027.4685333141433" y="217.01968919588947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1027.4685333141433, 217.01968919588947)">XXX</text><text class="sch-text" x="961.3618741213772" y="325.8582772591175" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 961.3618741213772, 325.8582772591175)">XXX</text><text class="sch-text" x="758.0930278576541" y="200.31040931705496" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 758.0930278576541, 200.31040931705496)">XXX</text><text class="sch-text" x="707.3442969469644" y="162.87431778523995" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(-90, 707.3442969469644, 162.87431778523995)">XXX</text><text class="sch-text" x="677.5383632410178" y="614.9379499169864" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 614.9379499169864)">XXX</text><text class="sch-text" x="758.0930278576541" y="222.22421899421494" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 758.0930278576541, 222.22421899421494)">XX</text><text class="sch-text" x="1140.0407844001857" y="213.36738758302945" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1140.0407844001857, 213.36738758302945)">XX</text><text class="sch-text" x="668.5385923103267" y="278.5609713725805" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(-90, 668.5385923103267, 278.5609713725805)">XX</text><text class="sch-text" x="766.8188761673805" y="600.3287434655465" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 600.3287434655465)">XX</text><text class="sch-text" x="756.8329838012173" y="280.66104479997495" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 280.66104479997495)">XXXX</text><text class="sch-text" x="447.79033028405956" y="575.767015119063" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 447.79033028405956, 575.767015119063)">XXXX</text><text class="sch-text" x="766.8188761673805" y="636.8517595941464" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 636.8517595941464)">XXXX</text><text class="sch-text" x="756.8329838012173" y="324.48866415429495" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 324.48866415429495)">XXX</text><text class="sch-text" x="707.3442969469644" y="432.77940697559393" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(-90, 707.3442969469644, 432.77940697559393)">XXX</text><text class="sch-text" x="766.8188761673805" y="651.4609660455865" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 651.4609660455865)">XXX</text><text class="sch-text" x="725.4688437007821" y="359.00291439582196" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 725.4688437007821, 359.00291439582196)">XXX</text><text class="sch-text" x="1154.3254413953168" y="293.7180230659494" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1154.3254413953168, 293.7180230659494)">XXX</text><text class="sch-text" x="766.8188761673805" y="644.1563628198664" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 644.1563628198664)">XXX</text><text class="sch-text" x="155.95327886881267" y="175.01822064799947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 155.95327886881267, 175.01822064799947)">XXX</text><text class="sch-text" x="758.0930278576541" y="207.61501254277496" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 758.0930278576541, 207.61501254277496)">XXX</text><text class="sch-text" x="677.5383632410178" y="622.2425531427065" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 622.2425531427065)">XXX</text><text class="sch-text" x="758.0930278576541" y="251.44263189709494" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 758.0930278576541, 251.44263189709494)">XXX</text><text class="sch-text" x="677.5383632410178" y="600.3287434655465" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 600.3287434655465)">XXX</text><text class="sch-text" x="758.0930278576541" y="258.7472351228149" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 758.0930278576541, 258.7472351228149)">XXX</text><text class="sch-text" x="677.5383632410178" y="607.6333466912664" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 607.6333466912664)">XXX</text><text class="sch-text" x="756.8329838012173" y="295.27025125141495" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 295.27025125141495)">XXX</text><text class="sch-text" x="677.5383632410178" y="629.5471563684264" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 629.5471563684264)">XXX</text><text class="sch-text" x="756.8329838012173" y="302.574854477135" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 302.574854477135)">XXX</text><text class="sch-text" x="677.5383632410178" y="636.8517595941464" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 636.8517595941464)">XXX</text><text class="sch-text" x="756.8329838012173" y="309.879457702855" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 309.879457702855)">XXX</text><text class="sch-text" x="677.5383632410178" y="644.1563628198664" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 644.1563628198664)">XXX</text><text class="sch-text" x="756.8329838012173" y="317.1840609285749" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 317.1840609285749)">XXX</text><text class="sch-text" x="677.5383632410178" y="651.4609660455865" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 677.5383632410178, 651.4609660455865)">XXX</text><text class="sch-text" x="756.8329838012173" y="353.707077057175" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 353.707077057175)">XXXX</text><text class="sch-text" x="766.8188761673805" y="629.5471563684264" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 629.5471563684264)">XXXX</text><text class="sch-text" x="756.8329838012173" y="361.011680282895" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 756.8329838012173, 361.011680282895)">XXXX</text><text class="sch-text" x="766.8188761673805" y="622.2425531427065" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 766.8188761673805, 622.2425531427065)">XXXX</text><text class="sch-text" x="1023.0857713787113" y="209.71508597016947" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1023.0857713787113, 209.71508597016947)">XXXXXXX</text><text class="sch-text" x="1009.5722554111294" y="257.1950069373495" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1009.5722554111294, 257.1950069373495)">XXXXXXX</text><text class="sch-text" x="1020.1639300884233" y="297.3703246788094" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1020.1639300884233, 297.3703246788094)">XXXXXXXXX</text><text class="sch-text" x="1012.4940967014174" y="325.8582772591175" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(0, 1012.4940967014174, 325.8582772591175)">XXXXXXXXX</text><text class="sch-text" x="483.94811625137345" y="604.2549676993709" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="4.382761935432px" transform="rotate(-90, 483.94811625137345, 604.2549676993709)">XXXXX</text><rect class="schematic-box sch-box" x="69.3024231037092" y="291.89187225951946" width="92.03800064407204" height="6.574142903147958" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="67.11104213599333" y="135.57336322911144" width="13.14828580629603" height="9.130754032150008" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="156.95766181234933" y="408.94813895168244" width="26.296571612592004" height="6.574142903148015" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="154.76628084463323" y="332.9802654041945" width="13.14828580629603" height="9.13075403214998" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="434.1977900751971" y="310.0620727834979" width="65.74142903147992" height="6.574142903148015" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="432.0064091074811" y="277.92181859032996" width="13.148285806295917" height="9.13075403214998" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="782.3990950912373" y="399.36084721792497" width="83.27247677320793" height="6.574142903148015" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="780.2077141235213" y="162.69170270459702" width="13.148285806295917" height="9.130754032150008" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="1053.0346446041633" y="226.15044322803948" width="35.062095483456005" height="6.574142903147987" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="1050.8432636364473" y="201.31479226059145" width="13.148285806296144" height="9.130754032150008" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="1053.0346446041633" y="313.80568193667943" width="35.062095483456005" height="6.574142903148072" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="1050.8432636364473" y="288.9700309692315" width="13.148285806296144" height="9.13075403214998" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="636.4317085882785" y="573.6669416916684" width="13.14828580629603" height="9.13075403214998" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/><rect class="schematic-box sch-box" x="724.4521774582045" y="573.6669416916684" width="13.14828580629603" height="9.13075403214998" stroke-width="0.730460322572px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="5.843682580576 2.921841290288"/>
519
+ </g>
520
+ </svg>