@tscircuit/copper-pour-solver 0.0.26 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/dist/index.js +347 -205
  3. package/lib/index.ts +1 -0
  4. package/lib/solvers/CopperPourPipelineSolver.ts +20 -24
  5. package/lib/solvers/copper-pour/generate-brep.ts +35 -51
  6. package/lib/solvers/copper-pour/get-board-polygon.ts +10 -19
  7. package/lib/solvers/copper-pour/manifold-geometry-adapter.ts +159 -0
  8. package/lib/solvers/copper-pour/manifold-runtime.ts +51 -0
  9. package/lib/solvers/copper-pour/polygon-primitives.ts +57 -0
  10. package/lib/solvers/copper-pour/polygon-ring.ts +126 -0
  11. package/lib/solvers/copper-pour/process-obstacles.ts +48 -143
  12. package/package.json +4 -1
  13. package/tests/__snapshots__/2-layers-bottom.snap.svg +1 -1
  14. package/tests/__snapshots__/2-layers-top.snap.svg +1 -1
  15. package/tests/__snapshots__/board-edge-margin-2.snap.svg +1 -1
  16. package/tests/__snapshots__/board-edge-margin.snap.svg +1 -1
  17. package/tests/__snapshots__/hole-and-cutouts.snap.svg +1 -1
  18. package/tests/__snapshots__/larger-trace-margin.snap.svg +1 -1
  19. package/tests/__snapshots__/multiple-pours.snap.svg +1 -1
  20. package/tests/__snapshots__/pad-margin.snap.svg +1 -1
  21. package/tests/__snapshots__/polygon-board-2.snap.svg +1 -1
  22. package/tests/__snapshots__/polygon-board.snap.svg +1 -1
  23. package/tests/__snapshots__/smaller-trace-margin.snap.svg +1 -1
  24. package/tests/__snapshots__/stm32f746g-disco.test.tsbottom.snap.svg +1 -0
  25. package/tests/__snapshots__/stm32f746g-disco.test.tstop.snap.svg +1 -0
  26. package/tests/__snapshots__/via.snap.svg +1 -1
  27. package/tests/fixtures/preload.ts +3 -0
  28. package/tests/manifold-copper-pour-geometry.test.ts +194 -0
  29. package/tests/stm32f746g-disco.test.ts +16 -16
  30. package/lib/solvers/copper-pour/circle-to-polygon.ts +0 -15
@@ -1,4 +1,3 @@
1
- import Flatten from "@flatten-js/core"
2
1
  import type { Point } from "@tscircuit/math-utils"
