@tscircuit/schematic-trace-solver 0.0.194 → 0.0.196

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -13070,7 +13070,8 @@ var getOuterBounds = (obstacles) => {
13070
13070
  };
13071
13071
  var getPinConnectionCandidates = ({
13072
13072
  connectionPair,
13073
- obstacles
13073
+ obstacles,
13074
+ channelObstacles = obstacles
13074
13075
  }) => {
13075
13076
  const [firstPin, secondPin] = connectionPair.pins;
13076
13077
  const firstEscapePoint = getEscapePoint({
@@ -13085,7 +13086,7 @@ var getPinConnectionCandidates = ({
13085
13086
  const horizontalChannels = [
13086
13087
  outerBounds.minY - ROUTE_CLEARANCE,
13087
13088
  outerBounds.maxY + ROUTE_CLEARANCE,
13088
- ...obstacles.flatMap((obstacle) => [
13089
+ ...channelObstacles.flatMap((obstacle) => [
13089
13090
  obstacle.minY - ROUTE_CLEARANCE,
13090
13091
  obstacle.maxY + ROUTE_CLEARANCE
13091
13092
  ])
@@ -13093,7 +13094,7 @@ var getPinConnectionCandidates = ({
13093
13094
  const verticalChannels = [
13094
13095
  outerBounds.minX - ROUTE_CLEARANCE,
13095
13096
  outerBounds.maxX + ROUTE_CLEARANCE,
13096
- ...obstacles.flatMap((obstacle) => [
13097
+ ...channelObstacles.flatMap((obstacle) => [
13097
13098
  obstacle.minX - ROUTE_CLEARANCE,
13098
13099
  obstacle.maxX + ROUTE_CLEARANCE
13099
13100
  ])
@@ -13252,6 +13253,16 @@ var pathCollidesWithObstacles = ({
13252
13253
  const lastPathPin = connectionPair.pins.find(
13253
13254
  (pin) => pointsAreEqual(pin, lastPathPoint)
13254
13255
  );
13256
+ for (const [pin, neighbor] of [
13257
+ [firstPathPin, path[1]],
13258
+ [lastPathPin, path[path.length - 2]]
13259
+ ]) {
13260
+ if (!pin?._facingDirection) continue;
13261
+ const outward = dir(pin._facingDirection);
13262
+ if ((neighbor.x - pin.x) * outward.x + (neighbor.y - pin.y) * outward.y < -COORDINATE_TOLERANCE) {
13263
+ return true;
13264
+ }
13265
+ }
13255
13266
  const pathConnectsPairPins = firstPathPin !== void 0 && lastPathPin !== void 0;
13256
13267
  const firstChipObstacle = obstacles.find(
13257
13268
  (obstacle) => obstacle.kind === "chip" && obstacle.chipId === firstPathPin?.chipId
@@ -13426,7 +13437,8 @@ var UnroutedTraceRecoverySolver = class extends BaseSolver {
13426
13437
  });
13427
13438
  const pinConnectionCandidates = getPinConnectionCandidates({
13428
13439
  connectionPair,
13429
- obstacles
13440
+ obstacles,
13441
+ channelObstacles: []
13430
13442
  });
13431
13443
  const candidates = [...junctionCandidates, ...pinConnectionCandidates].sort(
13432
13444
  (firstPath, secondPath) => getPathLength5(firstPath) - getPathLength5(secondPath)
@@ -13435,7 +13447,11 @@ var UnroutedTraceRecoverySolver = class extends BaseSolver {
13435
13447
  connectionPair,
13436
13448
  failedConnectionPairs: this.failedConnectionPairs
13437
13449
  });
13450
+ let recoveredPath;
13438
13451
  for (const tracePath of candidates) {
13452
+ if (recoveredPath && getPathLength5(tracePath) >= getPathLength5(recoveredPath)) {
13453
+ continue;
13454
+ }
13439
13455
  if (pathCollidesWithObstacles({
13440
13456
  path: tracePath,
13441
13457
  obstacles,
@@ -13451,13 +13467,20 @@ var UnroutedTraceRecoverySolver = class extends BaseSolver {
13451
13467
  })) {
13452
13468
  continue;
13453
13469
  }
13470
+ if (!recoveredPath) {
13471
+ candidates.push(
13472
+ ...getPinConnectionCandidates({ connectionPair, obstacles })
13473
+ );
13474
+ }
13475
+ recoveredPath = tracePath;
13476
+ }
13477
+ if (recoveredPath) {
13454
13478
  this.solvedUnroutedTraces.push({
13455
13479
  ...connectionPair,
13456
- tracePath,
13480
+ tracePath: recoveredPath,
13457
13481
  mspConnectionPairIds: [connectionPair.mspPairId],
13458
13482
  pinIds: connectionPair.pins.map((pin) => pin.pinId)
13459
13483
  });
13460
- return;
13461
13484
  }
13462
13485
  }
13463
13486
  getOutput() {
@@ -20,7 +20,7 @@ import {
20
20
  } from "lib/solvers/SchematicTraceLinesSolver/SchematicTraceSingleLineSolver2/rect"
21
21
  import { visualizeInputProblem } from "lib/solvers/SchematicTracePipelineSolver/visualizeInputProblem"
22
22
  import type { InputProblem, PinId } from "lib/types/InputProblem"
23
- import type { FacingDirection } from "lib/utils/dir"
23
+ import { dir, type FacingDirection } from "lib/utils/dir"
24
24
 
25
25
  const ROUTE_CLEARANCE = 0.2
26
26
  const COORDINATE_TOLERANCE = 1e-9
@@ -90,9 +90,11 @@ const getOuterBounds = (obstacles: ObstacleRect[]) => {
90
90
  const getPinConnectionCandidates = ({
91
91
  connectionPair,
92
92
  obstacles,
93
+ channelObstacles = obstacles,
93
94
  }: {
94
95
  connectionPair: MspConnectionPair
95
96
  obstacles: ObstacleRect[]
97
+ channelObstacles?: ObstacleRect[]
96
98
  }): Point[][] => {
97
99
  const [firstPin, secondPin] = connectionPair.pins
98
100
  const firstEscapePoint = getEscapePoint({
@@ -107,7 +109,7 @@ const getPinConnectionCandidates = ({
107
109
  const horizontalChannels = [
108
110
  outerBounds.minY - ROUTE_CLEARANCE,
109
111
  outerBounds.maxY + ROUTE_CLEARANCE,
110
- ...obstacles.flatMap((obstacle) => [
112
+ ...channelObstacles.flatMap((obstacle) => [
111
113
  obstacle.minY - ROUTE_CLEARANCE,
112
114
  obstacle.maxY + ROUTE_CLEARANCE,
113
115
  ]),
@@ -115,7 +117,7 @@ const getPinConnectionCandidates = ({
115
117
  const verticalChannels = [
116
118
  outerBounds.minX - ROUTE_CLEARANCE,
117
119
  outerBounds.maxX + ROUTE_CLEARANCE,
118
- ...obstacles.flatMap((obstacle) => [
120
+ ...channelObstacles.flatMap((obstacle) => [
119
121
  obstacle.minX - ROUTE_CLEARANCE,
120
122
  obstacle.maxX + ROUTE_CLEARANCE,
121
123
  ]),
@@ -304,6 +306,20 @@ const pathCollidesWithObstacles = ({
304
306
  const lastPathPin = connectionPair.pins.find((pin) =>
305
307
  pointsAreEqual(pin, lastPathPoint),
306
308
  )
309
+ // Endpoint exemptions must not allow a route through the back of a component.
310
+ for (const [pin, neighbor] of [
311
+ [firstPathPin, path[1]!],
312
+ [lastPathPin, path[path.length - 2]!],
313
+ ] as const) {
314
+ if (!pin?._facingDirection) continue
315
+ const outward = dir(pin._facingDirection)
316
+ if (
317
+ (neighbor.x - pin.x) * outward.x + (neighbor.y - pin.y) * outward.y <
318
+ -COORDINATE_TOLERANCE
319
+ ) {
320
+ return true
321
+ }
322
+ }
307
323
  const pathConnectsPairPins =
308
324
  firstPathPin !== undefined && lastPathPin !== undefined
309
325
  const firstChipObstacle = obstacles.find(
@@ -545,6 +561,7 @@ export class UnroutedTraceRecoverySolver extends BaseSolver {
545
561
  const pinConnectionCandidates = getPinConnectionCandidates({
546
562
  connectionPair,
547
563
  obstacles,
564
+ channelObstacles: [],
548
565
  })
549
566
  const candidates = [...junctionCandidates, ...pinConnectionCandidates].sort(
550
567
  (firstPath, secondPath) =>
@@ -555,7 +572,14 @@ export class UnroutedTraceRecoverySolver extends BaseSolver {
555
572
  failedConnectionPairs: this.failedConnectionPairs,
556
573
  })
557
574
 
575
+ let recoveredPath: Point[] | undefined
558
576
  for (const tracePath of candidates) {
577
+ if (
578
+ recoveredPath &&
579
+ getPathLength(tracePath) >= getPathLength(recoveredPath)
580
+ ) {
581
+ continue
582
+ }
559
583
  if (
560
584
  pathCollidesWithObstacles({
561
585
  path: tracePath,
@@ -575,13 +599,21 @@ export class UnroutedTraceRecoverySolver extends BaseSolver {
575
599
  ) {
576
600
  continue
577
601
  }
602
+ if (!recoveredPath) {
603
+ // Local channels shorten valid routes without recovering new connections.
604
+ candidates.push(
605
+ ...getPinConnectionCandidates({ connectionPair, obstacles }),
606
+ )
607
+ }
608
+ recoveredPath = tracePath
609
+ }
610
+ if (recoveredPath) {
578
611
  this.solvedUnroutedTraces.push({
579
612
  ...connectionPair,
580
- tracePath,
613
+ tracePath: recoveredPath,
581
614
  mspConnectionPairIds: [connectionPair.mspPairId],
582
615
  pinIds: connectionPair.pins.map((pin) => pin.pinId),
583
616
  })
584
- return
585
617
  }
586
618
  }
587
619
 
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "https://github.com/tscircuit/schematic-trace-solver.git"
6
6
  },
7
7
  "main": "dist/index.js",
8
- "version": "0.0.194",
8
+ "version": "0.0.196",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "start": "cosmos",
@@ -1,13 +1,14 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-2.87,2.485 -2.87,1.2399999999999998" data-type="line" data-label="" points="181.61383285302594,143.82324687800187 181.61383285302594,210.79731027857824" fill="none" stroke="hsl(32, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-2.87,1.2399999999999998 -2.87,3.6149999999999998" data-type="line" data-label="" points="181.61383285302594,210.79731027857824 181.61383285302594,83.03554274735825" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,1.2399999999999998 -2.87,2.485" data-type="line" data-label="" points="181.61383285302594,210.79731027857824 181.61383285302594,143.82324687800187" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,3.6149999999999998 -2.87,2.485" data-type="line" data-label="" points="181.61383285302594,83.03554274735825 181.61383285302594,143.82324687800187" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -1.2850000000000001,0.2" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 266.8780019212296,266.74351585014404" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -1.2850000000000001,-0.2" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 266.8780019212296,288.26128722382316" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -2.97,-1.0099999999999998" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0.2 -1.2850000000000001,-0.2" data-type="line" data-label="" points="266.8780019212296,266.74351585014404 266.8780019212296,288.26128722382316" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0.2 -2.97,-1.0099999999999998" data-type="line" data-label="" points="266.8780019212296,266.74351585014404 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,-0.2 -2.97,-1.0099999999999998" data-type="line" data-label="" points="266.8780019212296,288.26128722382316 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -2.97,-2.1100000000000003" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 176.23439000960616,391.00864553314113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -0.8100000000000003,-3.005000000000001" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 292.43035542747356,439.1546589817483" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -0.75,-5.315" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -0.8100000000000003,-3.005000000000001" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 292.43035542747356,439.1546589817483" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -0.75,-5.315" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-3.005000000000001 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="292.43035542747356,439.1546589817483 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-3.005000000000001 -0.75,-5.315" data-type="line" data-label="" points="292.43035542747356,439.1546589817483 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2594553499999992,-4.739999999999999 -0.75,-5.315" data-type="line" data-label="" points="403.7555231508165,532.4879923150816 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 -0.8100000000000003,-1.9050000000000002" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 292.43035542747356,379.9807877041306" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 2.675,-1.3049999999999997" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 479.90393852065324,347.70413064361185" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 -0.75,-4.215000000000001" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-1.9050000000000002 2.675,-1.3049999999999997" data-type="line" data-label="" points="292.43035542747356,379.9807877041306 479.90393852065324,347.70413064361185" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-1.9050000000000002 -0.75,-4.215000000000001" data-type="line" data-label="" points="292.43035542747356,379.9807877041306 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.675,-1.3049999999999997 -0.75,-4.215000000000001" data-type="line" data-label="" points="479.90393852065324,347.70413064361185 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.675,-2.4349999999999996 1.2594553499999992,-3.6399999999999997" data-type="line" data-label="" points="479.90393852065324,408.4918347742554 403.7555231508165,473.3141210374639" fill="none" stroke="hsl(187, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,2.485 -2.87,1.2399999999999998" data-type="line" data-label="" points="181.61383285302594,143.82324687800187 181.61383285302594,210.79731027857824" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.87,3.6149999999999998 -2.87,3.815 -2.1099999999999994,3.815 -2.1099999999999994,2.2849999999999997 -2.87,2.2849999999999997" data-type="line" data-label="" points="181.61383285302594,83.03554274735825 181.61383285302594,72.27665706051869 222.49759846301637,72.27665706051869 222.49759846301637,154.58213256484146 181.61383285302594,154.58213256484146" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.87,0.19999999999999973 -2.87,-2.220446049250313e-16 -2.97,-2.220446049250313e-16 -2.97,-1.0099999999999998" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 181.61383285302594,277.5024015369836 176.23439000960616,277.5024015369836 176.23439000960616,331.8347742555234" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -2.97,-3.205000000000001 -0.81,-3.205000000000001 -0.81,-3.005000000000001" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 176.23439000960616,449.91354466858786 292.4303554274736,449.91354466858786 292.4303554274736,439.1546589817483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2594553499999988,-4.739999999999999 1.2594553499999988,-5.515000000000001 -0.75,-5.515000000000001 -0.75,-5.315" data-type="line" data-label="" points="403.75552315081643,532.4879923150816 403.75552315081643,574.178674351585 295.6580211335255,574.178674351585 295.6580211335255,563.4197886647453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2850000000000001,0.1 2.675,0.1 2.675,-1.3049999999999997" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 479.90393852065324,272.1229586935638 479.90393852065324,347.70413064361185" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.8100000000000003,-1.9050000000000002 -0.8100000000000003,-1.7050000000000003 0.024999999999999967,-1.7050000000000003 0.024999999999999967,-4.015000000000001 -0.75,-4.015000000000001 -0.75,-4.215000000000001" data-type="line" data-label="" points="292.43035542747356,379.9807877041306 292.43035542747356,369.221902017291 337.34870317002884,369.221902017291 337.34870317002884,493.4870317002881 295.6580211335255,493.4870317002881 295.6580211335255,504.24591738712775" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.485,-4.440892098500626e-16 -2.87,-2.220446049250313e-16" data-type="line" data-label="" points="256.11911623439005,277.5024015369836 181.61383285302594,277.5024015369836" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.2850000000000001,-0.2 -1.485,-0.2 -1.485,0.2 -1.2850000000000001,0.2" data-type="line" data-label="" points="266.8780019212296,288.26128722382316 256.11911623439005,288.26128722382316 256.11911623439005,266.74351585014404 266.8780019212296,266.74351585014404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.2850000000000001,0 -1.3860000000000001,0 -1.3860000000000001,-0.601" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 261.4447646493756,277.5024015369836 261.4447646493756,309.8328530259365" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-2.71" data-y="0.7199999999999998" x="167.08933717579254" y="210.79731027857827" width="46.26320845341016" height="55.9462055715658" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-3.25" data-y="3.05" x="110.60518731988473" y="83.03554274735826" width="101.13352545629206" height="60.78770413064362" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="0" data-y="0" x="266.8780019212296" y="261.36407300672425" width="138.25168107588854" height="32.27665706051869" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-2.755" data-y="-1.56" x="161.9788664745437" y="331.8347742555235" width="51.642651296830024" height="59.17387127761771" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-0.5950000000000002" data-y="-2.4550000000000005" x="278.17483189241113" y="379.98078770413053" width="51.64265129682997" height="59.17387127761771" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="2.9724999999999997" data-y="-1.8699999999999997" x="462.4207492795389" y="347.70413064361185" width="66.97406340057637" height="60.78770413064353" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="1.5519553499999992" data-y="-4.1899999999999995" x="393.29490874159455" y="473.31412103746385" width="52.3909694524495" height="59.17387127761765" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-0.5950000000000001" data-y="-4.765000000000001" x="281.402497598463" y="504.24591738712775" width="45.18731988472621" height="59.173871277617536" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: VBUS
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-2.87,2.485 -2.87,1.2399999999999998" data-type="line" data-label="" points="181.61383285302594,143.82324687800187 181.61383285302594,210.79731027857824" fill="none" stroke="hsl(32, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-2.87,1.2399999999999998 -2.87,3.6149999999999998" data-type="line" data-label="" points="181.61383285302594,210.79731027857824 181.61383285302594,83.03554274735825" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,1.2399999999999998 -2.87,2.485" data-type="line" data-label="" points="181.61383285302594,210.79731027857824 181.61383285302594,143.82324687800187" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,3.6149999999999998 -2.87,2.485" data-type="line" data-label="" points="181.61383285302594,83.03554274735825 181.61383285302594,143.82324687800187" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -1.2850000000000001,0.2" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 266.8780019212296,266.74351585014404" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -1.2850000000000001,-0.2" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 266.8780019212296,288.26128722382316" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,0.19999999999999973 -2.97,-1.0099999999999998" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0.2 -1.2850000000000001,-0.2" data-type="line" data-label="" points="266.8780019212296,266.74351585014404 266.8780019212296,288.26128722382316" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0.2 -2.97,-1.0099999999999998" data-type="line" data-label="" points="266.8780019212296,266.74351585014404 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,-0.2 -2.97,-1.0099999999999998" data-type="line" data-label="" points="266.8780019212296,288.26128722382316 176.23439000960616,331.8347742555234" fill="none" stroke="hsl(264, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -2.97,-2.1100000000000003" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 176.23439000960616,391.00864553314113" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -0.8100000000000003,-3.005000000000001" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 292.43035542747356,439.1546589817483" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.2850000000000001,0 -0.75,-5.315" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -0.8100000000000003,-3.005000000000001" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 292.43035542747356,439.1546589817483" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -0.75,-5.315" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-3.005000000000001 1.2594553499999992,-4.739999999999999" data-type="line" data-label="" points="292.43035542747356,439.1546589817483 403.7555231508165,532.4879923150816" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-3.005000000000001 -0.75,-5.315" data-type="line" data-label="" points="292.43035542747356,439.1546589817483 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2594553499999992,-4.739999999999999 -0.75,-5.315" data-type="line" data-label="" points="403.7555231508165,532.4879923150816 295.6580211335255,563.4197886647453" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 -0.8100000000000003,-1.9050000000000002" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 292.43035542747356,379.9807877041306" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 2.675,-1.3049999999999997" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 479.90393852065324,347.70413064361185" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2850000000000001,0.1 -0.75,-4.215000000000001" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-1.9050000000000002 2.675,-1.3049999999999997" data-type="line" data-label="" points="292.43035542747356,379.9807877041306 479.90393852065324,347.70413064361185" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8100000000000003,-1.9050000000000002 -0.75,-4.215000000000001" data-type="line" data-label="" points="292.43035542747356,379.9807877041306 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.675,-1.3049999999999997 -0.75,-4.215000000000001" data-type="line" data-label="" points="479.90393852065324,347.70413064361185 295.6580211335255,504.24591738712775" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.675,-2.4349999999999996 1.2594553499999992,-3.6399999999999997" data-type="line" data-label="" points="479.90393852065324,408.4918347742554 403.7555231508165,473.3141210374639" fill="none" stroke="hsl(187, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.87,2.485 -2.87,1.2399999999999998" data-type="line" data-label="" points="181.61383285302594,143.82324687800187 181.61383285302594,210.79731027857824" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.87,3.6149999999999998 -2.87,3.815 -2.1099999999999994,3.815 -2.1099999999999994,2.2849999999999997 -2.87,2.2849999999999997" data-type="line" data-label="" points="181.61383285302594,83.03554274735825 181.61383285302594,72.27665706051869 222.49759846301637,72.27665706051869 222.49759846301637,154.58213256484146 181.61383285302594,154.58213256484146" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.87,0.19999999999999973 -2.87,-2.220446049250313e-16 -2.97,-2.220446049250313e-16 -2.97,-1.0099999999999998" data-type="line" data-label="" points="181.61383285302594,266.74351585014404 181.61383285302594,277.5024015369836 176.23439000960616,277.5024015369836 176.23439000960616,331.8347742555234" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.97,-2.1100000000000003 -2.97,-3.205000000000001 -0.81,-3.205000000000001 -0.81,-3.005000000000001" data-type="line" data-label="" points="176.23439000960616,391.00864553314113 176.23439000960616,449.91354466858786 292.4303554274736,449.91354466858786 292.4303554274736,439.1546589817483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2594553499999988,-4.739999999999999 1.2594553499999988,-5.515000000000001 -0.75,-5.515000000000001 -0.75,-5.315" data-type="line" data-label="" points="403.75552315081643,532.4879923150816 403.75552315081643,574.178674351585 295.6580211335255,574.178674351585 295.6580211335255,563.4197886647453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2850000000000001,0.1 2.675,0.1 2.675,-1.3049999999999997" data-type="line" data-label="" points="405.12968299711815,272.1229586935638 479.90393852065324,272.1229586935638 479.90393852065324,347.70413064361185" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.485,-4.440892098500626e-16 -2.87,-2.220446049250313e-16" data-type="line" data-label="" points="256.11911623439005,277.5024015369836 181.61383285302594,277.5024015369836" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.2850000000000001,-0.2 -1.485,-0.2 -1.485,0.2 -1.2850000000000001,0.2" data-type="line" data-label="" points="266.8780019212296,288.26128722382316 256.11911623439005,288.26128722382316 256.11911623439005,266.74351585014404 266.8780019212296,266.74351585014404" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.2850000000000001,0 -1.3860000000000001,0 -1.3860000000000001,-0.601" data-type="line" data-label="" points="266.8780019212296,277.5024015369836 261.4447646493756,277.5024015369836 261.4447646493756,309.8328530259365" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-2.71" data-y="0.7199999999999998" x="167.08933717579254" y="210.79731027857827" width="46.26320845341016" height="55.9462055715658" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-3.25" data-y="3.05" x="110.60518731988473" y="83.03554274735826" width="101.13352545629206" height="60.78770413064362" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="0" data-y="0" x="266.8780019212296" y="261.36407300672425" width="138.25168107588854" height="32.27665706051869" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-2.755" data-y="-1.56" x="161.9788664745437" y="331.8347742555235" width="51.642651296830024" height="59.17387127761771" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-0.5950000000000002" data-y="-2.4550000000000005" x="278.17483189241113" y="379.98078770413053" width="51.64265129682997" height="59.17387127761771" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="2.9724999999999997" data-y="-1.8699999999999997" x="462.4207492795389" y="347.70413064361185" width="66.97406340057637" height="60.78770413064353" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="1.5519553499999992" data-y="-4.1899999999999995" x="393.29490874159455" y="473.31412103746385" width="52.3909694524495" height="59.17387127761765" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-0.5950000000000001" data-y="-4.765000000000001" x="281.402497598463" y="504.24591738712775" width="45.18731988472621" height="59.173871277617536" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: VBUS
4
4
  globalConnNetId: connectivity_net0" data-x="-2.87" data-y="4.115" x="176.23439000960616" y="39.99999999999993" width="10.75888568683959" height="32.276657060518716" fill="#ef444466" stroke="#ef4444" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: RAW
5
5
  globalConnNetId: connectivity_net1" data-x="-1.725" data-y="-0.2" x="230.297790585975" y="282.8818443804034" width="25.821325648415012" height="10.758885686839562" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: GND
6
6
  globalConnNetId: connectivity_net2" data-x="-1.3860000000000001" data-y="-0.841" x="256.0653218059558" y="309.8328530259365" width="10.758885686839562" height="25.821325648414984" fill="#00000066" stroke="#000000" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: GND
7
7
  globalConnNetId: connectivity_net2" data-x="-2.97" data-y="-3.445000000000001" x="170.85494716618638" y="449.91354466858786" width="10.758885686839562" height="25.82132564841504" fill="#00000066" stroke="#000000" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: GND
8
8
  globalConnNetId: connectivity_net2" data-x="1.2594553499999988" data-y="-5.755000000000001" x="398.3760803073966" y="574.178674351585" width="10.75888568683962" height="25.82132564841504" fill="#00000066" stroke="#000000" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: V3V3
9
9
  globalConnNetId: connectivity_net3" data-x="2.675" data-y="0.4" x="474.52449567723346" y="239.84630163304507" width="10.758885686839562" height="32.276657060518744" fill="#ef444466" stroke="#ef4444" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: V3V3
10
- globalConnNetId: connectivity_net3" data-x="-0.8100000000000003" data-y="-1.4050000000000002" x="287.0509125840538" y="336.9452449567723" width="10.758885686839562" height="32.27665706051869" fill="#ef444466" stroke="#ef4444" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: PWR_LED_K
10
+ globalConnNetId: connectivity_net3" data-x="-0.8100000000000003" data-y="-1.6040000000000003" x="287.0509125840538" y="347.6503362151776" width="10.758885686839562" height="32.2766570605188" fill="#ef444466" stroke="#ef4444" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: V3V3
11
+ globalConnNetId: connectivity_net3" data-x="-0.75" data-y="-3.914000000000001" x="290.27857829010566" y="471.91546589817483" width="10.75888568683962" height="32.27665706051869" fill="#ef444466" stroke="#ef4444" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: PWR_LED_K
11
12
  globalConnNetId: connectivity_net4" data-x="2.675" data-y="-3.0359999999999996" x="474.52449567723346" y="408.5456292026896" width="10.758885686839562" height="64.55331412103749" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.018589285714285714"/></g><g><rect data-type="rect" data-label="netId: PWR_LED_K
12
13
  globalConnNetId: connectivity_net4" data-x="1.2594553499999992" data-y="-3.0389999999999997" x="398.3760803073967" y="408.70701248799224" width="10.758885686839562" height="64.55331412103749" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.018589285714285714"/></g><g><circle data-type="point" data-label="DPROT.1
13
14
  y+" data-x="-2.87" data-y="1.2399999999999998" cx="181.61383285302594" cy="210.79731027857824" r="3" fill="hsl(38, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="DPROT.2
@@ -35,7 +36,8 @@ orientation: y-" data-x="-1.3860000000000001" data-y="-0.601" cx="261.4447646493
35
36
  orientation: y-" data-x="-2.97" data-y="-3.205000000000001" cx="176.23439000960616" cy="449.91354466858786" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
36
37
  orientation: y-" data-x="1.2594553499999988" data-y="-5.515000000000001" cx="403.75552315081643" cy="574.178674351585" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
37
38
  orientation: y+" data-x="2.675" data-y="0.1" cx="479.90393852065324" cy="272.1229586935638" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
38
- orientation: y+" data-x="-0.8100000000000003" data-y="-1.7050000000000003" cx="292.43035542747356" cy="369.221902017291" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
39
+ orientation: y+" data-x="-0.8100000000000003" data-y="-1.9050000000000002" cx="292.43035542747356" cy="379.9807877041306" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
40
+ orientation: y+" data-x="-0.75" data-y="-4.215000000000001" cx="295.6580211335255" cy="504.24591738712775" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
39
41
  orientation: y-" data-x="2.675" data-y="-2.4349999999999996" cx="479.90393852065324" cy="408.4918347742554" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
40
42
  orientation: y+" data-x="1.2594553499999992" data-y="-3.6399999999999997" cx="403.7555231508165" cy="473.3141210374639" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g id="crosshair" style="display: none"><line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5"/><line id="crosshair-v" x1="0" x2="640" stroke="#666" stroke-width="0.5"/><text id="coordinates" font-family="monospace" font-size="12" fill="#666"></text></g><script><![CDATA[
41
43
  document.currentScript.parentElement.addEventListener('mousemove', (e) => {
@@ -94,7 +96,7 @@ orientation: y+" data-x="1.2594553499999992" data-y="-3.6399999999999997" cx="40
94
96
  .port-label { fill: rgb(0, 100, 100); }
95
97
  .component-name { fill: rgb(0, 100, 100); }
96
98
 
97
- </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 428.74690777664796 171.614462310644 L 428.74690777664796 258.402267868796" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 171.614462310644 L 428.74690777664796 258.402267868796" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 428.74690777664796 92.84320104099601 L 428.74690777664796 78.901384887076 L 481.725809161544 78.901384887076 L 481.725809161544 185.556278464564 L 428.74690777664796 185.556278464564" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 92.84320104099601 L 428.74690777664796 78.901384887076 L 481.725809161544 78.901384887076 L 481.725809161544 185.556278464564 L 428.74690777664796 185.556278464564" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 428.74690777664796 330.89971186918 L 428.74690777664796 344.8415280231 L 421.775999699688 344.8415280231 L 421.775999699688 415.247699600396" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 330.89971186918 L 428.74690777664796 344.8415280231 L 421.775999699688 344.8415280231 L 421.775999699688 415.247699600396" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 421.775999699688 491.92768844695604 L 421.775999699688 568.2591318896681 L 572.347614162024 568.2591318896681 L 572.347614162024 554.317315735748" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.775999699688 491.92768844695604 L 421.775999699688 568.2591318896681 L 572.347614162024 568.2591318896681 L 572.347614162024 554.317315735748" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 716.6074443042547 675.2625708710041 L 716.6074443042547 729.2871084674441 L 576.5301590082 729.2871084674441 L 576.5301590082 715.345292313524" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 716.6074443042547 675.2625708710041 L 716.6074443042547 729.2871084674441 L 576.5301590082 729.2871084674441 L 576.5301590082 715.345292313524" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 718.388138374336 337.87061994614 L 815.28376064408 337.87061994614 L 815.28376064408 435.811878427428" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 718.388138374336 337.87061994614 L 815.28376064408 337.87061994614 L 815.28376064408 435.811878427428" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 572.347614162024 477.63732688918805 L 572.347614162024 463.69551073526804 L 630.55469660464 463.69551073526804 L 630.55469660464 624.7234873130441 L 576.5301590082 624.7234873130441 L 576.5301590082 638.6653034669641" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 572.347614162024 477.63732688918805 L 572.347614162024 463.69551073526804 L 630.55469660464 463.69551073526804 L 630.55469660464 624.7234873130441 L 576.5301590082 624.7234873130441 L 576.5301590082 638.6653034669641" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 525.2939846425439 344.84152802310007 L 428.74690777664796 344.8415280231" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 525.2939846425439 344.84152802310007 L 428.74690777664796 344.8415280231" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 539.235800796464 358.78334417702 L 525.2939846425439 358.78334417702 L 525.2939846425439 330.89971186918 L 539.235800796464 330.89971186918" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 539.235800796464 358.78334417702 L 525.2939846425439 358.78334417702 L 525.2939846425439 330.89971186918 L 539.235800796464 330.89971186918" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 539.235800796464 344.8415280231 L 532.1951836387344 344.8415280231 L 532.1951836387344 386.7366855656296" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 539.235800796464 344.8415280231 L 532.1951836387344 344.8415280231 L 532.1951836387344 386.7366855656296" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><circle cx="428.74690777664796" cy="344.8415280231" r="2.091272423088" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component-overlay sch-component-overlay" x="419.6847272766" y="258.402267868796" width="18.82145180779196" height="72.49744400038401" fill="transparent"/><path class="sch-component-symbol-path" d="M 428.74690777664796 304.410261176732 L 419.6847272766 286.285900176636" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.50617908439193 286.285900176636 L 428.74690777664796 304.410261176732" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 419.6847272766 286.285900176636 L 438.50617908439193 286.285900176636" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.50617908439193 304.410261176732 L 419.6847272766 304.410261176732" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 428.74690777664796 286.285900176636 L 428.74690777664796 258.402267868796" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 428.74690777664796 330.89971186918 L 428.74690777664796 305.107351984428" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="444.779996353656" y="293.953899061292" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">DPROT</text><text class="sch-component-text" x="407.13709273807194" y="294.650989868988" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="418.3431562882039" y="92.84320104099601" width="20.064377870570695" height="78.771261269648" fill="transparent"/><path class="sch-component-symbol-path" d="M 428.74690777664796 92.84320104099601 L 428.74690777664796 171.614462310644" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.4075341587746 132.22883167582 L 438.4075341587746 152.29320954639073 L 418.3431562882039 152.29320954639073 L 418.3431562882039 112.90757891156672 L 438.4075341587746 112.90757891156672 L 438.4075341587746 132.22883167582" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="443.6094099029966" y="131.48570656950258" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">F1</text><text class="sch-component-text" x="410.91190522502956" y="132.22883167582" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></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="567.119433104304" y="323.92880379222004" width="123.385072962192" height="41.82544846175995" stroke-width="1.3941816153920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="567.119433104304" y="323.92880379222004" width="123.385072962192" height="41.82544846175995" fill="transparent"/><text class="sch-text" x="628.8119695854" y="344.8415280231" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.547634538528001px" transform="rotate(0, 628.8119695854, 344.8415280231)">U2</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="330.89971186918" x2="539.235800796464" y2="330.89971186918" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="537.841619181072" y="329.50553025378804" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="329.50553025378804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="344.8415280231" x2="539.235800796464" y2="344.8415280231" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="537.841619181072" y="343.447346407708" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="343.447346407708" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="358.78334417702" x2="539.235800796464" y2="358.78334417702" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="537.841619181072" y="357.38916256162804" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="357.38916256162804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="690.504506066496" y1="351.81243610006004" x2="716.993956758944" y2="351.81243610006004" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="718.388138374336" cy="351.81243610006004" r="1.3941816153920001" stroke-width="1.3941816153920001px"/><rect x="716.993956758944" y="350.41825448466807" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.446322220416" y="350.418254484668" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="690.504506066496" y1="337.87061994614" x2="718.388138374336" y2="337.87061994614" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="716.993956758944" y="336.476438330748" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.446322220416" y="336.476438330748" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="401.3254466743104" y="415.247699600396" width="40.901106050755175" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 421.775999699688 491.92768844695604 L 421.775999699688 461.25569290833204" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 421.775999699688 445.91969513902 L 421.775999699688 415.247699600396" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 442.2265527250656 461.25569290833204 L 401.3254466743104 461.25569290833204" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 442.2265527250656 445.91969513902 L 401.3254466743104 445.91969513902" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="436.4729975619453" y="428.0276977414893" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C1</text><text class="sch-component-text" x="436.47299756194536" y="479.14769030586274" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="551.8970611366465" y="477.6373268891881" width="40.90110605075506" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 572.347614162024 554.3173157357481 L 572.347614162024 523.6453201971241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 572.347614162024 508.3093224278121 L 572.347614162024 477.6373268891881" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 592.7981671874015 523.6453201971241 L 551.8970611366465 523.6453201971241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 592.7981671874015 508.3093224278121 L 551.8970611366465 508.3093224278121" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="587.0446120242814" y="490.41732503028146" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C4</text><text class="sch-component-text" x="587.0446120242814" y="541.5373175946548" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="805.437352985374" y="435.811878427428" width="20.450231291158616" height="78.77126126964805" fill="transparent"/><path class="sch-component-symbol-path" d="M 815.28376064408 485.8013326947046 L 805.437352985374 466.1085173772926" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 825.8875842765326 466.1085173772926 L 815.28376064408 485.8013326947046" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 805.437352985374 466.1085173772926 L 825.8875842765326 466.1085173772926" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 825.8875842765326 485.8013326947046 L 805.437352985374 485.8013326947046" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 815.28376064408 466.1085173772926 L 815.28376064408 435.811878427428" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 815.28376064408 514.583139697076 L 815.28376064408 486.55874866845124" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="832.7043280402521" y="474.44009308850536" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">DPWR</text><text class="sch-component-text" x="791.8038654579349" y="475.197509062252" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="815.28376064408" cy="514.583139697076" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component-overlay sch-component-overlay" x="706.3860017910084" y="598.5825820244439" width="20.44288502649283" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 716.6074443042548 598.5825820244439 L 716.6074443042548 611.3651361651655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 716.6074443042548 662.4800167302824 L 716.6074443042548 675.262570871004" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 726.8288868175013 611.3651361651655 L 726.8288868175013 662.4800167302824 L 706.3860017910084 662.4800167302824 L 706.3860017910084 611.3651361651655 L 726.8288868175013 611.3651361651655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="737.0554413300042" y="616.4745794219746" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">R1</text><text class="sch-component-text" x="737.0554413300042" y="657.3705734734733" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="716.6074443042548" cy="598.5825820244439" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component-overlay sch-component-overlay" x="556.0796059828225" y="638.665303466964" width="40.90110605075506" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 576.5301590082 715.345292313524 L 576.5301590082 684.6732967749" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.5301590082 669.3372990055881 L 576.5301590082 638.665303466964" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9807120335776 684.6732967749 L 556.0796059828225 684.6732967749" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9807120335776 669.3372990055881 L 556.0796059828225 669.3372990055881" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="591.2271568704574" y="651.4453016080573" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C18</text><text class="sch-component-text" x="591.2271568704574" y="702.5652941724308" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="428.74690777664796" cy="258.402267868796" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="428.74690777664796" cy="330.89971186918" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="428.5627705821622" cy="95.28301886793201" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="428.5627705821622" cy="174.05428013758" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="539.235800796464" cy="330.89971186918" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="539.235800796464" cy="344.8415280231" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="539.235800796464" cy="358.78334417702" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="718.388138374336" cy="351.81243610006004" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="718.388138374336" cy="337.87061994614" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="421.775999699688" cy="432.674969792796" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="421.775999699688" cy="509.3549586393561" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="572.347614162024" cy="495.0645970815881" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="572.347614162024" cy="571.7445859281481" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="815.28376064408" cy="439.19008772626245" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="815.28376064408" cy="517.9613489959105" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="716.6074443042548" cy="616.009852216844" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="716.6074443042548" cy="692.689841063404" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="576.5301590082" cy="656.0925736593641" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="576.5301590082" cy="732.772562505924" r="2.7883632307840003" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
99
+ </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 428.74690777664796 171.614462310644 L 428.74690777664796 258.402267868796" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 171.614462310644 L 428.74690777664796 258.402267868796" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 428.74690777664796 92.84320104099601 L 428.74690777664796 78.901384887076 L 481.725809161544 78.901384887076 L 481.725809161544 185.556278464564 L 428.74690777664796 185.556278464564" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 92.84320104099601 L 428.74690777664796 78.901384887076 L 481.725809161544 78.901384887076 L 481.725809161544 185.556278464564 L 428.74690777664796 185.556278464564" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 428.74690777664796 330.89971186918 L 428.74690777664796 344.8415280231 L 421.775999699688 344.8415280231 L 421.775999699688 415.247699600396" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 428.74690777664796 330.89971186918 L 428.74690777664796 344.8415280231 L 421.775999699688 344.8415280231 L 421.775999699688 415.247699600396" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 421.775999699688 491.92768844695604 L 421.775999699688 568.2591318896681 L 572.347614162024 568.2591318896681 L 572.347614162024 554.317315735748" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.775999699688 491.92768844695604 L 421.775999699688 568.2591318896681 L 572.347614162024 568.2591318896681 L 572.347614162024 554.317315735748" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 716.6074443042547 675.2625708710041 L 716.6074443042547 729.2871084674441 L 576.5301590082 729.2871084674441 L 576.5301590082 715.345292313524" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 716.6074443042547 675.2625708710041 L 716.6074443042547 729.2871084674441 L 576.5301590082 729.2871084674441 L 576.5301590082 715.345292313524" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 718.388138374336 337.87061994614 L 815.28376064408 337.87061994614 L 815.28376064408 435.811878427428" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 718.388138374336 337.87061994614 L 815.28376064408 337.87061994614 L 815.28376064408 435.811878427428" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 525.2939846425439 344.84152802310007 L 428.74690777664796 344.8415280231" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 525.2939846425439 344.84152802310007 L 428.74690777664796 344.8415280231" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 539.235800796464 358.78334417702 L 525.2939846425439 358.78334417702 L 525.2939846425439 330.89971186918 L 539.235800796464 330.89971186918" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 539.235800796464 358.78334417702 L 525.2939846425439 358.78334417702 L 525.2939846425439 330.89971186918 L 539.235800796464 330.89971186918" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" 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 539.235800796464 344.8415280231 L 532.1951836387344 344.8415280231 L 532.1951836387344 386.7366855656296" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="11.153452923136001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 539.235800796464 344.8415280231 L 532.1951836387344 344.8415280231 L 532.1951836387344 386.7366855656296" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><circle cx="428.74690777664796" cy="344.8415280231" r="2.091272423088" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component-overlay sch-component-overlay" x="419.6847272766" y="258.402267868796" width="18.82145180779196" height="72.49744400038401" fill="transparent"/><path class="sch-component-symbol-path" d="M 428.74690777664796 304.410261176732 L 419.6847272766 286.285900176636" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.50617908439193 286.285900176636 L 428.74690777664796 304.410261176732" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 419.6847272766 286.285900176636 L 438.50617908439193 286.285900176636" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.50617908439193 304.410261176732 L 419.6847272766 304.410261176732" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 428.74690777664796 286.285900176636 L 428.74690777664796 258.402267868796" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 428.74690777664796 330.89971186918 L 428.74690777664796 305.107351984428" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="444.779996353656" y="293.953899061292" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">DPROT</text><text class="sch-component-text" x="407.13709273807194" y="294.650989868988" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="418.3431562882039" y="92.84320104099601" width="20.064377870570695" height="78.771261269648" fill="transparent"/><path class="sch-component-symbol-path" d="M 428.74690777664796 92.84320104099601 L 428.74690777664796 171.614462310644" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 438.4075341587746 132.22883167582 L 438.4075341587746 152.29320954639073 L 418.3431562882039 152.29320954639073 L 418.3431562882039 112.90757891156672 L 438.4075341587746 112.90757891156672 L 438.4075341587746 132.22883167582" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="443.6094099029966" y="131.48570656950258" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">F1</text><text class="sch-component-text" x="410.91190522502956" y="132.22883167582" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></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="567.119433104304" y="323.92880379222004" width="123.385072962192" height="41.82544846175995" stroke-width="1.3941816153920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="567.119433104304" y="323.92880379222004" width="123.385072962192" height="41.82544846175995" fill="transparent"/><text class="sch-text" x="628.8119695854" y="344.8415280231" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="12.547634538528001px" transform="rotate(0, 628.8119695854, 344.8415280231)">U2</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="330.89971186918" x2="539.235800796464" y2="330.89971186918" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="537.841619181072" y="329.50553025378804" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="329.50553025378804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="344.8415280231" x2="539.235800796464" y2="344.8415280231" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="537.841619181072" y="343.447346407708" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="343.447346407708" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="567.119433104304" y1="358.78334417702" x2="539.235800796464" y2="358.78334417702" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><rect x="537.841619181072" y="357.38916256162804" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="553.1776169503839" y="357.38916256162804" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="690.504506066496" y1="351.81243610006004" x2="716.993956758944" y2="351.81243610006004" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="718.388138374336" cy="351.81243610006004" r="1.3941816153920001" stroke-width="1.3941816153920001px"/><rect x="716.993956758944" y="350.41825448466807" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.446322220416" y="350.418254484668" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="690.504506066496" y1="337.87061994614" x2="718.388138374336" y2="337.87061994614" stroke-width="1.3941816153920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><rect x="716.993956758944" y="336.476438330748" width="2.7883632307840003" height="2.7883632307840003" opacity="0"/></g><text class="pin-number sch-pin-number" x="704.446322220416" y="336.476438330748" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="10.456362115440001px" transform="">5</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="401.3254466743104" y="415.247699600396" width="40.901106050755175" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 421.775999699688 491.92768844695604 L 421.775999699688 461.25569290833204" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 421.775999699688 445.91969513902 L 421.775999699688 415.247699600396" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 442.2265527250656 461.25569290833204 L 401.3254466743104 461.25569290833204" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 442.2265527250656 445.91969513902 L 401.3254466743104 445.91969513902" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="436.4729975619453" y="428.0276977414893" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C1</text><text class="sch-component-text" x="436.47299756194536" y="479.14769030586274" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="551.8970611366465" y="477.6373268891881" width="40.90110605075506" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 572.347614162024 554.3173157357481 L 572.347614162024 523.6453201971241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 572.347614162024 508.3093224278121 L 572.347614162024 477.6373268891881" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 592.7981671874015 523.6453201971241 L 551.8970611366465 523.6453201971241" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 592.7981671874015 508.3093224278121 L 551.8970611366465 508.3093224278121" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="587.0446120242814" y="490.41732503028146" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C4</text><text class="sch-component-text" x="587.0446120242814" y="541.5373175946548" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="572.347614162024" cy="477.6373268891881" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="805.437352985374" y="435.811878427428" width="20.450231291158616" height="78.77126126964805" fill="transparent"/><path class="sch-component-symbol-path" d="M 815.28376064408 485.8013326947046 L 805.437352985374 466.1085173772926" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 825.8875842765326 466.1085173772926 L 815.28376064408 485.8013326947046" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 805.437352985374 466.1085173772926 L 825.8875842765326 466.1085173772926" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 825.8875842765326 485.8013326947046 L 805.437352985374 485.8013326947046" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 815.28376064408 466.1085173772926 L 815.28376064408 435.811878427428" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 815.28376064408 514.583139697076 L 815.28376064408 486.55874866845124" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="832.7043280402521" y="474.44009308850536" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">DPWR</text><text class="sch-component-text" x="791.8038654579349" y="475.197509062252" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="end" dominant-baseline="middle" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="815.28376064408" cy="514.583139697076" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component-overlay sch-component-overlay" x="706.3860017910084" y="598.5825820244439" width="20.44288502649283" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 716.6074443042548 598.5825820244439 L 716.6074443042548 611.3651361651655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 716.6074443042548 662.4800167302824 L 716.6074443042548 675.262570871004" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 726.8288868175013 611.3651361651655 L 726.8288868175013 662.4800167302824 L 706.3860017910084 662.4800167302824 L 706.3860017910084 611.3651361651655 L 726.8288868175013 611.3651361651655" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="737.0554413300042" y="616.4745794219746" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px">R1</text><text class="sch-component-text" x="737.0554413300042" y="657.3705734734733" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="middle" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="716.6074443042548" cy="598.5825820244439" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component-overlay sch-component-overlay" x="556.0796059828225" y="638.665303466964" width="40.90110605075506" height="76.67998884656004" fill="transparent"/><path class="sch-component-symbol-path" d="M 576.5301590082 715.345292313524 L 576.5301590082 684.6732967749" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 576.5301590082 669.3372990055881 L 576.5301590082 638.665303466964" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9807120335776 684.6732967749 L 556.0796059828225 684.6732967749" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 596.9807120335776 669.3372990055881 L 556.0796059828225 669.3372990055881" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3941816153920001px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="591.2271568704574" y="651.4453016080573" stroke="rgb(245, 241, 237)" stroke-width="1.3941816153920001px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="ideographic" font-size="12.547634538528001px">C18</text><text class="sch-component-text" x="591.2271568704574" y="702.5652941724308" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="start" dominant-baseline="hanging" font-size="12.547634538528001px"></text><circle class="component-pin sch-component-pin" cx="576.5301590082" cy="638.665303466964" r="1.3941816153920001px" stroke-width="1.3941816153920001px" fill="none" stroke="rgb(132, 0, 0)"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="428.74690777664796" cy="258.402267868796" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="428.74690777664796" cy="330.89971186918" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="428.5627705821622" cy="95.28301886793201" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="428.5627705821622" cy="174.05428013758" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="539.235800796464" cy="330.89971186918" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="539.235800796464" cy="344.8415280231" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="539.235800796464" cy="358.78334417702" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="718.388138374336" cy="351.81243610006004" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="718.388138374336" cy="337.87061994614" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="421.775999699688" cy="432.674969792796" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="421.775999699688" cy="509.3549586393561" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="572.347614162024" cy="495.0645970815881" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="572.347614162024" cy="571.7445859281481" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="815.28376064408" cy="439.19008772626245" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="815.28376064408" cy="517.9613489959105" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="716.6074443042548" cy="616.009852216844" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="716.6074443042548" cy="692.689841063404" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="576.5301590082" cy="656.0925736593641" r="2.7883632307840003" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="576.5301590082" cy="732.772562505924" r="2.7883632307840003" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
98
100
  M 428.74690777664796,78.901384887076
99
101
  L 421.775999699688,75.13709452551761
100
102
  L 421.775999699688,34.85454038479142
@@ -137,26 +139,33 @@ orientation: y+" data-x="1.2594553499999992" data-y="-3.6399999999999997" cx="40
137
139
  L 822.2546687210399,334.1063295845816
138
140
  Z
139
141
  " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" x="815.28376064408" y="331.596802676876" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 815.28376064408 331.596802676876)">XXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="
140
- M 572.347614162024,463.69551073526804
141
- L 565.376706085064,459.93122037370966
142
- L 565.376706085064,419.6486662329835
143
- L 579.318522238984,419.6486662329835
144
- L 579.318522238984,459.93122037370966
142
+ M 572.347614162024,477.63732688918805
143
+ L 565.376706085064,473.87303652762967
144
+ L 565.376706085064,433.59048238690343
145
+ L 579.318522238984,433.59048238690343
146
+ L 579.318522238984,473.87303652762967
145
147
  Z
146
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="572.347614162024" y="457.42169346600406" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 572.347614162024 457.42169346600406)">XXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="
148
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" x="572.347614162024" y="471.36350961992406" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 572.347614162024 471.36350961992406)">XXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="
149
+ M 576.5301590082,638.6653034669641
150
+ L 569.5592509312401,634.9010131054057
151
+ L 569.5592509312401,594.6184589646796
152
+ L 583.50106708516,594.6184589646796
153
+ L 583.50106708516,634.9010131054057
154
+ Z
155
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="576.5301590082" y="632.3914861977001" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 576.5301590082 632.3914861977001)">XXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" d="
147
156
  M 815.28376064408,514.583139697076
148
157
  L 822.2546687210399,518.3474300586345
149
158
  L 822.2546687210399,599.5724509713724
150
159
  L 808.31285256712,599.5724509713724
151
160
  L 808.31285256712,518.3474300586345
152
161
  Z
153
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" x="815.28376064408" y="520.85695696634" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(90 815.28376064408 520.85695696634)">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" d="
162
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" x="815.28376064408" y="520.85695696634" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(90 815.28376064408 520.85695696634)">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="
154
163
  M 716.6074443042548,598.582582024444
155
164
  L 709.6365362272949,594.8182916628856
156
165
  L 709.6365362272949,513.5932707501477
157
166
  L 723.5783523812148,513.5932707501477
158
167
  L 723.5783523812148,594.8182916628856
159
168
  Z
160
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" x="716.6074443042548" y="592.30876475518" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 716.6074443042548 592.30876475518)">XXXXXXXXX</text>
169
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3941816153920001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" x="716.6074443042548" y="592.30876475518" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="12.547634538528001px" transform="rotate(-90 716.6074443042548 592.30876475518)">XXXXXXXXX</text>
161
170
  </g>
162
171
  </svg>