3
2
  import type {
4
3
  InputCircularPad,
@@ -7,10 +6,16 @@ import type {
7
6
  InputRectPad,
8
7
  InputTracePad,
9
8
  } from "lib/types"
10
- import { circleToPolygon } from "./circle-to-polygon"
9
+ import { offsetPolygon } from "./manifold-geometry-adapter"
10
+ import {
11
+ boxToPolygon,
12
+ circleToPolygon,
13
+ segmentToPolygon,
14
+ } from "./polygon-primitives"
15
+ import { normalizeRing, type PolygonRing } from "./polygon-ring"
11
16
 
12
17
  interface ProcessedObstacles {
13
- polygonsToSubtract: Flatten.Polygon[]
18
+ polygonsToSubtract: PolygonRing[]
14
19
  }
15
20
 
16
21
  const isRectPad = (pad: InputPad): pad is InputRectPad => pad.shape === "rect"
@@ -32,7 +37,7 @@ export const processObstaclesForPour = (
32
37
  },
33
38
  boardOutline?: Point[],
34
39
  ): ProcessedObstacles => {
35
- const polygonsToSubtract: Flatten.Polygon[] = []
40
+ const polygonsToSubtract: PolygonRing[] = []
36
41
 
37
42
  const { padMargin, traceMargin, board_edge_margin, cutoutMargin } = margins
38
43
 
@@ -42,13 +47,10 @@ export const processObstaclesForPour = (
42
47
  board_edge_margin &&
43
48
  board_edge_margin > 0
44
49
  ) {
45
- const boardPoly = new Flatten.Polygon(
46
- boardOutline.map((p) => Flatten.point(p.x, p.y)),
50
+ const vertices = normalizeRing(
51
+ boardOutline,
52
+ "processObstacles.boardOutline",
47
53
  )
48
- if (boardPoly.area() < 0) {
49
- boardPoly.reverse()
50
- }
51
- const vertices = boardPoly.vertices
52
54
 
53
55
  // Add clearance shapes at vertices
54
56
  for (let i = 0; i < vertices.length; i++) {
@@ -58,21 +60,21 @@ export const processObstaclesForPour = (
58
60
 
59
61
  if (!p1 || !p2 || !p3) continue
60
62
 
61
- const v1 = new Flatten.Vector(p1, p2)
62
- const v2 = new Flatten.Vector(p2, p3)
63
- const crossProduct = v1.cross(v2)
63
+ const v1 = { x: p2.x - p1.x, y: p2.y - p1.y }
64
+ const v2 = { x: p3.x - p2.x, y: p3.y - p2.y }
65
+ const crossProduct = v1.x * v2.y - v1.y * v2.x
64
66
 
65
- const circle = new Flatten.Circle(p2, board_edge_margin)
66
- polygonsToSubtract.push(circleToPolygon(circle))
67
+ polygonsToSubtract.push(circleToPolygon(p2, board_edge_margin))
67
68
 
68
69
  if (crossProduct < 0) {
69
- const box = new Flatten.Box(
70
- p2.x - board_edge_margin,
71
- p2.y - board_edge_margin,
72
- p2.x + board_edge_margin,
73
- p2.y + board_edge_margin,
70
+ polygonsToSubtract.push(
71
+ boxToPolygon(
72
+ p2.x - board_edge_margin,
73
+ p2.y - board_edge_margin,
74
+ p2.x + board_edge_margin,
75
+ p2.y + board_edge_margin,
76
+ ),
74
77
  )
75
- polygonsToSubtract.push(new Flatten.Polygon(box.toPoints()))
76
78
  }
77
79
  }
78
80
 
@@ -83,37 +85,10 @@ export const processObstaclesForPour = (
83
85
 
84
86
  if (!p1 || !p2) continue
85
87
 
86
- const segmentLength = Math.hypot(p1.x - p2.x, p1.y - p2.y)
87
- if (segmentLength === 0) continue
88
-
89
- const enlargedWidth = board_edge_margin * 2
90
-
91
- const centerX = (p1.x + p2.x) / 2
92
- const centerY = (p1.y + p2.y) / 2
93
- const rotationDeg = (Math.atan2(p2.y - p1.y, p2.x - p1.x) * 180) / Math.PI
94
-
95
- const w2 = segmentLength / 2
96
- const h2 = enlargedWidth / 2
97
-
98
- const angleRad = (rotationDeg * Math.PI) / 180
99
- const cosAngle = Math.cos(angleRad)
100
- const sinAngle = Math.sin(angleRad)
101
-
102
- const corners = [
103
- { x: -w2, y: -h2 },
104
- { x: w2, y: -h2 },
105
- { x: w2, y: h2 },
106
- { x: -w2, y: h2 },
107
- ]
108
-
109
- const rotatedCorners = corners.map((p) => ({
110
- x: centerX + p.x * cosAngle - p.y * sinAngle,
111
- y: centerY + p.x * sinAngle + p.y * cosAngle,
112
- }))
113
-
114
- polygonsToSubtract.push(
115
- new Flatten.Polygon(rotatedCorners.map((p) => Flatten.point(p.x, p.y))),
116
- )
88
+ const segmentPolygon = segmentToPolygon(p1, p2, board_edge_margin * 2)
89
+ if (segmentPolygon.length > 0) {
90
+ polygonsToSubtract.push(segmentPolygon)
91
+ }
117
92
  }
118
93
  }
119
94
 
@@ -130,24 +105,23 @@ export const processObstaclesForPour = (
130
105
 
131
106
  if (isCircularPad(pad)) {
132
107
  const margin = isHoleOrCutout ? (cutoutMargin ?? 0) : padMargin
133
- const circle = new Flatten.Circle(
134
- new Flatten.Point(pad.x, pad.y),
135
- pad.radius + margin,
108
+ polygonsToSubtract.push(
109
+ circleToPolygon({ x: pad.x, y: pad.y }, pad.radius + margin),
136
110
  )
137
- polygonsToSubtract.push(circleToPolygon(circle))
138
111
  continue
139
112
  }
140
113
 
141
114
  if (isRectPad(pad)) {
142
115
  const margin = isHoleOrCutout ? (cutoutMargin ?? 0) : padMargin
143
116
  const { bounds } = pad
144
- const b = new Flatten.Box(
145
- bounds.minX - margin,
146
- bounds.minY - margin,
147
- bounds.maxX + margin,
148
- bounds.maxY + margin,
117
+ polygonsToSubtract.push(
118
+ boxToPolygon(
119
+ bounds.minX - margin,
120
+ bounds.minY - margin,
121
+ bounds.maxX + margin,
122
+ bounds.maxY + margin,
123
+ ),
149
124
  )
150
- polygonsToSubtract.push(new Flatten.Polygon(b.toPoints()))
151
125
  continue
152
126
  }
153
127
 
@@ -166,67 +140,24 @@ export const processObstaclesForPour = (
166
140
 
167
141
  if (uniquePoints.length < 3) continue
168
142
 
169
- const polygon = new Flatten.Polygon(
170
- uniquePoints.map((p) => Flatten.point(p.x, p.y)),
171
- )
172
-
173
- if (Math.abs(polygon.area()) < 1e-9) continue
143
+ const polygon = normalizeRing(uniquePoints, "processObstacles.polygonPad")
144
+ if (polygon.length < 3) continue
174
145
 
175
146
  if (margin <= 0) {
176
147
  polygonsToSubtract.push(polygon)
177
148
  continue
178
149
  }
179
150
 
180
- // Ensure polygon is CCW for consistent normal direction.
181
- // In flatten-js, CCW corresponds to a negative area.
182
- if (polygon.area() > 0) {
183
- polygon.reverse()
184
- }
185
-
186
- const offsetLines: Flatten.Line[] = []
187
- const polygonVertices = polygon.vertices
188
- for (let i = 0; i < polygonVertices.length; i++) {
189
- const p1 = polygonVertices[i]!
190
- const p2 = polygonVertices[(i + 1) % polygonVertices.length]!
191
-
192
- const segment = Flatten.segment(p1, p2)
193
-
194
- if (segment.length === 0) continue
195
-
196
- const line = Flatten.line(segment.start, segment.end)
197
-
198
- // For a CCW polygon, the normal (rotated +90deg, i.e. "left") points inward.
199
- // We must translate outward, so we use a negative margin.
200
- const norm = line.norm
201
- const offsetLine = line.translate(norm.multiply(-margin))
202
- offsetLines.push(offsetLine)
203
- }
204
-
205
- const newPolygonPoints: Flatten.Point[] = []
206
- for (let i = 0; i < offsetLines.length; i++) {
207
- const line1 = offsetLines[i]!
208
- const line2 = offsetLines[(i + 1) % offsetLines.length]!
209
-
210
- const ip = line1.intersect(line2)
211
- if (ip.length > 0) {
212
- newPolygonPoints.push(ip[0]!)
213
- }
214
- }
215
-
216
- if (newPolygonPoints.length >= 3) {
217
- polygonsToSubtract.push(new Flatten.Polygon(newPolygonPoints))
218
- }
151
+ polygonsToSubtract.push(...offsetPolygon(polygon, margin))
219
152
  continue
220
153
  }
221
154
 
222
155
  if (isTracePad(pad)) {
223
156
  // Add circles for each vertex
224
157
  for (const segment of pad.segments) {
225
- const circle = new Flatten.Circle(
226
- new Flatten.Point(segment.x, segment.y),
227
- pad.width / 2 + traceMargin,
158
+ polygonsToSubtract.push(
159
+ circleToPolygon(segment, pad.width / 2 + traceMargin),
228
160
  )
229
- polygonsToSubtract.push(circleToPolygon(circle))
230
161
  }
231
162
 
232
163
  // Add rectangles for each segment
@@ -236,40 +167,14 @@ export const processObstaclesForPour = (
236
167
 
237
168
  if (!p1 || !p2) continue
238
169
 
239
- const segmentLength = Math.hypot(p1.x - p2.x, p1.y - p2.y)
240
- if (segmentLength === 0) continue
241
-
242
- const enlargedWidth = pad.width + traceMargin * 2
243
-
244
- const centerX = (p1.x + p2.x) / 2
245
- const centerY = (p1.y + p2.y) / 2
246
- const rotationDeg =
247
- (Math.atan2(p2.y - p1.y, p2.x - p1.x) * 180) / Math.PI
248
-
249
- const w2 = segmentLength / 2
250
- const h2 = enlargedWidth / 2
251
-
252
- const angleRad = (rotationDeg * Math.PI) / 180
253
- const cosAngle = Math.cos(angleRad)
254
- const sinAngle = Math.sin(angleRad)
255
-
256
- const corners = [
257
- { x: -w2, y: -h2 },
258
- { x: w2, y: -h2 },
259
- { x: w2, y: h2 },
260
- { x: -w2, y: h2 },
261
- ]
262
-
263
- const rotatedCorners = corners.map((p) => ({
264
- x: centerX + p.x * cosAngle - p.y * sinAngle,
265
- y: centerY + p.x * sinAngle + p.y * cosAngle,
266
- }))
267
-
268
- polygonsToSubtract.push(
269
- new Flatten.Polygon(
270
- rotatedCorners.map((p) => Flatten.point(p.x, p.y)),
271
- ),
170
+ const segmentPolygon = segmentToPolygon(
171
+ p1,
172
+ p2,
173
+ pad.width + traceMargin * 2,
272
174
  )
175
+ if (segmentPolygon.length > 0) {
176
+ polygonsToSubtract.push(segmentPolygon)
177
+ }
273
178
  }
274
179
  }
275
180
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/copper-pour-solver",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.26",
4
+ "version": "0.0.28",
5
5
  "scripts": {
6
6
  "format": "biome format . --write",
7
7
  "format:check": "biome format .",
@@ -26,5 +26,8 @@
26
26
  },
27
27
  "peerDependencies": {
28
28
  "typescript": "^5"
29
+ },
30
+ "dependencies": {
31
+ "manifold-3d": "^3.4.1"
29
32
  }
30
33
  }
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="547.2727272727273" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="497.5" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 127.27272727272725 572.7272727272727 L 127.27272727272725 27.272727272727252 L 672.7272727272727 27.272727272727252 L 672.7272727272727 572.7272727272727 L 127.27272727272725 572.7272727272727 Z M 443.6363636363636 300 L 442.79790314486826 291.48696776656897 L 440.31474323685615 283.3010865877052 L 436.2823103550202 275.7569352864174 L 430.8555686335948 269.1444313664052 L 424.24306471358267 263.7176896449798 L 416.6989134122948 259.68525676314385 L 408.51303223343103 257.20209685513174 L 400 256.3636363636364 L 391.48696776656897 257.20209685513174 L 383.3010865877052 259.68525676314385 L 375.7569352864174 263.7176896449798 L 369.1444313664052 269.1444313664052 L 363.7176896449798 275.7569352864174 L 359.68525676314385 283.3010865877052 L 357.20209685513174 291.4869677665689 L 356.3636363636364 300 L 357.20209685513174 308.51303223343103 L 359.68525676314385 316.6989134122948 L 363.7176896449798 324.2430647135826 L 369.1444313664052 330.8555686335948 L 375.7569352864174 336.2823103550202 L 383.30108658770513 340.31474323685615 L 391.4869677665689 342.79790314486826 L 400 343.6363636363636 L 408.51303223343103 342.79790314486826 L 416.6989134122948 340.31474323685615 L 424.2430647135826 336.2823103550202 L 430.85556863359477 330.8555686335948 L 436.2823103550202 324.2430647135826 L 440.31474323685615 316.69891341229487 L 442.79790314486826 308.5130322334311 L 443.6363636363636 300 Z M 536.3636363636364 330 L 586.1363636363636 330 L 586.1363636363636 270 L 536.3636363636364 270 L 536.3636363636364 330 Z M 427.27272727272725 409.0909090909091 L 426.74868946554267 403.7702639450147 L 425.1967145230351 398.65408820822483 L 422.6764439718876 393.93899364491995 L 419.28473039599675 389.8061786949123 L 415.1519154459892 386.4144651190215 L 410.4368208826843 383.894194567874 L 405.3206451458944 382.34221962536645 L 400 381.8181818181818 L 394.6793548541056 382.34221962536645 L 389.5631791173157 383.894194567874 L 384.8480845540109 386.4144651190215 L 380.71526960400325 389.8061786949123 L 377.3235560281124 393.93899364491995 L 374.8032854769649 398.65408820822483 L 373.25131053445733 403.7702639450147 L 372.72727272727275 409.0909090909091 L 373.25131053445733 414.4115542368035 L 374.8032854769649 419.52772997359335 L 377.3235560281124 424.24282453689824 L 380.71526960400325 428.37563948690587 L 384.8480845540108 431.7673530627967 L 389.5631791173157 434.28762361394416 L 394.67935485410555 435.83959855645173 L 400 436.3636363636364 L 405.3206451458944 435.83959855645173 L 410.4368208826843 434.2876236139442 L 415.1519154459891 431.7673530627967 L 419.28473039599675 428.37563948690587 L 422.6764439718876 424.24282453689824 L 425.1967145230351 419.5277299735934 L 426.74868946554267 414.4115542368035 L 427.27272727272725 409.0909090909091 Z" fill="rgb(77, 127, 196)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 511.47727272727275 270 L 580.6818181818182 270 L 580.6818181818182 330 L 511.47727272727275 330" fill="none" stroke="#5da9e9" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,536.3636363636364,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">R2</text><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 127.27272727272725 27.272727272727252 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 270 L 219.3181818181818 270 L 219.3181818181818 330 L 288.52272727272725 330" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_plated_hole" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="400" cy="300" r="32.72727272727273" data-type="pcb_plated_hole" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="400" cy="300" r="16.363636363636363" data-type="pcb_plated_hole_drill" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="400" cy="409.0909090909091" r="27.272727272727273" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="547.2727272727273" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="497.5" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 672.7272727272727 572.7272727272727 L 127.27272727272725 572.7272727272727 L 127.27272727272725 27.272727272727252 L 672.7272727272727 27.272727272727252 L 672.7272727272727 572.7272727272727 Z M 400 343.6363636363636 L 408.5130454545455 342.79789090909094 L 416.6989 340.31473636363637 L 424.2430545454545 336.2823 L 430.8555727272727 330.8555727272727 L 436.2823 324.2430545454545 L 440.31473636363637 316.6989 L 442.79789090909094 308.5130454545455 L 443.6363636363636 300 L 442.79789090909094 291.4869545454545 L 440.31473636363637 283.3011 L 436.2823 275.7569454545455 L 430.8555727272727 269.1444272727273 L 424.2430545454545 263.7177 L 416.6989 259.68526363636363 L 408.5130454545455 257.20210909090906 L 400 256.3636363636364 L 391.4869545454545 257.20210909090906 L 383.3011 259.68526363636363 L 375.7569454545455 263.7177 L 369.1444272727273 269.1444272727273 L 363.7177 275.7569454545455 L 359.68526363636363 283.3011 L 357.20210909090906 291.4869545454545 L 356.3636363636364 300 L 357.20210909090906 308.5130454545455 L 359.68526363636363 316.6989 L 363.7177 324.2430545454545 L 369.1444272727273 330.8555727272727 L 375.7569454545455 336.2823 L 383.3011 340.31473636363637 L 391.4869545454545 342.79789090909094 L 400 343.6363636363636 Z M 536.3636363636364 330 L 586.1363636363636 330 L 586.1363636363636 270 L 536.3636363636364 270 L 536.3636363636364 330 Z M 400 436.3636363636364 L 405.32063636363637 435.83959090909093 L 410.4368090909091 434.28763636363635 L 415.1519090909091 431.76736363636365 L 419.28473636363634 428.37564545454546 L 422.67645454545453 424.24281818181817 L 425.1967272727273 419.52771818181816 L 426.7486818181818 414.4115454545455 L 427.27272727272725 409.0909090909091 L 426.7486818181818 403.77027272727275 L 425.1967272727273 398.65409999999997 L 422.67645454545453 393.939 L 419.28473636363634 389.8061727272727 L 415.1519090909091 386.41445454545453 L 410.4368090909091 383.89418181818183 L 405.32063636363637 382.34222727272726 L 400 381.8181818181818 L 394.67936363636363 382.34222727272726 L 389.5631909090909 383.89418181818183 L 384.8480909090909 386.41445454545453 L 380.71526363636366 389.8061727272727 L 377.32354545454547 393.939 L 374.8032727272727 398.65409999999997 L 373.2513181818182 403.77027272727275 L 372.72727272727275 409.0909090909091 L 373.2513181818182 414.4115454545455 L 374.8032727272727 419.52771818181816 L 377.32354545454547 424.24281818181817 L 380.71526363636366 428.37564545454546 L 384.8480909090909 431.76736363636365 L 389.5631909090909 434.28763636363635 L 394.67936363636363 435.83959090909093 L 400 436.3636363636364 Z" fill="rgb(77, 127, 196)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 511.47727272727275 270 L 580.6818181818182 270 L 580.6818181818182 330 L 511.47727272727275 330" fill="none" stroke="#5da9e9" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,536.3636363636364,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">R2</text><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 127.27272727272725 27.272727272727252 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 270 L 219.3181818181818 270 L 219.3181818181818 330 L 288.52272727272725 330" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_plated_hole" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="400" cy="300" r="32.72727272727273" data-type="pcb_plated_hole" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="400" cy="300" r="16.363636363636363" data-type="pcb_plated_hole_drill" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="400" cy="409.0909090909091" r="27.272727272727273" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="547.2727272727273" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="497.5" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 511.47727272727275 270 L 580.6818181818182 270 L 580.6818181818182 330 L 511.47727272727275 330" fill="none" stroke="#5da9e9" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,536.3636363636364,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">R2</text><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 127.27272727272725 27.272727272727252 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 127.27272727272725 572.7272727272727 L 127.27272727272725 27.272727272727252 L 672.7272727272727 27.272727272727252 L 672.7272727272727 572.7272727272727 L 127.27272727272725 572.7272727272727 Z M 438.1818181818182 300 L 437.4481652517597 292.5510967957478 L 435.27540033224915 285.388450764242 L 431.7470215606426 278.7873183756152 L 426.99862255439547 273.00137744560453 L 421.2126816243848 268.2529784393574 L 414.611549235758 264.72459966775085 L 407.4489032042522 262.5518347482403 L 400 261.8181818181818 L 392.5510967957478 262.5518347482403 L 385.388450764242 264.72459966775085 L 378.7873183756152 268.2529784393574 L 373.00137744560453 273.00137744560453 L 368.2529784393574 278.7873183756152 L 364.72459966775085 285.388450764242 L 362.5518347482403 292.5510967957478 L 361.8181818181818 300 L 362.5518347482403 307.4489032042522 L 364.72459966775085 314.611549235758 L 368.2529784393574 321.2126816243848 L 373.00137744560453 326.99862255439547 L 378.7873183756152 331.7470215606426 L 385.388450764242 335.2754003322491 L 392.5510967957478 337.4481652517597 L 400 338.1818181818182 L 407.4489032042522 337.4481652517597 L 414.611549235758 335.27540033224915 L 421.2126816243848 331.7470215606426 L 426.99862255439547 326.99862255439547 L 431.7470215606426 321.2126816243848 L 435.2754003322491 314.611549235758 L 437.4481652517597 307.4489032042522 L 438.1818181818182 300 Z M 427.27272727272725 409.0909090909091 L 426.74868946554267 403.7702639450147 L 425.1967145230351 398.65408820822483 L 422.6764439718876 393.93899364491995 L 419.28473039599675 389.8061786949123 L 415.1519154459892 386.4144651190215 L 410.4368208826843 383.894194567874 L 405.3206451458944 382.34221962536645 L 400 381.8181818181818 L 394.6793548541056 382.34221962536645 L 389.5631791173157 383.894194567874 L 384.8480845540109 386.4144651190215 L 380.71526960400325 389.8061786949123 L 377.3235560281124 393.93899364491995 L 374.8032854769649 398.65408820822483 L 373.25131053445733 403.7702639450147 L 372.72727272727275 409.0909090909091 L 373.25131053445733 414.4115542368035 L 374.8032854769649 419.52772997359335 L 377.3235560281124 424.24282453689824 L 380.71526960400325 428.37563948690587 L 384.8480845540108 431.7673530627967 L 389.5631791173157 434.28762361394416 L 394.67935485410555 435.83959855645173 L 400 436.3636363636364 L 405.3206451458944 435.83959855645173 L 410.4368208826843 434.2876236139442 L 415.1519154459891 431.7673530627967 L 419.28473039599675 428.37563948690587 L 422.6764439718876 424.24282453689824 L 425.1967145230351 419.5277299735934 L 426.74868946554267 414.4115542368035 L 427.27272727272725 409.0909090909091 Z M 219.3181818181818 324.54545454545456 L 258.1818181818182 324.54545454545456 L 258.1818181818182 275.45454545454544 L 219.3181818181818 275.45454545454544 L 219.3181818181818 324.54545454545456 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 270 L 219.3181818181818 270 L 219.3181818181818 330 L 288.52272727272725 330" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_plated_hole" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="400" cy="300" r="32.72727272727273" data-type="pcb_plated_hole" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="400" cy="300" r="16.363636363636363" data-type="pcb_plated_hole_drill" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="400" cy="409.0909090909091" r="27.272727272727273" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="547.2727272727273" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="497.5" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 511.47727272727275 270 L 580.6818181818182 270 L 580.6818181818182 330 L 511.47727272727275 330" fill="none" stroke="#5da9e9" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,536.3636363636364,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">R2</text><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 127.27272727272725 27.272727272727252 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="280.90909090909093" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 672.7272727272727 572.7272727272727 L 127.27272727272725 572.7272727272727 L 127.27272727272725 27.272727272727252 L 672.7272727272727 27.272727272727252 L 672.7272727272727 572.7272727272727 Z M 400 338.1818181818182 L 407.4488909090909 337.44815454545454 L 414.61155454545457 335.2753909090909 L 421.2126727272727 331.7470090909091 L 426.9986090909091 326.9986090909091 L 431.7470090909091 321.2126727272727 L 435.2753909090909 314.61155454545457 L 437.44815454545454 307.4488909090909 L 438.1818181818182 300 L 437.44815454545454 292.5511090909091 L 435.2753909090909 285.38844545454543 L 431.7470090909091 278.7873272727273 L 426.9986090909091 273.0013909090909 L 421.2126727272727 268.2529909090909 L 414.61155454545457 264.7246090909091 L 407.4488909090909 262.55184545454546 L 400 261.8181818181818 L 392.5511090909091 262.55184545454546 L 385.38844545454543 264.7246090909091 L 378.7873272727273 268.2529909090909 L 373.0013909090909 273.0013909090909 L 368.2529909090909 278.7873272727273 L 364.7246090909091 285.38844545454543 L 362.55184545454546 292.5511090909091 L 361.8181818181818 300 L 362.55184545454546 307.4488909090909 L 364.7246090909091 314.61155454545457 L 368.2529909090909 321.2126727272727 L 373.0013909090909 326.9986090909091 L 378.7873272727273 331.7470090909091 L 385.38844545454543 335.2753909090909 L 392.5511090909091 337.44815454545454 L 400 338.1818181818182 Z M 219.3181818181818 324.54545454545456 L 258.1818181818182 324.54545454545456 L 258.1818181818182 275.45454545454544 L 219.3181818181818 275.45454545454544 L 219.3181818181818 324.54545454545456 Z M 400 436.3636363636364 L 405.32063636363637 435.83959090909093 L 410.4368090909091 434.28763636363635 L 415.1519090909091 431.76736363636365 L 419.28473636363634 428.37564545454546 L 422.67645454545453 424.24281818181817 L 425.1967272727273 419.52771818181816 L 426.7486818181818 414.4115454545455 L 427.27272727272725 409.0909090909091 L 426.7486818181818 403.77027272727275 L 425.1967272727273 398.65409999999997 L 422.67645454545453 393.939 L 419.28473636363634 389.8061727272727 L 415.1519090909091 386.41445454545453 L 410.4368090909091 383.89418181818183 L 405.32063636363637 382.34222727272726 L 400 381.8181818181818 L 394.67936363636363 382.34222727272726 L 389.5631909090909 383.89418181818183 L 384.8480909090909 386.41445454545453 L 380.71526363636366 389.8061727272727 L 377.32354545454547 393.939 L 374.8032727272727 398.65409999999997 L 373.2513181818182 403.77027272727275 L 372.72727272727275 409.0909090909091 L 373.2513181818182 414.4115454545455 L 374.8032727272727 419.52771818181816 L 377.32354545454547 424.24281818181817 L 380.71526363636366 428.37564545454546 L 384.8480909090909 431.76736363636365 L 389.5631909090909 434.28763636363635 L 394.67936363636363 435.83959090909093 L 400 436.3636363636364 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 270 L 219.3181818181818 270 L 219.3181818181818 330 L 288.52272727272725 330" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,256.3636363636364)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_plated_hole" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="400" cy="300" r="32.72727272727273" data-type="pcb_plated_hole" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="400" cy="300" r="16.363636363636363" data-type="pcb_plated_hole_drill" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="400" cy="409.0909090909091" r="27.272727272727273" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="33.33333333333337" y="22.22222222222223" width="733.3333333333334" height="555.5555555555557" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 144.4444444444445 577.7777777777778 L 700 577.7777777777778 L 744.4444444444445 466.6666666666667 L 766.6666666666667 244.44444444444446 L 744.4444444444445 22.22222222222223 L 700 22.22222222222223 L 588.8888888888889 22.22222222222223 L 588.8888888888889 133.33333333333334 L 477.7777777777778 133.33333333333334 L 477.7777777777778 22.22222222222223 L 144.4444444444445 22.22222222222223 L 33.33333333333337 133.33333333333334 L 144.4444444444445 244.44444444444446 L 255.5555555555556 244.44444444444446 L 255.5555555555556 466.6666666666667 L 144.4444444444445 466.6666666666667 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.2222222222222223" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="335" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.55555555555554" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="557.2222222222223" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="597.7777777777778" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 568.6111111111112 288.8888888888889 L 609.1666666666667 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 609.1666666666667 288.8888888888889 L 609.1666666666667 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 568.6111111111112 288.8888888888889 L 386.94444444444446 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 386.94444444444446 288.8888888888889 L 386.94444444444446 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 166.66666666666674 488.8888888888889 L 233.3333333333334 488.8888888888889 L 255.55555555555597 488.8888888888889 L 277.7777777777778 488.8888888888889 L 277.7777777777778 466.6666666666667 L 277.7777777777778 444.44444444444446 L 277.7777777777778 266.6666666666667 L 277.7777777777778 244.44444444444446 L 277.7777777777778 222.22222222222223 L 255.5555555555556 222.22222222222223 L 233.3333333333334 222.22222222222223 L 153.64919027495773 222.22222222222223 L 64.76030138606876 133.33333333333343 L 153.6491902749578 44.44444444444443 L 455.5555555555556 44.444444444444514 L 455.5555555555556 111.11111111111114 L 455.5555555555556 133.33333333333337 L 455.5555555555556 155.55555555555557 L 477.7777777777778 155.55555555555557 L 500.00000000000006 155.55555555555557 L 566.6666666666667 155.55555555555557 L 588.8888888888889 155.55555555555557 L 611.1111111111111 155.55555555555557 L 611.1111111111111 133.33333333333334 L 611.1111111111111 111.11111111111114 L 611.1111111111111 44.44444444444446 L 700 44.44444444444446 L 724.3336097308425 44.44444444444446 L 744.3336097308425 244.44444444444466 L 722.6450571331745 461.32997042112515 L 684.9548230794022 555.5555555555555 L 166.66666666666674 555.5555555555555 L 166.66666666666674 488.8888888888889 Z M 407.2222222222223 295 L 548.3333333333334 295 L 548.3333333333334 313.33333333333337 L 588.8888888888889 313.33333333333337 L 629.4444444444445 313.33333333333337 L 629.4444444444445 264.44444444444446 L 588.8888888888889 264.44444444444446 L 548.3333333333334 264.44444444444446 L 548.3333333333334 282.7777777777778 L 407.2222222222223 282.77777777777777 L 407.2222222222223 264.44444444444446 L 366.6666666666667 264.44444444444446 L 366.6666666666667 313.33333333333337 L 407.2222222222223 313.33333333333337 L 407.2222222222223 295 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 386.94444444444446 264.44444444444446 L 330.5555555555556 264.44444444444446 L 330.5555555555556 313.33333333333337 L 386.94444444444446 313.33333333333337" fill="none" stroke="#f2eda1" stroke-width="2.2222222222222223" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="8.88888888888889" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,366.66666666666674,253.33333333333334)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 609.1666666666667 264.44444444444446 L 552.7777777777778 264.44444444444446 L 552.7777777777778 313.33333333333337 L 609.1666666666667 313.33333333333337" fill="none" stroke="#f2eda1" stroke-width="2.2222222222222223" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="8.88888888888889" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,588.8888888888889,253.33333333333334)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R2</text></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="33.33333333333337" y="22.22222222222223" width="733.3333333333334" height="555.5555555555557" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 144.4444444444445 577.7777777777778 L 700 577.7777777777778 L 744.4444444444445 466.6666666666667 L 766.6666666666667 244.44444444444446 L 744.4444444444445 22.22222222222223 L 700 22.22222222222223 L 588.8888888888889 22.22222222222223 L 588.8888888888889 133.33333333333334 L 477.7777777777778 133.33333333333334 L 477.7777777777778 22.22222222222223 L 144.4444444444445 22.22222222222223 L 33.33333333333337 133.33333333333334 L 144.4444444444445 244.44444444444446 L 255.5555555555556 244.44444444444446 L 255.5555555555556 466.6666666666667 L 144.4444444444445 466.6666666666667 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.2222222222222223" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="335" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.55555555555554" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="557.2222222222223" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="597.7777777777778" y="273.33333333333337" width="22.777777777777775" height="31.111111111111107" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 568.6111111111112 288.8888888888889 L 609.1666666666667 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 609.1666666666667 288.8888888888889 L 609.1666666666667 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 568.6111111111112 288.8888888888889 L 386.94444444444446 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 386.94444444444446 288.8888888888889 L 386.94444444444446 288.8888888888889" stroke-width="3.333333333333333" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 684.9548222222222 555.5555555555555 L 166.66666666666674 555.5555555555555 L 166.66666666666674 488.8888888888889 L 255.5555555555556 488.8888888888889 L 277.7777777777778 488.8888888888889 L 277.7777777777778 466.6666666666667 L 277.7777777777778 266.6666666666667 L 277.7777777777778 222.22222222222223 L 255.5555555555556 222.22222222222223 L 233.3333333333334 222.22222222222223 L 153.64920000000006 222.22222222222223 L 64.7603111111112 133.33333333333334 L 153.64920000000006 44.44444444444446 L 455.5555555555556 44.44444444444446 L 455.5555555555556 111.11111111111114 L 455.5555555555556 155.55555555555557 L 500.00000000000006 155.55555555555557 L 588.8888888888889 155.55555555555557 L 611.1111111111111 155.55555555555557 L 611.1111111111111 133.33333333333334 L 611.1111111111111 44.44444444444446 L 700 44.44444444444446 L 724.3336222222223 44.44444444444446 L 744.3336222222223 244.44444444444446 L 722.6450666666667 461.3299333333333 L 684.9548222222222 555.5555555555555 Z M 366.66666666666674 313.33333333333337 L 407.2222222222223 313.33333333333337 L 407.2222222222223 295 L 548.3333333333334 295 L 548.3333333333334 313.33333333333337 L 588.8888888888889 313.33333333333337 L 629.4444444444445 313.33333333333337 L 629.4444444444445 264.44444444444446 L 588.8888888888889 264.44444444444446 L 548.3333333333334 264.44444444444446 L 548.3333333333334 282.77777777777777 L 407.2222222222223 282.77777777777777 L 407.2222222222223 264.44444444444446 L 366.66666666666674 264.44444444444446 L 366.66666666666674 313.33333333333337 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 386.94444444444446 264.44444444444446 L 330.5555555555556 264.44444444444446 L 330.5555555555556 313.33333333333337 L 386.94444444444446 313.33333333333337" fill="none" stroke="#f2eda1" stroke-width="2.2222222222222223" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="8.88888888888889" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,366.66666666666674,253.33333333333334)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 609.1666666666667 264.44444444444446 L 552.7777777777778 264.44444444444446 L 552.7777777777778 313.33333333333337 L 609.1666666666667 313.33333333333337" fill="none" stroke="#f2eda1" stroke-width="2.2222222222222223" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="8.88888888888889" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,588.8888888888889,253.33333333333334)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R2</text></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 400 27.272727272727252 L 400 300 L 127.27272727272725 300 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="497.5" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="547.2727272727273" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 511.47727272727275 354.54545454545456 L 561.25 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 561.25 354.54545454545456 L 561.25 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 511.47727272727275 354.54545454545456 L 288.52272727272725 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 288.52272727272725 354.54545454545456 L 288.52272727272725 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 313.4090909090909 362.0454545454545 L 486.5909090909091 362.04545454545456 L 486.5909090909091 384.54545454545456 L 536.3636363636364 384.54545454545456 L 586.1363636363636 384.54545454545456 L 586.1363636363636 324.54545454545456 L 536.3636363636364 324.54545454545456 L 486.5909090909091 324.54545454545456 L 486.5909090909091 347.04545454545456 L 313.4090909090909 347.04545454545456 L 313.4090909090909 327.27272727272725 L 372.72727272727275 327.27272727272725 L 400 327.27272727272725 L 427.27272727272725 327.27272727272725 L 427.27272727272725 300 L 427.27272727272725 272.72727272727275 L 427.27272727272725 54.54545454545453 L 645.4545454545455 54.54545454545453 L 645.4545454545455 545.4545454545455 L 154.54545454545453 545.4545454545455 L 154.54545454545453 327.27272727272725 L 263.6363636363636 327.27272727272725 L 263.6363636363636 384.54545454545456 L 313.4090909090909 384.54545454545456 L 313.4090909090909 362.0454545454545 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 324.54545454545456 L 219.3181818181818 324.54545454545456 L 219.3181818181818 384.54545454545456 L 288.52272727272725 384.54545454545456" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,310.9090909090909)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 561.25 324.54545454545456 L 492.04545454545456 324.54545454545456 L 492.04545454545456 384.54545454545456 L 561.25 384.54545454545456" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,536.3636363636364,310.9090909090909)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R2</text></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 400 27.272727272727252 L 400 300 L 127.27272727272725 300 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="224.77272727272728" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="274.5454545454545" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="497.5" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="547.2727272727273" y="335.4545454545455" width="27.954545454545453" height="38.18181818181818" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 511.47727272727275 354.54545454545456 L 561.25 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 561.25 354.54545454545456 L 561.25 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 511.47727272727275 354.54545454545456 L 288.52272727272725 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 288.52272727272725 354.54545454545456 L 288.52272727272725 354.54545454545456" stroke-width="4.090909090909091" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 154.54545454545453 545.4545454545455 L 154.54545454545453 327.27272727272725 L 263.6363636363636 327.27272727272725 L 263.6363636363636 384.54545454545456 L 313.4090909090909 384.54545454545456 L 313.4090909090909 362.04545454545456 L 486.5909090909091 362.04545454545456 L 486.5909090909091 384.54545454545456 L 536.3636363636364 384.54545454545456 L 586.1363636363636 384.54545454545456 L 586.1363636363636 324.54545454545456 L 536.3636363636364 324.54545454545456 L 486.5909090909091 324.54545454545456 L 486.5909090909091 347.04545454545456 L 313.4090909090909 347.04545454545456 L 313.4090909090909 327.27272727272725 L 400 327.27272727272725 L 427.27272727272725 327.27272727272725 L 427.27272727272725 300 L 427.27272727272725 54.54545454545453 L 645.4545454545455 54.54545454545453 L 645.4545454545455 545.4545454545455 L 154.54545454545453 545.4545454545455 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 288.52272727272725 324.54545454545456 L 219.3181818181818 324.54545454545456 L 219.3181818181818 384.54545454545456 L 288.52272727272725 384.54545454545456" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,263.6363636363636,310.9090909090909)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 561.25 324.54545454545456 L 492.04545454545456 324.54545454545456 L 492.04545454545456 384.54545454545456 L 561.25 384.54545454545456" fill="none" stroke="#f2eda1" stroke-width="2.7272727272727275" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10.90909090909091" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,536.3636363636364,310.9090909090909)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R2</text></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.849"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="284" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="233" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 297.5 300 L 297.5 378.95223661654137" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 297.5 378.95223661654137 L 303.5414925183353 384.99372913487673" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 303.5414925183353 384.99372913487673 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 306.25 393.75 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 246.5 264 L 321 264 L 321 336 L 246.5 336" fill="none" stroke="#5da9e9" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,272,239)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">C1</text><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="361" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="412" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 393.75 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 393.75 L 306.25 368.25" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 368.25 L 374.5 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 150 550 L 150 50 L 650 50 L 650 550 L 150 550 Z M 610 150 L 608.8471168241938 138.29458067903232 L 605.4327719506772 127.03899405809463 L 599.8881767381527 116.66578601882387 L 592.4264068711929 107.57359312880715 L 583.3342139811762 100.11182326184729 L 572.9610059419053 94.56722804932278 L 561.7054193209676 91.15288317580615 L 550 90 L 538.2945806790324 91.15288317580615 L 527.0389940580947 94.56722804932278 L 516.6657860188238 100.11182326184729 L 507.57359312880715 107.57359312880715 L 500.1118232618473 116.66578601882387 L 494.5672280493228 127.0389940580946 L 491.1528831758062 138.2945806790323 L 490 150 L 491.1528831758062 161.70541932096768 L 494.5672280493228 172.96100594190537 L 500.1118232618473 183.3342139811761 L 507.57359312880715 192.42640687119285 L 516.6657860188238 199.8881767381527 L 527.0389940580945 205.4327719506772 L 538.2945806790323 208.84711682419382 L 550 210 L 561.7054193209676 208.84711682419382 L 572.9610059419053 205.4327719506772 L 583.3342139811762 199.8881767381527 L 592.4264068711929 192.42640687119285 L 599.8881767381527 183.33421398117613 L 605.4327719506772 172.96100594190543 L 608.8471168241938 161.7054193209677 L 610 150 Z M 460 450 L 458.84711682419385 438.2945806790323 L 455.4327719506772 427.03899405809466 L 449.8881767381527 416.66578601882384 L 442.42640687119285 407.57359312880715 L 433.33421398117616 400.1118232618473 L 422.9610059419054 394.5672280493228 L 411.7054193209677 391.1528831758062 L 400 390 L 388.2945806790323 391.1528831758062 L 377.0389940580946 394.5672280493228 L 366.6657860188239 400.1118232618473 L 357.57359312880715 407.57359312880715 L 350.1118232618473 416.66578601882384 L 344.5672280493228 427.0389940580946 L 341.15288317580615 438.29458067903226 L 340 450 L 341.15288317580615 461.7054193209677 L 344.5672280493228 472.96100594190534 L 350.1118232618473 483.3342139811761 L 357.57359312880715 492.42640687119285 L 366.66578601882384 499.8881767381527 L 377.0389940580946 505.4327719506772 L 388.29458067903226 508.8471168241938 L 400 510 L 411.7054193209677 508.84711682419385 L 422.9610059419054 505.4327719506772 L 433.3342139811761 499.8881767381527 L 442.42640687119285 492.42640687119285 L 449.8881767381527 483.33421398117616 L 455.4327719506772 472.96100594190546 L 458.8471168241938 461.70541932096774 L 460 450 Z M 490 335 L 610 335 L 610 265 L 490 265 L 490 335 Z M 316.0805385563561 370.7938301144085 L 360.87436867076457 326 L 398 326 L 398 274 L 351 274 L 351 311.12563132923543 L 300.0628156646177 362.0628156646177 L 298.97464089235274 363.3887604610785 L 298.16605409052625 364.9015199668055 L 297.6681287964717 366.54295968235886 L 297.5 368.25 L 297.5 370.40515141679646 L 296.6829141908728 370.6530116872178 L 292.36074417450993 372.9632596924364 L 288.5723304703363 376.0723304703363 L 285.4632596924364 379.86074417450993 L 283.1530116872178 384.18291419087274 L 281.7303679899193 388.8727419495968 L 281.25 393.75 L 281.7303679899193 398.6272580504032 L 283.1530116872178 403.3170858091272 L 285.46325969243634 407.63925582549007 L 288.5723304703363 411.4276695296637 L 292.36074417450993 414.5367403075636 L 296.68291419087274 416.8469883127822 L 301.3727419495968 418.2696320100807 L 306.25 418.75 L 311.1272580504032 418.2696320100807 L 315.81708580912726 416.8469883127822 L 320.13925582549007 414.53674030756366 L 323.9276695296637 411.4276695296637 L 327.0367403075636 407.63925582549007 L 329.3469883127822 403.31708580912726 L 330.7696320100807 398.6272580504032 L 331.25 393.75 L 330.7696320100807 388.8727419495968 L 329.3469883127822 384.1829141908728 L 327.0367403075636 379.86074417450993 L 323.9276695296637 376.0723304703363 L 320.13925582549007 372.9632596924364 L 316.0805385563561 370.7938301144085 Z M 475.85786437626905 460 L 624.142135623731 460 L 550 385.85786437626905 L 475.85786437626905 460 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 425.5 264 L 351 264 L 351 336 L 425.5 336" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,400,239)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="306.25" cy="393.75" r="15" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="306.25" cy="393.75" r="7.5" data-type="pcb_via" data-pcb-layer="drill"/></g><rect class="pcb-cutout pcb-cutout-rect" x="-50" y="-25" width="100" height="50" fill="#FF26E2" transform="matrix(1,0,0,1,550,300)" data-type="pcb_cutout" data-pcb-layer="drill"/><circle class="pcb-cutout pcb-cutout-circle" cx="550" cy="150" r="50" fill="#FF26E2" data-type="pcb_cutout" data-pcb-layer="drill"/><polygon class="pcb-cutout pcb-cutout-polygon" points="550,400 550,400 600,450 500,450" fill="#FF26E2" data-type="pcb_cutout" data-pcb-layer="drill"/><circle class="pcb-hole" cx="400" cy="450" r="50" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.849"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="284" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="bottom"/><rect class="pcb-pad" fill="rgb(77, 127, 196)" x="233" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 297.5 300 L 297.5 378.95223661654137" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 297.5 378.95223661654137 L 303.5414925183353 384.99372913487673" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 303.5414925183353 384.99372913487673 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-trace" stroke="rgb(77, 127, 196)" fill="none" d="M 306.25 393.75 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="bottom"/><path class="pcb-silkscreen pcb-silkscreen-bottom" d="M 246.5 264 L 321 264 L 321 336 L 246.5 336" fill="none" stroke="#5da9e9" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="bottom"/><text x="0" y="0" dx="0" dy="0" fill="#5da9e9" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(-1,0,0,1,272,239)" class="pcb-silkscreen-text pcb-silkscreen-bottom" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="bottom">C1</text><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="361" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="412" y="284" width="27" height="32" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 393.75 L 306.25 393.75" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 393.75 L 306.25 368.25" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 306.25 368.25 L 374.5 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 650 550 L 150 550 L 150 50 L 650 50 L 650 550 Z M 550 210 L 561.7054 208.8471 L 572.961 205.43275 L 583.3342 199.8882 L 592.4264000000001 192.4264 L 599.8882 183.3342 L 605.4327499999999 172.961 L 608.8471 161.7054 L 610 150 L 608.8471 138.2946 L 605.4327499999999 127.03899999999999 L 599.8882 116.66579999999999 L 592.4264000000001 107.5736 L 583.3342 100.11179999999999 L 572.961 94.56725 L 561.7054 91.15289999999999 L 550 90 L 538.2946 91.15289999999999 L 527.039 94.56725 L 516.6658 100.11179999999999 L 507.5736 107.5736 L 500.1118 116.66579999999999 L 494.56725 127.03899999999999 L 491.1529 138.2946 L 490 150 L 491.1529 161.7054 L 494.56725 172.961 L 500.1118 183.3342 L 507.5736 192.4264 L 516.6658 199.8882 L 527.039 205.43275 L 538.2946 208.8471 L 550 210 Z M 490 335 L 610 335 L 610 265 L 490 265 L 490 335 Z M 306.25 418.75 L 311.12725 418.26965 L 315.8171 416.847 L 320.13925 414.53675 L 323.92764999999997 411.42764999999997 L 327.03675 407.63925 L 329.347 403.3171 L 330.76965 398.62725 L 331.25 393.75 L 330.76965 388.87275 L 329.347 384.1829 L 327.03675 379.86075 L 323.92764999999997 376.07235000000003 L 320.13925 372.96325 L 316.08055 370.79385 L 360.8744 326 L 398 326 L 398 274 L 351 274 L 351 311.1256 L 300.0628 362.0628 L 298.97465 363.38875 L 298.16605 364.9015 L 297.66814999999997 366.54295 L 297.5 368.25 L 297.5 370.40515 L 296.6829 370.653 L 292.36075 372.96325 L 288.57235000000003 376.07235000000003 L 285.46325 379.86075 L 283.153 384.1829 L 281.73035 388.87275 L 281.25 393.75 L 281.73035 398.62725 L 283.153 403.3171 L 285.46325 407.63925 L 288.57235000000003 411.42764999999997 L 292.36075 414.53675 L 296.6829 416.847 L 301.37275 418.26965 L 306.25 418.75 Z M 493.3182 460 L 606.6818000000001 460 L 611.7958 447.65364999999997 L 550 385.85785 L 488.2042 447.65364999999997 L 493.3182 460 Z M 400 510 L 411.7054 508.8471 L 422.961 505.43275 L 433.3342 499.8882 L 442.4264 492.4264 L 449.8882 483.3342 L 455.43275 472.961 L 458.8471 461.7054 L 460 450 L 458.8471 438.2946 L 455.43275 427.039 L 449.8882 416.6658 L 442.4264 407.5736 L 433.3342 400.1118 L 422.961 394.56725 L 411.7054 391.1529 L 400 390 L 388.2946 391.1529 L 377.039 394.56725 L 366.6658 400.1118 L 357.5736 407.5736 L 350.1118 416.6658 L 344.56725 427.039 L 341.1529 438.2946 L 340 450 L 341.1529 461.7054 L 344.56725 472.961 L 350.1118 483.3342 L 357.5736 492.4264 L 366.6658 499.8882 L 377.039 505.43275 L 388.2946 508.8471 L 400 510 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 425.5 264 L 351 264 L 351 336 L 425.5 336" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,400,239)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="306.25" cy="393.75" r="15" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="306.25" cy="393.75" r="7.5" data-type="pcb_via" data-pcb-layer="drill"/></g><rect class="pcb-cutout pcb-cutout-rect" x="-50" y="-25" width="100" height="50" fill="#FF26E2" transform="matrix(1,0,0,1,550,300)" data-type="pcb_cutout" data-pcb-layer="drill"/><circle class="pcb-cutout pcb-cutout-circle" cx="550" cy="150" r="50" fill="#FF26E2" data-type="pcb_cutout" data-pcb-layer="drill"/><polygon class="pcb-cutout pcb-cutout-polygon" points="550,400 550,400 600,450 500,450" fill="#FF26E2" data-type="pcb_cutout" data-pcb-layer="drill"/><circle class="pcb-hole" cx="400" cy="450" r="50" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="25" y="50" width="750" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 25 550 L 775 550 L 775 50 L 25 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="244.875" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="276.625" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="308.375" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="340.125" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="340.125" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="308.375" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="276.625" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="244.875" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="530.5" y="192" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="556" y="192" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="530.5" y="392" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="556" y="392" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 400 L 562.75 200" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 200 L 562.75 200" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 400 L 550.0870163998582 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 550.0870163998582 412.6629836001419 L 263.0528406003259 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 263.0528406003259 412.6629836001419 L 261.2879836001419 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 261.2879836001419 412.6629836001419 L 196.25 347.625" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 25 550 L 25 50 L 775 50 L 775 550 L 25 550 Z M 213.75 348.3312139468195 L 213.75 335.125 L 178.75 335.125 L 178.75 360.125 L 191.95621394681947 360.125 L 252.89109057355162 421.05987662673215 L 254.6905870830341 422.53668524623464 L 256.74361784080645 423.63405304871344 L 258.97128602620035 424.3098088049303 L 261.28798360014184 424.5379836001419 L 263.0528406003259 424.53798360014184 L 550.0870163998582 424.5379836001419 L 552.4037139737997 424.3098088049303 L 554.6313821591935 423.63405304871344 L 556.6844129169658 422.53668524623464 L 558.4839094264483 421.05987662673215 L 566.5437860531805 413 L 574.5 413 L 574.5 401.2691462984511 L 574.625 400 L 574.625 200 L 574.5 198.73085370154865 L 574.5 187 L 551 187 L 551 198.73085370154888 L 550.875 200 L 550.875 395.0812139468195 L 549 396.9562139468195 L 549 387 L 525.5 387 L 525.5 400.78798360014196 L 266.20676965332245 400.7879836001419 L 213.75 348.3312139468195 Z M 286.25 360.125 L 321.25 360.125 L 321.25 335.125 L 286.25 335.125 L 286.25 360.125 Z M 286.25 264.875 L 321.25 264.875 L 321.25 239.875 L 286.25 239.875 L 286.25 264.875 Z M 286.25 328.375 L 321.25 328.375 L 321.25 303.375 L 286.25 303.375 L 286.25 328.375 Z M 286.25 296.625 L 321.25 296.625 L 321.25 271.625 L 286.25 271.625 L 286.25 296.625 Z M 178.75 296.625 L 213.75 296.625 L 213.75 271.625 L 178.75 271.625 L 178.75 296.625 Z M 178.75 328.375 L 213.75 328.375 L 213.75 303.375 L 178.75 303.375 L 178.75 328.375 Z M 525.5 213 L 549 213 L 549 187 L 525.5 187 L 525.5 213 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 211.25 363.0625 L 211.25 236.9375 L 237.08333333333334 236.9375 L 238.06655603839587 241.88049433471576 L 240.86653740967375 246.07096259032625 L 245.05700566528427 248.87094396160413 L 250 249.85416666666666 L 254.94299433471573 248.87094396160413 L 259.13346259032625 246.07096259032625 L 261.9334439616041 241.88049433471576 L 262.91666666666663 236.9375 L 288.75 236.9375 L 288.75 363.0625 L 211.25 363.0625 Z" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="15.510416666666666" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,250,226.9375)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">U1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 562.75 182 L 525.5 182 L 525.5 218 L 562.75 218" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,550,169.5)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 562.75 382 L 525.5 382 L 525.5 418 L 562.75 418" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_2" data-pcb-silkscreen-path-id="pcb_silkscreen_path_2" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,550,369.5)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_2" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C1</text></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.844"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="25" y="50" width="750" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 25 550 L 775 550 L 775 50 L 25 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="244.875" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="276.625" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="308.375" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="183.75" y="340.125" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="340.125" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="308.375" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="276.625" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="291.25" y="244.875" width="25" height="15" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="530.5" y="192" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="556" y="192" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="530.5" y="392" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="556" y="392" width="13.5" height="16" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 400 L 562.75 200" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 200 L 562.75 200" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 562.75 400 L 550.0870163998582 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 550.0870163998582 412.6629836001419 L 263.0528406003259 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 263.0528406003259 412.6629836001419 L 261.2879836001419 412.6629836001419" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 261.2879836001419 412.6629836001419 L 196.25 347.625" stroke-width="3.75" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 775 550 L 25 550 L 25 50 L 775 50 L 775 550 Z M 525.5 213 L 549 213 L 549 187 L 525.5 187 L 525.5 213 Z M 261.287975 424.53797499999996 L 263.05285000000003 424.53797499999996 L 550.087025 424.53797499999996 L 552.403725 424.3098 L 554.6313749999999 423.63405 L 556.684425 422.536675 L 558.4839 421.059875 L 566.5438 413 L 574.5 413 L 574.5 401.26915 L 574.625 400 L 574.625 200 L 574.5 198.73084999999998 L 574.5 187 L 551 187 L 551 198.73084999999998 L 550.875 200 L 550.875 395.08119999999997 L 549 396.9562 L 549 387 L 525.5 387 L 525.5 400.787975 L 266.20675 400.787975 L 213.75 348.3312 L 213.75 335.125 L 178.75 335.125 L 178.75 360.125 L 191.9562 360.125 L 252.8911 421.059875 L 254.690575 422.536675 L 256.743625 423.63405 L 258.971275 424.3098 L 261.287975 424.53797499999996 Z M 286.25 264.875 L 321.25 264.875 L 321.25 239.875 L 286.25 239.875 L 286.25 264.875 Z M 178.75 296.625 L 213.75 296.625 L 213.75 271.625 L 178.75 271.625 L 178.75 296.625 Z M 286.25 296.625 L 321.25 296.625 L 321.25 271.625 L 286.25 271.625 L 286.25 296.625 Z M 178.75 328.375 L 213.75 328.375 L 213.75 303.375 L 178.75 303.375 L 178.75 328.375 Z M 286.25 328.375 L 321.25 328.375 L 321.25 303.375 L 286.25 303.375 L 286.25 328.375 Z M 286.25 360.125 L 321.25 360.125 L 321.25 335.125 L 286.25 335.125 L 286.25 360.125 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 211.25 363.0625 L 211.25 236.9375 L 237.08333333333334 236.9375 L 238.06655603839587 241.88049433471576 L 240.86653740967375 246.07096259032625 L 245.05700566528427 248.87094396160413 L 250 249.85416666666666 L 254.94299433471573 248.87094396160413 L 259.13346259032625 246.07096259032625 L 261.9334439616041 241.88049433471576 L 262.91666666666663 236.9375 L 288.75 236.9375 L 288.75 363.0625 L 211.25 363.0625 Z" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="15.510416666666666" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,250,226.9375)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">U1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 562.75 182 L 525.5 182 L 525.5 218 L 562.75 218" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,550,169.5)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 562.75 382 L 525.5 382 L 525.5 418 L 562.75 418" fill="none" stroke="#f2eda1" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_2" data-pcb-silkscreen-path-id="pcb_silkscreen_path_2" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="10" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,550,369.5)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_2" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C1</text></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.985"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="463.75" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="546.25" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="213.75" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="296.25" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 316.25 300 L 483.75 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 483.75 300 L 483.75 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 382.75 313.75 L 400 400 L 250 500 L 200 550 L 150 550 L 150 450 L 150 150 L 350 150 L 377.25 286.25 L 346.25 286.25 L 346.25 266.25 L 286.25 266.25 L 286.25 333.75 L 346.25 333.75 L 346.25 313.75 L 382.75 313.75 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 550 550 L 550 500 L 400 400 L 450 150 L 650 150 L 650 550 L 550 550 Z M 536.25 333.75 L 596.25 333.75 L 596.25 266.25 L 536.25 266.25 L 536.25 333.75 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 566.25 256.25 L 453.75 256.25 L 453.75 343.75 L 566.25 343.75" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,525,231.25)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 316.25 256.25 L 203.75 256.25 L 203.75 343.75 L 316.25 343.75" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,275,231.25)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C1</text></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.985"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="150" y="50" width="500" height="500" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 150 550 L 650 550 L 650 50 L 150 50 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="5" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="463.75" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="546.25" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="213.75" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="296.25" y="276.25" width="40" height="47.5" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 316.25 300 L 483.75 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 483.75 300 L 483.75 300" stroke-width="7.5" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 200 550 L 150 550 L 150 450 L 150 150 L 350 150 L 377.25 286.25 L 346.25 286.25 L 346.25 266.25 L 286.25 266.25 L 286.25 333.75 L 346.25 333.75 L 346.25 313.75 L 382.75 313.75 L 400 400 L 250 500 L 200 550 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 650 550 L 550 550 L 550 500 L 400 400 L 450 150 L 650 150 L 650 550 Z M 536.25 333.75 L 596.25 333.75 L 596.25 266.25 L 536.25 266.25 L 536.25 333.75 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 566.25 256.25 L 453.75 256.25 L 453.75 343.75 L 566.25 343.75" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_0" data-pcb-silkscreen-path-id="pcb_silkscreen_path_0" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,525,231.25)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_0" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">R1</text><path class="pcb-silkscreen pcb-silkscreen-top" d="M 316.25 256.25 L 203.75 256.25 L 203.75 343.75 L 316.25 343.75" fill="none" stroke="#f2eda1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="pcb_component_1" data-pcb-silkscreen-path-id="pcb_silkscreen_path_1" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,275,231.25)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="pcb_component_1" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C1</text></svg>