From 7e9086dd3894991ab2bc6f96fd8f9e5d8b44ff96 Mon Sep 17 00:00:00 2001 From: Severin Ibarluzea Date: Thu, 5 Mar 2026 10:38:46 -0800 Subject: [PATCH 1/5] Use shared getBoardBounds utility for connector orientation check --- index.ts | 2 + lib/check-connector-accessible-orientation.ts | 93 +++++++++++++++++++ lib/run-all-checks.ts | 2 + package.json | 6 +- ...-connector-accessible-orientation.snap.svg | 1 + ...k-connector-accessible-orientation.test.ts | 78 ++++++++++++++++ 6 files changed, 179 insertions(+), 3 deletions(-) create mode 100644 lib/check-connector-accessible-orientation.ts create mode 100644 tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg create mode 100644 tests/lib/check-connector-accessible-orientation.test.ts diff --git a/index.ts b/index.ts index d2891d2..cd67a83 100644 --- a/index.ts +++ b/index.ts @@ -15,3 +15,5 @@ export { runAllPlacementChecks, runAllRoutingChecks, } from "./lib/run-all-checks" + +export { checkConnectorAccessibleOrientation } from "./lib/check-connector-accessible-orientation" diff --git a/lib/check-connector-accessible-orientation.ts b/lib/check-connector-accessible-orientation.ts new file mode 100644 index 0000000..3aa36e4 --- /dev/null +++ b/lib/check-connector-accessible-orientation.ts @@ -0,0 +1,93 @@ +import type { + AnyCircuitElement, + PcbBoard, + PcbComponent, + PcbConnectorNotInAccessibleOrientationWarning, +} from "circuit-json" +import { getBoardBounds } from "@tscircuit/circuit-json-util" +import { getReadableNameForComponent } from "./util/get-readable-names" + +type FacingDirection = "x-" | "x+" | "y+" | "y-" + +function getFacingDirection(component: PcbComponent): FacingDirection | null { + if (!component.center || !component.cable_insertion_center) return null + + const dx = component.cable_insertion_center.x - component.center.x + const dy = component.cable_insertion_center.y - component.center.y + + if (Math.abs(dx) < 1e-6 && Math.abs(dy) < 1e-6) return null + + if (Math.abs(dx) >= Math.abs(dy)) { + return dx >= 0 ? "x+" : "x-" + } + + return dy >= 0 ? "y+" : "y-" +} + +function getRecommendedFacingDirection( + component: PcbComponent, + bounds: { minX: number; maxX: number; minY: number; maxY: number }, +): FacingDirection | null { + if (!component.center) return null + + const distances = [ + { direction: "x-" as const, distance: component.center.x - bounds.minX }, + { direction: "x+" as const, distance: bounds.maxX - component.center.x }, + { direction: "y-" as const, distance: component.center.y - bounds.minY }, + { direction: "y+" as const, distance: bounds.maxY - component.center.y }, + ] + + distances.sort((a, b) => a.distance - b.distance) + return distances[0]?.direction ?? null +} + +export function checkConnectorAccessibleOrientation( + circuitJson: AnyCircuitElement[], +): PcbConnectorNotInAccessibleOrientationWarning[] { + const board = circuitJson.find( + (el): el is PcbBoard => el.type === "pcb_board", + ) + if (!board) return [] + + const bounds = getBoardBounds(board) + if (!bounds) return [] + + const warnings: PcbConnectorNotInAccessibleOrientationWarning[] = [] + + const components = circuitJson.filter( + (el): el is PcbComponent => el.type === "pcb_component", + ) + + for (const component of components) { + if (!component.cable_insertion_center) continue + + const facingDirection = getFacingDirection(component) + const recommendedFacingDirection = getRecommendedFacingDirection( + component, + bounds, + ) + + if (!facingDirection || !recommendedFacingDirection) continue + if (facingDirection === recommendedFacingDirection) continue + + const componentName = getReadableNameForComponent( + circuitJson, + component.pcb_component_id, + ) + + warnings.push({ + type: "pcb_connector_not_in_accessible_orientation_warning", + warning_type: "pcb_connector_not_in_accessible_orientation_warning", + pcb_connector_not_in_accessible_orientation_warning_id: `pcb_connector_not_in_accessible_orientation_warning_${component.pcb_component_id}`, + message: `${componentName} is facing ${facingDirection} but should face ${recommendedFacingDirection} so the connector is accessible from the board edge`, + pcb_component_id: component.pcb_component_id, + source_component_id: component.source_component_id, + pcb_board_id: board.pcb_board_id, + facing_direction: facingDirection, + recommended_facing_direction: recommendedFacingDirection, + subcircuit_id: component.subcircuit_id, + }) + } + + return warnings +} diff --git a/lib/run-all-checks.ts b/lib/run-all-checks.ts index b6b1478..749f5c8 100644 --- a/lib/run-all-checks.ts +++ b/lib/run-all-checks.ts @@ -5,6 +5,7 @@ import { checkEachPcbTraceNonOverlapping } from "./check-each-pcb-trace-non-over import { checkPcbComponentsOutOfBoard } from "./check-pcb-components-out-of-board/checkPcbComponentsOutOfBoard" import { checkViasOffBoard } from "./check-pcb-components-out-of-board/checkViasOffBoard" import { checkPcbComponentOverlap } from "./check-pcb-components-overlap/checkPcbComponentOverlap" +import { checkConnectorAccessibleOrientation } from "./check-connector-accessible-orientation" import { checkPinMustBeConnected } from "./check-pin-must-be-connected" import { checkSameNetViaSpacing } from "./check-same-net-via-spacing" import { checkSourceTracesHavePcbTraces } from "./check-source-traces-have-pcb-traces" @@ -16,6 +17,7 @@ export async function runAllPlacementChecks(circuitJson: AnyCircuitElement[]) { ...checkViasOffBoard(circuitJson), ...checkPcbComponentsOutOfBoard(circuitJson), ...checkPcbComponentOverlap(circuitJson), + ...checkConnectorAccessibleOrientation(circuitJson), ] } diff --git a/package.json b/package.json index 330aa7c..07b9193 100644 --- a/package.json +++ b/package.json @@ -13,15 +13,15 @@ }, "devDependencies": { "@biomejs/biome": "^1.9.0", - "@tscircuit/circuit-json-util": "^0.0.72", + "@tscircuit/circuit-json-util": "^0.0.82", "@tscircuit/log-soup": "^1.0.2", "@types/bun": "^1.2.8", "@types/debug": "^4.1.12", "bun-match-svg": "^0.0.11", "circuit-to-svg": "^0.0.333", - "circuit-json": "^0.0.380", + "circuit-json": "^0.0.391", "debug": "^4.3.5", - "tscircuit": "^0.0.1399", + "tscircuit": "^0.0.1434", "zod": "^3.23.8", "tsup": "^8.2.3" }, diff --git a/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg b/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg new file mode 100644 index 0000000..3371512 --- /dev/null +++ b/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/lib/check-connector-accessible-orientation.test.ts b/tests/lib/check-connector-accessible-orientation.test.ts new file mode 100644 index 0000000..de155e2 --- /dev/null +++ b/tests/lib/check-connector-accessible-orientation.test.ts @@ -0,0 +1,78 @@ +import { expect, test } from "bun:test" +import type { AnyCircuitElement } from "circuit-json" +import { convertCircuitJsonToPcbSvg } from "circuit-to-svg" +import { checkConnectorAccessibleOrientation } from "lib/check-connector-accessible-orientation" + +const circuitJson: AnyCircuitElement[] = [ + { + type: "pcb_board", + pcb_board_id: "pcb_board_1", + center: { x: 0, y: 0 }, + width: 30, + height: 20, + thickness: 1.6, + num_layers: 2, + material: "fr4", + }, + { + type: "source_component", + source_component_id: "source_component_usb", + ftype: "simple_chip", + name: "J1", + supplier_part_numbers: {}, + }, + { + type: "pcb_component", + pcb_component_id: "pcb_component_usb", + source_component_id: "source_component_usb", + center: { x: -13.5, y: 0 }, + width: 6, + height: 4, + layer: "top", + rotation: 0, + cable_insertion_center: { x: -11, y: 0 }, + obstructs_within_bounds: false, + }, +] + +test("connector orientation warning is emitted when cable insertion points inward", () => { + const warnings = checkConnectorAccessibleOrientation(circuitJson) + + expect(warnings).toHaveLength(1) + expect(warnings[0]).toMatchObject({ + type: "pcb_connector_not_in_accessible_orientation_warning", + pcb_component_id: "pcb_component_usb", + facing_direction: "x+", + recommended_facing_direction: "x-", + }) + + expect( + convertCircuitJsonToPcbSvg( + [...circuitJson, ...warnings] as AnyCircuitElement[], + { + shouldDrawErrors: true, + }, + ), + ).toMatchSvgSnapshot(import.meta.path) +}) + +test("connector orientation check skips components without cable_insertion_center", () => { + const noCableInsertionCenter = circuitJson.filter( + (el) => el.type !== "pcb_component", + ) as AnyCircuitElement[] + + noCableInsertionCenter.push({ + type: "pcb_component", + pcb_component_id: "pcb_component_no_connector", + source_component_id: "source_component_usb", + center: { x: 10, y: 0 }, + width: 2, + height: 2, + layer: "top", + rotation: 0, + obstructs_within_bounds: false, + }) + + const warnings = checkConnectorAccessibleOrientation(noCableInsertionCenter) + expect(warnings).toHaveLength(0) +}) From 59ec1a842fa1a975afe1691ec69b04efd06e23da Mon Sep 17 00:00:00 2001 From: Severin Ibarluzea Date: Thu, 5 Mar 2026 10:51:45 -0800 Subject: [PATCH 2/5] Use TSX connector footprint tests and refresh snapshots --- lib/check-connector-accessible-orientation.ts | 34 ++++- package.json | 2 +- ...-connector-accessible-orientation.snap.svg | 2 +- ...k-connector-accessible-orientation.test.ts | 78 ---------- ...-connector-accessible-orientation.test.tsx | 144 ++++++++++++++++++ tests/repros/__snapshots__/repro01.snap.svg | 2 +- 6 files changed, 180 insertions(+), 82 deletions(-) delete mode 100644 tests/lib/check-connector-accessible-orientation.test.ts create mode 100644 tests/lib/check-connector-accessible-orientation.test.tsx diff --git a/lib/check-connector-accessible-orientation.ts b/lib/check-connector-accessible-orientation.ts index 3aa36e4..42bda9f 100644 --- a/lib/check-connector-accessible-orientation.ts +++ b/lib/check-connector-accessible-orientation.ts @@ -4,11 +4,43 @@ import type { PcbComponent, PcbConnectorNotInAccessibleOrientationWarning, } from "circuit-json" -import { getBoardBounds } from "@tscircuit/circuit-json-util" import { getReadableNameForComponent } from "./util/get-readable-names" type FacingDirection = "x-" | "x+" | "y+" | "y-" +function getBoardBounds(board: PcbBoard): { + minX: number + maxX: number + minY: number + maxY: number +} | null { + if (board.outline && board.outline.length > 0) { + const xs = board.outline.map((p) => p.x) + const ys = board.outline.map((p) => p.y) + return { + minX: Math.min(...xs), + maxX: Math.max(...xs), + minY: Math.min(...ys), + maxY: Math.max(...ys), + } + } + + if ( + board.center && + typeof board.width === "number" && + typeof board.height === "number" + ) { + return { + minX: board.center.x - board.width / 2, + maxX: board.center.x + board.width / 2, + minY: board.center.y - board.height / 2, + maxY: board.center.y + board.height / 2, + } + } + + return null +} + function getFacingDirection(component: PcbComponent): FacingDirection | null { if (!component.center || !component.cable_insertion_center) return null diff --git a/package.json b/package.json index 07b9193..75f84a9 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "circuit-to-svg": "^0.0.333", "circuit-json": "^0.0.391", "debug": "^4.3.5", - "tscircuit": "^0.0.1434", + "tscircuit": "^0.0.1439", "zod": "^3.23.8", "tsup": "^8.2.3" }, diff --git a/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg b/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg index 3371512..1148055 100644 --- a/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg +++ b/tests/lib/__snapshots__/check-connector-accessible-orientation.snap.svg @@ -1 +1 @@ - \ No newline at end of file +Component J1 extends outside board boundaries by 2.87mm. Try moving it 2.87mm right to fit within the board edge. \ No newline at end of file diff --git a/tests/lib/check-connector-accessible-orientation.test.ts b/tests/lib/check-connector-accessible-orientation.test.ts deleted file mode 100644 index de155e2..0000000 --- a/tests/lib/check-connector-accessible-orientation.test.ts +++ /dev/null @@ -1,78 +0,0 @@ -import { expect, test } from "bun:test" -import type { AnyCircuitElement } from "circuit-json" -import { convertCircuitJsonToPcbSvg } from "circuit-to-svg" -import { checkConnectorAccessibleOrientation } from "lib/check-connector-accessible-orientation" - -const circuitJson: AnyCircuitElement[] = [ - { - type: "pcb_board", - pcb_board_id: "pcb_board_1", - center: { x: 0, y: 0 }, - width: 30, - height: 20, - thickness: 1.6, - num_layers: 2, - material: "fr4", - }, - { - type: "source_component", - source_component_id: "source_component_usb", - ftype: "simple_chip", - name: "J1", - supplier_part_numbers: {}, - }, - { - type: "pcb_component", - pcb_component_id: "pcb_component_usb", - source_component_id: "source_component_usb", - center: { x: -13.5, y: 0 }, - width: 6, - height: 4, - layer: "top", - rotation: 0, - cable_insertion_center: { x: -11, y: 0 }, - obstructs_within_bounds: false, - }, -] - -test("connector orientation warning is emitted when cable insertion points inward", () => { - const warnings = checkConnectorAccessibleOrientation(circuitJson) - - expect(warnings).toHaveLength(1) - expect(warnings[0]).toMatchObject({ - type: "pcb_connector_not_in_accessible_orientation_warning", - pcb_component_id: "pcb_component_usb", - facing_direction: "x+", - recommended_facing_direction: "x-", - }) - - expect( - convertCircuitJsonToPcbSvg( - [...circuitJson, ...warnings] as AnyCircuitElement[], - { - shouldDrawErrors: true, - }, - ), - ).toMatchSvgSnapshot(import.meta.path) -}) - -test("connector orientation check skips components without cable_insertion_center", () => { - const noCableInsertionCenter = circuitJson.filter( - (el) => el.type !== "pcb_component", - ) as AnyCircuitElement[] - - noCableInsertionCenter.push({ - type: "pcb_component", - pcb_component_id: "pcb_component_no_connector", - source_component_id: "source_component_usb", - center: { x: 10, y: 0 }, - width: 2, - height: 2, - layer: "top", - rotation: 0, - obstructs_within_bounds: false, - }) - - const warnings = checkConnectorAccessibleOrientation(noCableInsertionCenter) - expect(warnings).toHaveLength(0) -}) diff --git a/tests/lib/check-connector-accessible-orientation.test.tsx b/tests/lib/check-connector-accessible-orientation.test.tsx new file mode 100644 index 0000000..4ff44e2 --- /dev/null +++ b/tests/lib/check-connector-accessible-orientation.test.tsx @@ -0,0 +1,144 @@ +import { expect, test } from "bun:test" +import { convertCircuitJsonToPcbSvg } from "circuit-to-svg" +import { Circuit } from "tscircuit" +import { checkConnectorAccessibleOrientation } from "lib/check-connector-accessible-orientation" + +const TYPE_C_6P_FOOTPRINT = ( + + + + + + + + + + + + +) + +test("connector orientation warning is emitted when cable insertion points inward", async () => { + const circuit = new Circuit() + circuit.add( + + + , + ) + + await circuit.renderUntilSettled() + const circuitJson = circuit.getCircuitJson() + const warnings = checkConnectorAccessibleOrientation(circuitJson as any) + + expect(warnings).toHaveLength(1) + expect(warnings[0]).toMatchObject({ + type: "pcb_connector_not_in_accessible_orientation_warning", + facing_direction: "y-", + recommended_facing_direction: "x-", + }) + + expect( + convertCircuitJsonToPcbSvg([...circuitJson, ...warnings] as any, { + shouldDrawErrors: true, + }), + ).toMatchSvgSnapshot(import.meta.path) +}) + +test("connector orientation check skips components without cable_insertion_center", async () => { + const circuit = new Circuit() + circuit.add( + + + , + ) + + await circuit.renderUntilSettled() + const circuitJson = circuit.getCircuitJson() + + const warnings = checkConnectorAccessibleOrientation(circuitJson as any) + expect(warnings).toHaveLength(0) +}) diff --git a/tests/repros/__snapshots__/repro01.snap.svg b/tests/repros/__snapshots__/repro01.snap.svg index ce36564..e14a744 100644 --- a/tests/repros/__snapshots__/repro01.snap.svg +++ b/tests/repros/__snapshots__/repro01.snap.svg @@ -1 +1 @@ -pcb_smtpad USBC1.A4B9 overlaps with pcb_smtpad U1.USB_DP \ No newline at end of file +pcb_smtpad element overlaps with pcb_smtpad elementpcb_smtpad USBC1.A4B9 overlaps with pcb_smtpad U1.USB_DP \ No newline at end of file From 7b119b1443a1cba79390c4faffe278de4d9494c3 Mon Sep 17 00:00:00 2001 From: seveibar Date: Thu, 5 Mar 2026 11:44:17 -0800 Subject: [PATCH 3/5] improve snapshot by disabling drc --- lib/check-connector-accessible-orientation.ts | 42 ++++--------------- tests/repros/__snapshots__/repro01.snap.svg | 2 +- tests/repros/repro01.test.tsx | 7 +++- 3 files changed, 15 insertions(+), 36 deletions(-) diff --git a/lib/check-connector-accessible-orientation.ts b/lib/check-connector-accessible-orientation.ts index 42bda9f..6381948 100644 --- a/lib/check-connector-accessible-orientation.ts +++ b/lib/check-connector-accessible-orientation.ts @@ -1,3 +1,4 @@ +import { getBoardBounds } from "@tscircuit/circuit-json-util" import type { AnyCircuitElement, PcbBoard, @@ -8,39 +9,6 @@ import { getReadableNameForComponent } from "./util/get-readable-names" type FacingDirection = "x-" | "x+" | "y+" | "y-" -function getBoardBounds(board: PcbBoard): { - minX: number - maxX: number - minY: number - maxY: number -} | null { - if (board.outline && board.outline.length > 0) { - const xs = board.outline.map((p) => p.x) - const ys = board.outline.map((p) => p.y) - return { - minX: Math.min(...xs), - maxX: Math.max(...xs), - minY: Math.min(...ys), - maxY: Math.max(...ys), - } - } - - if ( - board.center && - typeof board.width === "number" && - typeof board.height === "number" - ) { - return { - minX: board.center.x - board.width / 2, - maxX: board.center.x + board.width / 2, - minY: board.center.y - board.height / 2, - maxY: board.center.y + board.height / 2, - } - } - - return null -} - function getFacingDirection(component: PcbComponent): FacingDirection | null { if (!component.center || !component.cable_insertion_center) return null @@ -81,7 +49,13 @@ export function checkConnectorAccessibleOrientation( ) if (!board) return [] - const bounds = getBoardBounds(board) + const bounds = (() => { + try { + return getBoardBounds(board) + } catch { + return null + } + })() if (!bounds) return [] const warnings: PcbConnectorNotInAccessibleOrientationWarning[] = [] diff --git a/tests/repros/__snapshots__/repro01.snap.svg b/tests/repros/__snapshots__/repro01.snap.svg index e14a744..6722697 100644 --- a/tests/repros/__snapshots__/repro01.snap.svg +++ b/tests/repros/__snapshots__/repro01.snap.svg @@ -1 +1 @@ -pcb_smtpad element overlaps with pcb_smtpad elementpcb_smtpad USBC1.A4B9 overlaps with pcb_smtpad U1.USB_DP \ No newline at end of file +pcb_smtpad USBC1.A4B9 overlaps with pcb_smtpad U1.USB_DP \ No newline at end of file diff --git a/tests/repros/repro01.test.tsx b/tests/repros/repro01.test.tsx index fba5b67..510848c 100644 --- a/tests/repros/repro01.test.tsx +++ b/tests/repros/repro01.test.tsx @@ -53,7 +53,12 @@ const OverlapRepro = () => ( ) test("repro01: overlapping pcb_smtpad error uses concise pin references", async () => { - const circuit = new Circuit() + const circuit = new Circuit({ + platform: { + netlistDrcChecksDisabled: true, + placementDrcChecksDisabled: true + } + }) circuit.add() await circuit.renderUntilSettled() From 21fe20c2c0f01f3cdeb3c948a9c7f62935e0dc9b Mon Sep 17 00:00:00 2001 From: seveibar Date: Thu, 5 Mar 2026 11:46:04 -0800 Subject: [PATCH 4/5] format --- tests/repros/repro01.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/repros/repro01.test.tsx b/tests/repros/repro01.test.tsx index 510848c..f1f8ccc 100644 --- a/tests/repros/repro01.test.tsx +++ b/tests/repros/repro01.test.tsx @@ -56,8 +56,8 @@ test("repro01: overlapping pcb_smtpad error uses concise pin references", async const circuit = new Circuit({ platform: { netlistDrcChecksDisabled: true, - placementDrcChecksDisabled: true - } + placementDrcChecksDisabled: true, + }, }) circuit.add() From d4717ae18f46ab0c85a406e8c81690cd9b617569 Mon Sep 17 00:00:00 2001 From: seveibar Date: Sun, 8 Mar 2026 10:12:04 -0700 Subject: [PATCH 5/5] fix missing drc error --- package.json | 2 +- tests/repros/__snapshots__/repro02.snap.svg | 1 + tests/repros/repro02.json | 26328 ++++++++++++++++++ tests/repros/repro02.test.ts | 20 + 4 files changed, 26350 insertions(+), 1 deletion(-) create mode 100644 tests/repros/__snapshots__/repro02.snap.svg create mode 100644 tests/repros/repro02.json create mode 100644 tests/repros/repro02.test.ts diff --git a/package.json b/package.json index 75f84a9..3ade583 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ }, "devDependencies": { "@biomejs/biome": "^1.9.0", - "@tscircuit/circuit-json-util": "^0.0.82", + "@tscircuit/circuit-json-util": "^0.0.83", "@tscircuit/log-soup": "^1.0.2", "@types/bun": "^1.2.8", "@types/debug": "^4.1.12", diff --git a/tests/repros/__snapshots__/repro02.snap.svg b/tests/repros/__snapshots__/repro02.snap.svg new file mode 100644 index 0000000..c39c238 --- /dev/null +++ b/tests/repros/__snapshots__/repro02.snap.svg @@ -0,0 +1 @@ +J_SWDR_CC1R_CC2R_USB_DPR_USB_DNC_USB_INC_USB_OUTC_COREC_MCU_1C_MCU_2C_MCU_3C_MCU_4C_MCU_5C_FLASHC_XIN_1C_XIN_2R_RUNR_VM_TOPR_VM_BOTC_VM_ADCR_EN_PUR_AWAKE_PUR_MS1_PDR_MS2_PDR_MS3_PDR_SENSE1R_SENSE2C_DRV_VDDC_DRV_VREGC_DRV_CPC_DRV_VCPC_DRV_VM_1C_DRV_VM_2D_STATR_STATpcb_plated_hole J_SWD.SWCLK overlaps with pcb_hole [pcb_hole_0]pcb_plated_hole J_SWD.SWDIO overlaps with pcb_hole [pcb_hole_0] \ No newline at end of file diff --git a/tests/repros/repro02.json b/tests/repros/repro02.json new file mode 100644 index 0000000..e05d227 --- /dev/null +++ b/tests/repros/repro02.json @@ -0,0 +1,26328 @@ +[ + { + "type": "source_project_metadata", + "source_project_metadata_id": "source_project_metadata_0", + "software_used_string": "@tscircuit/core@0.0.1090" + }, + { + "type": "source_group", + "source_group_id": "source_group_0", + "is_subcircuit": true, + "was_automatically_named": true, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_0", + "name": "EP4", + "pin_number": 1, + "port_hints": ["EP4", "pin1", "1"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_1", + "name": "EP3", + "pin_number": 2, + "port_hints": ["EP3", "pin2", "2"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_2", + "name": "EP1", + "pin_number": 3, + "port_hints": ["EP1", "pin3", "3"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_3", + "name": "EP2", + "pin_number": 4, + "port_hints": ["EP2", "pin4", "4"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_4", + "name": "A1", + "pin_number": 5, + "port_hints": ["A1", "pin5", "5"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_5", + "name": "B12", + "pin_number": 6, + "port_hints": ["B12", "pin6", "6"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_6", + "name": "A4", + "pin_number": 7, + "port_hints": ["A4", "pin7", "7"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_7", + "name": "B9", + "pin_number": 8, + "port_hints": ["B9", "pin8", "8"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_8", + "name": "B8", + "pin_number": 9, + "port_hints": ["B8", "pin9", "9"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_9", + "name": "A5", + "pin_number": 10, + "port_hints": ["A5", "pin10", "10"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net5" + }, + { + "type": "source_port", + "source_port_id": "source_port_10", + "name": "B7", + "pin_number": 11, + "port_hints": ["B7", "pin11", "11"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "source_port", + "source_port_id": "source_port_11", + "name": "A6", + "pin_number": 12, + "port_hints": ["A6", "pin12", "12"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "source_port", + "source_port_id": "source_port_12", + "name": "A7", + "pin_number": 13, + "port_hints": ["A7", "pin13", "13"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "source_port", + "source_port_id": "source_port_13", + "name": "B6", + "pin_number": 14, + "port_hints": ["B6", "pin14", "14"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "source_port", + "source_port_id": "source_port_14", + "name": "B5", + "pin_number": 15, + "port_hints": ["B5", "pin15", "15"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net6" + }, + { + "type": "source_port", + "source_port_id": "source_port_15", + "name": "B1", + "pin_number": 16, + "port_hints": ["B1", "pin16", "16"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_16", + "name": "A12", + "pin_number": 17, + "port_hints": ["A12", "pin17", "17"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_17", + "name": "A8", + "pin_number": 18, + "port_hints": ["A8", "pin18", "18"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_18", + "name": "B4", + "pin_number": 19, + "port_hints": ["B4", "pin19", "19"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_19", + "name": "A9", + "pin_number": 20, + "port_hints": ["A9", "pin20", "20"], + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_component", + "source_component_id": "source_component_0", + "ftype": "simple_chip", + "name": "J_USB", + "manufacturer_part_number": "KH_TYPE_C_16P", + "supplier_part_numbers": { + "jlcpcb": ["C709357"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_20", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "source_port", + "source_port_id": "source_port_21", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_22", + "name": "pin3", + "pin_number": 3, + "port_hints": ["pin3", "3"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "source_port", + "source_port_id": "source_port_23", + "name": "pin4", + "pin_number": 4, + "port_hints": ["pin4", "4"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net11" + }, + { + "type": "source_port", + "source_port_id": "source_port_24", + "name": "pin5", + "pin_number": 5, + "port_hints": ["pin5", "5"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_25", + "name": "pin6", + "pin_number": 6, + "port_hints": ["pin6", "6"], + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net9" + }, + { + "type": "source_component", + "source_component_id": "source_component_1", + "ftype": "simple_chip", + "name": "U_ESD", + "manufacturer_part_number": "USBLC6_2SC6", + "supplier_part_numbers": { + "jlcpcb": ["C7519"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_26", + "name": "VIN", + "pin_number": 1, + "port_hints": ["VIN", "pin1", "1"], + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_27", + "name": "GND", + "pin_number": 2, + "port_hints": ["GND", "pin2", "2"], + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_28", + "name": "EN", + "pin_number": 3, + "port_hints": ["EN", "pin3", "3"], + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_29", + "name": "NC", + "pin_number": 4, + "port_hints": ["NC", "pin4", "4"], + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_30", + "name": "VOUT", + "pin_number": 5, + "port_hints": ["VOUT", "pin5", "5"], + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_2", + "ftype": "simple_chip", + "name": "U_LDO", + "manufacturer_part_number": "AP2112K_3_3TRG1", + "supplier_part_numbers": { + "jlcpcb": ["C51118"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_31", + "name": "IOVDD6", + "pin_number": 1, + "port_hints": ["IOVDD6", "pin1", "1"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_32", + "name": "GPIO0", + "pin_number": 2, + "port_hints": ["GPIO0", "pin2", "2"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_33", + "name": "GPIO1", + "pin_number": 3, + "port_hints": ["GPIO1", "pin3", "3"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_34", + "name": "GPIO2", + "pin_number": 4, + "port_hints": ["GPIO2", "pin4", "4"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net24" + }, + { + "type": "source_port", + "source_port_id": "source_port_35", + "name": "GPIO3", + "pin_number": 5, + "port_hints": ["GPIO3", "pin5", "5"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net25" + }, + { + "type": "source_port", + "source_port_id": "source_port_36", + "name": "GPIO4", + "pin_number": 6, + "port_hints": ["GPIO4", "pin6", "6"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_port", + "source_port_id": "source_port_37", + "name": "GPIO5", + "pin_number": 7, + "port_hints": ["GPIO5", "pin7", "7"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_port", + "source_port_id": "source_port_38", + "name": "GPIO6", + "pin_number": 8, + "port_hints": ["GPIO6", "pin8", "8"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_port", + "source_port_id": "source_port_39", + "name": "GPIO7", + "pin_number": 9, + "port_hints": ["GPIO7", "pin9", "9"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_port", + "source_port_id": "source_port_40", + "name": "IOVDD5", + "pin_number": 10, + "port_hints": ["IOVDD5", "pin10", "10"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_41", + "name": "GPIO8", + "pin_number": 11, + "port_hints": ["GPIO8", "pin11", "11"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_port", + "source_port_id": "source_port_42", + "name": "GPIO9", + "pin_number": 12, + "port_hints": ["GPIO9", "pin12", "12"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_43", + "name": "GPIO10", + "pin_number": 13, + "port_hints": ["GPIO10", "pin13", "13"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_44", + "name": "GPIO11", + "pin_number": 14, + "port_hints": ["GPIO11", "pin14", "14"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_45", + "name": "GPIO12", + "pin_number": 15, + "port_hints": ["GPIO12", "pin15", "15"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_46", + "name": "GPIO13", + "pin_number": 16, + "port_hints": ["GPIO13", "pin16", "16"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_47", + "name": "GPIO14", + "pin_number": 17, + "port_hints": ["GPIO14", "pin17", "17"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_48", + "name": "GPIO15", + "pin_number": 18, + "port_hints": ["GPIO15", "pin18", "18"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_49", + "name": "TESTEN", + "pin_number": 19, + "port_hints": ["TESTEN", "pin19", "19"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_50", + "name": "XIN", + "pin_number": 20, + "port_hints": ["XIN", "pin20", "20"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "source_port", + "source_port_id": "source_port_51", + "name": "XOUT", + "pin_number": 21, + "port_hints": ["XOUT", "pin21", "21"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net15" + }, + { + "type": "source_port", + "source_port_id": "source_port_52", + "name": "IOVDD4", + "pin_number": 22, + "port_hints": ["IOVDD4", "pin22", "22"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_53", + "name": "DVDD2", + "pin_number": 23, + "port_hints": ["DVDD2", "pin23", "23"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_port", + "source_port_id": "source_port_54", + "name": "SWCLK", + "pin_number": 24, + "port_hints": ["SWCLK", "pin24", "24"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net22" + }, + { + "type": "source_port", + "source_port_id": "source_port_55", + "name": "SWD", + "pin_number": 25, + "port_hints": ["SWD", "pin25", "25"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net23" + }, + { + "type": "source_port", + "source_port_id": "source_port_56", + "name": "RUN", + "pin_number": 26, + "port_hints": ["RUN", "pin26", "26"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net13" + }, + { + "type": "source_port", + "source_port_id": "source_port_57", + "name": "GPIO16", + "pin_number": 27, + "port_hints": ["GPIO16", "pin27", "27"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_58", + "name": "GPIO17", + "pin_number": 28, + "port_hints": ["GPIO17", "pin28", "28"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_59", + "name": "GPIO18", + "pin_number": 29, + "port_hints": ["GPIO18", "pin29", "29"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_60", + "name": "GPIO19", + "pin_number": 30, + "port_hints": ["GPIO19", "pin30", "30"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_61", + "name": "GPIO20", + "pin_number": 31, + "port_hints": ["GPIO20", "pin31", "31"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_62", + "name": "GPIO21", + "pin_number": 32, + "port_hints": ["GPIO21", "pin32", "32"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_63", + "name": "IOVDD3", + "pin_number": 33, + "port_hints": ["IOVDD3", "pin33", "33"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_64", + "name": "GPIO22", + "pin_number": 34, + "port_hints": ["GPIO22", "pin34", "34"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_65", + "name": "GPIO23", + "pin_number": 35, + "port_hints": ["GPIO23", "pin35", "35"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_66", + "name": "GPIO24", + "pin_number": 36, + "port_hints": ["GPIO24", "pin36", "36"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_67", + "name": "GPIO25", + "pin_number": 37, + "port_hints": ["GPIO25", "pin37", "37"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net44" + }, + { + "type": "source_port", + "source_port_id": "source_port_68", + "name": "GPIO26_ADC0", + "pin_number": 38, + "port_hints": ["GPIO26_ADC0", "pin38", "38"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_port", + "source_port_id": "source_port_69", + "name": "GPIO27_ADC1", + "pin_number": 39, + "port_hints": ["GPIO27_ADC1", "pin39", "39"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_70", + "name": "GPIO28_ADC2", + "pin_number": 40, + "port_hints": ["GPIO28_ADC2", "pin40", "40"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_71", + "name": "GPIO29_ADC3", + "pin_number": 41, + "port_hints": ["GPIO29_ADC3", "pin41", "41"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_72", + "name": "IOVDD2", + "pin_number": 42, + "port_hints": ["IOVDD2", "pin42", "42"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_73", + "name": "ADC_AVDD", + "pin_number": 43, + "port_hints": ["ADC_AVDD", "pin43", "43"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_74", + "name": "VREG_IN", + "pin_number": 44, + "port_hints": ["VREG_IN", "pin44", "44"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_75", + "name": "VREG_VOUT", + "pin_number": 45, + "port_hints": ["VREG_VOUT", "pin45", "45"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_port", + "source_port_id": "source_port_76", + "name": "USB_DM", + "pin_number": 46, + "port_hints": ["USB_DM", "pin46", "46"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net12" + }, + { + "type": "source_port", + "source_port_id": "source_port_77", + "name": "USB_DP", + "pin_number": 47, + "port_hints": ["USB_DP", "pin47", "47"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net10" + }, + { + "type": "source_port", + "source_port_id": "source_port_78", + "name": "USB_VDD", + "pin_number": 48, + "port_hints": ["USB_VDD", "pin48", "48"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_79", + "name": "IOVDD1", + "pin_number": 49, + "port_hints": ["IOVDD1", "pin49", "49"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_80", + "name": "DVDD1", + "pin_number": 50, + "port_hints": ["DVDD1", "pin50", "50"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_port", + "source_port_id": "source_port_81", + "name": "QSPI_SD3", + "pin_number": 51, + "port_hints": ["QSPI_SD3", "pin51", "51"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net21" + }, + { + "type": "source_port", + "source_port_id": "source_port_82", + "name": "QSPI_SCLK", + "pin_number": 52, + "port_hints": ["QSPI_SCLK", "pin52", "52"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net20" + }, + { + "type": "source_port", + "source_port_id": "source_port_83", + "name": "QSPI_SD0", + "pin_number": 53, + "port_hints": ["QSPI_SD0", "pin53", "53"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net19" + }, + { + "type": "source_port", + "source_port_id": "source_port_84", + "name": "QSPI_SD2", + "pin_number": 54, + "port_hints": ["QSPI_SD2", "pin54", "54"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net18" + }, + { + "type": "source_port", + "source_port_id": "source_port_85", + "name": "QSPI_SD1", + "pin_number": 55, + "port_hints": ["QSPI_SD1", "pin55", "55"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net17" + }, + { + "type": "source_port", + "source_port_id": "source_port_86", + "name": "QSPI_SS", + "pin_number": 56, + "port_hints": ["QSPI_SS", "pin56", "56"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net16" + }, + { + "type": "source_port", + "source_port_id": "source_port_87", + "name": "GND", + "pin_number": 57, + "port_hints": ["GND", "pin57", "57"], + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_3", + "ftype": "simple_chip", + "name": "U_MCU", + "manufacturer_part_number": "RP2040", + "supplier_part_numbers": { + "jlcpcb": ["C2040"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_88", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net16" + }, + { + "type": "source_port", + "source_port_id": "source_port_89", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net17" + }, + { + "type": "source_port", + "source_port_id": "source_port_90", + "name": "IO2", + "pin_number": 3, + "port_hints": ["IO2", "pin3", "3"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net18" + }, + { + "type": "source_port", + "source_port_id": "source_port_91", + "name": "GND", + "pin_number": 4, + "port_hints": ["GND", "pin4", "4"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_92", + "name": "pin5", + "pin_number": 5, + "port_hints": ["pin5", "5"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net19" + }, + { + "type": "source_port", + "source_port_id": "source_port_93", + "name": "CLK", + "pin_number": 6, + "port_hints": ["CLK", "pin6", "6"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net20" + }, + { + "type": "source_port", + "source_port_id": "source_port_94", + "name": "IO3", + "pin_number": 7, + "port_hints": ["IO3", "pin7", "7"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net21" + }, + { + "type": "source_port", + "source_port_id": "source_port_95", + "name": "VCC", + "pin_number": 8, + "port_hints": ["VCC", "pin8", "8"], + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_4", + "ftype": "simple_chip", + "name": "U_FLASH", + "manufacturer_part_number": "W25Q16JVSSIQ", + "supplier_part_numbers": { + "jlcpcb": ["C82317"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_96", + "name": "OSC1", + "pin_number": 1, + "port_hints": ["OSC1", "pin1", "1"], + "source_component_id": "source_component_5", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "source_port", + "source_port_id": "source_port_97", + "name": "GND1", + "pin_number": 2, + "port_hints": ["GND1", "pin2", "2"], + "source_component_id": "source_component_5", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_98", + "name": "OSC2", + "pin_number": 3, + "port_hints": ["OSC2", "pin3", "3"], + "source_component_id": "source_component_5", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net15" + }, + { + "type": "source_port", + "source_port_id": "source_port_99", + "name": "GND2", + "pin_number": 4, + "port_hints": ["GND2", "pin4", "4"], + "source_component_id": "source_component_5", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_5", + "ftype": "simple_chip", + "name": "Y1", + "manufacturer_part_number": "X322512MSB4SI", + "supplier_part_numbers": { + "jlcpcb": ["C9002"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_100", + "name": "SWCLK", + "pin_number": 1, + "port_hints": ["SWCLK", "pin1", "1"], + "source_component_id": "source_component_6", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net22" + }, + { + "type": "source_port", + "source_port_id": "source_port_101", + "name": "SWDIO", + "pin_number": 2, + "port_hints": ["SWDIO", "pin2", "2"], + "source_component_id": "source_component_6", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net23" + }, + { + "type": "source_port", + "source_port_id": "source_port_102", + "name": "GND", + "pin_number": 3, + "port_hints": ["GND", "pin3", "3"], + "source_component_id": "source_component_6", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_103", + "name": "V3_3", + "pin_number": 4, + "port_hints": ["V3_3", "pin4", "4"], + "source_component_id": "source_component_6", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_6", + "ftype": "simple_pin_header", + "name": "J_SWD", + "supplier_part_numbers": { + "jlcpcb": [] + }, + "pin_count": 4, + "gender": "male", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_104", + "name": "OUT2B", + "pin_number": 1, + "port_hints": ["OUT2B", "pin1", "1"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net42" + }, + { + "type": "source_port", + "source_port_id": "source_port_105", + "name": "ENABLE", + "pin_number": 2, + "port_hints": ["ENABLE", "pin2", "2"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_port", + "source_port_id": "source_port_106", + "name": "GND2", + "pin_number": 3, + "port_hints": ["GND2", "pin3", "3"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_107", + "name": "CP1", + "pin_number": 4, + "port_hints": ["CP1", "pin4", "4"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net33" + }, + { + "type": "source_port", + "source_port_id": "source_port_108", + "name": "CP2", + "pin_number": 5, + "port_hints": ["CP2", "pin5", "5"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net34" + }, + { + "type": "source_port", + "source_port_id": "source_port_109", + "name": "VCP", + "pin_number": 6, + "port_hints": ["VCP", "pin6", "6"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net35" + }, + { + "type": "source_port", + "source_port_id": "source_port_110", + "name": "NC3", + "pin_number": 7, + "port_hints": ["NC3", "pin7", "7"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_111", + "name": "VREG", + "pin_number": 8, + "port_hints": ["VREG", "pin8", "8"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net32" + }, + { + "type": "source_port", + "source_port_id": "source_port_112", + "name": "MS1", + "pin_number": 9, + "port_hints": ["MS1", "pin9", "9"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_port", + "source_port_id": "source_port_113", + "name": "MS2", + "pin_number": 10, + "port_hints": ["MS2", "pin10", "10"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_port", + "source_port_id": "source_port_114", + "name": "MS3", + "pin_number": 11, + "port_hints": ["MS3", "pin11", "11"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_port", + "source_port_id": "source_port_115", + "name": "RESET", + "pin_number": 12, + "port_hints": ["RESET", "pin12", "12"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_port", + "source_port_id": "source_port_116", + "name": "ROSC", + "pin_number": 13, + "port_hints": ["ROSC", "pin13", "13"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_117", + "name": "SLEEP", + "pin_number": 14, + "port_hints": ["SLEEP", "pin14", "14"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_port", + "source_port_id": "source_port_118", + "name": "VDD", + "pin_number": 15, + "port_hints": ["VDD", "pin15", "15"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_119", + "name": "STEP", + "pin_number": 16, + "port_hints": ["STEP", "pin16", "16"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net24" + }, + { + "type": "source_port", + "source_port_id": "source_port_120", + "name": "REF", + "pin_number": 17, + "port_hints": ["REF", "pin17", "17"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net31" + }, + { + "type": "source_port", + "source_port_id": "source_port_121", + "name": "GND1", + "pin_number": 18, + "port_hints": ["GND1", "pin18", "18"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_122", + "name": "DIR", + "pin_number": 19, + "port_hints": ["DIR", "pin19", "19"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net25" + }, + { + "type": "source_port", + "source_port_id": "source_port_123", + "name": "NC2", + "pin_number": 20, + "port_hints": ["NC2", "pin20", "20"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_124", + "name": "OUT1B", + "pin_number": 21, + "port_hints": ["OUT1B", "pin21", "21"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net40" + }, + { + "type": "source_port", + "source_port_id": "source_port_125", + "name": "VBB1", + "pin_number": 22, + "port_hints": ["VBB1", "pin22", "22"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_126", + "name": "SENSE1", + "pin_number": 23, + "port_hints": ["SENSE1", "pin23", "23"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net36" + }, + { + "type": "source_port", + "source_port_id": "source_port_127", + "name": "OUT1A", + "pin_number": 24, + "port_hints": ["OUT1A", "pin24", "24"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net39" + }, + { + "type": "source_port", + "source_port_id": "source_port_128", + "name": "NC1", + "pin_number": 25, + "port_hints": ["NC1", "pin25", "25"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_129", + "name": "OUT2A", + "pin_number": 26, + "port_hints": ["OUT2A", "pin26", "26"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net41" + }, + { + "type": "source_port", + "source_port_id": "source_port_130", + "name": "SENSE2", + "pin_number": 27, + "port_hints": ["SENSE2", "pin27", "27"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net37" + }, + { + "type": "source_port", + "source_port_id": "source_port_131", + "name": "VBB2", + "pin_number": 28, + "port_hints": ["VBB2", "pin28", "28"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_132", + "name": "PAD", + "pin_number": 29, + "port_hints": ["PAD", "pin29", "29"], + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_7", + "ftype": "simple_chip", + "name": "U_DRV", + "manufacturer_part_number": "A4988SETTR_T", + "supplier_part_numbers": { + "jlcpcb": ["C38437"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_133", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_8", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_134", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_8", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net31" + }, + { + "type": "source_port", + "source_port_id": "source_port_135", + "name": "pin3", + "pin_number": 3, + "port_hints": ["pin3", "3"], + "source_component_id": "source_component_8", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_8", + "ftype": "simple_chip", + "name": "RV_REF", + "manufacturer_part_number": "A_3296W_1_103", + "supplier_part_numbers": { + "jlcpcb": ["C118954"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_136", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_9", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_137", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_9", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net38" + }, + { + "type": "source_component", + "source_component_id": "source_component_9", + "ftype": "simple_chip", + "name": "J_PWR", + "manufacturer_part_number": "WJ500V_5_08_2P", + "supplier_part_numbers": { + "jlcpcb": ["C8465"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_138", + "name": "K", + "pin_number": 1, + "port_hints": ["K", "pin1", "1"], + "source_component_id": "source_component_10", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_139", + "name": "A", + "pin_number": 2, + "port_hints": ["A", "pin2", "2"], + "source_component_id": "source_component_10", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net38" + }, + { + "type": "source_component", + "source_component_id": "source_component_10", + "ftype": "simple_chip", + "name": "D_REV", + "manufacturer_part_number": "SS34", + "supplier_part_numbers": { + "jlcpcb": ["C8678"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_140", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_11", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_port", + "source_port_id": "source_port_141", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_11", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_component", + "source_component_id": "source_component_11", + "ftype": "simple_chip", + "name": "C_VM_BULK", + "manufacturer_part_number": "RVT1V101M0607", + "supplier_part_numbers": { + "jlcpcb": ["C72478"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_142", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "1"], + "source_component_id": "source_component_12", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net39" + }, + { + "type": "source_port", + "source_port_id": "source_port_143", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "2"], + "source_component_id": "source_component_12", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net40" + }, + { + "type": "source_port", + "source_port_id": "source_port_144", + "name": "pin3", + "pin_number": 3, + "port_hints": ["pin3", "3"], + "source_component_id": "source_component_12", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net41" + }, + { + "type": "source_port", + "source_port_id": "source_port_145", + "name": "pin4", + "pin_number": 4, + "port_hints": ["pin4", "4"], + "source_component_id": "source_component_12", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net42" + }, + { + "type": "source_component", + "source_component_id": "source_component_12", + "ftype": "simple_chip", + "name": "J_MOTOR", + "manufacturer_part_number": "ZX_XH2_54_4PZZ", + "supplier_part_numbers": { + "jlcpcb": ["C7429634"] + }, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_146", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_13", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net5" + }, + { + "type": "source_port", + "source_port_id": "source_port_147", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_13", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_13", + "ftype": "simple_resistor", + "name": "R_CC1", + "supplier_part_numbers": { + "jlcpcb": ["C23186", "C2907044", "C105580"] + }, + "resistance": 5100, + "display_resistance": "5.1kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_148", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_14", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net6" + }, + { + "type": "source_port", + "source_port_id": "source_port_149", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_14", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_14", + "ftype": "simple_resistor", + "name": "R_CC2", + "supplier_part_numbers": { + "jlcpcb": ["C23186", "C2907044", "C105580"] + }, + "resistance": 5100, + "display_resistance": "5.1kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_150", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_15", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net9" + }, + { + "type": "source_port", + "source_port_id": "source_port_151", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_15", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net10" + }, + { + "type": "source_component", + "source_component_id": "source_component_15", + "ftype": "simple_resistor", + "name": "R_USB_DP", + "supplier_part_numbers": { + "jlcpcb": ["C25190", "C2907021", "C137753"] + }, + "resistance": 27, + "display_resistance": "27Ω", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_152", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_16", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net11" + }, + { + "type": "source_port", + "source_port_id": "source_port_153", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_16", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net12" + }, + { + "type": "source_component", + "source_component_id": "source_component_16", + "ftype": "simple_resistor", + "name": "R_USB_DN", + "supplier_part_numbers": { + "jlcpcb": ["C25190", "C2907021", "C137753"] + }, + "resistance": 27, + "display_resistance": "27Ω", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_154", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_17", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_port", + "source_port_id": "source_port_155", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_17", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_17", + "ftype": "simple_capacitor", + "name": "C_USB_IN", + "supplier_part_numbers": { + "jlcpcb": ["C15849", "C6119852", "C29936"] + }, + "capacitance": 0.000001, + "display_capacitance": "1uF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_156", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_18", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_157", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_18", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_18", + "ftype": "simple_capacitor", + "name": "C_USB_OUT", + "supplier_part_numbers": { + "jlcpcb": ["C15849", "C6119852", "C29936"] + }, + "capacitance": 0.000001, + "display_capacitance": "1uF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_158", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_19", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_port", + "source_port_id": "source_port_159", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_19", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_19", + "ftype": "simple_capacitor", + "name": "C_CORE", + "supplier_part_numbers": { + "jlcpcb": ["C15849", "C6119852", "C29936"] + }, + "capacitance": 0.000001, + "display_capacitance": "1uF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_160", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_20", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_161", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_20", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_20", + "ftype": "simple_capacitor", + "name": "C_MCU_1", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_162", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_21", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_163", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_21", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_21", + "ftype": "simple_capacitor", + "name": "C_MCU_2", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_164", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_22", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_165", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_22", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_22", + "ftype": "simple_capacitor", + "name": "C_MCU_3", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_166", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_23", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_167", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_23", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_23", + "ftype": "simple_capacitor", + "name": "C_MCU_4", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_168", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_24", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_169", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_24", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_24", + "ftype": "simple_capacitor", + "name": "C_MCU_5", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_170", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_25", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_171", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_25", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_25", + "ftype": "simple_capacitor", + "name": "C_FLASH", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_172", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_26", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "source_port", + "source_port_id": "source_port_173", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_26", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_26", + "ftype": "simple_capacitor", + "name": "C_XIN_1", + "supplier_part_numbers": { + "jlcpcb": ["C1548", "C106997", "C326803"] + }, + "capacitance": 1.5e-11, + "display_capacitance": "15pF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_174", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_27", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net15" + }, + { + "type": "source_port", + "source_port_id": "source_port_175", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_27", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_27", + "ftype": "simple_capacitor", + "name": "C_XIN_2", + "supplier_part_numbers": { + "jlcpcb": ["C1548", "C106997", "C326803"] + }, + "capacitance": 1.5e-11, + "display_capacitance": "15pF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_176", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_28", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net13" + }, + { + "type": "source_port", + "source_port_id": "source_port_177", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_28", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_28", + "ftype": "simple_resistor", + "name": "R_RUN", + "supplier_part_numbers": { + "jlcpcb": ["C25744", "C60490", "C25531"] + }, + "resistance": 10000, + "display_resistance": "10kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_178", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_29", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_179", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_29", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_component", + "source_component_id": "source_component_29", + "ftype": "simple_resistor", + "name": "R_VM_TOP", + "supplier_part_numbers": { + "jlcpcb": ["C22961", "C2907013", "C123420"] + }, + "resistance": 220000, + "display_resistance": "220kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_180", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_30", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_port", + "source_port_id": "source_port_181", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_30", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_30", + "ftype": "simple_resistor", + "name": "R_VM_BOT", + "supplier_part_numbers": { + "jlcpcb": ["C4216", "C2907028", "C25593"] + }, + "resistance": 33000, + "display_resistance": "33kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_182", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_31", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_port", + "source_port_id": "source_port_183", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_31", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_31", + "ftype": "simple_capacitor", + "name": "C_VM_ADC", + "supplier_part_numbers": { + "jlcpcb": ["C15195", "C5137480", "C60133"] + }, + "capacitance": 1e-8, + "display_capacitance": "10nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_184", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_32", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_port", + "source_port_id": "source_port_185", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_32", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_32", + "ftype": "simple_resistor", + "name": "R_EN_PU", + "supplier_part_numbers": { + "jlcpcb": ["C25744", "C60490", "C25531"] + }, + "resistance": 10000, + "display_resistance": "10kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_186", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_33", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_port", + "source_port_id": "source_port_187", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_33", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_component", + "source_component_id": "source_component_33", + "ftype": "simple_resistor", + "name": "R_AWAKE_PU", + "supplier_part_numbers": { + "jlcpcb": ["C25744", "C60490", "C25531"] + }, + "resistance": 10000, + "display_resistance": "10kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_188", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_34", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_port", + "source_port_id": "source_port_189", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_34", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_34", + "ftype": "simple_resistor", + "name": "R_MS1_PD", + "supplier_part_numbers": { + "jlcpcb": ["C25741", "C60491", "C2906859"] + }, + "resistance": 100000, + "display_resistance": "100kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_190", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_35", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_port", + "source_port_id": "source_port_191", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_35", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_35", + "ftype": "simple_resistor", + "name": "R_MS2_PD", + "supplier_part_numbers": { + "jlcpcb": ["C25741", "C60491", "C2906859"] + }, + "resistance": 100000, + "display_resistance": "100kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_192", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_36", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_port", + "source_port_id": "source_port_193", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_36", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_36", + "ftype": "simple_resistor", + "name": "R_MS3_PD", + "supplier_part_numbers": { + "jlcpcb": ["C25741", "C60491", "C2906859"] + }, + "resistance": 100000, + "display_resistance": "100kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_194", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_37", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net36" + }, + { + "type": "source_port", + "source_port_id": "source_port_195", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_37", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_37", + "ftype": "simple_resistor", + "name": "R_SENSE1", + "supplier_part_numbers": { + "jlcpcb": ["C25334", "C188071", "C7467250"] + }, + "resistance": 0.1, + "display_resistance": "100mΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_196", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_38", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net37" + }, + { + "type": "source_port", + "source_port_id": "source_port_197", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_38", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_38", + "ftype": "simple_resistor", + "name": "R_SENSE2", + "supplier_part_numbers": { + "jlcpcb": ["C25334", "C188071", "C7467250"] + }, + "resistance": 0.1, + "display_resistance": "100mΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_198", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_39", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_port", + "source_port_id": "source_port_199", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_39", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_39", + "ftype": "simple_capacitor", + "name": "C_DRV_VDD", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_200", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_40", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net32" + }, + { + "type": "source_port", + "source_port_id": "source_port_201", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_40", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_40", + "ftype": "simple_capacitor", + "name": "C_DRV_VREG", + "supplier_part_numbers": { + "jlcpcb": ["C16772", "C192432", "C915854"] + }, + "capacitance": 2.2e-7, + "display_capacitance": "220nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_202", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_41", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net33" + }, + { + "type": "source_port", + "source_port_id": "source_port_203", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_41", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net34" + }, + { + "type": "source_component", + "source_component_id": "source_component_41", + "ftype": "simple_capacitor", + "name": "C_DRV_CP", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_204", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_42", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net35" + }, + { + "type": "source_port", + "source_port_id": "source_port_205", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_42", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_component", + "source_component_id": "source_component_42", + "ftype": "simple_capacitor", + "name": "C_DRV_VCP", + "supplier_part_numbers": { + "jlcpcb": ["C1525", "C307331", "C60474"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_206", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_43", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_207", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_43", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_43", + "ftype": "simple_capacitor", + "name": "C_DRV_VM_1", + "supplier_part_numbers": { + "jlcpcb": ["C14663", "C1591", "C282519"] + }, + "capacitance": 1e-7, + "display_capacitance": "100nF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_208", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "pos", "anode", "1"], + "source_component_id": "source_component_44", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_port", + "source_port_id": "source_port_209", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "neg", "cathode", "2"], + "source_component_id": "source_component_44", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_44", + "ftype": "simple_capacitor", + "name": "C_DRV_VM_2", + "supplier_part_numbers": { + "jlcpcb": ["C29823", "C51205", "C132148"] + }, + "capacitance": 0.0000047, + "display_capacitance": "4.7uF", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_210", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_45", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net45" + }, + { + "type": "source_port", + "source_port_id": "source_port_211", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_45", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_component", + "source_component_id": "source_component_45", + "ftype": "simple_led", + "name": "D_STAT", + "color": "green", + "symbol_display_value": "green", + "supplier_part_numbers": { + "jlcpcb": ["C965799", "C84263", "C965804"] + }, + "are_pins_interchangeable": false, + "source_group_id": "source_group_0" + }, + { + "type": "source_port", + "source_port_id": "source_port_212", + "name": "pin1", + "pin_number": 1, + "port_hints": ["pin1", "anode", "pos", "left", "1"], + "source_component_id": "source_component_46", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net44" + }, + { + "type": "source_port", + "source_port_id": "source_port_213", + "name": "pin2", + "pin_number": 2, + "port_hints": ["pin2", "cathode", "neg", "right", "2"], + "source_component_id": "source_component_46", + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net45" + }, + { + "type": "source_component", + "source_component_id": "source_component_46", + "ftype": "simple_resistor", + "name": "R_STAT", + "supplier_part_numbers": { + "jlcpcb": ["C21190", "C2907002", "C2907113"] + }, + "resistance": 1000, + "display_resistance": "1kΩ", + "are_pins_interchangeable": true, + "source_group_id": "source_group_0" + }, + { + "type": "source_net", + "source_net_id": "source_net_0", + "name": "GND", + "member_source_group_ids": [], + "is_ground": true, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_net", + "source_net_id": "source_net_1", + "name": "VBUS", + "member_source_group_ids": [], + "is_ground": false, + "is_power": true, + "is_positive_voltage_source": true, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_net", + "source_net_id": "source_net_2", + "name": "V3_3", + "member_source_group_ids": [], + "is_ground": false, + "is_power": true, + "is_positive_voltage_source": true, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_net", + "source_net_id": "source_net_3", + "name": "V1_1", + "member_source_group_ids": [], + "is_ground": false, + "is_power": true, + "is_positive_voltage_source": true, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_net", + "source_net_id": "source_net_4", + "name": "VM", + "member_source_group_ids": [], + "is_ground": false, + "is_power": true, + "is_positive_voltage_source": true, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_net", + "source_net_id": "source_net_5", + "name": "DRV_ENABLE", + "member_source_group_ids": [], + "is_ground": false, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_net", + "source_net_id": "source_net_6", + "name": "DRV_AWAKE", + "member_source_group_ids": [], + "is_ground": false, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_net", + "source_net_id": "source_net_7", + "name": "MS1", + "member_source_group_ids": [], + "is_ground": false, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_net", + "source_net_id": "source_net_8", + "name": "MS2", + "member_source_group_ids": [], + "is_ground": false, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_net", + "source_net_id": "source_net_9", + "name": "MS3", + "member_source_group_ids": [], + "is_ground": false, + "is_power": false, + "is_positive_voltage_source": false, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_net", + "source_net_id": "source_net_10", + "name": "VM_SENSE", + "member_source_group_ids": [], + "is_ground": false, + "is_power": true, + "is_positive_voltage_source": true, + "subcircuit_id": "subcircuit_source_group_0", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_board", + "source_board_id": "source_board_0", + "source_group_id": "source_group_0", + "title": "USB NEMA17 RP2040 A4988 Controller" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_0", + "connected_source_port_ids": ["source_port_4"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_1", + "connected_source_port_ids": ["source_port_5"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B12 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_2", + "connected_source_port_ids": ["source_port_15"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_3", + "connected_source_port_ids": ["source_port_16"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A12 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_4", + "connected_source_port_ids": ["source_port_2"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.EP1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_5", + "connected_source_port_ids": ["source_port_3"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.EP2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_6", + "connected_source_port_ids": ["source_port_1"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.EP3 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_7", + "connected_source_port_ids": ["source_port_0"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.EP4 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_8", + "connected_source_port_ids": ["source_port_6"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A4 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_9", + "connected_source_port_ids": ["source_port_7"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B9 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_10", + "connected_source_port_ids": ["source_port_18"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B4 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_11", + "connected_source_port_ids": ["source_port_19"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A9 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_12", + "connected_source_port_ids": ["source_port_79"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_13", + "connected_source_port_ids": ["source_port_72"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD2 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_14", + "connected_source_port_ids": ["source_port_63"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD3 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_15", + "connected_source_port_ids": ["source_port_52"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD4 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_16", + "connected_source_port_ids": ["source_port_40"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD5 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_17", + "connected_source_port_ids": ["source_port_31"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.IOVDD6 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_18", + "connected_source_port_ids": ["source_port_73"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.ADC_AVDD to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_19", + "connected_source_port_ids": ["source_port_78"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.USB_VDD to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_20", + "connected_source_port_ids": ["source_port_74"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.VREG_IN to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_21", + "connected_source_port_ids": ["source_port_80"], + "connected_source_net_ids": ["source_net_3"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.DVDD1 to net.V1_1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_22", + "connected_source_port_ids": ["source_port_53"], + "connected_source_net_ids": ["source_net_3"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.DVDD2 to net.V1_1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_23", + "connected_source_port_ids": ["source_port_75"], + "connected_source_net_ids": ["source_net_3"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.VREG_VOUT to net.V1_1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_24", + "connected_source_port_ids": ["source_port_95"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_FLASH.VCC to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_25", + "connected_source_port_ids": ["source_port_121"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.GND1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_26", + "connected_source_port_ids": ["source_port_106"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.GND2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_27", + "connected_source_port_ids": ["source_port_132"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.PAD to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_28", + "connected_source_port_ids": ["source_port_125"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.VBB1 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_29", + "connected_source_port_ids": ["source_port_131"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.VBB2 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_30", + "connected_source_port_ids": ["source_port_9", "source_port_146"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A5 to R_CC1.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net5" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_31", + "connected_source_port_ids": ["source_port_147"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_CC1.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_32", + "connected_source_port_ids": ["source_port_14", "source_port_148"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B5 to R_CC2.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net6" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_33", + "connected_source_port_ids": ["source_port_149"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_CC2.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_34", + "connected_source_port_ids": ["source_port_11", "source_port_20"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A6 to U_ESD.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_35", + "connected_source_port_ids": ["source_port_13", "source_port_20"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B6 to U_ESD.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_36", + "connected_source_port_ids": ["source_port_12", "source_port_22"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.A7 to U_ESD.pin3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_37", + "connected_source_port_ids": ["source_port_10", "source_port_22"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_USB.B7 to U_ESD.pin3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_38", + "connected_source_port_ids": ["source_port_25", "source_port_150"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_ESD.pin6 to R_USB_DP.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net9" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_39", + "connected_source_port_ids": ["source_port_151", "source_port_77"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_USB_DP.pin2 to U_MCU.USB_DP", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net10" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_40", + "connected_source_port_ids": ["source_port_23", "source_port_152"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_ESD.pin4 to R_USB_DN.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net11" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_41", + "connected_source_port_ids": ["source_port_153", "source_port_76"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_USB_DN.pin2 to U_MCU.USB_DM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net12" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_42", + "connected_source_port_ids": ["source_port_21"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_ESD.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_43", + "connected_source_port_ids": ["source_port_24"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_ESD.pin5 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_44", + "connected_source_port_ids": ["source_port_26"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_LDO.VIN to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_45", + "connected_source_port_ids": ["source_port_28"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_LDO.EN to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_46", + "connected_source_port_ids": ["source_port_27"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_LDO.GND to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_47", + "connected_source_port_ids": ["source_port_30"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_LDO.VOUT to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_48", + "connected_source_port_ids": ["source_port_154"], + "connected_source_net_ids": ["source_net_1"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_USB_IN.pin1 to net.VBUS", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_49", + "connected_source_port_ids": ["source_port_155"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_USB_IN.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_50", + "connected_source_port_ids": ["source_port_156"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_USB_OUT.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_51", + "connected_source_port_ids": ["source_port_157"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_USB_OUT.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_52", + "connected_source_port_ids": ["source_port_87"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GND to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_53", + "connected_source_port_ids": ["source_port_49"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.TESTEN to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_54", + "connected_source_port_ids": ["source_port_56", "source_port_176"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.RUN to R_RUN.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net13" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_55", + "connected_source_port_ids": ["source_port_177"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_RUN.pin2 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_56", + "connected_source_port_ids": ["source_port_158"], + "connected_source_net_ids": ["source_net_3"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_CORE.pin1 to net.V1_1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_57", + "connected_source_port_ids": ["source_port_159"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_CORE.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_58", + "connected_source_port_ids": ["source_port_160"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_1.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_59", + "connected_source_port_ids": ["source_port_161"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_1.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_60", + "connected_source_port_ids": ["source_port_162"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_2.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_61", + "connected_source_port_ids": ["source_port_163"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_2.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_62", + "connected_source_port_ids": ["source_port_164"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_3.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_63", + "connected_source_port_ids": ["source_port_165"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_3.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_64", + "connected_source_port_ids": ["source_port_166"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_4.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_65", + "connected_source_port_ids": ["source_port_167"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_4.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_66", + "connected_source_port_ids": ["source_port_168"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_5.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_67", + "connected_source_port_ids": ["source_port_169"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_MCU_5.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_68", + "connected_source_port_ids": ["source_port_50", "source_port_96"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.XIN to Y1.OSC1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_69", + "connected_source_port_ids": ["source_port_51", "source_port_98"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.XOUT to Y1.OSC2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net15" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_70", + "connected_source_port_ids": ["source_port_97"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "Y1.GND1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_71", + "connected_source_port_ids": ["source_port_99"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "Y1.GND2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_72", + "connected_source_port_ids": ["source_port_96", "source_port_172"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "Y1.OSC1 to C_XIN_1.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_73", + "connected_source_port_ids": ["source_port_173"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_XIN_1.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_74", + "connected_source_port_ids": ["source_port_98", "source_port_174"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "Y1.OSC2 to C_XIN_2.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net15" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_75", + "connected_source_port_ids": ["source_port_175"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_XIN_2.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_76", + "connected_source_port_ids": ["source_port_86", "source_port_88"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SS to U_FLASH.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net16" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_77", + "connected_source_port_ids": ["source_port_85", "source_port_89"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SD1 to U_FLASH.pin2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net17" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_78", + "connected_source_port_ids": ["source_port_84", "source_port_90"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SD2 to U_FLASH.IO2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net18" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_79", + "connected_source_port_ids": ["source_port_83", "source_port_92"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SD0 to U_FLASH.pin5", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net19" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_80", + "connected_source_port_ids": ["source_port_82", "source_port_93"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SCLK to U_FLASH.CLK", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net20" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_81", + "connected_source_port_ids": ["source_port_81", "source_port_94"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.QSPI_SD3 to U_FLASH.IO3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net21" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_82", + "connected_source_port_ids": ["source_port_91"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_FLASH.GND to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_83", + "connected_source_port_ids": ["source_port_170"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_FLASH.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_84", + "connected_source_port_ids": ["source_port_171"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_FLASH.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_85", + "connected_source_port_ids": ["source_port_54", "source_port_100"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.SWCLK to J_SWD.SWCLK", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net22" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_86", + "connected_source_port_ids": ["source_port_55", "source_port_101"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.SWD to J_SWD.SWDIO", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net23" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_87", + "connected_source_port_ids": ["source_port_102"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_SWD.GND to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_88", + "connected_source_port_ids": ["source_port_103"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_SWD.V3_3 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_89", + "connected_source_port_ids": ["source_port_34", "source_port_119"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO2 to U_DRV.STEP", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net24" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_90", + "connected_source_port_ids": ["source_port_35", "source_port_122"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO3 to U_DRV.DIR", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net25" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_91", + "connected_source_port_ids": ["source_port_36"], + "connected_source_net_ids": ["source_net_5"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO4 to net.DRV_ENABLE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_92", + "connected_source_port_ids": ["source_port_105"], + "connected_source_net_ids": ["source_net_5"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.ENABLE to net.DRV_ENABLE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_93", + "connected_source_port_ids": ["source_port_184"], + "connected_source_net_ids": ["source_net_5"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_EN_PU.pin1 to net.DRV_ENABLE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net26" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_94", + "connected_source_port_ids": ["source_port_185"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_EN_PU.pin2 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_95", + "connected_source_port_ids": ["source_port_37"], + "connected_source_net_ids": ["source_net_6"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO5 to net.DRV_AWAKE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_96", + "connected_source_port_ids": ["source_port_115"], + "connected_source_net_ids": ["source_net_6"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.RESET to net.DRV_AWAKE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_97", + "connected_source_port_ids": ["source_port_117"], + "connected_source_net_ids": ["source_net_6"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.SLEEP to net.DRV_AWAKE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_98", + "connected_source_port_ids": ["source_port_186"], + "connected_source_net_ids": ["source_net_6"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_AWAKE_PU.pin1 to net.DRV_AWAKE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_99", + "connected_source_port_ids": ["source_port_187"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_AWAKE_PU.pin2 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_100", + "connected_source_port_ids": ["source_port_38"], + "connected_source_net_ids": ["source_net_7"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO6 to net.MS1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_101", + "connected_source_port_ids": ["source_port_112"], + "connected_source_net_ids": ["source_net_7"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.MS1 to net.MS1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_102", + "connected_source_port_ids": ["source_port_188"], + "connected_source_net_ids": ["source_net_7"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS1_PD.pin1 to net.MS1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net28" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_103", + "connected_source_port_ids": ["source_port_189"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS1_PD.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_104", + "connected_source_port_ids": ["source_port_39"], + "connected_source_net_ids": ["source_net_8"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO7 to net.MS2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_105", + "connected_source_port_ids": ["source_port_113"], + "connected_source_net_ids": ["source_net_8"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.MS2 to net.MS2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_106", + "connected_source_port_ids": ["source_port_190"], + "connected_source_net_ids": ["source_net_8"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS2_PD.pin1 to net.MS2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net29" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_107", + "connected_source_port_ids": ["source_port_191"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS2_PD.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_108", + "connected_source_port_ids": ["source_port_41"], + "connected_source_net_ids": ["source_net_9"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO8 to net.MS3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_109", + "connected_source_port_ids": ["source_port_114"], + "connected_source_net_ids": ["source_net_9"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.MS3 to net.MS3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_110", + "connected_source_port_ids": ["source_port_192"], + "connected_source_net_ids": ["source_net_9"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS3_PD.pin1 to net.MS3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net30" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_111", + "connected_source_port_ids": ["source_port_193"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_MS3_PD.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_112", + "connected_source_port_ids": ["source_port_133"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "RV_REF.pin1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_113", + "connected_source_port_ids": ["source_port_135"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "RV_REF.pin3 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_114", + "connected_source_port_ids": ["source_port_134", "source_port_120"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "RV_REF.pin2 to U_DRV.REF", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net31" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_115", + "connected_source_port_ids": ["source_port_118"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.VDD to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_116", + "connected_source_port_ids": ["source_port_198"], + "connected_source_net_ids": ["source_net_2"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VDD.pin1 to net.V3_3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_117", + "connected_source_port_ids": ["source_port_199"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VDD.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_118", + "connected_source_port_ids": ["source_port_111", "source_port_200"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "U_DRV.VREG to C_DRV_VREG.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net32" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_119", + "connected_source_port_ids": ["source_port_201"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VREG.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_120", + "connected_source_port_ids": ["source_port_107", "source_port_202"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "U_DRV.CP1 to C_DRV_CP.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net33" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_121", + "connected_source_port_ids": ["source_port_108", "source_port_203"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "U_DRV.CP2 to C_DRV_CP.pin2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net34" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_122", + "connected_source_port_ids": ["source_port_109", "source_port_204"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "U_DRV.VCP to C_DRV_VCP.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net35" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_123", + "connected_source_port_ids": ["source_port_205"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VCP.pin2 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_124", + "connected_source_port_ids": ["source_port_116"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.ROSC to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_125", + "connected_source_port_ids": ["source_port_126", "source_port_194"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.SENSE1 to R_SENSE1.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net36" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_126", + "connected_source_port_ids": ["source_port_195"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_SENSE1.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_127", + "connected_source_port_ids": ["source_port_130", "source_port_196"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.SENSE2 to R_SENSE2.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net37" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_128", + "connected_source_port_ids": ["source_port_197"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_SENSE2.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_129", + "connected_source_port_ids": ["source_port_136"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_PWR.pin1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_130", + "connected_source_port_ids": ["source_port_137", "source_port_139"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "J_PWR.pin2 to D_REV.A", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net38" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_131", + "connected_source_port_ids": ["source_port_138"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "D_REV.K to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_132", + "connected_source_port_ids": ["source_port_140"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "C_VM_BULK.pin1 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_133", + "connected_source_port_ids": ["source_port_141"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "C_VM_BULK.pin2 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_134", + "connected_source_port_ids": ["source_port_206"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VM_1.pin1 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_135", + "connected_source_port_ids": ["source_port_207"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VM_1.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_136", + "connected_source_port_ids": ["source_port_208"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VM_2.pin1 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_137", + "connected_source_port_ids": ["source_port_209"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_DRV_VM_2.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_138", + "connected_source_port_ids": ["source_port_127", "source_port_142"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.OUT1A to J_MOTOR.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net39" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_139", + "connected_source_port_ids": ["source_port_124", "source_port_143"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.OUT1B to J_MOTOR.pin2", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net40" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_140", + "connected_source_port_ids": ["source_port_129", "source_port_144"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.OUT2A to J_MOTOR.pin3", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net41" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_141", + "connected_source_port_ids": ["source_port_104", "source_port_145"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_DRV.OUT2B to J_MOTOR.pin4", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net42" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_142", + "connected_source_port_ids": ["source_port_178"], + "connected_source_net_ids": ["source_net_4"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_VM_TOP.pin1 to net.VM", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_143", + "connected_source_port_ids": ["source_port_179"], + "connected_source_net_ids": ["source_net_10"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_VM_TOP.pin2 to net.VM_SENSE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_144", + "connected_source_port_ids": ["source_port_180"], + "connected_source_net_ids": ["source_net_10"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_VM_BOT.pin1 to net.VM_SENSE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_145", + "connected_source_port_ids": ["source_port_181"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_VM_BOT.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_146", + "connected_source_port_ids": ["source_port_182"], + "connected_source_net_ids": ["source_net_10"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_VM_ADC.pin1 to net.VM_SENSE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_147", + "connected_source_port_ids": ["source_port_183"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "max_length": null, + "display_name": "C_VM_ADC.pin2 to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_148", + "connected_source_port_ids": ["source_port_68"], + "connected_source_net_ids": ["source_net_10"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO26_ADC0 to net.VM_SENSE", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_149", + "connected_source_port_ids": ["source_port_67", "source_port_212"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "U_MCU.GPIO25 to R_STAT.pin1", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net44" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_150", + "connected_source_port_ids": ["source_port_213", "source_port_210"], + "connected_source_net_ids": [], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "R_STAT.pin2 to D_STAT.anode", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net45" + }, + { + "type": "source_trace", + "source_trace_id": "source_trace_151", + "connected_source_port_ids": ["source_port_211"], + "connected_source_net_ids": ["source_net_0"], + "subcircuit_id": "subcircuit_source_group_0", + "display_name": "D_STAT.cathode to net.GND", + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 0.44749999999999934, + "y": -5.625000000000002 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 2.1999999999999997 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "EP4", + "pin2": "EP3", + "pin3": "EP1", + "pin4": "EP2", + "pin5": "A1", + "pin6": "B12", + "pin7": "A4", + "pin8": "B9", + "pin9": "B8", + "pin10": "A5", + "pin11": "B7", + "pin12": "A6", + "pin13": "A7", + "pin14": "B6", + "pin15": "B5", + "pin16": "B1", + "pin17": "A12", + "pin18": "A8", + "pin19": "B4", + "pin20": "A9" + }, + "source_component_id": "source_component_0", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_0", + "text": "KH_TYPE_C_16P", + "schematic_component_id": "schematic_component_0", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": -6.855000000000002 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_1", + "text": "J_USB", + "schematic_component_id": "schematic_component_0", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": -4.395000000000001 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 3.1474999999999995, + "y": -6.125000000000002 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.8 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2", + "pin3": "pin3", + "pin4": "pin4", + "pin5": "pin5", + "pin6": "pin6" + }, + "source_component_id": "source_component_1", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_2", + "text": "USBLC6_2SC6", + "schematic_component_id": "schematic_component_1", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": -6.655000000000002 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_3", + "text": "U_ESD", + "schematic_component_id": "schematic_component_1", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": -5.5950000000000015 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -7.2575, + "y": -1.4916666666666654 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.8 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "VIN", + "pin2": "GND", + "pin3": "EN", + "pin4": "NC", + "pin5": "VOUT" + }, + "source_component_id": "source_component_2", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_4", + "text": "AP2112K_3_3TRG1", + "schematic_component_id": "schematic_component_2", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.8575, + "y": -2.0216666666666656 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_5", + "text": "U_LDO", + "schematic_component_id": "schematic_component_2", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.8575, + "y": -0.9616666666666653 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 0.44749999999999934, + "y": -0.12499999999999956 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 6.000000000000003 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "IOVDD6", + "pin2": "GPIO0", + "pin3": "GPIO1", + "pin4": "GPIO2", + "pin5": "GPIO3", + "pin6": "GPIO4", + "pin7": "GPIO5", + "pin8": "GPIO6", + "pin9": "GPIO7", + "pin10": "IOVDD5", + "pin11": "GPIO8", + "pin12": "GPIO9", + "pin13": "GPIO10", + "pin14": "GPIO11", + "pin15": "GPIO12", + "pin16": "GPIO13", + "pin17": "GPIO14", + "pin18": "GPIO15", + "pin19": "TESTEN", + "pin20": "XIN", + "pin21": "XOUT", + "pin22": "IOVDD4", + "pin23": "DVDD2", + "pin24": "SWCLK", + "pin25": "SWD", + "pin26": "RUN", + "pin27": "GPIO16", + "pin28": "GPIO17", + "pin29": "GPIO18", + "pin30": "GPIO19", + "pin31": "GPIO20", + "pin32": "GPIO21", + "pin33": "IOVDD3", + "pin34": "GPIO22", + "pin35": "GPIO23", + "pin36": "GPIO24", + "pin37": "GPIO25", + "pin38": "GPIO26_ADC0", + "pin39": "GPIO27_ADC1", + "pin40": "GPIO28_ADC2", + "pin41": "GPIO29_ADC3", + "pin42": "IOVDD2", + "pin43": "ADC_AVDD", + "pin44": "VREG_IN", + "pin45": "VREG_VOUT", + "pin46": "USB_DM", + "pin47": "USB_DP", + "pin48": "USB_VDD", + "pin49": "IOVDD1", + "pin50": "DVDD1", + "pin51": "QSPI_SD3", + "pin52": "QSPI_SCLK", + "pin53": "QSPI_SD0", + "pin54": "QSPI_SD2", + "pin55": "QSPI_SD1", + "pin56": "QSPI_SS", + "pin57": "GND" + }, + "source_component_id": "source_component_3", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_6", + "text": "RP2040", + "schematic_component_id": "schematic_component_3", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": -3.255000000000001 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_7", + "text": "U_MCU", + "schematic_component_id": "schematic_component_3", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": 3.0050000000000017 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 3.1474999999999995, + "y": 2.0750000000000015 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 1 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2", + "pin3": "IO2", + "pin4": "GND", + "pin5": "pin5", + "pin6": "CLK", + "pin7": "IO3", + "pin8": "VCC" + }, + "source_component_id": "source_component_4", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_8", + "text": "W25Q16JVSSIQ", + "schematic_component_id": "schematic_component_4", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": 1.4450000000000016 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_9", + "text": "U_FLASH", + "schematic_component_id": "schematic_component_4", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": 2.7050000000000014 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_5", + "center": { + "x": -2.252500000000001, + "y": -3.0249999999999972 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.6000000000000001 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "OSC1", + "pin2": "GND1", + "pin3": "OSC2", + "pin4": "GND2" + }, + "source_component_id": "source_component_5", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_10", + "text": "X322512MSB4SI", + "schematic_component_id": "schematic_component_5", + "anchor": "left", + "rotation": 0, + "position": { + "x": -2.852500000000001, + "y": -3.4549999999999974 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_11", + "text": "Y1", + "schematic_component_id": "schematic_component_5", + "anchor": "left", + "rotation": 0, + "position": { + "x": -2.852500000000001, + "y": -2.594999999999997 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_6", + "center": { + "x": -2.1025000000000014, + "y": -0.4749999999999981 + }, + "rotation": 0, + "size": { + "width": 1, + "height": 1.6 + }, + "port_arrangement": { + "right_side": { + "direction": "top-to-bottom", + "pins": ["pin1", "pin2", "pin3", "pin4"] + } + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "SWCLK", + "pin2": "SWDIO", + "pin3": "GND", + "pin4": "V3_3" + }, + "source_component_id": "source_component_6", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_12", + "text": "", + "schematic_component_id": "schematic_component_6", + "anchor": "left", + "rotation": 0, + "position": { + "x": -2.7325000000000013, + "y": 0.3250000000000023 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_13", + "text": "J_SWD", + "schematic_component_id": "schematic_component_6", + "anchor": "left", + "rotation": 0, + "position": { + "x": -1.4725000000000013, + "y": 0.32500000000000207 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -2.252500000000001, + "y": 3.375000000000002 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 3.2 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "OUT2B", + "pin2": "ENABLE", + "pin3": "GND2", + "pin4": "CP1", + "pin5": "CP2", + "pin6": "VCP", + "pin7": "NC3", + "pin8": "VREG", + "pin9": "MS1", + "pin10": "MS2", + "pin11": "MS3", + "pin12": "RESET", + "pin13": "ROSC", + "pin14": "SLEEP", + "pin15": "VDD", + "pin16": "STEP", + "pin17": "REF", + "pin18": "GND1", + "pin19": "DIR", + "pin20": "NC2", + "pin21": "OUT1B", + "pin22": "VBB1", + "pin23": "SENSE1", + "pin24": "OUT1A", + "pin25": "NC1", + "pin26": "OUT2A", + "pin27": "SENSE2", + "pin28": "VBB2", + "pin29": "PAD" + }, + "source_component_id": "source_component_7", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_14", + "text": "A4988SETTR_T", + "schematic_component_id": "schematic_component_7", + "anchor": "left", + "rotation": 0, + "position": { + "x": -2.852500000000001, + "y": 1.6450000000000022 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_15", + "text": "U_DRV", + "schematic_component_id": "schematic_component_7", + "anchor": "left", + "rotation": 0, + "position": { + "x": -2.852500000000001, + "y": 5.105000000000002 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_8", + "center": { + "x": 3.1474999999999995, + "y": 4.275000000000002 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.6000000000000001 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2", + "pin3": "pin3" + }, + "source_component_id": "source_component_8", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_16", + "text": "A_3296W_1_103", + "schematic_component_id": "schematic_component_8", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": 3.845000000000002 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_17", + "text": "RV_REF", + "schematic_component_id": "schematic_component_8", + "anchor": "left", + "rotation": 0, + "position": { + "x": 2.5474999999999994, + "y": 4.705000000000002 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_9", + "center": { + "x": -7.257500000000001, + "y": 2.908333333333335 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.4 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2" + }, + "source_component_id": "source_component_9", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_18", + "text": "WJ500V_5_08_2P", + "schematic_component_id": "schematic_component_9", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.857500000000002, + "y": 2.578333333333335 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_19", + "text": "J_PWR", + "schematic_component_id": "schematic_component_9", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.857500000000002, + "y": 3.238333333333335 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_10", + "center": { + "x": -7.257500000000001, + "y": 1.1083333333333347 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.4 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "K", + "pin2": "A" + }, + "source_component_id": "source_component_10", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_20", + "text": "SS34", + "schematic_component_id": "schematic_component_10", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.857500000000002, + "y": 0.7783333333333347 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_21", + "text": "D_REV", + "schematic_component_id": "schematic_component_10", + "anchor": "left", + "rotation": 0, + "position": { + "x": -7.857500000000002, + "y": 1.4383333333333348 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_11", + "center": { + "x": -10.467500000000001, + "y": 0.9750000000000014 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.4 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2" + }, + "source_component_id": "source_component_11", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_22", + "text": "RVT1V101M0607", + "schematic_component_id": "schematic_component_11", + "anchor": "left", + "rotation": 0, + "position": { + "x": -11.0675, + "y": 0.6450000000000014 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_23", + "text": "C_VM_BULK", + "schematic_component_id": "schematic_component_11", + "anchor": "left", + "rotation": 0, + "position": { + "x": -11.0675, + "y": 1.3050000000000015 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_12", + "center": { + "x": 0.44749999999999934, + "y": 4.575000000000003 + }, + "rotation": 0, + "size": { + "width": 1.2000000000000002, + "height": 0.6000000000000001 + }, + "pin_spacing": 0.2, + "port_labels": { + "pin1": "pin1", + "pin2": "pin2", + "pin3": "pin3", + "pin4": "pin4" + }, + "source_component_id": "source_component_12", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_24", + "text": "ZX_XH2_54_4PZZ", + "schematic_component_id": "schematic_component_12", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": 4.145000000000003 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_text", + "schematic_text_id": "schematic_text_25", + "text": "J_MOTOR", + "schematic_component_id": "schematic_component_12", + "anchor": "left", + "rotation": 0, + "position": { + "x": -0.15250000000000075, + "y": 5.005000000000003 + }, + "color": "#006464", + "font_size": 0.18 + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_13", + "center": { + "x": -1.802500000000001, + "y": -6.525000000000002 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_13", + "is_box_with_pins": true, + "symbol_name": "boxresistor_left", + "symbol_display_value": "5.1kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_14", + "center": { + "x": 2.291955349999999, + "y": -4.125000000000002 + }, + "size": { + "width": 0.388910699999999, + "height": 1.1 + }, + "source_component_id": "source_component_14", + "is_box_with_pins": true, + "symbol_name": "boxresistor_up", + "symbol_display_value": "5.1kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_15", + "center": { + "x": 2.2919553499999985, + "y": -2.325000000000001 + }, + "size": { + "width": 0.388910699999999, + "height": 1.1 + }, + "source_component_id": "source_component_15", + "is_box_with_pins": true, + "symbol_name": "boxresistor_up", + "symbol_display_value": "27Ω", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_16", + "center": { + "x": 4.091955349999999, + "y": -4.125000000000002 + }, + "size": { + "width": 0.388910699999999, + "height": 1.1 + }, + "source_component_id": "source_component_16", + "is_box_with_pins": true, + "symbol_name": "boxresistor_up", + "symbol_display_value": "27Ω", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_17", + "center": { + "x": -10.017500000000002, + "y": -1.2449999999999992 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_17", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "1uF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_18", + "center": { + "x": -6.807500000000001, + "y": -3.9116666666666653 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_18", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "1uF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_19", + "center": { + "x": -6.807500000000001, + "y": -5.951666666666665 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_19", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "1uF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_20", + "center": { + "x": -9.1175, + "y": -3.9116666666666653 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_20", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_21", + "center": { + "x": -9.1175, + "y": -5.951666666666665 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_21", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_22", + "center": { + "x": -11.427499999999998, + "y": -3.2849999999999993 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_22", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_23", + "center": { + "x": -11.427499999999998, + "y": -5.324999999999999 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_23", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_24", + "center": { + "x": -11.427499999999998, + "y": -7.364999999999999 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_24", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_25", + "center": { + "x": -9.1175, + "y": -7.991666666666665 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_25", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_26", + "center": { + "x": -4.5024999999999995, + "y": -2.9249999999999967 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_26", + "is_box_with_pins": true, + "symbol_name": "capacitor_left", + "symbol_display_value": "15pF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_27", + "center": { + "x": -3.1969553499999996, + "y": -4.744999999999997 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_27", + "is_box_with_pins": true, + "symbol_name": "capacitor_left", + "symbol_display_value": "15pF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_28", + "center": { + "x": -1.3969553499999994, + "y": -4.924999999999997 + }, + "size": { + "width": 0.388910699999999, + "height": 1.1 + }, + "source_component_id": "source_component_28", + "is_box_with_pins": true, + "symbol_name": "boxresistor_down", + "symbol_display_value": "10kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_29", + "center": { + "x": 6.8075, + "y": 1.0333333333333385 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_29", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "220kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_30", + "center": { + "x": 6.8075, + "y": -0.5555773666666604 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_30", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "33kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_31", + "center": { + "x": 6.8075, + "y": -2.3700327166666604 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_31", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "10nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_32", + "center": { + "x": -6.807500000000001, + "y": 4.902788683333334 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_32", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "10kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_33", + "center": { + "x": -6.807500000000001, + "y": 6.491699383333333 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_33", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "10kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_34", + "center": { + "x": 6.8075, + "y": 2.6222440333333377 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_34", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "100kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_35", + "center": { + "x": 6.8075, + "y": 4.211154733333337 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_35", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "100kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_36", + "center": { + "x": 6.8075, + "y": -4.18448806666666 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_36", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "100kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_37", + "center": { + "x": -4.5024999999999995, + "y": 3.4750000000000028 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_37", + "is_box_with_pins": true, + "symbol_name": "boxresistor_left", + "symbol_display_value": "100mΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_38", + "center": { + "x": -1.2525000000000013, + "y": 6.575000000000001 + }, + "size": { + "width": 0.388910699999999, + "height": 1.1 + }, + "source_component_id": "source_component_38", + "is_box_with_pins": true, + "symbol_name": "boxresistor_up", + "symbol_display_value": "100mΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_39", + "center": { + "x": -11.427499999999998, + "y": -9.405 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_39", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_40", + "center": { + "x": -4.5024999999999995, + "y": 2.2605446500000035 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_40", + "is_box_with_pins": true, + "symbol_name": "capacitor_left", + "symbol_display_value": "220nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_41", + "center": { + "x": -3.0525000000000015, + "y": 6.395000000000001 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_41", + "is_box_with_pins": true, + "symbol_name": "capacitor_left", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_42", + "center": { + "x": -4.5024999999999995, + "y": 4.689455350000001 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_42", + "is_box_with_pins": true, + "symbol_name": "capacitor_left", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_43", + "center": { + "x": -10.017500000000002, + "y": 3.195000000000001 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_43", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "100nF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_44", + "center": { + "x": -9.1175, + "y": 5.235000000000001 + }, + "size": { + "width": 1.1, + "height": 0.84 + }, + "source_component_id": "source_component_44", + "is_box_with_pins": true, + "symbol_name": "capacitor_right", + "symbol_display_value": "4.7uF", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_45", + "center": { + "x": 4.487499999999999, + "y": -0.9305446500000012 + }, + "size": { + "width": 1.13, + "height": 0.65 + }, + "source_component_id": "source_component_45", + "is_box_with_pins": true, + "symbol_name": "led_right", + "symbol_display_value": "green", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_component", + "schematic_component_id": "schematic_component_46", + "center": { + "x": 2.6974999999999993, + "y": -0.9305446500000014 + }, + "size": { + "width": 1.1, + "height": 0.388910699999999 + }, + "source_component_id": "source_component_46", + "is_box_with_pins": true, + "symbol_name": "boxresistor_right", + "symbol_display_value": "1kΩ", + "schematic_group_id": "schematic_group_0" + }, + { + "type": "schematic_group", + "schematic_group_id": "schematic_group_0", + "is_subcircuit": true, + "subcircuit_id": "subcircuit_source_group_0", + "name": "unnamed_board1", + "center": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "schematic_component_ids": [], + "source_group_id": "source_group_0" + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_0", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -4.725000000000001 + }, + "source_port_id": "source_port_0", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "EP4", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_1", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -4.925000000000002 + }, + "source_port_id": "source_port_1", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "EP3", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_2", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -5.125000000000002 + }, + "source_port_id": "source_port_2", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "EP1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_3", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -5.325000000000002 + }, + "source_port_id": "source_port_3", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "EP2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_4", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -5.525000000000002 + }, + "source_port_id": "source_port_4", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 5, + "true_ccw_index": 4, + "display_pin_label": "A1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_5", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -5.725000000000001 + }, + "source_port_id": "source_port_5", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 6, + "true_ccw_index": 5, + "display_pin_label": "B12", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_6", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -5.925000000000002 + }, + "source_port_id": "source_port_6", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 7, + "true_ccw_index": 6, + "display_pin_label": "A4", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_7", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -6.125000000000002 + }, + "source_port_id": "source_port_7", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 8, + "true_ccw_index": 7, + "display_pin_label": "B9", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_8", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -6.325000000000002 + }, + "source_port_id": "source_port_8", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 9, + "true_ccw_index": 8, + "display_pin_label": "B8", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_9", + "schematic_component_id": "schematic_component_0", + "center": { + "x": -0.5525000000000007, + "y": -6.525000000000002 + }, + "source_port_id": "source_port_9", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 10, + "true_ccw_index": 9, + "display_pin_label": "A5", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_10", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -6.525000000000002 + }, + "source_port_id": "source_port_10", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 11, + "true_ccw_index": 10, + "display_pin_label": "B7", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_11", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -6.325000000000002 + }, + "source_port_id": "source_port_11", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 12, + "true_ccw_index": 11, + "display_pin_label": "A6", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_12", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -6.125000000000002 + }, + "source_port_id": "source_port_12", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 13, + "true_ccw_index": 12, + "display_pin_label": "A7", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_13", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -5.925000000000002 + }, + "source_port_id": "source_port_13", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 14, + "true_ccw_index": 13, + "display_pin_label": "B6", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_14", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -5.725000000000001 + }, + "source_port_id": "source_port_14", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 15, + "true_ccw_index": 14, + "display_pin_label": "B5", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_15", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -5.525000000000002 + }, + "source_port_id": "source_port_15", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 16, + "true_ccw_index": 15, + "display_pin_label": "B1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_16", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -5.325000000000002 + }, + "source_port_id": "source_port_16", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 17, + "true_ccw_index": 16, + "display_pin_label": "A12", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_17", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -5.125000000000002 + }, + "source_port_id": "source_port_17", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 18, + "true_ccw_index": 17, + "display_pin_label": "A8", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_18", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -4.925000000000002 + }, + "source_port_id": "source_port_18", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 19, + "true_ccw_index": 18, + "display_pin_label": "B4", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_19", + "schematic_component_id": "schematic_component_0", + "center": { + "x": 1.4474999999999993, + "y": -4.725000000000001 + }, + "source_port_id": "source_port_19", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 20, + "true_ccw_index": 19, + "display_pin_label": "A9", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_20", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 2.1474999999999995, + "y": -5.925000000000002 + }, + "source_port_id": "source_port_20", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_21", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 2.1474999999999995, + "y": -6.125000000000002 + }, + "source_port_id": "source_port_21", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_22", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 2.1474999999999995, + "y": -6.325000000000002 + }, + "source_port_id": "source_port_22", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_23", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 4.147499999999999, + "y": -6.325000000000002 + }, + "source_port_id": "source_port_23", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 4, + "true_ccw_index": 3, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_24", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 4.147499999999999, + "y": -6.125000000000002 + }, + "source_port_id": "source_port_24", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 5, + "true_ccw_index": 4, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_25", + "schematic_component_id": "schematic_component_1", + "center": { + "x": 4.147499999999999, + "y": -5.925000000000002 + }, + "source_port_id": "source_port_25", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 6, + "true_ccw_index": 5, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_26", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -8.2575, + "y": -1.2916666666666654 + }, + "source_port_id": "source_port_26", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "VIN", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_27", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -8.2575, + "y": -1.4916666666666654 + }, + "source_port_id": "source_port_27", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "GND", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_28", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -8.2575, + "y": -1.6916666666666653 + }, + "source_port_id": "source_port_28", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "EN", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_29", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -6.2575, + "y": -1.5916666666666655 + }, + "source_port_id": "source_port_29", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "NC", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_30", + "schematic_component_id": "schematic_component_2", + "center": { + "x": -6.2575, + "y": -1.3916666666666653 + }, + "source_port_id": "source_port_30", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 5, + "true_ccw_index": 4, + "display_pin_label": "VOUT", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_31", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 2.6750000000000016 + }, + "source_port_id": "source_port_31", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "IOVDD6", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_32", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 2.4750000000000014 + }, + "source_port_id": "source_port_32", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "GPIO0", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_33", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 2.2750000000000017 + }, + "source_port_id": "source_port_33", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "GPIO1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_34", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 2.0750000000000015 + }, + "source_port_id": "source_port_34", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "GPIO2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_35", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 1.8750000000000013 + }, + "source_port_id": "source_port_35", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 5, + "true_ccw_index": 4, + "display_pin_label": "GPIO3", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_36", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 1.6750000000000016 + }, + "source_port_id": "source_port_36", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 6, + "true_ccw_index": 5, + "display_pin_label": "GPIO4", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_37", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 1.4750000000000016 + }, + "source_port_id": "source_port_37", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 7, + "true_ccw_index": 6, + "display_pin_label": "GPIO5", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_38", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 1.2750000000000017 + }, + "source_port_id": "source_port_38", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 8, + "true_ccw_index": 7, + "display_pin_label": "GPIO6", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_39", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 1.0750000000000017 + }, + "source_port_id": "source_port_39", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 9, + "true_ccw_index": 8, + "display_pin_label": "GPIO7", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_40", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 0.8750000000000018 + }, + "source_port_id": "source_port_40", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 10, + "true_ccw_index": 9, + "display_pin_label": "IOVDD5", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_41", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 0.6750000000000018 + }, + "source_port_id": "source_port_41", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 11, + "true_ccw_index": 10, + "display_pin_label": "GPIO8", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_42", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 0.47500000000000187 + }, + "source_port_id": "source_port_42", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 12, + "true_ccw_index": 11, + "display_pin_label": "GPIO9", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_43", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 0.2750000000000017 + }, + "source_port_id": "source_port_43", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 13, + "true_ccw_index": 12, + "display_pin_label": "GPIO10", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_44", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": 0.07500000000000151 + }, + "source_port_id": "source_port_44", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 14, + "true_ccw_index": 13, + "display_pin_label": "GPIO11", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_45", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -0.12499999999999867 + }, + "source_port_id": "source_port_45", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 15, + "true_ccw_index": 14, + "display_pin_label": "GPIO12", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_46", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -0.32499999999999885 + }, + "source_port_id": "source_port_46", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 16, + "true_ccw_index": 15, + "display_pin_label": "GPIO13", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_47", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -0.524999999999999 + }, + "source_port_id": "source_port_47", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 17, + "true_ccw_index": 16, + "display_pin_label": "GPIO14", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_48", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -0.7249999999999992 + }, + "source_port_id": "source_port_48", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 18, + "true_ccw_index": 17, + "display_pin_label": "GPIO15", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_49", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -0.9249999999999994 + }, + "source_port_id": "source_port_49", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 19, + "true_ccw_index": 18, + "display_pin_label": "TESTEN", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_50", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -1.1249999999999996 + }, + "source_port_id": "source_port_50", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 20, + "true_ccw_index": 19, + "display_pin_label": "XIN", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_51", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -1.3249999999999993 + }, + "source_port_id": "source_port_51", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 21, + "true_ccw_index": 20, + "display_pin_label": "XOUT", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_52", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -1.5249999999999995 + }, + "source_port_id": "source_port_52", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 22, + "true_ccw_index": 21, + "display_pin_label": "IOVDD4", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_53", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -1.7249999999999996 + }, + "source_port_id": "source_port_53", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 23, + "true_ccw_index": 22, + "display_pin_label": "DVDD2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_54", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -1.9249999999999998 + }, + "source_port_id": "source_port_54", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 24, + "true_ccw_index": 23, + "display_pin_label": "SWCLK", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_55", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -2.125 + }, + "source_port_id": "source_port_55", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 25, + "true_ccw_index": 24, + "display_pin_label": "SWD", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_56", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -2.325 + }, + "source_port_id": "source_port_56", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 26, + "true_ccw_index": 25, + "display_pin_label": "RUN", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_57", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -2.5250000000000004 + }, + "source_port_id": "source_port_57", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 27, + "true_ccw_index": 26, + "display_pin_label": "GPIO16", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_58", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -2.7250000000000005 + }, + "source_port_id": "source_port_58", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 28, + "true_ccw_index": 27, + "display_pin_label": "GPIO17", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_59", + "schematic_component_id": "schematic_component_3", + "center": { + "x": -0.5525000000000007, + "y": -2.9250000000000007 + }, + "source_port_id": "source_port_59", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 29, + "true_ccw_index": 28, + "display_pin_label": "GPIO18", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_60", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -2.8250000000000006 + }, + "source_port_id": "source_port_60", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 30, + "true_ccw_index": 29, + "display_pin_label": "GPIO19", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_61", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -2.6250000000000004 + }, + "source_port_id": "source_port_61", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 31, + "true_ccw_index": 30, + "display_pin_label": "GPIO20", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_62", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -2.4250000000000007 + }, + "source_port_id": "source_port_62", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 32, + "true_ccw_index": 31, + "display_pin_label": "GPIO21", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_63", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -2.2250000000000005 + }, + "source_port_id": "source_port_63", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 33, + "true_ccw_index": 32, + "display_pin_label": "IOVDD3", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_64", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -2.0250000000000004 + }, + "source_port_id": "source_port_64", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 34, + "true_ccw_index": 33, + "display_pin_label": "GPIO22", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_65", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -1.8250000000000006 + }, + "source_port_id": "source_port_65", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 35, + "true_ccw_index": 34, + "display_pin_label": "GPIO23", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_66", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -1.6250000000000007 + }, + "source_port_id": "source_port_66", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 36, + "true_ccw_index": 35, + "display_pin_label": "GPIO24", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_67", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -1.4250000000000007 + }, + "source_port_id": "source_port_67", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 37, + "true_ccw_index": 36, + "display_pin_label": "GPIO25", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_68", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -1.2250000000000008 + }, + "source_port_id": "source_port_68", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 38, + "true_ccw_index": 37, + "display_pin_label": "GPIO26_ADC0", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_69", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -1.0250000000000008 + }, + "source_port_id": "source_port_69", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 39, + "true_ccw_index": 38, + "display_pin_label": "GPIO27_ADC1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_70", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -0.8250000000000008 + }, + "source_port_id": "source_port_70", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 40, + "true_ccw_index": 39, + "display_pin_label": "GPIO28_ADC2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_71", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -0.6250000000000009 + }, + "source_port_id": "source_port_71", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 41, + "true_ccw_index": 40, + "display_pin_label": "GPIO29_ADC3", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_72", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -0.4250000000000007 + }, + "source_port_id": "source_port_72", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 42, + "true_ccw_index": 41, + "display_pin_label": "IOVDD2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_73", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -0.22500000000000053 + }, + "source_port_id": "source_port_73", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 43, + "true_ccw_index": 42, + "display_pin_label": "ADC_AVDD", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_74", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": -0.025000000000000355 + }, + "source_port_id": "source_port_74", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 44, + "true_ccw_index": 43, + "display_pin_label": "VREG_IN", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_75", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 0.17499999999999982 + }, + "source_port_id": "source_port_75", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 45, + "true_ccw_index": 44, + "display_pin_label": "VREG_VOUT", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_76", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 0.375 + }, + "source_port_id": "source_port_76", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 46, + "true_ccw_index": 45, + "display_pin_label": "USB_DM", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_77", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 0.5750000000000002 + }, + "source_port_id": "source_port_77", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 47, + "true_ccw_index": 46, + "display_pin_label": "USB_DP", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_78", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 0.7750000000000004 + }, + "source_port_id": "source_port_78", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 48, + "true_ccw_index": 47, + "display_pin_label": "USB_VDD", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_79", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 0.9750000000000005 + }, + "source_port_id": "source_port_79", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 49, + "true_ccw_index": 48, + "display_pin_label": "IOVDD1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_80", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 1.1750000000000003 + }, + "source_port_id": "source_port_80", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 50, + "true_ccw_index": 49, + "display_pin_label": "DVDD1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_81", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 1.3750000000000004 + }, + "source_port_id": "source_port_81", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 51, + "true_ccw_index": 50, + "display_pin_label": "QSPI_SD3", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_82", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 1.5750000000000006 + }, + "source_port_id": "source_port_82", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 52, + "true_ccw_index": 51, + "display_pin_label": "QSPI_SCLK", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_83", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 1.7750000000000008 + }, + "source_port_id": "source_port_83", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 53, + "true_ccw_index": 52, + "display_pin_label": "QSPI_SD0", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_84", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 1.975000000000001 + }, + "source_port_id": "source_port_84", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 54, + "true_ccw_index": 53, + "display_pin_label": "QSPI_SD2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_85", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 2.175000000000001 + }, + "source_port_id": "source_port_85", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 55, + "true_ccw_index": 54, + "display_pin_label": "QSPI_SD1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_86", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 2.3750000000000013 + }, + "source_port_id": "source_port_86", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 56, + "true_ccw_index": 55, + "display_pin_label": "QSPI_SS", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_87", + "schematic_component_id": "schematic_component_3", + "center": { + "x": 1.4474999999999993, + "y": 2.5750000000000015 + }, + "source_port_id": "source_port_87", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 57, + "true_ccw_index": 56, + "display_pin_label": "GND", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_88", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 2.1474999999999995, + "y": 2.3750000000000018 + }, + "source_port_id": "source_port_88", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_89", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 2.1474999999999995, + "y": 2.1750000000000016 + }, + "source_port_id": "source_port_89", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_90", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 2.1474999999999995, + "y": 1.9750000000000014 + }, + "source_port_id": "source_port_90", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "IO2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_91", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 2.1474999999999995, + "y": 1.7750000000000015 + }, + "source_port_id": "source_port_91", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "GND", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_92", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 4.147499999999999, + "y": 1.7750000000000015 + }, + "source_port_id": "source_port_92", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 5, + "true_ccw_index": 4, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_93", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 4.147499999999999, + "y": 1.9750000000000014 + }, + "source_port_id": "source_port_93", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 6, + "true_ccw_index": 5, + "display_pin_label": "CLK", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_94", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 4.147499999999999, + "y": 2.1750000000000016 + }, + "source_port_id": "source_port_94", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 7, + "true_ccw_index": 6, + "display_pin_label": "IO3", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_95", + "schematic_component_id": "schematic_component_4", + "center": { + "x": 4.147499999999999, + "y": 2.3750000000000018 + }, + "source_port_id": "source_port_95", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 8, + "true_ccw_index": 7, + "display_pin_label": "VCC", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_96", + "schematic_component_id": "schematic_component_5", + "center": { + "x": -3.252500000000001, + "y": -2.924999999999997 + }, + "source_port_id": "source_port_96", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "OSC1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_97", + "schematic_component_id": "schematic_component_5", + "center": { + "x": -3.252500000000001, + "y": -3.1249999999999973 + }, + "source_port_id": "source_port_97", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "GND1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_98", + "schematic_component_id": "schematic_component_5", + "center": { + "x": -1.2525000000000008, + "y": -3.1249999999999973 + }, + "source_port_id": "source_port_98", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "OSC2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_99", + "schematic_component_id": "schematic_component_5", + "center": { + "x": -1.2525000000000008, + "y": -2.924999999999997 + }, + "source_port_id": "source_port_99", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "GND2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_100", + "schematic_component_id": "schematic_component_6", + "center": { + "x": -1.8025000000000015, + "y": -1.6749999999999983 + }, + "source_port_id": "source_port_100", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 1, + "true_ccw_index": 3, + "display_pin_label": "SWCLK", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_101", + "schematic_component_id": "schematic_component_6", + "center": { + "x": -2.0025000000000017, + "y": -1.6749999999999983 + }, + "source_port_id": "source_port_101", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 2, + "true_ccw_index": 2, + "display_pin_label": "SWDIO", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_102", + "schematic_component_id": "schematic_component_6", + "center": { + "x": -2.2025000000000015, + "y": -1.6749999999999983 + }, + "source_port_id": "source_port_102", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 3, + "true_ccw_index": 1, + "display_pin_label": "GND", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_103", + "schematic_component_id": "schematic_component_6", + "center": { + "x": -2.4025000000000016, + "y": -1.6749999999999983 + }, + "source_port_id": "source_port_103", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 4, + "true_ccw_index": 0, + "display_pin_label": "V3_3", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_104", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 4.775000000000002 + }, + "source_port_id": "source_port_104", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "OUT2B", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_105", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 4.575000000000003 + }, + "source_port_id": "source_port_105", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "ENABLE", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_106", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 4.375000000000002 + }, + "source_port_id": "source_port_106", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 3, + "true_ccw_index": 2, + "display_pin_label": "GND2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_107", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 4.1750000000000025 + }, + "source_port_id": "source_port_107", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 4, + "true_ccw_index": 3, + "display_pin_label": "CP1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_108", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 3.9750000000000023 + }, + "source_port_id": "source_port_108", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 5, + "true_ccw_index": 4, + "display_pin_label": "CP2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_109", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 3.775000000000002 + }, + "source_port_id": "source_port_109", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 6, + "true_ccw_index": 5, + "display_pin_label": "VCP", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_110", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 3.5750000000000024 + }, + "source_port_id": "source_port_110", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 7, + "true_ccw_index": 6, + "display_pin_label": "NC3", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_111", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 3.3750000000000027 + }, + "source_port_id": "source_port_111", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 8, + "true_ccw_index": 7, + "display_pin_label": "VREG", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_112", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 3.1750000000000025 + }, + "source_port_id": "source_port_112", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 9, + "true_ccw_index": 8, + "display_pin_label": "MS1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_113", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 2.9750000000000023 + }, + "source_port_id": "source_port_113", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 10, + "true_ccw_index": 9, + "display_pin_label": "MS2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_114", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 2.7750000000000026 + }, + "source_port_id": "source_port_114", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 11, + "true_ccw_index": 10, + "display_pin_label": "MS3", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_115", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 2.575000000000003 + }, + "source_port_id": "source_port_115", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 12, + "true_ccw_index": 11, + "display_pin_label": "RESET", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_116", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 2.3750000000000027 + }, + "source_port_id": "source_port_116", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 13, + "true_ccw_index": 12, + "display_pin_label": "ROSC", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_117", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 2.1750000000000025 + }, + "source_port_id": "source_port_117", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 14, + "true_ccw_index": 13, + "display_pin_label": "SLEEP", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_118", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -3.252500000000001, + "y": 1.975000000000002 + }, + "source_port_id": "source_port_118", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 15, + "true_ccw_index": 14, + "display_pin_label": "VDD", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_119", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 2.075000000000002 + }, + "source_port_id": "source_port_119", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 16, + "true_ccw_index": 15, + "display_pin_label": "STEP", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_120", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 2.275000000000002 + }, + "source_port_id": "source_port_120", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 17, + "true_ccw_index": 16, + "display_pin_label": "REF", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_121", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 2.4750000000000023 + }, + "source_port_id": "source_port_121", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 18, + "true_ccw_index": 17, + "display_pin_label": "GND1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_122", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 2.6750000000000025 + }, + "source_port_id": "source_port_122", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 19, + "true_ccw_index": 18, + "display_pin_label": "DIR", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_123", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 2.875000000000002 + }, + "source_port_id": "source_port_123", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 20, + "true_ccw_index": 19, + "display_pin_label": "NC2", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_124", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 3.075000000000002 + }, + "source_port_id": "source_port_124", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 21, + "true_ccw_index": 20, + "display_pin_label": "OUT1B", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_125", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 3.275000000000002 + }, + "source_port_id": "source_port_125", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 22, + "true_ccw_index": 21, + "display_pin_label": "VBB1", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_126", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 3.4750000000000023 + }, + "source_port_id": "source_port_126", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 23, + "true_ccw_index": 22, + "display_pin_label": "SENSE1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_127", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 3.675000000000002 + }, + "source_port_id": "source_port_127", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 24, + "true_ccw_index": 23, + "display_pin_label": "OUT1A", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_128", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 3.8750000000000018 + }, + "source_port_id": "source_port_128", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 25, + "true_ccw_index": 24, + "display_pin_label": "NC1", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_129", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 4.075000000000002 + }, + "source_port_id": "source_port_129", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 26, + "true_ccw_index": 25, + "display_pin_label": "OUT2A", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_130", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 4.275000000000002 + }, + "source_port_id": "source_port_130", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 27, + "true_ccw_index": 26, + "display_pin_label": "SENSE2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_131", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 4.475000000000002 + }, + "source_port_id": "source_port_131", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 28, + "true_ccw_index": 27, + "display_pin_label": "VBB2", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_132", + "schematic_component_id": "schematic_component_7", + "center": { + "x": -1.2525000000000008, + "y": 4.6750000000000025 + }, + "source_port_id": "source_port_132", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 29, + "true_ccw_index": 28, + "display_pin_label": "PAD", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_133", + "schematic_component_id": "schematic_component_8", + "center": { + "x": 2.1474999999999995, + "y": 4.375000000000002 + }, + "source_port_id": "source_port_133", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_134", + "schematic_component_id": "schematic_component_8", + "center": { + "x": 2.1474999999999995, + "y": 4.1750000000000025 + }, + "source_port_id": "source_port_134", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_135", + "schematic_component_id": "schematic_component_8", + "center": { + "x": 4.147499999999999, + "y": 4.275000000000002 + }, + "source_port_id": "source_port_135", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 3, + "true_ccw_index": 2, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_136", + "schematic_component_id": "schematic_component_9", + "center": { + "x": -8.2575, + "y": 2.908333333333335 + }, + "source_port_id": "source_port_136", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_137", + "schematic_component_id": "schematic_component_9", + "center": { + "x": -6.257500000000001, + "y": 2.908333333333335 + }, + "source_port_id": "source_port_137", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_138", + "schematic_component_id": "schematic_component_10", + "center": { + "x": -8.2575, + "y": 1.1083333333333347 + }, + "source_port_id": "source_port_138", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "display_pin_label": "K", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_139", + "schematic_component_id": "schematic_component_10", + "center": { + "x": -6.257500000000001, + "y": 1.1083333333333347 + }, + "source_port_id": "source_port_139", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 2, + "true_ccw_index": 1, + "display_pin_label": "A", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_140", + "schematic_component_id": "schematic_component_11", + "center": { + "x": -11.467500000000001, + "y": 0.9750000000000014 + }, + "source_port_id": "source_port_140", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_141", + "schematic_component_id": "schematic_component_11", + "center": { + "x": -9.467500000000001, + "y": 0.9750000000000014 + }, + "source_port_id": "source_port_141", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_142", + "schematic_component_id": "schematic_component_12", + "center": { + "x": -0.5525000000000007, + "y": 4.6750000000000025 + }, + "source_port_id": "source_port_142", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 1, + "true_ccw_index": 0, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_143", + "schematic_component_id": "schematic_component_12", + "center": { + "x": -0.5525000000000007, + "y": 4.475000000000003 + }, + "source_port_id": "source_port_143", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "true_ccw_index": 1, + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_144", + "schematic_component_id": "schematic_component_12", + "center": { + "x": 1.4474999999999993, + "y": 4.475000000000003 + }, + "source_port_id": "source_port_144", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 3, + "true_ccw_index": 2, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_145", + "schematic_component_id": "schematic_component_12", + "center": { + "x": 1.4474999999999993, + "y": 4.6750000000000025 + }, + "source_port_id": "source_port_145", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 4, + "true_ccw_index": 3, + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_146", + "schematic_component_id": "schematic_component_13", + "center": { + "x": -1.2525000000000013, + "y": -6.525000000000002 + }, + "source_port_id": "source_port_146", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_147", + "schematic_component_id": "schematic_component_13", + "center": { + "x": -2.352500000000001, + "y": -6.525000000000002 + }, + "source_port_id": "source_port_147", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_148", + "schematic_component_id": "schematic_component_14", + "center": { + "x": 2.291955349999999, + "y": -4.675000000000002 + }, + "source_port_id": "source_port_148", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_149", + "schematic_component_id": "schematic_component_14", + "center": { + "x": 2.291955349999999, + "y": -3.5750000000000015 + }, + "source_port_id": "source_port_149", + "facing_direction": "up", + "distance_from_component_edge": 0.4, + "side_of_component": "top", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_150", + "schematic_component_id": "schematic_component_15", + "center": { + "x": 2.2919553499999985, + "y": -2.875000000000001 + }, + "source_port_id": "source_port_150", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_151", + "schematic_component_id": "schematic_component_15", + "center": { + "x": 2.2919553499999985, + "y": -1.7750000000000012 + }, + "source_port_id": "source_port_151", + "facing_direction": "up", + "distance_from_component_edge": 0.4, + "side_of_component": "top", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_152", + "schematic_component_id": "schematic_component_16", + "center": { + "x": 4.091955349999999, + "y": -4.675000000000002 + }, + "source_port_id": "source_port_152", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_153", + "schematic_component_id": "schematic_component_16", + "center": { + "x": 4.091955349999999, + "y": -3.575000000000002 + }, + "source_port_id": "source_port_153", + "facing_direction": "up", + "distance_from_component_edge": 0.4, + "side_of_component": "top", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_154", + "schematic_component_id": "schematic_component_17", + "center": { + "x": -10.567500000000003, + "y": -1.2449999999999992 + }, + "source_port_id": "source_port_154", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_155", + "schematic_component_id": "schematic_component_17", + "center": { + "x": -9.467500000000001, + "y": -1.2449999999999992 + }, + "source_port_id": "source_port_155", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_156", + "schematic_component_id": "schematic_component_18", + "center": { + "x": -7.357500000000001, + "y": -3.9116666666666653 + }, + "source_port_id": "source_port_156", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_157", + "schematic_component_id": "schematic_component_18", + "center": { + "x": -6.257500000000001, + "y": -3.9116666666666653 + }, + "source_port_id": "source_port_157", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_158", + "schematic_component_id": "schematic_component_19", + "center": { + "x": -7.357500000000001, + "y": -5.951666666666665 + }, + "source_port_id": "source_port_158", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_159", + "schematic_component_id": "schematic_component_19", + "center": { + "x": -6.257500000000001, + "y": -5.951666666666665 + }, + "source_port_id": "source_port_159", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_160", + "schematic_component_id": "schematic_component_20", + "center": { + "x": -9.6675, + "y": -3.9116666666666653 + }, + "source_port_id": "source_port_160", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_161", + "schematic_component_id": "schematic_component_20", + "center": { + "x": -8.567499999999999, + "y": -3.9116666666666653 + }, + "source_port_id": "source_port_161", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_162", + "schematic_component_id": "schematic_component_21", + "center": { + "x": -9.6675, + "y": -5.951666666666665 + }, + "source_port_id": "source_port_162", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_163", + "schematic_component_id": "schematic_component_21", + "center": { + "x": -8.567499999999999, + "y": -5.951666666666665 + }, + "source_port_id": "source_port_163", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_164", + "schematic_component_id": "schematic_component_22", + "center": { + "x": -11.9775, + "y": -3.2849999999999993 + }, + "source_port_id": "source_port_164", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_165", + "schematic_component_id": "schematic_component_22", + "center": { + "x": -10.877499999999998, + "y": -3.2849999999999993 + }, + "source_port_id": "source_port_165", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_166", + "schematic_component_id": "schematic_component_23", + "center": { + "x": -11.9775, + "y": -5.324999999999999 + }, + "source_port_id": "source_port_166", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_167", + "schematic_component_id": "schematic_component_23", + "center": { + "x": -10.877499999999998, + "y": -5.324999999999999 + }, + "source_port_id": "source_port_167", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_168", + "schematic_component_id": "schematic_component_24", + "center": { + "x": -11.9775, + "y": -7.364999999999999 + }, + "source_port_id": "source_port_168", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_169", + "schematic_component_id": "schematic_component_24", + "center": { + "x": -10.877499999999998, + "y": -7.364999999999999 + }, + "source_port_id": "source_port_169", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_170", + "schematic_component_id": "schematic_component_25", + "center": { + "x": -9.6675, + "y": -7.991666666666665 + }, + "source_port_id": "source_port_170", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_171", + "schematic_component_id": "schematic_component_25", + "center": { + "x": -8.567499999999999, + "y": -7.991666666666665 + }, + "source_port_id": "source_port_171", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_172", + "schematic_component_id": "schematic_component_26", + "center": { + "x": -3.9524999999999997, + "y": -2.9249999999999967 + }, + "source_port_id": "source_port_172", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_173", + "schematic_component_id": "schematic_component_26", + "center": { + "x": -5.052499999999999, + "y": -2.9249999999999967 + }, + "source_port_id": "source_port_173", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_174", + "schematic_component_id": "schematic_component_27", + "center": { + "x": -2.64695535, + "y": -4.744999999999997 + }, + "source_port_id": "source_port_174", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_175", + "schematic_component_id": "schematic_component_27", + "center": { + "x": -3.7469553499999995, + "y": -4.744999999999997 + }, + "source_port_id": "source_port_175", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_176", + "schematic_component_id": "schematic_component_28", + "center": { + "x": -1.3969553499999994, + "y": -4.374999999999997 + }, + "source_port_id": "source_port_176", + "facing_direction": "up", + "distance_from_component_edge": 0.4, + "side_of_component": "top", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_177", + "schematic_component_id": "schematic_component_28", + "center": { + "x": -1.3969553499999994, + "y": -5.474999999999997 + }, + "source_port_id": "source_port_177", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_178", + "schematic_component_id": "schematic_component_29", + "center": { + "x": 6.2575, + "y": 1.0333333333333385 + }, + "source_port_id": "source_port_178", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_179", + "schematic_component_id": "schematic_component_29", + "center": { + "x": 7.3575, + "y": 1.0333333333333385 + }, + "source_port_id": "source_port_179", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_180", + "schematic_component_id": "schematic_component_30", + "center": { + "x": 6.2575, + "y": -0.5555773666666604 + }, + "source_port_id": "source_port_180", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_181", + "schematic_component_id": "schematic_component_30", + "center": { + "x": 7.3575, + "y": -0.5555773666666604 + }, + "source_port_id": "source_port_181", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_182", + "schematic_component_id": "schematic_component_31", + "center": { + "x": 6.2575, + "y": -2.3700327166666604 + }, + "source_port_id": "source_port_182", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_183", + "schematic_component_id": "schematic_component_31", + "center": { + "x": 7.3575, + "y": -2.3700327166666604 + }, + "source_port_id": "source_port_183", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_184", + "schematic_component_id": "schematic_component_32", + "center": { + "x": -7.357500000000001, + "y": 4.902788683333334 + }, + "source_port_id": "source_port_184", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_185", + "schematic_component_id": "schematic_component_32", + "center": { + "x": -6.257500000000001, + "y": 4.902788683333334 + }, + "source_port_id": "source_port_185", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_186", + "schematic_component_id": "schematic_component_33", + "center": { + "x": -7.357500000000001, + "y": 6.491699383333333 + }, + "source_port_id": "source_port_186", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_187", + "schematic_component_id": "schematic_component_33", + "center": { + "x": -6.257500000000001, + "y": 6.491699383333333 + }, + "source_port_id": "source_port_187", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_188", + "schematic_component_id": "schematic_component_34", + "center": { + "x": 6.2575, + "y": 2.6222440333333377 + }, + "source_port_id": "source_port_188", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_189", + "schematic_component_id": "schematic_component_34", + "center": { + "x": 7.3575, + "y": 2.6222440333333377 + }, + "source_port_id": "source_port_189", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_190", + "schematic_component_id": "schematic_component_35", + "center": { + "x": 6.2575, + "y": 4.211154733333337 + }, + "source_port_id": "source_port_190", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_191", + "schematic_component_id": "schematic_component_35", + "center": { + "x": 7.3575, + "y": 4.211154733333337 + }, + "source_port_id": "source_port_191", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_192", + "schematic_component_id": "schematic_component_36", + "center": { + "x": 6.2575, + "y": -4.18448806666666 + }, + "source_port_id": "source_port_192", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_193", + "schematic_component_id": "schematic_component_36", + "center": { + "x": 7.3575, + "y": -4.18448806666666 + }, + "source_port_id": "source_port_193", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_194", + "schematic_component_id": "schematic_component_37", + "center": { + "x": -3.9524999999999997, + "y": 3.4750000000000028 + }, + "source_port_id": "source_port_194", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_195", + "schematic_component_id": "schematic_component_37", + "center": { + "x": -5.052499999999999, + "y": 3.4750000000000028 + }, + "source_port_id": "source_port_195", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_196", + "schematic_component_id": "schematic_component_38", + "center": { + "x": -1.2525000000000013, + "y": 6.025000000000001 + }, + "source_port_id": "source_port_196", + "facing_direction": "down", + "distance_from_component_edge": 0.4, + "side_of_component": "bottom", + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_197", + "schematic_component_id": "schematic_component_38", + "center": { + "x": -1.2525000000000013, + "y": 7.125000000000001 + }, + "source_port_id": "source_port_197", + "facing_direction": "up", + "distance_from_component_edge": 0.4, + "side_of_component": "top", + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_198", + "schematic_component_id": "schematic_component_39", + "center": { + "x": -11.9775, + "y": -9.405 + }, + "source_port_id": "source_port_198", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_199", + "schematic_component_id": "schematic_component_39", + "center": { + "x": -10.877499999999998, + "y": -9.405 + }, + "source_port_id": "source_port_199", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_200", + "schematic_component_id": "schematic_component_40", + "center": { + "x": -3.9524999999999997, + "y": 2.2605446500000035 + }, + "source_port_id": "source_port_200", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_201", + "schematic_component_id": "schematic_component_40", + "center": { + "x": -5.052499999999999, + "y": 2.2605446500000035 + }, + "source_port_id": "source_port_201", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_202", + "schematic_component_id": "schematic_component_41", + "center": { + "x": -2.5025000000000013, + "y": 6.395000000000001 + }, + "source_port_id": "source_port_202", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_203", + "schematic_component_id": "schematic_component_41", + "center": { + "x": -3.602500000000002, + "y": 6.395000000000001 + }, + "source_port_id": "source_port_203", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_204", + "schematic_component_id": "schematic_component_42", + "center": { + "x": -3.9524999999999997, + "y": 4.689455350000001 + }, + "source_port_id": "source_port_204", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "side_of_component": "right", + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_205", + "schematic_component_id": "schematic_component_42", + "center": { + "x": -5.052499999999999, + "y": 4.689455350000001 + }, + "source_port_id": "source_port_205", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "side_of_component": "left", + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_206", + "schematic_component_id": "schematic_component_43", + "center": { + "x": -10.567500000000003, + "y": 3.195000000000001 + }, + "source_port_id": "source_port_206", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_207", + "schematic_component_id": "schematic_component_43", + "center": { + "x": -9.467500000000001, + "y": 3.195000000000001 + }, + "source_port_id": "source_port_207", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_208", + "schematic_component_id": "schematic_component_44", + "center": { + "x": -9.6675, + "y": 5.235000000000001 + }, + "source_port_id": "source_port_208", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "pos", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_209", + "schematic_component_id": "schematic_component_44", + "center": { + "x": -8.567499999999999, + "y": 5.235000000000001 + }, + "source_port_id": "source_port_209", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "neg", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_210", + "schematic_component_id": "schematic_component_45", + "center": { + "x": 3.947499999999999, + "y": -0.9305446500000012 + }, + "source_port_id": "source_port_210", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_211", + "schematic_component_id": "schematic_component_45", + "center": { + "x": 5.027499999999999, + "y": -0.9305446500000012 + }, + "source_port_id": "source_port_211", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": false + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_212", + "schematic_component_id": "schematic_component_46", + "center": { + "x": 2.147499999999999, + "y": -0.9305446500000014 + }, + "source_port_id": "source_port_212", + "facing_direction": "left", + "distance_from_component_edge": 0.4, + "pin_number": 1, + "display_pin_label": "anode", + "is_connected": true + }, + { + "type": "schematic_port", + "schematic_port_id": "schematic_port_213", + "schematic_component_id": "schematic_component_46", + "center": { + "x": 3.2474999999999996, + "y": -0.9305446500000014 + }, + "source_port_id": "source_port_213", + "facing_direction": "right", + "distance_from_component_edge": 0.4, + "pin_number": 2, + "display_pin_label": "cathode", + "is_connected": true + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_0", + "source_trace_id": "solver_J_USB.10-R_CC1.1", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -6.525000000000002 + }, + "to": { + "x": -1.252500000000001, + "y": -6.525000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net5" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_1", + "source_trace_id": "solver_J_USB.14-J_USB.12", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -5.925000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -5.925000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -5.925000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -6.325000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -6.325000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -6.325000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -5.925000000000002 + }, + { + "x": 1.6474999999999993, + "y": -6.325000000000002 + }, + { + "x": 1.6474999999999993, + "y": -6.125000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_2", + "source_trace_id": "solver_U_ESD.1-J_USB.14", + "edges": [ + { + "from": { + "x": 2.1474999999999995, + "y": -5.925000000000002 + }, + "to": { + "x": 1.8349999999999995, + "y": -5.925000000000002 + } + }, + { + "from": { + "x": 1.8349999999999995, + "y": -5.925000000000002 + }, + "to": { + "x": 1.7599999999999996, + "y": -5.925000000000002 + }, + "is_crossing": true + }, + { + "from": { + "x": 1.7599999999999996, + "y": -5.925000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -5.925000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -5.925000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net7" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_3", + "source_trace_id": "solver_J_USB.13-J_USB.11", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -6.125000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -6.125000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -6.125000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -6.525000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -6.525000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -6.525000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -6.325000000000002 + }, + { + "x": 1.6474999999999993, + "y": -6.125000000000002 + }, + { + "x": 1.6474999999999993, + "y": -6.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_4", + "source_trace_id": "solver_U_ESD.3-J_USB.11", + "edges": [ + { + "from": { + "x": 2.1474999999999995, + "y": -6.325000000000002 + }, + "to": { + "x": 1.9474999999999996, + "y": -6.325000000000002 + } + }, + { + "from": { + "x": 1.9474999999999996, + "y": -6.325000000000002 + }, + "to": { + "x": 1.7974999999999994, + "y": -6.325000000000002 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": -6.325000000000002 + }, + "to": { + "x": 1.7974999999999994, + "y": -6.525000000000002 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": -6.525000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -6.525000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -6.525000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -6.525000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -6.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net8" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_5", + "source_trace_id": "solver_U_ESD.4-R_USB_DN.1", + "edges": [ + { + "from": { + "x": 4.147499999999999, + "y": -6.325000000000002 + }, + "to": { + "x": 4.347499999999999, + "y": -6.325000000000002 + } + }, + { + "from": { + "x": 4.347499999999999, + "y": -6.325000000000002 + }, + "to": { + "x": 4.347499999999999, + "y": -5.500000000000002 + } + }, + { + "from": { + "x": 4.347499999999999, + "y": -5.500000000000002 + }, + "to": { + "x": 4.091955349999999, + "y": -5.500000000000002 + } + }, + { + "from": { + "x": 4.091955349999999, + "y": -5.500000000000002 + }, + "to": { + "x": 4.091955349999999, + "y": -4.675000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net11" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_6", + "source_trace_id": "solver_Y1.1-C_XIN_1.1", + "edges": [ + { + "from": { + "x": -3.252500000000001, + "y": -2.924999999999997 + }, + "to": { + "x": -3.9524999999999997, + "y": -2.9249999999999967 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net14" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_7", + "source_trace_id": "solver_U_MCU.56-U_FLASH.1", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 2.3750000000000013 + }, + "to": { + "x": 1.7599999999999993, + "y": 2.3750000000000013 + } + }, + { + "from": { + "x": 1.7599999999999993, + "y": 2.3750000000000013 + }, + "to": { + "x": 1.8349999999999993, + "y": 2.3750000000000018 + }, + "is_crossing": true + }, + { + "from": { + "x": 1.8349999999999993, + "y": 2.3750000000000018 + }, + "to": { + "x": 2.1474999999999995, + "y": 2.3750000000000018 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net16" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_8", + "source_trace_id": "solver_U_MCU.55-U_FLASH.2", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 2.175000000000001 + }, + "to": { + "x": 1.7599999999999993, + "y": 2.175000000000001 + } + }, + { + "from": { + "x": 1.7599999999999993, + "y": 2.175000000000001 + }, + "to": { + "x": 1.8349999999999993, + "y": 2.1750000000000016 + }, + "is_crossing": true + }, + { + "from": { + "x": 1.8349999999999993, + "y": 2.1750000000000016 + }, + "to": { + "x": 2.1474999999999995, + "y": 2.1750000000000016 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net17" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_9", + "source_trace_id": "solver_U_MCU.54-U_FLASH.3", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 1.975000000000001 + }, + "to": { + "x": 1.7599999999999993, + "y": 1.9750000000000012 + } + }, + { + "from": { + "x": 1.7599999999999993, + "y": 1.9750000000000012 + }, + "to": { + "x": 1.8349999999999993, + "y": 1.9750000000000012 + }, + "is_crossing": true + }, + { + "from": { + "x": 1.8349999999999993, + "y": 1.9750000000000012 + }, + "to": { + "x": 2.1474999999999995, + "y": 1.9750000000000014 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net18" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_10", + "source_trace_id": "solver_U_MCU.24-J_SWD.1", + "edges": [ + { + "from": { + "x": -0.5525000000000009, + "y": -1.9249999999999998 + }, + "to": { + "x": -1.8025000000000015, + "y": -1.9249999999999998 + } + }, + { + "from": { + "x": -1.8025000000000015, + "y": -1.9249999999999998 + }, + "to": { + "x": -1.8025000000000015, + "y": -1.6749999999999983 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net22" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_11", + "source_trace_id": "solver_U_MCU.25-J_SWD.2", + "edges": [ + { + "from": { + "x": -0.5525000000000009, + "y": -2.125 + }, + "to": { + "x": -2.0025000000000017, + "y": -2.125 + } + }, + { + "from": { + "x": -2.0025000000000017, + "y": -2.125 + }, + "to": { + "x": -2.0025000000000017, + "y": -1.6749999999999983 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net23" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_12", + "source_trace_id": "solver_U_MCU.4-U_DRV.16", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": 2.0750000000000015 + }, + "to": { + "x": -0.7150000000000006, + "y": 2.0750000000000015 + } + }, + { + "from": { + "x": -0.7150000000000006, + "y": 2.0750000000000015 + }, + "to": { + "x": -0.7900000000000007, + "y": 2.0750000000000015 + }, + "is_crossing": true + }, + { + "from": { + "x": -0.7900000000000007, + "y": 2.0750000000000015 + }, + "to": { + "x": -0.8650000000000007, + "y": 2.0750000000000015 + } + }, + { + "from": { + "x": -0.8650000000000007, + "y": 2.0750000000000015 + }, + "to": { + "x": -0.9400000000000006, + "y": 2.075000000000002 + }, + "is_crossing": true + }, + { + "from": { + "x": -0.9400000000000006, + "y": 2.075000000000002 + }, + "to": { + "x": -1.2525000000000008, + "y": 2.075000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net24" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_13", + "source_trace_id": "solver_U_MCU.5-U_DRV.19", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": 1.8750000000000013 + }, + "to": { + "x": -0.7525000000000006, + "y": 1.8750000000000013 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": 1.8750000000000013 + }, + "to": { + "x": -0.9025000000000007, + "y": 1.8750000000000013 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 1.8750000000000013 + }, + "to": { + "x": -0.9025000000000007, + "y": 2.6750000000000025 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 2.6750000000000025 + }, + "to": { + "x": -1.0525000000000009, + "y": 2.6750000000000025 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 2.6750000000000025 + }, + "to": { + "x": -1.2525000000000008, + "y": 2.6750000000000025 + } + } + ], + "junctions": [ + { + "x": -1.0525000000000009, + "y": 2.6750000000000025 + }, + { + "x": -0.7525000000000006, + "y": 1.8750000000000013 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net25" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_14", + "source_trace_id": "solver_U_DRV.8-C_DRV_VREG.1", + "edges": [ + { + "from": { + "x": -3.252500000000001, + "y": 3.3750000000000027 + }, + "to": { + "x": -3.452500000000001, + "y": 3.3750000000000027 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 3.3750000000000027 + }, + "to": { + "x": -3.6025, + "y": 3.3750000000000027 + } + }, + { + "from": { + "x": -3.6025, + "y": 3.3750000000000027 + }, + "to": { + "x": -3.6025, + "y": 2.2605446500000035 + } + }, + { + "from": { + "x": -3.6025, + "y": 2.2605446500000035 + }, + "to": { + "x": -3.7524999999999995, + "y": 2.2605446500000035 + } + }, + { + "from": { + "x": -3.7524999999999995, + "y": 2.2605446500000035 + }, + "to": { + "x": -3.9524999999999997, + "y": 2.2605446500000035 + } + } + ], + "junctions": [ + { + "x": -3.452500000000001, + "y": 3.3750000000000027 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net32" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_15", + "source_trace_id": "solver_U_DRV.6-C_DRV_VCP.1", + "edges": [ + { + "from": { + "x": -3.252500000000001, + "y": 3.775000000000002 + }, + "to": { + "x": -3.452500000000001, + "y": 3.775000000000002 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 3.775000000000002 + }, + "to": { + "x": -3.6025, + "y": 3.775000000000002 + } + }, + { + "from": { + "x": -3.6025, + "y": 3.775000000000002 + }, + "to": { + "x": -3.6025, + "y": 4.689455350000001 + } + }, + { + "from": { + "x": -3.6025, + "y": 4.689455350000001 + }, + "to": { + "x": -3.7524999999999995, + "y": 4.689455350000001 + } + }, + { + "from": { + "x": -3.7524999999999995, + "y": 4.689455350000001 + }, + "to": { + "x": -3.9524999999999997, + "y": 4.689455350000001 + } + } + ], + "junctions": [ + { + "x": -3.452500000000001, + "y": 3.775000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net35" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_16", + "source_trace_id": "solver_U_DRV.27-R_SENSE2.1", + "edges": [ + { + "from": { + "x": -1.2525000000000004, + "y": 4.275000000000002 + }, + "to": { + "x": -1.0525000000000002, + "y": 4.275000000000002 + } + }, + { + "from": { + "x": -1.0525000000000002, + "y": 4.275000000000002 + }, + "to": { + "x": -1.0525000000000002, + "y": 5.150000000000002 + } + }, + { + "from": { + "x": -1.0525000000000002, + "y": 5.150000000000002 + }, + "to": { + "x": -1.2525000000000013, + "y": 5.150000000000002 + } + }, + { + "from": { + "x": -1.2525000000000013, + "y": 5.150000000000002 + }, + "to": { + "x": -1.2525000000000013, + "y": 6.025000000000001 + } + } + ], + "junctions": [ + { + "x": -1.0525000000000002, + "y": 4.275000000000002 + }, + { + "x": -1.0525000000000009, + "y": 4.6750000000000025 + }, + { + "x": -1.0525000000000009, + "y": 4.475000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net37" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_17", + "source_trace_id": "solver_J_PWR.2-D_REV.2", + "edges": [ + { + "from": { + "x": -6.257500000000001, + "y": 2.908333333333335 + }, + "to": { + "x": -6.057500000000001, + "y": 2.908333333333335 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": 2.908333333333335 + }, + "to": { + "x": -6.057500000000001, + "y": 1.1083333333333347 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": 1.1083333333333347 + }, + "to": { + "x": -6.257500000000001, + "y": 1.1083333333333347 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net38" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_18", + "source_trace_id": "solver_U_DRV.24-J_MOTOR.1", + "edges": [ + { + "from": { + "x": -1.2525000000000008, + "y": 3.675000000000002 + }, + "to": { + "x": -1.0525000000000009, + "y": 3.675000000000002 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 3.675000000000002 + }, + "to": { + "x": -0.9025000000000007, + "y": 3.675000000000002 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 3.675000000000002 + }, + "to": { + "x": -0.9025000000000007, + "y": 4.6750000000000025 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 4.6750000000000025 + }, + "to": { + "x": -0.7525000000000006, + "y": 4.6750000000000025 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": 4.6750000000000025 + }, + "to": { + "x": -0.5525000000000007, + "y": 4.6750000000000025 + } + } + ], + "junctions": [ + { + "x": -0.9025000000000007, + "y": 3.675000000000002 + }, + { + "x": -0.9025000000000007, + "y": 4.475000000000003 + }, + { + "x": -1.0525000000000009, + "y": 3.675000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net39" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_19", + "source_trace_id": "solver_U_DRV.21-J_MOTOR.2", + "edges": [ + { + "from": { + "x": -1.2525000000000008, + "y": 3.075000000000002 + }, + "to": { + "x": -1.0525000000000009, + "y": 3.075000000000002 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 3.075000000000002 + }, + "to": { + "x": -0.9025000000000007, + "y": 3.075000000000002 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 3.075000000000002 + }, + "to": { + "x": -0.9025000000000007, + "y": 4.475000000000003 + } + }, + { + "from": { + "x": -0.9025000000000007, + "y": 4.475000000000003 + }, + "to": { + "x": -0.7525000000000006, + "y": 4.475000000000003 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": 4.475000000000003 + }, + "to": { + "x": -0.5525000000000007, + "y": 4.475000000000003 + } + } + ], + "junctions": [ + { + "x": -0.9025000000000007, + "y": 3.675000000000002 + }, + { + "x": -0.9025000000000007, + "y": 4.475000000000003 + }, + { + "x": -1.0525000000000009, + "y": 3.075000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net40" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_20", + "source_trace_id": "solver_U_MCU.37-R_STAT.1", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -1.4250000000000007 + }, + "to": { + "x": 1.6474999999999993, + "y": -1.4250000000000007 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -1.4250000000000007 + }, + "to": { + "x": 1.7974999999999992, + "y": -1.4250000000000007 + } + }, + { + "from": { + "x": 1.7974999999999992, + "y": -1.4250000000000007 + }, + "to": { + "x": 1.7974999999999992, + "y": -0.9305446500000014 + } + }, + { + "from": { + "x": 1.7974999999999992, + "y": -0.9305446500000014 + }, + "to": { + "x": 1.9474999999999991, + "y": -0.9305446500000014 + } + }, + { + "from": { + "x": 1.9474999999999991, + "y": -0.9305446500000014 + }, + "to": { + "x": 2.147499999999999, + "y": -0.9305446500000014 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -1.4250000000000007 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net44" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_21", + "source_trace_id": "solver_R_STAT.2-D_STAT.1", + "edges": [ + { + "from": { + "x": 3.2474999999999996, + "y": -0.9305446500000014 + }, + "to": { + "x": 3.922499999999999, + "y": -0.9305446500000012 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net45" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_22", + "source_trace_id": "solver_C_USB_OUT.2-C_CORE.2", + "edges": [ + { + "from": { + "x": -6.257500000000001, + "y": -3.9116666666666653 + }, + "to": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + }, + "to": { + "x": -6.057500000000001, + "y": -5.951666666666665 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": -5.951666666666665 + }, + "to": { + "x": -6.257500000000001, + "y": -5.951666666666665 + } + } + ], + "junctions": [ + { + "x": -6.057500000000001, + "y": -3.9116666666666653 + }, + { + "x": -6.057500000000001, + "y": -4.531666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_23", + "source_trace_id": "solver_C_XIN_1.2-C_USB_OUT.2", + "edges": [ + { + "from": { + "x": -5.052499999999999, + "y": -2.9249999999999967 + }, + "to": { + "x": -5.2524999999999995, + "y": -2.9249999999999967 + } + }, + { + "from": { + "x": -5.2524999999999995, + "y": -2.9249999999999967 + }, + "to": { + "x": -5.655, + "y": -2.9249999999999967 + } + }, + { + "from": { + "x": -5.655, + "y": -2.9249999999999967 + }, + "to": { + "x": -5.655, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -5.655, + "y": -3.9116666666666653 + }, + "to": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + }, + "to": { + "x": -6.257500000000001, + "y": -3.9116666666666653 + } + } + ], + "junctions": [ + { + "x": -6.057500000000001, + "y": -3.9116666666666653 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_24", + "source_trace_id": "solver_C_XIN_2.2-Y1.2", + "edges": [ + { + "from": { + "x": -3.7469553499999995, + "y": -4.744999999999997 + }, + "to": { + "x": -3.9469553499999996, + "y": -4.744999999999997 + } + }, + { + "from": { + "x": -3.9469553499999996, + "y": -4.744999999999997 + }, + "to": { + "x": -3.9469553499999996, + "y": -3.1249999999999973 + } + }, + { + "from": { + "x": -3.9469553499999996, + "y": -3.1249999999999973 + }, + "to": { + "x": -3.2525000000000013, + "y": -3.1249999999999973 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_25", + "source_trace_id": "solver_C_MCU_1.2-C_USB_OUT.2", + "edges": [ + { + "from": { + "x": -8.567499999999999, + "y": -3.9116666666666653 + }, + "to": { + "x": -8.3675, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -8.3675, + "y": -3.9116666666666653 + }, + "to": { + "x": -8.3675, + "y": -4.531666666666665 + } + }, + { + "from": { + "x": -8.3675, + "y": -4.531666666666665 + }, + "to": { + "x": -6.057500000000001, + "y": -4.531666666666665 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": -4.531666666666665 + }, + "to": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": -3.9116666666666653 + }, + "to": { + "x": -6.257500000000001, + "y": -3.9116666666666653 + } + } + ], + "junctions": [ + { + "x": -6.057500000000001, + "y": -4.531666666666665 + }, + { + "x": -6.057500000000001, + "y": -3.9116666666666653 + }, + { + "x": -8.3675, + "y": -4.531666666666665 + }, + { + "x": -7.557500000000001, + "y": -4.531666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_26", + "source_trace_id": "solver_C_MCU_2.2-C_MCU_1.2", + "edges": [ + { + "from": { + "x": -8.567499999999999, + "y": -5.951666666666665 + }, + "to": { + "x": -8.3675, + "y": -5.951666666666665 + } + }, + { + "from": { + "x": -8.3675, + "y": -5.951666666666665 + }, + "to": { + "x": -8.3675, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -8.3675, + "y": -3.9116666666666653 + }, + "to": { + "x": -8.567499999999999, + "y": -3.9116666666666653 + } + } + ], + "junctions": [ + { + "x": -8.3675, + "y": -4.531666666666665 + }, + { + "x": -8.3675, + "y": -5.951666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_27", + "source_trace_id": "solver_C_FLASH.2-C_MCU_2.2", + "edges": [ + { + "from": { + "x": -8.567499999999999, + "y": -7.991666666666665 + }, + "to": { + "x": -8.3675, + "y": -7.991666666666665 + } + }, + { + "from": { + "x": -8.3675, + "y": -7.991666666666665 + }, + "to": { + "x": -8.3675, + "y": -5.951666666666665 + } + }, + { + "from": { + "x": -8.3675, + "y": -5.951666666666665 + }, + "to": { + "x": -8.567499999999999, + "y": -5.951666666666665 + } + } + ], + "junctions": [ + { + "x": -8.3675, + "y": -5.951666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_28", + "source_trace_id": "solver_C_MCU_5.2-C_DRV_VDD.2", + "edges": [ + { + "from": { + "x": -10.877499999999998, + "y": -7.364999999999999 + }, + "to": { + "x": -10.677499999999998, + "y": -7.364999999999999 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -7.364999999999999 + }, + "to": { + "x": -10.677499999999998, + "y": -9.405 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -9.405 + }, + "to": { + "x": -10.877499999999998, + "y": -9.405 + } + } + ], + "junctions": [ + { + "x": -10.677499999999998, + "y": -7.364999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_29", + "source_trace_id": "solver_C_MCU_4.2-C_MCU_5.2", + "edges": [ + { + "from": { + "x": -10.877499999999998, + "y": -5.324999999999999 + }, + "to": { + "x": -10.677499999999998, + "y": -5.324999999999999 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -5.324999999999999 + }, + "to": { + "x": -10.677499999999998, + "y": -7.364999999999999 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -7.364999999999999 + }, + "to": { + "x": -10.877499999999998, + "y": -7.364999999999999 + } + } + ], + "junctions": [ + { + "x": -10.677499999999998, + "y": -7.364999999999999 + }, + { + "x": -10.677499999999998, + "y": -5.324999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_30", + "source_trace_id": "solver_C_MCU_3.2-C_MCU_4.2", + "edges": [ + { + "from": { + "x": -10.877499999999998, + "y": -3.2849999999999993 + }, + "to": { + "x": -10.677499999999998, + "y": -3.2849999999999993 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -3.2849999999999993 + }, + "to": { + "x": -10.677499999999998, + "y": -5.324999999999999 + } + }, + { + "from": { + "x": -10.677499999999998, + "y": -5.324999999999999 + }, + "to": { + "x": -10.877499999999998, + "y": -5.324999999999999 + } + } + ], + "junctions": [ + { + "x": -10.677499999999998, + "y": -5.324999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_31", + "source_trace_id": "solver_J_PWR.1-C_DRV_VM_1.2", + "edges": [ + { + "from": { + "x": -8.2575, + "y": 2.908333333333335 + }, + "to": { + "x": -8.4575, + "y": 2.908333333333335 + } + }, + { + "from": { + "x": -8.4575, + "y": 2.908333333333335 + }, + "to": { + "x": -8.8625, + "y": 2.908333333333335 + } + }, + { + "from": { + "x": -8.8625, + "y": 2.908333333333335 + }, + "to": { + "x": -8.8625, + "y": 3.195000000000001 + } + }, + { + "from": { + "x": -8.8625, + "y": 3.195000000000001 + }, + "to": { + "x": -9.267500000000002, + "y": 3.195000000000001 + } + }, + { + "from": { + "x": -9.267500000000002, + "y": 3.195000000000001 + }, + "to": { + "x": -9.467500000000001, + "y": 3.195000000000001 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_32", + "source_trace_id": "solver_R_SENSE1.2-C_DRV_VREG.2", + "edges": [ + { + "from": { + "x": -5.052499999999999, + "y": 3.4750000000000028 + }, + "to": { + "x": -5.2524999999999995, + "y": 3.4750000000000028 + } + }, + { + "from": { + "x": -5.2524999999999995, + "y": 3.4750000000000028 + }, + "to": { + "x": -5.2524999999999995, + "y": 2.2605446500000035 + } + }, + { + "from": { + "x": -5.2524999999999995, + "y": 2.2605446500000035 + }, + "to": { + "x": -5.052499999999999, + "y": 2.2605446500000035 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_33", + "source_trace_id": "solver_U_DRV.3-U_DRV.13", + "edges": [ + { + "from": { + "x": -3.252500000000001, + "y": 4.375000000000002 + }, + "to": { + "x": -3.452500000000001, + "y": 4.375000000000002 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 4.375000000000002 + }, + "to": { + "x": -3.452500000000001, + "y": 2.3750000000000027 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 2.3750000000000027 + }, + "to": { + "x": -3.252500000000001, + "y": 2.3750000000000027 + } + } + ], + "junctions": [ + { + "x": -3.452500000000001, + "y": 3.3750000000000027 + }, + { + "x": -3.452500000000001, + "y": 3.775000000000002 + }, + { + "x": -3.452500000000001, + "y": 2.3750000000000027 + }, + { + "x": -3.452500000000001, + "y": 2.575000000000003 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_34", + "source_trace_id": "solver_U_LDO.2-C_USB_IN.2", + "edges": [ + { + "from": { + "x": -8.2575, + "y": -1.4916666666666654 + }, + "to": { + "x": -8.4575, + "y": -1.4916666666666654 + } + }, + { + "from": { + "x": -8.4575, + "y": -1.4916666666666654 + }, + "to": { + "x": -8.8625, + "y": -1.4916666666666654 + } + }, + { + "from": { + "x": -8.8625, + "y": -1.4916666666666654 + }, + "to": { + "x": -8.8625, + "y": -1.2449999999999992 + } + }, + { + "from": { + "x": -8.8625, + "y": -1.2449999999999992 + }, + "to": { + "x": -9.267500000000002, + "y": -1.2449999999999992 + } + }, + { + "from": { + "x": -9.267500000000002, + "y": -1.2449999999999992 + }, + "to": { + "x": -9.467500000000001, + "y": -1.2449999999999992 + } + } + ], + "junctions": [ + { + "x": -8.4575, + "y": -1.4916666666666654 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_35", + "source_trace_id": "solver_R_MS3_PD.2-C_VM_ADC.2", + "edges": [ + { + "from": { + "x": 7.3575, + "y": -4.18448806666666 + }, + "to": { + "x": 7.5575, + "y": -4.18448806666666 + } + }, + { + "from": { + "x": 7.5575, + "y": -4.18448806666666 + }, + "to": { + "x": 7.5575, + "y": -2.3700327166666604 + } + }, + { + "from": { + "x": 7.5575, + "y": -2.3700327166666604 + }, + "to": { + "x": 7.3575, + "y": -2.3700327166666604 + } + } + ], + "junctions": [ + { + "x": 7.5575, + "y": -2.3700327166666604 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_36", + "source_trace_id": "solver_R_VM_BOT.2-C_VM_ADC.2", + "edges": [ + { + "from": { + "x": 7.3575, + "y": -0.5555773666666604 + }, + "to": { + "x": 7.5575, + "y": -0.5555773666666604 + } + }, + { + "from": { + "x": 7.5575, + "y": -0.5555773666666604 + }, + "to": { + "x": 7.5575, + "y": -2.3700327166666604 + } + }, + { + "from": { + "x": 7.5575, + "y": -2.3700327166666604 + }, + "to": { + "x": 7.3575, + "y": -2.3700327166666604 + } + } + ], + "junctions": [ + { + "x": 7.5575, + "y": -2.3700327166666604 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_37", + "source_trace_id": "solver_Y1.4-J_SWD.3", + "edges": [ + { + "from": { + "x": -1.2525000000000006, + "y": -2.924999999999997 + }, + "to": { + "x": -1.0525000000000004, + "y": -2.924999999999997 + } + }, + { + "from": { + "x": -1.0525000000000004, + "y": -2.924999999999997 + }, + "to": { + "x": -1.0525000000000004, + "y": -2.299999999999998 + } + }, + { + "from": { + "x": -1.0525000000000004, + "y": -2.299999999999998 + }, + "to": { + "x": -2.2025000000000015, + "y": -2.299999999999998 + } + }, + { + "from": { + "x": -2.2025000000000015, + "y": -2.299999999999998 + }, + "to": { + "x": -2.2025000000000015, + "y": -1.6749999999999983 + } + } + ], + "junctions": [ + { + "x": -2.2025000000000015, + "y": -1.8749999999999984 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_38", + "source_trace_id": "solver_U_MCU.19-J_SWD.3", + "edges": [ + { + "from": { + "x": -0.5525000000000004, + "y": -0.9249999999999994 + }, + "to": { + "x": -1.377500000000001, + "y": -0.9249999999999994 + } + }, + { + "from": { + "x": -1.377500000000001, + "y": -0.9249999999999994 + }, + "to": { + "x": -1.377500000000001, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.377500000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.765000000000001, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.765000000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.8400000000000012, + "y": -1.8749999999999984 + }, + "is_crossing": true + }, + { + "from": { + "x": -1.8400000000000012, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.9650000000000012, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.9650000000000012, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.040000000000001, + "y": -1.8749999999999984 + }, + "is_crossing": true + }, + { + "from": { + "x": -2.040000000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.2025000000000015, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -2.2025000000000015, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.2025000000000015, + "y": -1.6749999999999983 + } + } + ], + "junctions": [ + { + "x": -2.2025000000000015, + "y": -1.8749999999999984 + }, + { + "x": -1.4775000000000011, + "y": -1.8749999999999984 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_39", + "source_trace_id": "solver_J_USB.2-J_USB.1", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -4.925000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -4.925000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -4.925000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -4.725000000000001 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -4.725000000000001 + }, + "to": { + "x": -0.5525000000000007, + "y": -4.725000000000001 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": -4.925000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_40", + "source_trace_id": "solver_J_USB.3-J_USB.2", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -5.125000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.125000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.125000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -4.925000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -4.925000000000002 + }, + "to": { + "x": -0.5525000000000007, + "y": -4.925000000000002 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": -4.925000000000002 + }, + { + "x": -0.7525000000000006, + "y": -5.125000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_41", + "source_trace_id": "solver_J_USB.4-J_USB.3", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -5.325000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.325000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.325000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.125000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.125000000000002 + }, + "to": { + "x": -0.5525000000000007, + "y": -5.125000000000002 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": -5.125000000000002 + }, + { + "x": -0.7525000000000006, + "y": -5.325000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_42", + "source_trace_id": "solver_J_USB.5-J_USB.4", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -5.525000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.525000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.525000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.325000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.325000000000002 + }, + "to": { + "x": -0.5525000000000007, + "y": -5.325000000000002 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": -5.325000000000002 + }, + { + "x": -0.7525000000000006, + "y": -5.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_43", + "source_trace_id": "solver_J_USB.6-J_USB.5", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -5.725000000000001 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.725000000000001 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.725000000000001 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.525000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.525000000000002 + }, + "to": { + "x": -0.5525000000000007, + "y": -5.525000000000002 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": -5.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_44", + "source_trace_id": "solver_J_USB.17-J_USB.16", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -5.325000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -5.325000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -5.325000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -5.525000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -5.525000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -5.525000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -5.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_45", + "source_trace_id": "solver_U_ESD.2-J_USB.16", + "edges": [ + { + "from": { + "x": 2.1474999999999995, + "y": -6.125000000000002 + }, + "to": { + "x": 1.9474999999999996, + "y": -6.125000000000002 + } + }, + { + "from": { + "x": 1.9474999999999996, + "y": -6.125000000000002 + }, + "to": { + "x": 1.7974999999999994, + "y": -6.125000000000002 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": -6.125000000000002 + }, + "to": { + "x": 1.7974999999999994, + "y": -5.525000000000002 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": -5.525000000000002 + }, + "to": { + "x": 1.6474999999999993, + "y": -5.525000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -5.525000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -5.525000000000002 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -5.525000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_46", + "source_trace_id": "solver_R_MS2_PD.2-R_MS1_PD.2", + "edges": [ + { + "from": { + "x": 7.3575, + "y": 4.211154733333337 + }, + "to": { + "x": 7.5575, + "y": 4.211154733333337 + } + }, + { + "from": { + "x": 7.5575, + "y": 4.211154733333337 + }, + "to": { + "x": 7.5575, + "y": 2.6222440333333377 + } + }, + { + "from": { + "x": 7.5575, + "y": 2.6222440333333377 + }, + "to": { + "x": 7.3575, + "y": 2.6222440333333377 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_47", + "source_trace_id": "solver_U_DRV.29-U_DRV.18", + "edges": [ + { + "from": { + "x": -1.2525000000000008, + "y": 4.6750000000000025 + }, + "to": { + "x": -1.0525000000000009, + "y": 4.6750000000000025 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 4.6750000000000025 + }, + "to": { + "x": -1.0525000000000009, + "y": 2.4750000000000023 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 2.4750000000000023 + }, + "to": { + "x": -1.2525000000000008, + "y": 2.4750000000000023 + } + } + ], + "junctions": [ + { + "x": -1.0525000000000009, + "y": 2.6750000000000025 + }, + { + "x": -1.0525000000000002, + "y": 4.275000000000002 + }, + { + "x": -1.0525000000000009, + "y": 4.6750000000000025 + }, + { + "x": -1.0525000000000009, + "y": 3.675000000000002 + }, + { + "x": -1.0525000000000009, + "y": 3.075000000000002 + }, + { + "x": -1.0525000000000009, + "y": 4.475000000000002 + }, + { + "x": -1.0525000000000009, + "y": 3.275000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_48", + "source_trace_id": "solver_U_MCU.57-U_FLASH.4", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 2.5750000000000015 + }, + "to": { + "x": 1.6474999999999993, + "y": 2.5750000000000015 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 2.5750000000000015 + }, + "to": { + "x": 1.7974999999999994, + "y": 2.5750000000000015 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": 2.5750000000000015 + }, + "to": { + "x": 1.7974999999999994, + "y": 1.7750000000000015 + } + }, + { + "from": { + "x": 1.7974999999999994, + "y": 1.7750000000000015 + }, + "to": { + "x": 1.9474999999999996, + "y": 1.7750000000000015 + } + }, + { + "from": { + "x": 1.9474999999999996, + "y": 1.7750000000000015 + }, + "to": { + "x": 2.1474999999999995, + "y": 1.7750000000000015 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net0" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_49", + "source_trace_id": "solver_U_LDO.3-U_LDO.1", + "edges": [ + { + "from": { + "x": -8.2575, + "y": -1.6916666666666653 + }, + "to": { + "x": -8.4575, + "y": -1.6916666666666653 + } + }, + { + "from": { + "x": -8.4575, + "y": -1.6916666666666653 + }, + "to": { + "x": -8.4575, + "y": -1.2916666666666654 + } + }, + { + "from": { + "x": -8.4575, + "y": -1.2916666666666654 + }, + "to": { + "x": -8.2575, + "y": -1.2916666666666654 + } + } + ], + "junctions": [ + { + "x": -8.4575, + "y": -1.4916666666666654 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_50", + "source_trace_id": "solver_J_USB.20-J_USB.19", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -4.725000000000001 + }, + "to": { + "x": 1.6474999999999993, + "y": -4.725000000000001 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -4.725000000000001 + }, + "to": { + "x": 1.6474999999999993, + "y": -4.925000000000002 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -4.925000000000002 + }, + "to": { + "x": 1.4474999999999993, + "y": -4.925000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_51", + "source_trace_id": "solver_J_USB.8-J_USB.7", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": -6.125000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -6.125000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -6.125000000000002 + }, + "to": { + "x": -0.7525000000000006, + "y": -5.925000000000002 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": -5.925000000000002 + }, + "to": { + "x": -0.5525000000000007, + "y": -5.925000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net1" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_52", + "source_trace_id": "solver_C_MCU_5.1-C_DRV_VDD.1", + "edges": [ + { + "from": { + "x": -11.9775, + "y": -7.364999999999999 + }, + "to": { + "x": -12.177499999999998, + "y": -7.364999999999999 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -7.364999999999999 + }, + "to": { + "x": -12.177499999999998, + "y": -9.405 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -9.405 + }, + "to": { + "x": -11.9775, + "y": -9.405 + } + } + ], + "junctions": [ + { + "x": -12.177499999999998, + "y": -7.364999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_53", + "source_trace_id": "solver_C_MCU_4.1-C_MCU_5.1", + "edges": [ + { + "from": { + "x": -11.9775, + "y": -5.324999999999999 + }, + "to": { + "x": -12.177499999999998, + "y": -5.324999999999999 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -5.324999999999999 + }, + "to": { + "x": -12.177499999999998, + "y": -7.364999999999999 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -7.364999999999999 + }, + "to": { + "x": -11.9775, + "y": -7.364999999999999 + } + } + ], + "junctions": [ + { + "x": -12.177499999999998, + "y": -7.364999999999999 + }, + { + "x": -12.177499999999998, + "y": -5.324999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_54", + "source_trace_id": "solver_C_MCU_3.1-C_MCU_4.1", + "edges": [ + { + "from": { + "x": -11.9775, + "y": -3.2849999999999993 + }, + "to": { + "x": -12.177499999999998, + "y": -3.2849999999999993 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -3.2849999999999993 + }, + "to": { + "x": -12.177499999999998, + "y": -5.324999999999999 + } + }, + { + "from": { + "x": -12.177499999999998, + "y": -5.324999999999999 + }, + "to": { + "x": -11.9775, + "y": -5.324999999999999 + } + } + ], + "junctions": [ + { + "x": -12.177499999999998, + "y": -5.324999999999999 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_55", + "source_trace_id": "solver_C_MCU_2.1-C_FLASH.1", + "edges": [ + { + "from": { + "x": -9.6675, + "y": -5.951666666666665 + }, + "to": { + "x": -9.8675, + "y": -5.951666666666665 + } + }, + { + "from": { + "x": -9.8675, + "y": -5.951666666666665 + }, + "to": { + "x": -9.8675, + "y": -7.991666666666665 + } + }, + { + "from": { + "x": -9.8675, + "y": -7.991666666666665 + }, + "to": { + "x": -9.6675, + "y": -7.991666666666665 + } + } + ], + "junctions": [ + { + "x": -9.8675, + "y": -5.951666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_56", + "source_trace_id": "solver_C_MCU_1.1-C_MCU_2.1", + "edges": [ + { + "from": { + "x": -9.6675, + "y": -3.9116666666666653 + }, + "to": { + "x": -9.8675, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -9.8675, + "y": -3.9116666666666653 + }, + "to": { + "x": -9.8675, + "y": -5.951666666666665 + } + }, + { + "from": { + "x": -9.8675, + "y": -5.951666666666665 + }, + "to": { + "x": -9.6675, + "y": -5.951666666666665 + } + } + ], + "junctions": [ + { + "x": -9.8675, + "y": -5.951666666666665 + }, + { + "x": -9.8675, + "y": -4.531666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_57", + "source_trace_id": "solver_C_USB_OUT.1-C_MCU_1.1", + "edges": [ + { + "from": { + "x": -7.357500000000002, + "y": -3.9116666666666653 + }, + "to": { + "x": -7.557500000000001, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -7.557500000000001, + "y": -3.9116666666666653 + }, + "to": { + "x": -7.557500000000001, + "y": -4.531666666666665 + } + }, + { + "from": { + "x": -7.557500000000001, + "y": -4.531666666666665 + }, + "to": { + "x": -8.330000000000002, + "y": -4.531666666666665 + } + }, + { + "from": { + "x": -8.330000000000002, + "y": -4.531666666666665 + }, + "to": { + "x": -8.405000000000001, + "y": -4.531666666666665 + }, + "is_crossing": true + }, + { + "from": { + "x": -8.405000000000001, + "y": -4.531666666666665 + }, + "to": { + "x": -9.8675, + "y": -4.531666666666665 + } + }, + { + "from": { + "x": -9.8675, + "y": -4.531666666666665 + }, + "to": { + "x": -9.8675, + "y": -3.9116666666666653 + } + }, + { + "from": { + "x": -9.8675, + "y": -3.9116666666666653 + }, + "to": { + "x": -9.6675, + "y": -3.9116666666666653 + } + } + ], + "junctions": [ + { + "x": -8.3675, + "y": -4.531666666666665 + }, + { + "x": -7.557500000000001, + "y": -4.531666666666665 + }, + { + "x": -9.8675, + "y": -4.531666666666665 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_58", + "source_trace_id": "solver_U_MCU.22-J_SWD.4", + "edges": [ + { + "from": { + "x": -0.5525000000000004, + "y": -1.5249999999999997 + }, + "to": { + "x": -1.3400000000000003, + "y": -1.5249999999999997 + } + }, + { + "from": { + "x": -1.3400000000000003, + "y": -1.5249999999999997 + }, + "to": { + "x": -1.4150000000000005, + "y": -1.5249999999999997 + }, + "is_crossing": true + }, + { + "from": { + "x": -1.4150000000000005, + "y": -1.5249999999999997 + }, + "to": { + "x": -1.4775000000000011, + "y": -1.5249999999999997 + } + }, + { + "from": { + "x": -1.4775000000000011, + "y": -1.5249999999999997 + }, + "to": { + "x": -1.4775000000000011, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.4775000000000011, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.7650000000000012, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.7650000000000012, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.8400000000000012, + "y": -1.8749999999999984 + }, + "is_crossing": true + }, + { + "from": { + "x": -1.8400000000000012, + "y": -1.8749999999999984 + }, + "to": { + "x": -1.9650000000000012, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -1.9650000000000012, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.040000000000001, + "y": -1.8749999999999984 + }, + "is_crossing": true + }, + { + "from": { + "x": -2.040000000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.165000000000001, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -2.165000000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.240000000000001, + "y": -1.8749999999999984 + }, + "is_crossing": true + }, + { + "from": { + "x": -2.240000000000001, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.4025000000000016, + "y": -1.8749999999999984 + } + }, + { + "from": { + "x": -2.4025000000000016, + "y": -1.8749999999999984 + }, + "to": { + "x": -2.4025000000000016, + "y": -1.6749999999999983 + } + } + ], + "junctions": [ + { + "x": -2.2025000000000015, + "y": -1.8749999999999984 + }, + { + "x": -1.4775000000000011, + "y": -1.8749999999999984 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_59", + "source_trace_id": "solver_U_FLASH.8-RV_REF.3", + "edges": [ + { + "from": { + "x": 4.147499999999999, + "y": 2.3750000000000018 + }, + "to": { + "x": 4.347499999999999, + "y": 2.3750000000000018 + } + }, + { + "from": { + "x": 4.347499999999999, + "y": 2.3750000000000018 + }, + "to": { + "x": 4.347499999999999, + "y": 4.275000000000002 + } + }, + { + "from": { + "x": 4.347499999999999, + "y": 4.275000000000002 + }, + "to": { + "x": 4.147499999999999, + "y": 4.275000000000002 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_60", + "source_trace_id": "solver_R_EN_PU.2-R_AWAKE_PU.2", + "edges": [ + { + "from": { + "x": -6.257500000000001, + "y": 4.902788683333334 + }, + "to": { + "x": -6.057500000000001, + "y": 4.902788683333334 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": 4.902788683333334 + }, + "to": { + "x": -6.057500000000001, + "y": 6.491699383333333 + } + }, + { + "from": { + "x": -6.057500000000001, + "y": 6.491699383333333 + }, + "to": { + "x": -6.257500000000001, + "y": 6.491699383333333 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_61", + "source_trace_id": "solver_U_MCU.10-U_MCU.1", + "edges": [ + { + "from": { + "x": -0.5525000000000007, + "y": 0.8750000000000018 + }, + "to": { + "x": -0.7525000000000006, + "y": 0.8750000000000018 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": 0.8750000000000018 + }, + "to": { + "x": -0.7525000000000006, + "y": 2.6750000000000016 + } + }, + { + "from": { + "x": -0.7525000000000006, + "y": 2.6750000000000016 + }, + "to": { + "x": -0.5525000000000007, + "y": 2.6750000000000016 + } + } + ], + "junctions": [ + { + "x": -0.7525000000000006, + "y": 1.8750000000000013 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_62", + "source_trace_id": "solver_U_MCU.42-U_MCU.33", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -0.4250000000000007 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + }, + "to": { + "x": 1.6474999999999993, + "y": -2.2250000000000005 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -2.2250000000000005 + }, + "to": { + "x": 1.4474999999999993, + "y": -2.2250000000000005 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -1.4250000000000007 + }, + { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_63", + "source_trace_id": "solver_U_MCU.43-U_MCU.42", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -0.22500000000000053 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + }, + "to": { + "x": 1.4474999999999993, + "y": -0.4250000000000007 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -0.4250000000000007 + }, + { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_64", + "source_trace_id": "solver_U_MCU.44-U_MCU.43", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": -0.025000000000000355 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + }, + "to": { + "x": 1.4474999999999993, + "y": -0.22500000000000053 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -0.22500000000000053 + }, + { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_65", + "source_trace_id": "solver_U_MCU.48-U_MCU.44", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 0.7750000000000004 + }, + "to": { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + }, + "to": { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + }, + "to": { + "x": 1.4474999999999993, + "y": -0.025000000000000355 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": -0.025000000000000355 + }, + { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + }, + { + "x": 1.6474999999999993, + "y": 0.17499999999999982 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_66", + "source_trace_id": "solver_U_MCU.49-U_MCU.48", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 0.9750000000000005 + }, + "to": { + "x": 1.6474999999999993, + "y": 0.9750000000000005 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 0.9750000000000005 + }, + "to": { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + }, + "to": { + "x": 1.4474999999999993, + "y": 0.7750000000000004 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + }, + { + "x": 1.6474999999999993, + "y": 0.9750000000000005 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net2" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_67", + "source_trace_id": "solver_U_DRV.14-U_DRV.12", + "edges": [ + { + "from": { + "x": -3.252500000000001, + "y": 2.1750000000000025 + }, + "to": { + "x": -3.452500000000001, + "y": 2.1750000000000025 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 2.1750000000000025 + }, + "to": { + "x": -3.452500000000001, + "y": 2.575000000000003 + } + }, + { + "from": { + "x": -3.452500000000001, + "y": 2.575000000000003 + }, + "to": { + "x": -3.252500000000001, + "y": 2.575000000000003 + } + } + ], + "junctions": [ + { + "x": -3.452500000000001, + "y": 2.3750000000000027 + }, + { + "x": -3.452500000000001, + "y": 2.575000000000003 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net27" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_68", + "source_trace_id": "solver_U_MCU.50-U_MCU.45", + "edges": [ + { + "from": { + "x": 1.4474999999999993, + "y": 1.1750000000000003 + }, + "to": { + "x": 1.6474999999999993, + "y": 1.1750000000000003 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 1.1750000000000003 + }, + "to": { + "x": 1.6474999999999993, + "y": 0.17499999999999982 + } + }, + { + "from": { + "x": 1.6474999999999993, + "y": 0.17499999999999982 + }, + "to": { + "x": 1.4474999999999993, + "y": 0.17499999999999982 + } + } + ], + "junctions": [ + { + "x": 1.6474999999999993, + "y": 0.7750000000000004 + }, + { + "x": 1.6474999999999993, + "y": 0.17499999999999982 + }, + { + "x": 1.6474999999999993, + "y": 0.9750000000000005 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net3" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_69", + "source_trace_id": "solver_R_VM_BOT.1-C_VM_ADC.1", + "edges": [ + { + "from": { + "x": 6.2575, + "y": -0.5555773666666604 + }, + "to": { + "x": 6.0575, + "y": -0.5555773666666604 + } + }, + { + "from": { + "x": 6.0575, + "y": -0.5555773666666604 + }, + "to": { + "x": 6.0575, + "y": -2.3700327166666604 + } + }, + { + "from": { + "x": 6.0575, + "y": -2.3700327166666604 + }, + "to": { + "x": 6.2575, + "y": -2.3700327166666604 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net43" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_70", + "source_trace_id": "solver_D_REV.1-C_VM_BULK.2", + "edges": [ + { + "from": { + "x": -8.2575, + "y": 1.1083333333333347 + }, + "to": { + "x": -8.4575, + "y": 1.1083333333333347 + } + }, + { + "from": { + "x": -8.4575, + "y": 1.1083333333333347 + }, + "to": { + "x": -8.8625, + "y": 1.1083333333333347 + } + }, + { + "from": { + "x": -8.8625, + "y": 1.1083333333333347 + }, + "to": { + "x": -8.8625, + "y": 0.9750000000000014 + } + }, + { + "from": { + "x": -8.8625, + "y": 0.9750000000000014 + }, + "to": { + "x": -9.267500000000002, + "y": 0.9750000000000014 + } + }, + { + "from": { + "x": -9.267500000000002, + "y": 0.9750000000000014 + }, + "to": { + "x": -9.467500000000001, + "y": 0.9750000000000014 + } + } + ], + "junctions": [], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "schematic_trace", + "schematic_trace_id": "schematic_trace_71", + "source_trace_id": "solver_U_DRV.28-U_DRV.22", + "edges": [ + { + "from": { + "x": -1.2525000000000008, + "y": 4.475000000000002 + }, + "to": { + "x": -1.0525000000000009, + "y": 4.475000000000002 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 4.475000000000002 + }, + "to": { + "x": -1.0525000000000009, + "y": 3.275000000000002 + } + }, + { + "from": { + "x": -1.0525000000000009, + "y": 3.275000000000002 + }, + "to": { + "x": -1.2525000000000008, + "y": 3.275000000000002 + } + } + ], + "junctions": [ + { + "x": -1.0525000000000002, + "y": 4.275000000000002 + }, + { + "x": -1.0525000000000009, + "y": 4.475000000000002 + }, + { + "x": -1.0525000000000009, + "y": 3.675000000000002 + }, + { + "x": -1.0525000000000009, + "y": 3.275000000000002 + } + ], + "subcircuit_connectivity_map_key": "unnamedsubcircuit694_connectivity_net4" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_0", + "text": "GND", + "anchor_position": { + "x": -0.7525000000000006, + "y": -4.925000000000002 + }, + "center": { + "x": -0.9025000000000006, + "y": -4.925000000000002 + }, + "anchor_side": "right", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_1", + "text": "GND", + "anchor_position": { + "x": 1.6474999999999993, + "y": -5.525000000000002 + }, + "center": { + "x": 1.6474999999999993, + "y": -5.615000000000002 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_2", + "text": "GND", + "anchor_position": { + "x": -8.66, + "y": -1.4916666666666654 + }, + "center": { + "x": -8.66, + "y": -1.5816666666666654 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_3", + "text": "GND", + "anchor_position": { + "x": -1.1525000000000005, + "y": -2.924999999999997 + }, + "center": { + "x": -1.1525000000000005, + "y": -3.014999999999997 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_4", + "text": "GND", + "anchor_position": { + "x": 1.7974999999999994, + "y": 1.7750000000000015 + }, + "center": { + "x": 1.7974999999999994, + "y": 1.6850000000000014 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_5", + "text": "GND", + "anchor_position": { + "x": -3.9469553499999996, + "y": -4.744999999999997 + }, + "center": { + "x": -3.9469553499999996, + "y": -4.834999999999997 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_6", + "text": "GND", + "anchor_position": { + "x": -3.4025000000000007, + "y": 4.375000000000002 + }, + "center": { + "x": -3.4025000000000007, + "y": 4.285000000000002 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_7", + "text": "GND", + "anchor_position": { + "x": -1.102500000000001, + "y": 2.4750000000000023 + }, + "center": { + "x": -1.102500000000001, + "y": 2.3850000000000025 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_8", + "text": "GND", + "anchor_position": { + "x": 1.7974999999999994, + "y": 4.375000000000002 + }, + "center": { + "x": 1.7974999999999994, + "y": 4.285000000000002 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_9", + "text": "GND", + "anchor_position": { + "x": -8.4575, + "y": 2.908333333333335 + }, + "center": { + "x": -8.4575, + "y": 2.818333333333335 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_10", + "text": "GND", + "anchor_position": { + "x": -11.467500000000001, + "y": 0.9750000000000014 + }, + "center": { + "x": -11.617500000000001, + "y": 0.9750000000000014 + }, + "anchor_side": "right", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_11", + "text": "GND", + "anchor_position": { + "x": -2.352500000000001, + "y": -6.525000000000002 + }, + "center": { + "x": -2.502500000000001, + "y": -6.525000000000002 + }, + "anchor_side": "right", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_12", + "text": "GND", + "anchor_position": { + "x": 5.252499999999999, + "y": -3.2250000000000014 + }, + "center": { + "x": 5.252499999999999, + "y": -3.3150000000000013 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_13", + "text": "GND", + "anchor_position": { + "x": -8.3675, + "y": -7.991666666666665 + }, + "center": { + "x": -8.3675, + "y": -8.081666666666665 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_14", + "text": "GND", + "anchor_position": { + "x": -10.677499999999998, + "y": -9.405 + }, + "center": { + "x": -10.677499999999998, + "y": -9.495 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_15", + "text": "GND", + "anchor_position": { + "x": 7.5575, + "y": -4.18448806666666 + }, + "center": { + "x": 7.5575, + "y": -4.27448806666666 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_16", + "text": "GND", + "anchor_position": { + "x": 7.5575, + "y": 2.6222440333333377 + }, + "center": { + "x": 7.5575, + "y": 2.532244033333338 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_17", + "text": "GND", + "anchor_position": { + "x": -5.2524999999999995, + "y": 2.2605446500000035 + }, + "center": { + "x": -5.2524999999999995, + "y": 2.1705446500000036 + }, + "anchor_side": "top", + "source_net_id": "source_net_0", + "symbol_name": "rail_down" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_18", + "text": "GND", + "anchor_position": { + "x": -8.567499999999999, + "y": 5.235000000000001 + }, + "center": { + "x": -8.417499999999999, + "y": 5.235000000000001 + }, + "anchor_side": "left", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_19", + "text": "VBUS", + "anchor_position": { + "x": -0.7525000000000006, + "y": -6.125000000000002 + }, + "center": { + "x": -0.9525000000000006, + "y": -6.125000000000002 + }, + "anchor_side": "right", + "source_net_id": "source_net_1" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_20", + "text": "VBUS", + "anchor_position": { + "x": 1.6474999999999993, + "y": -4.725000000000001 + }, + "center": { + "x": 1.6474999999999993, + "y": -4.635000000000002 + }, + "anchor_side": "bottom", + "source_net_id": "source_net_1", + "symbol_name": "rail_up" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_21", + "text": "VBUS", + "anchor_position": { + "x": 4.147499999999999, + "y": -6.125000000000002 + }, + "center": { + "x": 4.347499999999999, + "y": -6.125000000000002 + }, + "anchor_side": "left", + "source_net_id": "source_net_1" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_22", + "text": "VBUS", + "anchor_position": { + "x": -8.4575, + "y": -1.2916666666666654 + }, + "center": { + "x": -8.4575, + "y": -1.2016666666666653 + }, + "anchor_side": "bottom", + "source_net_id": "source_net_1", + "symbol_name": "rail_up" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_23", + "text": "VBUS", + "anchor_position": { + "x": -10.567500000000003, + "y": -1.2449999999999992 + }, + "center": { + "x": -10.767500000000002, + "y": -1.2449999999999992 + }, + "anchor_side": "right", + "source_net_id": "source_net_1" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_24", + "text": "V3_3", + "anchor_position": { + "x": -6.2575, + "y": -1.3916666666666653 + }, + "center": { + "x": -6.0575, + "y": -1.3916666666666653 + }, + "anchor_side": "left", + "source_net_id": "source_net_2" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_25", + "text": "DRV_ENABLE", + "anchor_position": { + "x": -0.5525000000000007, + "y": 1.6750000000000016 + }, + "center": { + "x": -1.0525000000000007, + "y": 1.6750000000000016 + }, + "anchor_side": "right", + "source_net_id": "source_net_5" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_26", + "text": "DRV_AWAKE", + "anchor_position": { + "x": -0.5525000000000007, + "y": 1.4750000000000016 + }, + "center": { + "x": -1.0025000000000006, + "y": 1.4750000000000016 + }, + "anchor_side": "right", + "source_net_id": "source_net_6" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_27", + "text": "MS1", + "anchor_position": { + "x": -0.5525000000000007, + "y": 1.2750000000000017 + }, + "center": { + "x": -0.7025000000000007, + "y": 1.2750000000000017 + }, + "anchor_side": "right", + "source_net_id": "source_net_7" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_28", + "text": "MS2", + "anchor_position": { + "x": -0.5525000000000007, + "y": 1.0750000000000017 + }, + "center": { + "x": -0.7025000000000007, + "y": 1.0750000000000017 + }, + "anchor_side": "right", + "source_net_id": "source_net_8" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_29", + "text": "MS3", + "anchor_position": { + "x": -0.5525000000000007, + "y": 0.6750000000000018 + }, + "center": { + "x": -0.7025000000000007, + "y": 0.6750000000000018 + }, + "anchor_side": "right", + "source_net_id": "source_net_9" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_30", + "text": "V1_1", + "anchor_position": { + "x": -0.5525000000000007, + "y": -1.7249999999999996 + }, + "center": { + "x": -0.7525000000000006, + "y": -1.7249999999999996 + }, + "anchor_side": "right", + "source_net_id": "source_net_3" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_31", + "text": "VM_SENSE", + "anchor_position": { + "x": 1.4474999999999993, + "y": -1.2250000000000008 + }, + "center": { + "x": 1.8474999999999993, + "y": -1.2250000000000008 + }, + "anchor_side": "left", + "source_net_id": "source_net_10" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_32", + "text": "DRV_ENABLE", + "anchor_position": { + "x": -3.252500000000001, + "y": 4.575000000000003 + }, + "center": { + "x": -3.752500000000001, + "y": 4.575000000000003 + }, + "anchor_side": "right", + "source_net_id": "source_net_5" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_33", + "text": "MS1", + "anchor_position": { + "x": -3.252500000000001, + "y": 3.1750000000000025 + }, + "center": { + "x": -3.4025000000000007, + "y": 3.1750000000000025 + }, + "anchor_side": "right", + "source_net_id": "source_net_7" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_34", + "text": "MS2", + "anchor_position": { + "x": -3.252500000000001, + "y": 2.9750000000000023 + }, + "center": { + "x": -3.4025000000000007, + "y": 2.9750000000000023 + }, + "anchor_side": "right", + "source_net_id": "source_net_8" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_35", + "text": "MS3", + "anchor_position": { + "x": -3.252500000000001, + "y": 2.7750000000000026 + }, + "center": { + "x": -3.4025000000000007, + "y": 2.7750000000000026 + }, + "anchor_side": "right", + "source_net_id": "source_net_9" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_36", + "text": "V3_3", + "anchor_position": { + "x": -3.252500000000001, + "y": 1.975000000000002 + }, + "center": { + "x": -3.452500000000001, + "y": 1.975000000000002 + }, + "anchor_side": "right", + "source_net_id": "source_net_2" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_37", + "text": "GND", + "anchor_position": { + "x": 2.1474999999999995, + "y": 4.375000000000002 + }, + "center": { + "x": 1.9974999999999996, + "y": 4.375000000000002 + }, + "anchor_side": "right", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_38", + "text": "GND", + "anchor_position": { + "x": 2.291955349999999, + "y": -3.5750000000000015 + }, + "center": { + "x": 2.291955349999999, + "y": -3.4850000000000017 + }, + "anchor_side": "bottom", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_39", + "text": "V1_1", + "anchor_position": { + "x": -7.357500000000001, + "y": -5.951666666666665 + }, + "center": { + "x": -7.557500000000001, + "y": -5.951666666666665 + }, + "anchor_side": "right", + "source_net_id": "source_net_3" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_40", + "text": "V3_3", + "anchor_position": { + "x": -1.3969553499999994, + "y": -5.474999999999997 + }, + "center": { + "x": -1.3969553499999994, + "y": -5.564999999999997 + }, + "anchor_side": "top", + "source_net_id": "source_net_2" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_41", + "text": "VM", + "anchor_position": { + "x": 6.2575, + "y": 1.0333333333333385 + }, + "center": { + "x": 6.157500000000001, + "y": 1.0333333333333385 + }, + "anchor_side": "right", + "source_net_id": "source_net_4" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_42", + "text": "VM_SENSE", + "anchor_position": { + "x": 7.3575, + "y": 1.0333333333333385 + }, + "center": { + "x": 7.7575, + "y": 1.0333333333333385 + }, + "anchor_side": "left", + "source_net_id": "source_net_10" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_43", + "text": "DRV_ENABLE", + "anchor_position": { + "x": -7.357500000000001, + "y": 4.902788683333334 + }, + "center": { + "x": -7.857500000000001, + "y": 4.902788683333334 + }, + "anchor_side": "right", + "source_net_id": "source_net_5" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_44", + "text": "DRV_AWAKE", + "anchor_position": { + "x": -7.357500000000001, + "y": 6.491699383333333 + }, + "center": { + "x": -7.807500000000001, + "y": 6.491699383333333 + }, + "anchor_side": "right", + "source_net_id": "source_net_6" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_45", + "text": "MS1", + "anchor_position": { + "x": 6.2575, + "y": 2.6222440333333377 + }, + "center": { + "x": 6.1075, + "y": 2.6222440333333377 + }, + "anchor_side": "right", + "source_net_id": "source_net_7" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_46", + "text": "MS2", + "anchor_position": { + "x": 6.2575, + "y": 4.211154733333337 + }, + "center": { + "x": 6.1075, + "y": 4.211154733333337 + }, + "anchor_side": "right", + "source_net_id": "source_net_8" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_47", + "text": "MS3", + "anchor_position": { + "x": 6.2575, + "y": -4.18448806666666 + }, + "center": { + "x": 6.1075, + "y": -4.18448806666666 + }, + "anchor_side": "right", + "source_net_id": "source_net_9" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_48", + "text": "GND", + "anchor_position": { + "x": -1.2525000000000013, + "y": 7.125000000000001 + }, + "center": { + "x": -1.2525000000000013, + "y": 7.215000000000001 + }, + "anchor_side": "bottom", + "source_net_id": "source_net_0" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_49", + "text": "VM", + "anchor_position": { + "x": -5.052499999999999, + "y": 4.689455350000001 + }, + "center": { + "x": -5.152499999999999, + "y": 4.689455350000001 + }, + "anchor_side": "right", + "source_net_id": "source_net_4" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_50", + "text": "VM", + "anchor_position": { + "x": -10.567500000000003, + "y": 3.195000000000001 + }, + "center": { + "x": -10.667500000000002, + "y": 3.195000000000001 + }, + "anchor_side": "right", + "source_net_id": "source_net_4" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_51", + "text": "VM", + "anchor_position": { + "x": -9.6675, + "y": 5.235000000000001 + }, + "center": { + "x": -9.7675, + "y": 5.235000000000001 + }, + "anchor_side": "right", + "source_net_id": "source_net_4" + }, + { + "type": "schematic_net_label", + "schematic_net_label_id": "schematic_net_label_52", + "text": "GND", + "anchor_position": { + "x": 5.027499999999999, + "y": -0.9305446500000012 + }, + "center": { + "x": 5.177499999999999, + "y": -0.9305446500000012 + }, + "anchor_side": "left", + "source_net_id": "source_net_0" + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_0", + "center": { + "x": 0, + "y": 17.724999099999952 + }, + "width": 9.640062000000166, + "height": 6.380086300000018, + "layer": "top", + "rotation": 180, + "source_component_id": "source_component_0", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 0, + "display_offset_y": 17.3 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_1", + "center": { + "x": 6.999999999999943, + "y": 9.999999999999943 + }, + "width": 2.8301949999998577, + "height": 2.9719269999997238, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_1", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 7, + "display_offset_y": 10 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_2", + "center": { + "x": 11.999999999999943, + "y": 11 + }, + "width": 2.5217119999998694, + "height": 3.704844000000051, + "layer": "top", + "rotation": 180, + "source_component_id": "source_component_2", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 12, + "display_offset_y": 11 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_3", + "center": { + "x": -4.800000000000001, + "y": 7.2 + }, + "width": 7.050125600000047, + "height": 7.049871600000005, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_3", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -4.8, + "display_offset_y": 7.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_4", + "center": { + "x": -15, + "y": 7.199999999999944 + }, + "width": 7.690180200000164, + "height": 6.06000820000006, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_4", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -15, + "display_offset_y": 7.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_5", + "center": { + "x": -5.2, + "y": 0.8 + }, + "width": 3.600145199999899, + "height": 2.90001959999999, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_5", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -5.2, + "display_offset_y": 0.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_6", + "center": { + "x": -12, + "y": -13.5 + }, + "width": 9.120000000000003, + "height": 1.5, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_6", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -12, + "display_offset_y": -13.5 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_7", + "center": { + "x": 0.20000000000000018, + "y": -5.599999999999996 + }, + "width": 5.899988199999997, + "height": 5.899988200000003, + "layer": "top", + "rotation": 180, + "source_component_id": "source_component_7", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 0.2, + "display_offset_y": -5.6 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_8", + "center": { + "x": -15.599999999999998, + "y": -4.8 + }, + "width": 1.5239999999999991, + "height": 6.523990000000024, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_8", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -15.6, + "display_offset_y": -4.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_9", + "center": { + "x": 7.105427357601002e-15, + "y": -16.8 + }, + "width": 7.079995999999998, + "height": 1.9999960000000012, + "layer": "top", + "rotation": 180, + "source_component_id": "source_component_9", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 0, + "display_offset_y": -16.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_10", + "center": { + "x": 7.1999999999999424, + "y": -14.5 + }, + "width": 6.399784000000056, + "height": 1.9999959999999994, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_10", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 7.2, + "display_offset_y": -14.5 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_11", + "center": { + "x": 13.2, + "y": -12.8 + }, + "width": 8.839835000000091, + "height": 1.1999975999999997, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_11", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 13.2, + "display_offset_y": -12.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_12", + "center": { + "x": 16, + "y": -2.5999999999999996 + }, + "width": 1.5999967999999996, + "height": 9.100108799999944, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_12", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "is_allowed_to_be_off_board": false, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 16, + "display_offset_y": -2.6 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_13", + "center": { + "x": -10.1, + "y": 13.3 + }, + "width": 0.8000000000000007, + "height": 2.599999999999998, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_13", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -10.1, + "display_offset_y": 13.3 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_14", + "center": { + "x": -7.699999999999999, + "y": 13.3 + }, + "width": 0.7999999999999998, + "height": 2.599999999999998, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_14", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -7.7, + "display_offset_y": 13.3 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_15", + "center": { + "x": 1, + "y": 10 + }, + "width": 0.7999999999999999, + "height": 2.599999999999998, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_15", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 1, + "display_offset_y": 10 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_16", + "center": { + "x": 3.5, + "y": 10 + }, + "width": 0.7999999999999998, + "height": 2.599999999999998, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_16", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 3.5, + "display_offset_y": 10 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_17", + "center": { + "x": 8.4, + "y": 14.1 + }, + "width": 2.45, + "height": 0.9499999999999993, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_17", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 8.4, + "display_offset_y": 14.1 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_18", + "center": { + "x": 15.2, + "y": 10.7 + }, + "width": 2.4499999999999975, + "height": 0.9499999999999993, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_18", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 15.2, + "display_offset_y": 10.7 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_19", + "center": { + "x": 3.8, + "y": 6.8 + }, + "width": 2.4500000000000006, + "height": 0.9499999999999993, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_19", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 3.8, + "display_offset_y": 6.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_20", + "center": { + "x": -9.2, + "y": 11.4 + }, + "width": 1.5599999999999987, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_20", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -9.2, + "display_offset_y": 11.4 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_21", + "center": { + "x": -9.4, + "y": 2.8 + }, + "width": 1.5599999999999987, + "height": 0.6399999999999997, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_21", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -9.4, + "display_offset_y": 2.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_22", + "center": { + "x": -0.8, + "y": 11.3 + }, + "width": 1.56, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_22", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -0.8, + "display_offset_y": 11.3 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_23", + "center": { + "x": -0.9000000000000001, + "y": 3 + }, + "width": 1.56, + "height": 0.6399999999999997, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_23", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -0.9, + "display_offset_y": 3 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_24", + "center": { + "x": -4.8, + "y": 11.8 + }, + "width": 1.5600000000000005, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_24", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -4.8, + "display_offset_y": 11.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_25", + "center": { + "x": -15, + "y": 11.1 + }, + "width": 0.5399999999999991, + "height": 1.6600000000000001, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_25", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -15, + "display_offset_y": 11.1 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_26", + "center": { + "x": -8, + "y": 0.8 + }, + "width": 1.5599999999999987, + "height": 0.6400000000000001, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_26", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -8, + "display_offset_y": 0.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_27", + "center": { + "x": -2.3, + "y": 0.8 + }, + "width": 1.5599999999999998, + "height": 0.6400000000000001, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_27", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -2.3, + "display_offset_y": 0.8 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_28", + "center": { + "x": -0.4, + "y": 8.1 + }, + "width": 0.5400000000000003, + "height": 1.6600000000000001, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_28", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -0.4, + "display_offset_y": 8.1 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_29", + "center": { + "x": 11.8, + "y": -6.6 + }, + "width": 0.8000000000000007, + "height": 2.5999999999999996, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_29", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 11.8, + "display_offset_y": -6.6 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_30", + "center": { + "x": 11.8, + "y": -3.2 + }, + "width": 0.8000000000000007, + "height": 2.6, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_30", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 11.8, + "display_offset_y": -3.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_31", + "center": { + "x": 13.8, + "y": -4.9 + }, + "width": 1.5599999999999987, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_31", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 13.8, + "display_offset_y": -4.9 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_32", + "center": { + "x": -7.1, + "y": -2.4 + }, + "width": 1.5599999999999987, + "height": 0.6399999999999997, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_32", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -7.1, + "display_offset_y": -2.4 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_33", + "center": { + "x": -2.9, + "y": -2.4 + }, + "width": 1.5600000000000005, + "height": 0.6399999999999997, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_33", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -2.9, + "display_offset_y": -2.4 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_34", + "center": { + "x": 1.4, + "y": -1.2 + }, + "width": 1.5599999999999998, + "height": 0.6400000000000001, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_34", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 1.4, + "display_offset_y": -1.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_35", + "center": { + "x": 4.3, + "y": -1.2 + }, + "width": 1.56, + "height": 0.6400000000000001, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_35", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 4.3, + "display_offset_y": -1.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_36", + "center": { + "x": 7.2, + "y": -1.2 + }, + "width": 1.5600000000000005, + "height": 0.6400000000000001, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_36", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 7.2, + "display_offset_y": -1.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_37", + "center": { + "x": -8, + "y": -9.7 + }, + "width": 1.125, + "height": 4.675000000000001, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_37", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -8, + "display_offset_y": -9.7 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_38", + "center": { + "x": 8.3, + "y": -9.7 + }, + "width": 1.125, + "height": 4.675000000000001, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_38", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 8.3, + "display_offset_y": -9.7 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_39", + "center": { + "x": 5.2, + "y": -7.2 + }, + "width": 1.5600000000000005, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_39", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 5.2, + "display_offset_y": -7.2 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_40", + "center": { + "x": 5.2, + "y": -10.4 + }, + "width": 1.5600000000000005, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_40", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 5.2, + "display_offset_y": -10.4 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_41", + "center": { + "x": -0.30000000000000004, + "y": -11 + }, + "width": 1.56, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_41", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -0.3, + "display_offset_y": -11 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_42", + "center": { + "x": 2.5, + "y": -11 + }, + "width": 1.5599999999999998, + "height": 0.6400000000000006, + "layer": "top", + "rotation": 0, + "source_component_id": "source_component_42", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 2.5, + "display_offset_y": -11 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_43", + "center": { + "x": -12.8, + "y": -7.1 + }, + "width": 0.8000000000000007, + "height": 2.6000000000000005, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_43", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -12.8, + "display_offset_y": -7.1 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_44", + "center": { + "x": -10.1, + "y": -7 + }, + "width": 1.125, + "height": 4.675000000000001, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_44", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": -10.1, + "display_offset_y": -7 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_45", + "center": { + "x": 16, + "y": 7.4 + }, + "width": 0.7999999999999989, + "height": 2.5999999999999988, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_45", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 16, + "display_offset_y": 7.4 + }, + { + "type": "pcb_component", + "pcb_component_id": "pcb_component_46", + "center": { + "x": 13, + "y": 7.4 + }, + "width": 0.8000000000000007, + "height": 2.5999999999999988, + "layer": "top", + "rotation": 90, + "source_component_id": "source_component_46", + "subcircuit_id": "subcircuit_source_group_0", + "do_not_place": false, + "obstructs_within_bounds": true, + "position_mode": "relative_to_group_anchor", + "positioned_relative_to_pcb_board_id": "pcb_board_0", + "display_offset_x": 13, + "display_offset_y": 7.4 + }, + { + "type": "pcb_board", + "pcb_board_id": "pcb_board_0", + "source_board_id": "source_board_0", + "center": { + "x": 0, + "y": 0 + }, + "thickness": 1.6, + "num_layers": 4, + "width": 42, + "height": 42, + "material": "fr4" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_0", + "pcb_component_id": null, + "hole_shape": "circle", + "hole_diameter": 3.2, + "x": -15.5, + "y": -15.5, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_1", + "pcb_component_id": null, + "hole_shape": "circle", + "hole_diameter": 3.2, + "x": 15.5, + "y": -15.5, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_2", + "pcb_component_id": null, + "hole_shape": "circle", + "hole_diameter": 3.2, + "x": -15.5, + "y": 15.5, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_3", + "pcb_component_id": null, + "hole_shape": "circle", + "hole_diameter": 3.2, + "x": 15.5, + "y": 15.5, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_4", + "pcb_component_id": "pcb_component_0", + "hole_shape": "circle", + "hole_diameter": 0.700024, + "x": 2.890011999999956, + "y": 16.365064049999933, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_hole", + "pcb_hole_id": "pcb_hole_5", + "pcb_component_id": "pcb_component_0", + "hole_shape": "circle", + "hole_diameter": 0.700024, + "x": -2.8900120000000697, + "y": 16.365064049999933, + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_0", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_2", + "outer_width": 0.9999979999999999, + "outer_height": 1.7999964, + "hole_width": 0.5999987999999999, + "hole_height": 1.3999972, + "shape": "pill", + "port_hints": ["unnamed_platedhole1", "pin3"], + "x": 4.320032000000083, + "y": 20.01504404999996, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0", + "ccw_rotation": 0 + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_0", + "layer": "top", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.7999964, + "x": 4.320032000000083, + "y": 20.01504404999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_1", + "layer": "bottom", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.7999964, + "x": 4.320032000000083, + "y": 20.01504404999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_1", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_3", + "outer_width": 0.9999979999999999, + "outer_height": 1.7999964, + "hole_width": 0.5999987999999999, + "hole_height": 1.3999972, + "shape": "pill", + "port_hints": ["unnamed_platedhole2", "pin4"], + "x": -4.320032000000083, + "y": 20.01504404999996, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0", + "ccw_rotation": 0 + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_2", + "layer": "top", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.7999964, + "x": -4.320032000000083, + "y": 20.01504404999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_3", + "layer": "bottom", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.7999964, + "x": -4.320032000000083, + "y": 20.01504404999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_2", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_1", + "outer_width": 0.9999979999999999, + "outer_height": 1.9999959999999999, + "hole_width": 0.5999987999999999, + "hole_height": 1.5999968, + "shape": "pill", + "port_hints": ["unnamed_platedhole3", "pin2"], + "x": -4.320032000000083, + "y": 15.83496604999998, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0", + "ccw_rotation": 0 + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_4", + "layer": "top", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.9999959999999999, + "x": -4.320032000000083, + "y": 15.83496604999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_5", + "layer": "bottom", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.9999959999999999, + "x": -4.320032000000083, + "y": 15.83496604999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_3", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_0", + "outer_width": 0.9999979999999999, + "outer_height": 1.9999959999999999, + "hole_width": 0.5999987999999999, + "hole_height": 1.5999968, + "shape": "pill", + "port_hints": ["unnamed_platedhole4", "pin1"], + "x": 4.320032000000083, + "y": 15.83496604999998, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0", + "ccw_rotation": 0 + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_6", + "layer": "top", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.9999959999999999, + "x": 4.320032000000083, + "y": 15.83496604999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_7", + "layer": "bottom", + "shape": "pill", + "width": 0.9999979999999999, + "height": 1.9999959999999999, + "x": 4.320032000000083, + "y": 15.83496604999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_0", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_4", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": 3.350006000000007, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_8", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 3.350006000000007, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_0", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_1", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_5", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin6"], + "is_covered_with_solder_mask": false, + "x": 3.050031999999987, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_9", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 3.050031999999987, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_1", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_2", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_6", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin7"], + "is_covered_with_solder_mask": false, + "x": 2.549905999999964, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_10", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 2.549905999999964, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_2", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_3", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_7", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin8"], + "is_covered_with_solder_mask": false, + "x": 2.2499320000000576, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_11", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 2.2499320000000576, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_3", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_4", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_8", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin9"], + "is_covered_with_solder_mask": false, + "x": 1.7500600000000757, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_12", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 1.7500600000000757, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_4", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_5", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_9", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin10"], + "is_covered_with_solder_mask": false, + "x": 1.249933999999939, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_13", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 1.249933999999939, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_5", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_6", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_10", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin11"], + "is_covered_with_solder_mask": false, + "x": 0.7500619999999569, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_14", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 0.7500619999999569, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_6", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_7", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_11", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin12"], + "is_covered_with_solder_mask": false, + "x": 0.24993599999993396, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_15", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": 0.24993599999993396, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_7", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_8", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_12", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin13"], + "is_covered_with_solder_mask": false, + "x": -0.24993599999993446, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_16", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -0.24993599999993446, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_8", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_9", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_13", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin14"], + "is_covered_with_solder_mask": false, + "x": -0.7500619999999574, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_17", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -0.7500619999999574, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_9", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_10", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_14", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin15"], + "is_covered_with_solder_mask": false, + "x": -1.750060000000076, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_18", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -1.750060000000076, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_10", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_11", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_15", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin16"], + "is_covered_with_solder_mask": false, + "x": -3.0500320000001016, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_19", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -3.0500320000001016, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_11", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_12", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_16", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin17"], + "is_covered_with_solder_mask": false, + "x": -3.350006000000008, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_20", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -3.350006000000008, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_12", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_13", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_17", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin18"], + "is_covered_with_solder_mask": false, + "x": -1.2496799999998986, + "y": 15.184980049999968, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_21", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -1.2496799999998986, + "y": 15.184980049999968, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_13", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_14", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_18", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin19"], + "is_covered_with_solder_mask": false, + "x": -2.249906599999918, + "y": 15.184954649999941, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_22", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -2.249906599999918, + "y": 15.184954649999941, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_14", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_15", + "pcb_component_id": "pcb_component_0", + "pcb_port_id": "pcb_port_19", + "layer": "top", + "shape": "rect", + "width": 0.29999939999999997, + "height": 1.2999973999999999, + "port_hints": ["pin20"], + "is_covered_with_solder_mask": false, + "x": -2.549880599999938, + "y": 15.184954649999941, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_23", + "layer": "top", + "shape": "rect", + "width": 0.20999957999999996, + "height": 0.9099981799999999, + "x": -2.549880599999938, + "y": 15.184954649999941, + "pcb_component_id": "pcb_component_0", + "pcb_smtpad_id": "pcb_smtpad_15", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_0", + "pcb_component_id": "pcb_component_0", + "layer": "top", + "route": [ + { + "x": -4.57197460000009, + "y": 18.923225049999974 + }, + { + "x": -4.57197460000009, + "y": 17.026937249999992 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_1", + "pcb_component_id": "pcb_component_0", + "layer": "top", + "route": [ + { + "x": 4.572025399999917, + "y": 21.107015449999995 + }, + { + "x": 4.572025399999917, + "y": 22.680088249999972 + }, + { + "x": -4.571974600000089, + "y": 22.680088249999972 + }, + { + "x": -4.571974600000089, + "y": 21.107015449999995 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_2", + "pcb_component_id": "pcb_component_0", + "layer": "top", + "route": [ + { + "x": 4.572025399999916, + "y": 17.026937249999992 + }, + { + "x": 4.572025399999916, + "y": 18.923225049999974 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_16", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_20", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": 8.149095999999872, + "y": 9.050040000000081, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_24", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 8.149095999999872, + "y": 9.050040000000081, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_16", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_17", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_21", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": 8.149095999999872, + "y": 10, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_25", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 8.149095999999872, + "y": 10, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_17", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_18", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_22", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": 8.149095999999872, + "y": 10.949959999999805, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_26", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 8.149095999999872, + "y": 10.949959999999805, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_18", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_19", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_23", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": 5.850904000000014, + "y": 10.949959999999805, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_27", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 5.850904000000014, + "y": 10.949959999999805, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_19", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_20", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_24", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": 5.850904000000014, + "y": 10, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_28", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 5.850904000000014, + "y": 10, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_20", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_21", + "pcb_component_id": "pcb_component_1", + "pcb_port_id": "pcb_port_25", + "layer": "top", + "shape": "rect", + "width": 1.0720070000000002, + "height": 0.532003, + "port_hints": ["pin6"], + "is_covered_with_solder_mask": false, + "x": 5.850904000000014, + "y": 9.050040000000081, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_29", + "layer": "top", + "shape": "rect", + "width": 0.7504049, + "height": 0.37240209999999996, + "x": 5.850904000000014, + "y": 9.050040000000081, + "pcb_component_id": "pcb_component_1", + "pcb_smtpad_id": "pcb_smtpad_21", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_3", + "pcb_component_id": "pcb_component_1", + "layer": "top", + "route": [ + { + "x": 7.8892031999998835, + "y": 11.539189199999896 + }, + { + "x": 6.110796800000003, + "y": 11.539189199999896 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_4", + "pcb_component_id": "pcb_component_1", + "layer": "top", + "route": [ + { + "x": 7.8892031999998835, + "y": 8.46081079999999 + }, + { + "x": 6.110796800000003, + "y": 8.46081079999999 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_22", + "pcb_component_id": "pcb_component_2", + "pcb_port_id": "pcb_port_29", + "layer": "top", + "shape": "rect", + "width": 0.6223, + "height": 1.1049, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": 11.050294000000008, + "y": 9.700027999999975, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_30", + "layer": "top", + "shape": "rect", + "width": 0.43560999999999994, + "height": 0.77343, + "x": 11.050294000000008, + "y": 9.700027999999975, + "pcb_component_id": "pcb_component_2", + "pcb_smtpad_id": "pcb_smtpad_22", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_23", + "pcb_component_id": "pcb_component_2", + "pcb_port_id": "pcb_port_30", + "layer": "top", + "shape": "rect", + "width": 0.6223, + "height": 1.1049, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": 12.949705999999878, + "y": 9.700027999999975, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_31", + "layer": "top", + "shape": "rect", + "width": 0.43560999999999994, + "height": 0.77343, + "x": 12.949705999999878, + "y": 9.700027999999975, + "pcb_component_id": "pcb_component_2", + "pcb_smtpad_id": "pcb_smtpad_23", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_24", + "pcb_component_id": "pcb_component_2", + "pcb_port_id": "pcb_port_26", + "layer": "top", + "shape": "rect", + "width": 0.6223, + "height": 1.1049, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": 12.949705999999878, + "y": 12.299972000000025, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_32", + "layer": "top", + "shape": "rect", + "width": 0.43560999999999994, + "height": 0.77343, + "x": 12.949705999999878, + "y": 12.299972000000025, + "pcb_component_id": "pcb_component_2", + "pcb_smtpad_id": "pcb_smtpad_24", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_25", + "pcb_component_id": "pcb_component_2", + "pcb_port_id": "pcb_port_27", + "layer": "top", + "shape": "rect", + "width": 0.6223, + "height": 1.1049, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": 12.000507999999968, + "y": 12.299972000000025, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_33", + "layer": "top", + "shape": "rect", + "width": 0.43560999999999994, + "height": 0.77343, + "x": 12.000507999999968, + "y": 12.299972000000025, + "pcb_component_id": "pcb_component_2", + "pcb_smtpad_id": "pcb_smtpad_25", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_26", + "pcb_component_id": "pcb_component_2", + "pcb_port_id": "pcb_port_28", + "layer": "top", + "shape": "rect", + "width": 0.6223, + "height": 1.1049, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": 11.050294000000008, + "y": 12.299972000000025, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_34", + "layer": "top", + "shape": "rect", + "width": 0.43560999999999994, + "height": 0.77343, + "x": 11.050294000000008, + "y": 12.299972000000025, + "pcb_component_id": "pcb_component_2", + "pcb_smtpad_id": "pcb_smtpad_26", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_5", + "pcb_component_id": "pcb_component_2", + "layer": "top", + "route": [ + { + "x": 10.58806479999987, + "y": 11.50037999999995 + }, + { + "x": 13.387144799999987, + "y": 11.50037999999995 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_6", + "pcb_component_id": "pcb_component_2", + "layer": "top", + "route": [ + { + "x": 13.387144799999987, + "y": 11.50037999999995 + }, + { + "x": 13.387144799999987, + "y": 10.49962000000005 + }, + { + "x": 10.58806479999987, + "y": 10.49962000000005 + }, + { + "x": 10.58806479999987, + "y": 11.50037999999995 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_7", + "pcb_component_id": "pcb_component_2", + "layer": "top", + "route": [ + { + "x": 13.779549399999837, + "y": 12.521459999999934 + }, + { + "x": 13.902737780049279, + "y": 12.646548528504468 + }, + { + "x": 13.77827939999986, + "y": 12.770373520239445 + }, + { + "x": 13.65382101995067, + "y": 12.646548528504582 + }, + { + "x": 13.777009399999997, + "y": 12.521459999999934 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_27", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_87", + "layer": "top", + "shape": "rect", + "width": 3.0999938, + "height": 3.0999938, + "port_hints": ["pin57"], + "is_covered_with_solder_mask": false, + "x": -4.80012700000002, + "y": 7.1999999999998865, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_35", + "layer": "top", + "shape": "rect", + "width": 2.1699956599999997, + "height": 2.1699956599999997, + "x": -4.80012700000002, + "y": 7.1999999999998865, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_27", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_28", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_86", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin56"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 4.600056000000063, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_36", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 4.600056000000063, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_28", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_29", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_85", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin55"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 4.999851999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_37", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 4.999851999999987, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_29", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_30", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_84", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin54"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 5.399902000000066, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_38", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 5.399902000000066, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_30", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_31", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_83", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin53"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 5.799951999999803, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_39", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 5.799951999999803, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_31", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_32", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_82", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin52"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 6.200001999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_40", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 6.200001999999995, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_32", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_33", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_81", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin51"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 6.60005199999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_41", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 6.60005199999996, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_33", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_34", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_80", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin50"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 6.999847999999997, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_42", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 6.999847999999997, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_34", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_35", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_79", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin49"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 7.399897999999962, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_43", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 7.399897999999962, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_35", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_36", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_78", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin48"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 7.799947999999927, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_44", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 7.799947999999927, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_36", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_37", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_77", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin47"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 8.199998000000006, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_45", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 8.199998000000006, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_37", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_38", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_76", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin46"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 8.60004799999997, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_46", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 8.60004799999997, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_38", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_39", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_75", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin45"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 8.999844000000122, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_47", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 8.999844000000122, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_39", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_40", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_74", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin44"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 9.399893999999858, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_48", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 9.399893999999858, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_40", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_41", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_73", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin43"], + "is_covered_with_solder_mask": false, + "x": -8.225063000000024, + "y": 9.799943999999936, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_49", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -8.225063000000024, + "y": 9.799943999999936, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_41", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_42", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_72", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin42"], + "is_covered_with_solder_mask": false, + "x": -7.400071000000071, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_50", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -7.400071000000071, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_42", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_43", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_71", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin41"], + "is_covered_with_solder_mask": false, + "x": -7.000020999999992, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_51", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -7.000020999999992, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_43", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_44", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_70", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin40"], + "is_covered_with_solder_mask": false, + "x": -6.599970999999914, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_52", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -6.599970999999914, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_44", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_45", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_69", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin39"], + "is_covered_with_solder_mask": false, + "x": -6.199921000000063, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_53", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -6.199921000000063, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_45", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_46", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_68", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin38"], + "is_covered_with_solder_mask": false, + "x": -5.800125000000025, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_54", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.800125000000025, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_46", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_47", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_67", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin37"], + "is_covered_with_solder_mask": false, + "x": -5.400074999999947, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_55", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.400074999999947, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_47", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_48", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_66", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin36"], + "is_covered_with_solder_mask": false, + "x": -5.000024999999982, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_56", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.000024999999982, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_48", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_49", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_65", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin35"], + "is_covered_with_solder_mask": false, + "x": -4.5999750000000175, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_57", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -4.5999750000000175, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_49", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_50", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_64", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin34"], + "is_covered_with_solder_mask": false, + "x": -4.199924999999939, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_58", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -4.199924999999939, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_50", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_51", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_63", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin33"], + "is_covered_with_solder_mask": false, + "x": -3.8001289999999015, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_59", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.8001289999999015, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_51", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_52", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_62", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin32"], + "is_covered_with_solder_mask": false, + "x": -3.4000790000000505, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_60", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.4000790000000505, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_52", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_53", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_61", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin31"], + "is_covered_with_solder_mask": false, + "x": -3.0000290000000858, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_61", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.0000290000000858, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_53", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_54", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_60", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin30"], + "is_covered_with_solder_mask": false, + "x": -2.5999789999998937, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_62", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -2.5999789999998937, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_54", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_55", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_59", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin29"], + "is_covered_with_solder_mask": false, + "x": -2.1999290000000427, + "y": 10.624936000000002, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_63", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -2.1999290000000427, + "y": 10.624936000000002, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_55", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_56", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_58", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin28"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 9.799943999999936, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_64", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 9.799943999999936, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_56", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_57", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_57", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin27"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 9.399893999999858, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_65", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 9.399893999999858, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_57", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_58", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_56", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin26"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 8.99984400000012, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_66", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 8.99984400000012, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_58", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_59", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_55", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin25"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 8.600047999999969, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_67", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 8.600047999999969, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_59", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_60", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_54", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin24"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 8.199998000000004, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_68", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 8.199998000000004, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_60", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_61", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_53", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin23"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 7.799947999999927, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_69", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 7.799947999999927, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_61", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_62", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_52", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin22"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 7.399897999999962, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_70", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 7.399897999999962, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_62", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_63", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_51", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin21"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 6.999847999999997, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_71", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 6.999847999999997, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_63", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_64", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_50", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin20"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 6.60005199999996, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_72", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 6.60005199999996, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_64", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_65", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_49", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin19"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 6.200001999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_73", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 6.200001999999995, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_65", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_66", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_48", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin18"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 5.799951999999803, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_74", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 5.799951999999803, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_66", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_67", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_47", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin17"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 5.399902000000066, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_75", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 5.399902000000066, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_67", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_68", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_46", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin16"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 4.999851999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_76", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 4.999851999999987, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_68", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_69", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_45", + "layer": "top", + "shape": "rect", + "width": 0.8500109999999999, + "height": 0.19999959999999997, + "port_hints": ["pin15"], + "is_covered_with_solder_mask": false, + "x": -1.374936999999977, + "y": 4.600056000000063, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_77", + "layer": "top", + "shape": "rect", + "width": 0.5950076999999998, + "height": 0.13999971999999997, + "x": -1.374936999999977, + "y": 4.600056000000063, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_69", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_70", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_44", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin14"], + "is_covered_with_solder_mask": false, + "x": -2.1999290000000427, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_78", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -2.1999290000000427, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_70", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_71", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_43", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin13"], + "is_covered_with_solder_mask": false, + "x": -2.5999789999998937, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_79", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -2.5999789999998937, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_71", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_72", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_42", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin12"], + "is_covered_with_solder_mask": false, + "x": -3.0000290000000858, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_80", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.0000290000000858, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_72", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_73", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_41", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin11"], + "is_covered_with_solder_mask": false, + "x": -3.4000790000000505, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_81", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.4000790000000505, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_73", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_74", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_40", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin10"], + "is_covered_with_solder_mask": false, + "x": -3.8001289999999015, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_82", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -3.8001289999999015, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_74", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_75", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_39", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin9"], + "is_covered_with_solder_mask": false, + "x": -4.199924999999939, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_83", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -4.199924999999939, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_75", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_76", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_38", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin8"], + "is_covered_with_solder_mask": false, + "x": -4.5999750000000175, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_84", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -4.5999750000000175, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_76", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_77", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_37", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin7"], + "is_covered_with_solder_mask": false, + "x": -5.000024999999982, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_85", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.000024999999982, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_77", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_78", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_36", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin6"], + "is_covered_with_solder_mask": false, + "x": -5.400074999999947, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_86", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.400074999999947, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_78", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_79", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_35", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": -5.800125000000025, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_87", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -5.800125000000025, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_79", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_80", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_34", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": -6.199921000000063, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_88", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -6.199921000000063, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_80", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_81", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_33", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": -6.599970999999914, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_89", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -6.599970999999914, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_81", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_82", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_32", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": -7.000020999999992, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_90", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -7.000020999999992, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_82", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_83", + "pcb_component_id": "pcb_component_3", + "pcb_port_id": "pcb_port_31", + "layer": "top", + "shape": "rect", + "width": 0.19999959999999997, + "height": 0.8500109999999999, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": -7.400071000000071, + "y": 3.7750639999999978, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_91", + "layer": "top", + "shape": "rect", + "width": 0.13999971999999997, + "height": 0.5950076999999998, + "x": -7.400071000000071, + "y": 3.7750639999999978, + "pcb_component_id": "pcb_component_3", + "pcb_smtpad_id": "pcb_smtpad_83", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_8", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300018399999932, + "y": 3.9590108000000557 + }, + { + "x": -8.203168199999869, + "y": 3.9590108000000557 + }, + { + "x": -7.944062800000029, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_9", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -7.731185400000004, + "y": 3.6999308000000157 + }, + { + "x": -8.300018399999932, + "y": 4.2688145999998826 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_10", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -7.731185400000004, + "y": 3.6999308000000157 + }, + { + "x": -8.300018399999932, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_11", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -1.3000832000000626, + "y": 4.2688145999998826 + }, + { + "x": -1.3000832000000626, + "y": 3.7999560000000203 + }, + { + "x": -1.3000832000000626, + "y": 3.6999308000000157 + }, + { + "x": -1.8689161999999895, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_12", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -1.8689161999999895, + "y": 10.699942199999963 + }, + { + "x": -1.3000832000000626, + "y": 10.699942199999963 + }, + { + "x": -1.3000832000000626, + "y": 10.131083800000123 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_13", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300018399999932, + "y": 10.131083800000123 + }, + { + "x": -8.300018399999932, + "y": 10.699942199999963 + }, + { + "x": -7.731185400000004, + "y": 10.699942199999963 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_14", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300018399999932, + "y": 3.6999308000000157 + }, + { + "x": -8.300018399999932, + "y": 4.2688145999998826 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_15", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300145399999952, + "y": 3.9590108000000557 + }, + { + "x": -8.203295200000003, + "y": 3.9590108000000557 + }, + { + "x": -7.944215200000076, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_16", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -7.731312400000024, + "y": 3.6999308000000157 + }, + { + "x": -8.300145399999952, + "y": 4.2688145999998826 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_17", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -7.731312400000024, + "y": 3.6999308000000157 + }, + { + "x": -8.300145399999952, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_18", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -1.3002101999999693, + "y": 4.2688145999998826 + }, + { + "x": -1.3002101999999693, + "y": 3.7999560000000203 + }, + { + "x": -1.3002101999999693, + "y": 3.6999308000000157 + }, + { + "x": -1.86904320000001, + "y": 3.6999308000000157 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_19", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -1.86904320000001, + "y": 10.69991680000005 + }, + { + "x": -1.3002101999999693, + "y": 10.69991680000005 + }, + { + "x": -1.3002101999999693, + "y": 10.131083800000123 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_20", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300145399999952, + "y": 10.131083800000123 + }, + { + "x": -8.300145399999952, + "y": 10.69991680000005 + }, + { + "x": -7.731312400000024, + "y": 10.69991680000005 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_21", + "pcb_component_id": "pcb_component_3", + "layer": "top", + "route": [ + { + "x": -8.300145399999952, + "y": 3.6999308000000157 + }, + { + "x": -8.300145399999952, + "y": 4.2688145999998826 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_84", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_88", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": -11.469907999999919, + "y": 5.294999999999914, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_92", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -11.469907999999919, + "y": 5.294999999999914, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_84", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_85", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_89", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": -11.469907999999919, + "y": 6.565000000000009, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_93", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -11.469907999999919, + "y": 6.565000000000009, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_85", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_86", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_90", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": -11.469907999999919, + "y": 7.834999999999991, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_94", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -11.469907999999919, + "y": 7.834999999999991, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_86", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_87", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_91", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": -11.469907999999919, + "y": 9.104999999999972, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_95", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -11.469907999999919, + "y": 9.104999999999972, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_87", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_88", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_95", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin8"], + "is_covered_with_solder_mask": false, + "x": -18.53009200000008, + "y": 5.294999999999914, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_96", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -18.53009200000008, + "y": 5.294999999999914, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_88", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_89", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_94", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin7"], + "is_covered_with_solder_mask": false, + "x": -18.53009200000008, + "y": 6.565000000000009, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_97", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -18.53009200000008, + "y": 6.565000000000009, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_89", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_90", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_93", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin6"], + "is_covered_with_solder_mask": false, + "x": -18.53009200000008, + "y": 7.834999999999991, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_98", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -18.53009200000008, + "y": 7.834999999999991, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_90", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_91", + "pcb_component_id": "pcb_component_4", + "pcb_port_id": "pcb_port_92", + "layer": "top", + "shape": "rect", + "width": 2.2500082, + "height": 0.6299962, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": -18.53009200000008, + "y": 9.104999999999974, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_99", + "layer": "top", + "shape": "rect", + "width": 1.57500574, + "height": 0.44099733999999996, + "x": -18.53009200000008, + "y": 9.104999999999974, + "pcb_component_id": "pcb_component_4", + "pcb_smtpad_id": "pcb_smtpad_91", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_22", + "pcb_component_id": "pcb_component_4", + "layer": "top", + "route": [ + { + "x": -12.823601000000053, + "y": 4.561295599999949 + }, + { + "x": -17.17639900000006, + "y": 4.561295599999949 + }, + { + "x": -17.17639900000006, + "y": 9.83870440000005 + }, + { + "x": -12.823601000000053, + "y": 9.83870440000005 + }, + { + "x": -12.823601000000053, + "y": 4.561295599999949 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_92", + "pcb_component_id": "pcb_component_5", + "pcb_port_id": "pcb_port_96", + "layer": "top", + "shape": "rect", + "width": 1.3999972, + "height": 1.1999975999999999, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": -6.30007399999995, + "y": -0.05001099999999492, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_100", + "layer": "top", + "shape": "rect", + "width": 0.97999804, + "height": 0.8399983199999999, + "x": -6.30007399999995, + "y": -0.05001099999999492, + "pcb_component_id": "pcb_component_5", + "pcb_smtpad_id": "pcb_smtpad_92", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_93", + "pcb_component_id": "pcb_component_5", + "pcb_port_id": "pcb_port_97", + "layer": "top", + "shape": "rect", + "width": 1.3999972, + "height": 1.1999975999999999, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": -4.099926000000051, + "y": -0.05001099999999492, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_101", + "layer": "top", + "shape": "rect", + "width": 0.97999804, + "height": 0.8399983199999999, + "x": -4.099926000000051, + "y": -0.05001099999999492, + "pcb_component_id": "pcb_component_5", + "pcb_smtpad_id": "pcb_smtpad_93", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_94", + "pcb_component_id": "pcb_component_5", + "pcb_port_id": "pcb_port_98", + "layer": "top", + "shape": "rect", + "width": 1.3999972, + "height": 1.1999975999999999, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": -4.099926000000051, + "y": 1.650010999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_102", + "layer": "top", + "shape": "rect", + "width": 0.97999804, + "height": 0.8399983199999999, + "x": -4.099926000000051, + "y": 1.650010999999995, + "pcb_component_id": "pcb_component_5", + "pcb_smtpad_id": "pcb_smtpad_94", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_95", + "pcb_component_id": "pcb_component_5", + "pcb_port_id": "pcb_port_99", + "layer": "top", + "shape": "rect", + "width": 1.3999972, + "height": 1.1999975999999999, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": -6.30007399999995, + "y": 1.650010999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_103", + "layer": "top", + "shape": "rect", + "width": 0.97999804, + "height": 0.8399983199999999, + "x": -6.30007399999995, + "y": 1.650010999999995, + "pcb_component_id": "pcb_component_5", + "pcb_smtpad_id": "pcb_smtpad_95", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_23", + "pcb_component_id": "pcb_component_5", + "layer": "top", + "route": [ + { + "x": -7.228596400000083, + "y": -0.8784827999999834 + }, + { + "x": -7.228596400000083, + "y": 2.4787368000001377 + }, + { + "x": -3.1714036000000307, + "y": 2.4787368000001377 + }, + { + "x": -3.1714036000000307, + "y": -0.8784827999999834 + }, + { + "x": -7.228596400000083, + "y": -0.8784827999999834 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_24", + "pcb_component_id": "pcb_component_5", + "layer": "top", + "route": [ + { + "x": -7.457196399999998, + "y": 0.5501148000001195 + }, + { + "x": -7.457196399999998, + "y": -1.1070827999998982 + }, + { + "x": -5.599999200000025, + "y": -1.1070827999998982 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_4", + "pcb_component_id": "pcb_component_6", + "pcb_port_id": "pcb_port_100", + "hole_diameter": 1, + "rect_pad_width": 1.5, + "rect_pad_height": 1.5, + "shape": "circular_hole_with_rect_pad", + "port_hints": ["unnamed_platedhole5", "1"], + "x": -15.81, + "y": -13.5, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0", + "hole_offset_x": 0, + "hole_offset_y": 0, + "rect_border_radius": 0, + "rect_ccw_rotation": 0 + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_5", + "pcb_component_id": "pcb_component_6", + "pcb_port_id": "pcb_port_101", + "outer_diameter": 1.5, + "hole_diameter": 1, + "shape": "circle", + "port_hints": ["unnamed_platedhole6", "2"], + "x": -13.27, + "y": -13.5, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_104", + "layer": "top", + "shape": "circle", + "radius": 0.75, + "x": -13.27, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_105", + "layer": "bottom", + "shape": "circle", + "radius": 0.75, + "x": -13.27, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_6", + "pcb_component_id": "pcb_component_6", + "pcb_port_id": "pcb_port_102", + "outer_diameter": 1.5, + "hole_diameter": 1, + "shape": "circle", + "port_hints": ["unnamed_platedhole7", "3"], + "x": -10.73, + "y": -13.5, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_106", + "layer": "top", + "shape": "circle", + "radius": 0.75, + "x": -10.73, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_107", + "layer": "bottom", + "shape": "circle", + "radius": 0.75, + "x": -10.73, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_7", + "pcb_component_id": "pcb_component_6", + "pcb_port_id": "pcb_port_103", + "outer_diameter": 1.5, + "hole_diameter": 1, + "shape": "circle", + "port_hints": ["unnamed_platedhole8", "4"], + "x": -8.19, + "y": -13.5, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_108", + "layer": "top", + "shape": "circle", + "radius": 0.75, + "x": -8.19, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_109", + "layer": "bottom", + "shape": "circle", + "radius": 0.75, + "x": -8.19, + "y": -13.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_0", + "anchor_alignment": "center", + "anchor_position": { + "x": -12, + "y": -10.96 + }, + "font": "tscircuit2024", + "font_size": 0.7, + "layer": "top", + "text": "J_SWD", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_6", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_96", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_132", + "layer": "top", + "shape": "rect", + "width": 3.1999935999999995, + "height": 3.1999935999999995, + "port_hints": ["pin29"], + "is_covered_with_solder_mask": false, + "x": 0.200126999999992, + "y": -5.599872999999986, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_110", + "layer": "top", + "shape": "rect", + "width": 2.2399955199999995, + "height": 2.2399955199999995, + "x": 0.200126999999992, + "y": -5.599872999999986, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_96", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_97", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_131", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin28"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -4.098732999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_111", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -4.098732999999987, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_97", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_98", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_130", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin27"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -4.599112999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_112", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -4.599112999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_98", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_99", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_129", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin26"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -5.0994929999999865, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_113", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -5.0994929999999865, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_99", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_100", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_128", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin25"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -5.599872999999986, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_114", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -5.599872999999986, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_100", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_101", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_127", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin24"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -6.100252999999986, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_115", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -6.100252999999986, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_101", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_102", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_126", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin23"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -6.600632999999993, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_116", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -6.600632999999993, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_102", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_103", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_125", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin22"], + "is_covered_with_solder_mask": false, + "x": 2.6999949999999986, + "y": -7.101012999999993, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_117", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": 2.6999949999999986, + "y": -7.101012999999993, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_103", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_104", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_124", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin21"], + "is_covered_with_solder_mask": false, + "x": 1.7012669999999912, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_118", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 1.7012669999999912, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_104", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_105", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_123", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin20"], + "is_covered_with_solder_mask": false, + "x": 1.2008869999999985, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_119", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 1.2008869999999985, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_105", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_106", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_122", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin19"], + "is_covered_with_solder_mask": false, + "x": 0.7005069999999987, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_120", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 0.7005069999999987, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_106", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_107", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_121", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin18"], + "is_covered_with_solder_mask": false, + "x": 0.2001269999999917, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_121", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 0.2001269999999917, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_107", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_108", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_120", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin17"], + "is_covered_with_solder_mask": false, + "x": -0.30025300000000105, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_122", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -0.30025300000000105, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_108", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_109", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_119", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin16"], + "is_covered_with_solder_mask": false, + "x": -0.8006330000000079, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_123", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -0.8006330000000079, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_109", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_110", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_118", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin15"], + "is_covered_with_solder_mask": false, + "x": -1.3010130000000006, + "y": -8.099994999999998, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_124", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -1.3010130000000006, + "y": -8.099994999999998, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_110", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_111", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_117", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin14"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -7.101012999999993, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_125", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -7.101012999999993, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_111", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_112", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_116", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin13"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -6.600632999999993, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_126", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -6.600632999999993, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_112", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_113", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_115", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin12"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -6.100252999999986, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_127", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -6.100252999999986, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_113", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_114", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_114", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin11"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -5.599872999999986, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_128", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -5.599872999999986, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_114", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_115", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_113", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin10"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -5.0994929999999865, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_129", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -5.0994929999999865, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_115", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_116", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_112", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin9"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -4.599112999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_130", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -4.599112999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_116", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_117", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_111", + "layer": "top", + "shape": "rect", + "width": 0.8999982, + "height": 0.2800096, + "port_hints": ["pin8"], + "is_covered_with_solder_mask": false, + "x": -2.2999949999999982, + "y": -4.098732999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_131", + "layer": "top", + "shape": "rect", + "width": 0.6299987399999999, + "height": 0.19600672, + "x": -2.2999949999999982, + "y": -4.098732999999987, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_117", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_118", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_110", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin7"], + "is_covered_with_solder_mask": false, + "x": -1.3010130000000002, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_132", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -1.3010130000000002, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_118", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_119", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_109", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin6"], + "is_covered_with_solder_mask": false, + "x": -0.8006330000000075, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_133", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -0.8006330000000075, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_119", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_120", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_108", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin5"], + "is_covered_with_solder_mask": false, + "x": -0.3002530000000004, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_134", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": -0.3002530000000004, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_120", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_121", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_107", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin4"], + "is_covered_with_solder_mask": false, + "x": 0.2001269999999923, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_135", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 0.2001269999999923, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_121", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_122", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_106", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin3"], + "is_covered_with_solder_mask": false, + "x": 0.7005069999999993, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_136", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 0.7005069999999993, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_122", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_123", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_105", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": 1.200886999999999, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_137", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 1.200886999999999, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_123", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_124", + "pcb_component_id": "pcb_component_7", + "pcb_port_id": "pcb_port_104", + "layer": "top", + "shape": "rect", + "width": 0.2800096, + "height": 0.8999982, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": 1.7012669999999916, + "y": -3.100004999999994, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_138", + "layer": "top", + "shape": "rect", + "width": 0.19600672, + "height": 0.6299987399999999, + "x": 1.7012669999999916, + "y": -3.100004999999994, + "pcb_component_id": "pcb_component_7", + "pcb_smtpad_id": "pcb_smtpad_124", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_25", + "pcb_component_id": "pcb_component_7", + "layer": "top", + "route": [ + { + "x": 2.200199199999998, + "y": -2.949967199999995 + }, + { + "x": 2.8501851999999963, + "y": -2.949967199999995 + }, + { + "x": 2.8501851999999963, + "y": -3.599953199999993 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_26", + "pcb_component_id": "pcb_component_7", + "layer": "top", + "route": [ + { + "x": 2.200199199999997, + "y": -8.249931199999997 + }, + { + "x": 2.8501851999999954, + "y": -8.249931199999997 + }, + { + "x": 2.8501851999999954, + "y": -7.599945199999992 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_27", + "pcb_component_id": "pcb_component_7", + "layer": "top", + "route": [ + { + "x": -2.4497788000000074, + "y": -7.599945199999992 + }, + { + "x": -2.4497788000000074, + "y": -8.249931199999997 + }, + { + "x": -1.7997927999999948, + "y": -8.249931199999997 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_28", + "pcb_component_id": "pcb_component_7", + "layer": "top", + "route": [ + { + "x": -1.7997927999999943, + "y": -2.949967199999994 + }, + { + "x": -2.4497788000000065, + "y": -2.949967199999994 + }, + { + "x": -2.4497788000000065, + "y": -3.5999531999999923 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_29", + "pcb_component_id": "pcb_component_7", + "layer": "top", + "route": [ + { + "x": 2.6513031999999916, + "y": -2.6002091999999863 + }, + { + "x": 2.8000442559976526, + "y": -2.7508512297039176 + }, + { + "x": 2.6500331999999935, + "y": -2.9002286240147357 + }, + { + "x": 2.5000221440023345, + "y": -2.7508512297039176 + }, + { + "x": 2.6487631999999954, + "y": -2.6002091999999863 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_8", + "pcb_component_id": "pcb_component_8", + "pcb_port_id": "pcb_port_134", + "outer_diameter": 1.524, + "hole_diameter": 0.762, + "shape": "circle", + "port_hints": ["unnamed_platedhole9", "pin2"], + "x": -15.6, + "y": -4.799872999999979, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_139", + "layer": "top", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -4.799872999999979, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_140", + "layer": "bottom", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -4.799872999999979, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_9", + "pcb_component_id": "pcb_component_8", + "pcb_port_id": "pcb_port_133", + "outer_diameter": 1.524, + "hole_diameter": 0.762, + "shape": "circle", + "port_hints": ["unnamed_platedhole10", "pin1"], + "x": -15.6, + "y": -7.2999950000000124, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_141", + "layer": "top", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -7.2999950000000124, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_142", + "layer": "bottom", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -7.2999950000000124, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_10", + "pcb_component_id": "pcb_component_8", + "pcb_port_id": "pcb_port_135", + "outer_diameter": 1.524, + "hole_diameter": 0.762, + "shape": "circle", + "port_hints": ["unnamed_platedhole11", "pin3"], + "x": -15.6, + "y": -2.300004999999987, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_143", + "layer": "top", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -2.300004999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_144", + "layer": "bottom", + "shape": "circle", + "radius": 0.762, + "x": -15.6, + "y": -2.300004999999987, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_30", + "pcb_component_id": "pcb_component_8", + "layer": "top", + "route": [ + { + "x": -18.05003320000001, + "y": -9.550003199999981 + }, + { + "x": -18.050033200000005, + "y": -0.04999680000001927 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_31", + "pcb_component_id": "pcb_component_8", + "layer": "top", + "route": [ + { + "x": -16.87000000000001, + "y": -7.604033000000004 + }, + { + "x": -17.251000000000012, + "y": -7.604033000000004 + }, + { + "x": -17.632000000000012, + "y": -7.604033000000004 + }, + { + "x": -17.251000000000012, + "y": -7.604033000000004 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_32", + "pcb_component_id": "pcb_component_8", + "layer": "top", + "route": [ + { + "x": -18.05003320000001, + "y": -9.550003199999981 + }, + { + "x": -13.149966799999993, + "y": -9.550003199999981 + }, + { + "x": -13.100005000000015, + "y": -9.550003199999981 + }, + { + "x": -13.100005000000015, + "y": -9.055008000000033 + }, + { + "x": -13.60000399999999, + "y": -9.055008000000033 + }, + { + "x": -13.60000399999999, + "y": -0.5449919999999677 + }, + { + "x": -13.100005000000015, + "y": -0.5449919999999677 + }, + { + "x": -13.100005000000015, + "y": -0.044662800000014435 + }, + { + "x": -13.149966799999993, + "y": -0.044662800000014435 + }, + { + "x": -18.050033200000005, + "y": -0.044662800000014435 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_33", + "pcb_component_id": "pcb_component_8", + "layer": "top", + "route": [ + { + "x": -17.789480000000005, + "y": -7.604033000000004 + }, + { + "x": -17.84472065248324, + "y": -7.836651645746758 + }, + { + "x": -17.99517006993282, + "y": -8.022468590143479 + }, + { + "x": -18.211205497529683, + "y": -8.124897385210534 + }, + { + "x": -18.45029061567616, + "y": -8.123770301925664 + }, + { + "x": -18.665350733384464, + "y": -8.019309257477847 + }, + { + "x": -18.814041564806196, + "y": -7.832082120857751 + }, + { + "x": -18.86708661211427, + "y": -7.598952999999983 + }, + { + "x": -18.814041564806196, + "y": -7.365823879142215 + }, + { + "x": -18.665350733384464, + "y": -7.17859674252212 + }, + { + "x": -18.45029061567616, + "y": -7.074135698074303 + }, + { + "x": -18.211205497529683, + "y": -7.073008614789489 + }, + { + "x": -17.99517006993282, + "y": -7.175437409856488 + }, + { + "x": -17.84472065248324, + "y": -7.361254354253265 + }, + { + "x": -17.789480000000005, + "y": -7.593873000000019 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_11", + "pcb_component_id": "pcb_component_9", + "pcb_port_id": "pcb_port_137", + "outer_diameter": 1.9999959999999999, + "hole_diameter": 1.3000228, + "shape": "circle", + "port_hints": ["unnamed_platedhole12", "pin2"], + "x": -2.539999999999992, + "y": -16.8, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_145", + "layer": "top", + "shape": "circle", + "radius": 0.9999979999999999, + "x": -2.539999999999992, + "y": -16.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_146", + "layer": "bottom", + "shape": "circle", + "radius": 0.9999979999999999, + "x": -2.539999999999992, + "y": -16.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_12", + "pcb_component_id": "pcb_component_9", + "pcb_port_id": "pcb_port_136", + "outer_diameter": 1.9999959999999999, + "hole_diameter": 1.3000228, + "shape": "circle", + "port_hints": ["unnamed_platedhole13", "pin1"], + "x": 2.5400000000000063, + "y": -16.8, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_147", + "layer": "top", + "shape": "circle", + "radius": 0.9999979999999999, + "x": 2.5400000000000063, + "y": -16.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_148", + "layer": "bottom", + "shape": "circle", + "radius": 0.9999979999999999, + "x": 2.5400000000000063, + "y": -16.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_34", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": -5.079999999999999, + "y": -22.43753 + }, + { + "x": 5.053837999999998, + "y": -22.43753 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_35", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": 5.679998799999994, + "y": -13.049994800000011 + }, + { + "x": 5.0800000000000125, + "y": -13.30003240000001 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_36", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": 5.679998799999993, + "y": -14.049992800000002 + }, + { + "x": 5.679998799999994, + "y": -13.049994800000011 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_37", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": 5.0800000000000125, + "y": -13.799929800000005 + }, + { + "x": 5.679998799999993, + "y": -14.049992800000002 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_38", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": 5.080000000000012, + "y": -21.300016400000008 + }, + { + "x": 5.679998799999992, + "y": -21.55000320000001 + }, + { + "x": 5.679998799999992, + "y": -20.549979800000006 + }, + { + "x": 5.080000000000012, + "y": -20.7998904 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_39", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": -5.079999999999997, + "y": -12.277530000000016 + }, + { + "x": 5.053838, + "y": -12.277530000000016 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_40", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": -5.079999999999997, + "y": -12.277530000000016 + }, + { + "x": -5.079999999999999, + "y": -22.43753 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_41", + "pcb_component_id": "pcb_component_9", + "layer": "top", + "route": [ + { + "x": 5.080000000000013, + "y": -12.280069999999998 + }, + { + "x": 5.080000000000012, + "y": -22.44007000000001 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_125", + "pcb_component_id": "pcb_component_10", + "pcb_port_id": "pcb_port_139", + "layer": "top", + "shape": "rect", + "width": 1.9999959999999999, + "height": 1.9999959999999999, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": 9.399893999999971, + "y": -14.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_149", + "layer": "top", + "shape": "rect", + "width": 1.3999971999999998, + "height": 1.3999971999999998, + "x": 9.399893999999971, + "y": -14.5, + "pcb_component_id": "pcb_component_10", + "pcb_smtpad_id": "pcb_smtpad_125", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_126", + "pcb_component_id": "pcb_component_10", + "pcb_port_id": "pcb_port_138", + "layer": "top", + "shape": "rect", + "width": 1.9999959999999999, + "height": 1.9999959999999999, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": 5.0001059999999145, + "y": -14.5, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_150", + "layer": "top", + "shape": "rect", + "width": 1.3999971999999998, + "height": 1.3999971999999998, + "x": 5.0001059999999145, + "y": -14.5, + "pcb_component_id": "pcb_component_10", + "pcb_smtpad_id": "pcb_smtpad_126", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_42", + "pcb_component_id": "pcb_component_10", + "layer": "top", + "route": [ + { + "x": 6.316080000000011, + "y": -13.073789999999917 + }, + { + "x": 6.316080000000011, + "y": -15.92620999999997 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_43", + "pcb_component_id": "pcb_component_10", + "layer": "top", + "route": [ + { + "x": 4.60381519999994, + "y": -13.073789999999917 + }, + { + "x": 9.796184799999946, + "y": -13.073789999999917 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_44", + "pcb_component_id": "pcb_component_10", + "layer": "top", + "route": [ + { + "x": 9.793289199999958, + "y": -15.67561360000002 + }, + { + "x": 9.799969399999963, + "y": -15.914830800000004 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_45", + "pcb_component_id": "pcb_component_10", + "layer": "top", + "route": [ + { + "x": 9.796184799999946, + "y": -13.073789999999917 + }, + { + "x": 9.802865000000065, + "y": -13.313007199999902 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_46", + "pcb_component_id": "pcb_component_10", + "layer": "top", + "route": [ + { + "x": 4.60381519999994, + "y": -15.92620999999997 + }, + { + "x": 9.796184799999946, + "y": -15.92620999999997 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_127", + "pcb_component_id": "pcb_component_11", + "pcb_port_id": "pcb_port_140", + "layer": "top", + "shape": "rect", + "width": 3.4999930000000004, + "height": 1.1999975999999999, + "port_hints": ["pin1"], + "is_covered_with_solder_mask": false, + "x": 10.530078999999954, + "y": -12.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_151", + "layer": "top", + "shape": "rect", + "width": 2.4499951, + "height": 0.8399983199999999, + "x": 10.530078999999954, + "y": -12.8, + "pcb_component_id": "pcb_component_11", + "pcb_smtpad_id": "pcb_smtpad_127", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_128", + "pcb_component_id": "pcb_component_11", + "pcb_port_id": "pcb_port_141", + "layer": "top", + "shape": "rect", + "width": 3.4999930000000004, + "height": 1.1999975999999999, + "port_hints": ["pin2"], + "is_covered_with_solder_mask": false, + "x": 15.869921000000044, + "y": -12.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_152", + "layer": "top", + "shape": "rect", + "width": 2.4499951, + "height": 0.8399983199999999, + "x": 15.869921000000044, + "y": -12.8, + "pcb_component_id": "pcb_component_11", + "pcb_smtpad_id": "pcb_smtpad_128", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_47", + "pcb_component_id": "pcb_component_11", + "layer": "top", + "route": [ + { + "x": 16.555543199999942, + "y": -13.539343200000122 + }, + { + "x": 16.575634599999898, + "y": -16.17571079999998 + }, + { + "x": 11.218749200000001, + "y": -16.17571079999998 + }, + { + "x": 9.824289200000134, + "y": -14.781250800000112 + }, + { + "x": 9.837624200000118, + "y": -13.485825400000113 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_48", + "pcb_component_id": "pcb_component_11", + "layer": "top", + "route": [ + { + "x": 16.56943700000006, + "y": -12.092355999999928 + }, + { + "x": 16.576142600000093, + "y": -9.423882800000047 + }, + { + "x": 11.219943000000011, + "y": -9.423882800000047 + }, + { + "x": 9.82380660000008, + "y": -10.820019200000093 + }, + { + "x": 9.82380660000008, + "y": -12.114250800000082 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_13", + "pcb_component_id": "pcb_component_12", + "pcb_port_id": "pcb_port_145", + "outer_diameter": 1.5999967999999998, + "hole_diameter": 1.1000231999999999, + "shape": "circle", + "port_hints": ["unnamed_platedhole14", "pin4"], + "x": 16, + "y": 1.1500559999999722, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_153", + "layer": "top", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": 1.1500559999999722, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_154", + "layer": "bottom", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": 1.1500559999999722, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_14", + "pcb_component_id": "pcb_component_12", + "pcb_port_id": "pcb_port_144", + "outer_diameter": 1.5999967999999998, + "hole_diameter": 1.1000231999999999, + "shape": "circle", + "port_hints": ["unnamed_platedhole15", "pin3"], + "x": 16, + "y": -1.3500659999999471, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_155", + "layer": "top", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -1.3500659999999471, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_156", + "layer": "bottom", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -1.3500659999999471, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_15", + "pcb_component_id": "pcb_component_12", + "pcb_port_id": "pcb_port_143", + "outer_diameter": 1.5999967999999998, + "hole_diameter": 1.1000231999999999, + "shape": "circle", + "port_hints": ["unnamed_platedhole16", "pin2"], + "x": 16, + "y": -3.8499339999999393, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_157", + "layer": "top", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -3.8499339999999393, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_158", + "layer": "bottom", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -3.8499339999999393, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_plated_hole", + "pcb_plated_hole_id": "pcb_plated_hole_16", + "pcb_component_id": "pcb_component_12", + "pcb_port_id": "pcb_port_142", + "outer_diameter": 1.5999967999999998, + "hole_diameter": 1.1000231999999999, + "shape": "circle", + "port_hints": ["unnamed_platedhole17", "pin1"], + "x": 16, + "y": -6.350055999999972, + "layers": ["top", "bottom"], + "is_covered_with_solder_mask": false, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_159", + "layer": "top", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -6.350055999999972, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_160", + "layer": "bottom", + "shape": "circle", + "radius": 0.7999983999999999, + "x": 16, + "y": -6.350055999999972, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_49", + "pcb_component_id": "pcb_component_12", + "layer": "top", + "route": [ + { + "x": 18.285999999999945, + "y": 1.4640000000000781 + }, + { + "x": 17.524, + "y": 1.4640000000000781 + }, + { + "x": 17.524, + "y": 2.8610000000000126 + }, + { + "x": 13.206000000000017, + "y": 2.8610000000000126 + }, + { + "x": 13.206000000000017, + "y": -7.80699999999988 + }, + { + "x": 17.524, + "y": -7.80699999999988 + }, + { + "x": 17.524, + "y": -6.790999999999917 + }, + { + "x": 18.285999999999945, + "y": -6.790999999999917 + }, + { + "x": 18.413000000000125, + "y": -6.790999999999917 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_50", + "pcb_component_id": "pcb_component_12", + "layer": "top", + "route": [ + { + "x": 18.413000000000125, + "y": -5.139999999999963 + }, + { + "x": 17.524, + "y": -5.139999999999963 + }, + { + "x": 17.524, + "y": -0.06000000000003647 + }, + { + "x": 18.413000000000125, + "y": -0.06000000000003647 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_129", + "pcb_component_id": "pcb_component_13", + "pcb_port_id": "pcb_port_146", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -10.1, + "y": 12.475000000000001, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_161", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -10.1, + "y": 12.475000000000001, + "pcb_component_id": "pcb_component_13", + "pcb_smtpad_id": "pcb_smtpad_129", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_130", + "pcb_component_id": "pcb_component_13", + "pcb_port_id": "pcb_port_147", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -10.1, + "y": 14.125, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_162", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -10.1, + "y": 14.125, + "pcb_component_id": "pcb_component_13", + "pcb_smtpad_id": "pcb_smtpad_130", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_51", + "pcb_component_id": "pcb_component_13", + "layer": "top", + "route": [ + { + "x": -10.975, + "y": 14.125 + }, + { + "x": -10.975, + "y": 11.875 + }, + { + "x": -9.225, + "y": 11.875 + }, + { + "x": -9.225, + "y": 14.125 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_1", + "anchor_alignment": "center", + "anchor_position": { + "x": -11.475, + "y": 13.3 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_CC1", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_13", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_131", + "pcb_component_id": "pcb_component_14", + "pcb_port_id": "pcb_port_148", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -7.7, + "y": 12.475000000000001, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_163", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -7.7, + "y": 12.475000000000001, + "pcb_component_id": "pcb_component_14", + "pcb_smtpad_id": "pcb_smtpad_131", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_132", + "pcb_component_id": "pcb_component_14", + "pcb_port_id": "pcb_port_149", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -7.7, + "y": 14.125, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_164", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -7.7, + "y": 14.125, + "pcb_component_id": "pcb_component_14", + "pcb_smtpad_id": "pcb_smtpad_132", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_52", + "pcb_component_id": "pcb_component_14", + "layer": "top", + "route": [ + { + "x": -8.575, + "y": 14.125 + }, + { + "x": -8.575000000000001, + "y": 11.875 + }, + { + "x": -6.825, + "y": 11.875 + }, + { + "x": -6.825, + "y": 14.125 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_2", + "anchor_alignment": "center", + "anchor_position": { + "x": -9.075, + "y": 13.3 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_CC2", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_14", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_133", + "pcb_component_id": "pcb_component_15", + "pcb_port_id": "pcb_port_150", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 1, + "y": 9.175, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_165", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 1, + "y": 9.175, + "pcb_component_id": "pcb_component_15", + "pcb_smtpad_id": "pcb_smtpad_133", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_134", + "pcb_component_id": "pcb_component_15", + "pcb_port_id": "pcb_port_151", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 1, + "y": 10.825, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_166", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 1, + "y": 10.825, + "pcb_component_id": "pcb_component_15", + "pcb_smtpad_id": "pcb_smtpad_134", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_53", + "pcb_component_id": "pcb_component_15", + "layer": "top", + "route": [ + { + "x": 0.125, + "y": 10.825 + }, + { + "x": 0.12499999999999989, + "y": 8.575 + }, + { + "x": 1.875, + "y": 8.575 + }, + { + "x": 1.875, + "y": 10.825 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_3", + "anchor_alignment": "center", + "anchor_position": { + "x": -0.375, + "y": 10 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_USB_DP", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_15", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_135", + "pcb_component_id": "pcb_component_16", + "pcb_port_id": "pcb_port_152", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 3.5, + "y": 9.175, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_167", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 3.5, + "y": 9.175, + "pcb_component_id": "pcb_component_16", + "pcb_smtpad_id": "pcb_smtpad_135", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_136", + "pcb_component_id": "pcb_component_16", + "pcb_port_id": "pcb_port_153", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 3.5, + "y": 10.825, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_168", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 3.5, + "y": 10.825, + "pcb_component_id": "pcb_component_16", + "pcb_smtpad_id": "pcb_smtpad_136", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_54", + "pcb_component_id": "pcb_component_16", + "layer": "top", + "route": [ + { + "x": 2.625, + "y": 10.825 + }, + { + "x": 2.625, + "y": 8.575 + }, + { + "x": 4.375, + "y": 8.575 + }, + { + "x": 4.375, + "y": 10.825 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_4", + "anchor_alignment": "center", + "anchor_position": { + "x": 2.125, + "y": 10 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_USB_DN", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_16", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_137", + "pcb_component_id": "pcb_component_17", + "pcb_port_id": "pcb_port_154", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 7.575, + "y": 14.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_169", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 7.575, + "y": 14.1, + "pcb_component_id": "pcb_component_17", + "pcb_smtpad_id": "pcb_smtpad_137", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_138", + "pcb_component_id": "pcb_component_17", + "pcb_port_id": "pcb_port_155", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 9.225, + "y": 14.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_170", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 9.225, + "y": 14.1, + "pcb_component_id": "pcb_component_17", + "pcb_smtpad_id": "pcb_smtpad_138", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_55", + "pcb_component_id": "pcb_component_17", + "layer": "top", + "route": [ + { + "x": 9.225, + "y": 14.975 + }, + { + "x": 6.9750000000000005, + "y": 14.975 + }, + { + "x": 6.9750000000000005, + "y": 13.225 + }, + { + "x": 9.225, + "y": 13.225 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_5", + "anchor_alignment": "center", + "anchor_position": { + "x": 8.4, + "y": 15.475 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_USB_IN", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_17", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_139", + "pcb_component_id": "pcb_component_18", + "pcb_port_id": "pcb_port_156", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 14.375, + "y": 10.7, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_171", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 14.375, + "y": 10.7, + "pcb_component_id": "pcb_component_18", + "pcb_smtpad_id": "pcb_smtpad_139", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_140", + "pcb_component_id": "pcb_component_18", + "pcb_port_id": "pcb_port_157", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 16.025, + "y": 10.7, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_172", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 16.025, + "y": 10.7, + "pcb_component_id": "pcb_component_18", + "pcb_smtpad_id": "pcb_smtpad_140", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_56", + "pcb_component_id": "pcb_component_18", + "layer": "top", + "route": [ + { + "x": 16.025, + "y": 11.575 + }, + { + "x": 13.774999999999999, + "y": 11.575 + }, + { + "x": 13.774999999999999, + "y": 9.825 + }, + { + "x": 16.025, + "y": 9.825 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_6", + "anchor_alignment": "center", + "anchor_position": { + "x": 15.2, + "y": 12.075 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_USB_OUT", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_18", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_141", + "pcb_component_id": "pcb_component_19", + "pcb_port_id": "pcb_port_158", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 2.9749999999999996, + "y": 6.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_173", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 2.9749999999999996, + "y": 6.8, + "pcb_component_id": "pcb_component_19", + "pcb_smtpad_id": "pcb_smtpad_141", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_142", + "pcb_component_id": "pcb_component_19", + "pcb_port_id": "pcb_port_159", + "layer": "top", + "shape": "rect", + "width": 0.8, + "height": 0.95, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 4.625, + "y": 6.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_174", + "layer": "top", + "shape": "rect", + "width": 0.5599999999999999, + "height": 0.6649999999999999, + "x": 4.625, + "y": 6.8, + "pcb_component_id": "pcb_component_19", + "pcb_smtpad_id": "pcb_smtpad_142", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_57", + "pcb_component_id": "pcb_component_19", + "layer": "top", + "route": [ + { + "x": 4.625, + "y": 7.675 + }, + { + "x": 2.375, + "y": 7.675 + }, + { + "x": 2.375, + "y": 5.925 + }, + { + "x": 4.625, + "y": 5.925 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_7", + "anchor_alignment": "center", + "anchor_position": { + "x": 3.8, + "y": 8.175 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_CORE", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_19", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_143", + "pcb_component_id": "pcb_component_20", + "pcb_port_id": "pcb_port_160", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -9.709999999999999, + "y": 11.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_175", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -9.709999999999999, + "y": 11.4, + "pcb_component_id": "pcb_component_20", + "pcb_smtpad_id": "pcb_smtpad_143", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_144", + "pcb_component_id": "pcb_component_20", + "pcb_port_id": "pcb_port_161", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -8.69, + "y": 11.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_176", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -8.69, + "y": 11.4, + "pcb_component_id": "pcb_component_20", + "pcb_smtpad_id": "pcb_smtpad_144", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_58", + "pcb_component_id": "pcb_component_20", + "layer": "top", + "route": [ + { + "x": -8.69, + "y": 12.120000000000001 + }, + { + "x": -10.18, + "y": 12.120000000000001 + }, + { + "x": -10.18, + "y": 10.68 + }, + { + "x": -8.69, + "y": 10.68 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_8", + "anchor_alignment": "center", + "anchor_position": { + "x": -9.2, + "y": 10.18 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_MCU_1", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_20", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_145", + "pcb_component_id": "pcb_component_21", + "pcb_port_id": "pcb_port_162", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -9.91, + "y": 2.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_177", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -9.91, + "y": 2.8, + "pcb_component_id": "pcb_component_21", + "pcb_smtpad_id": "pcb_smtpad_145", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_146", + "pcb_component_id": "pcb_component_21", + "pcb_port_id": "pcb_port_163", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -8.89, + "y": 2.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_178", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -8.89, + "y": 2.8, + "pcb_component_id": "pcb_component_21", + "pcb_smtpad_id": "pcb_smtpad_146", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_59", + "pcb_component_id": "pcb_component_21", + "layer": "top", + "route": [ + { + "x": -8.89, + "y": 3.5199999999999996 + }, + { + "x": -10.38, + "y": 3.5199999999999996 + }, + { + "x": -10.38, + "y": 2.08 + }, + { + "x": -8.89, + "y": 2.08 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_9", + "anchor_alignment": "center", + "anchor_position": { + "x": -9.4, + "y": 4.02 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_MCU_2", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_21", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_147", + "pcb_component_id": "pcb_component_22", + "pcb_port_id": "pcb_port_164", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -1.31, + "y": 11.3, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_179", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -1.31, + "y": 11.3, + "pcb_component_id": "pcb_component_22", + "pcb_smtpad_id": "pcb_smtpad_147", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_148", + "pcb_component_id": "pcb_component_22", + "pcb_port_id": "pcb_port_165", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -0.29000000000000004, + "y": 11.3, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_180", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -0.29000000000000004, + "y": 11.3, + "pcb_component_id": "pcb_component_22", + "pcb_smtpad_id": "pcb_smtpad_148", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_60", + "pcb_component_id": "pcb_component_22", + "layer": "top", + "route": [ + { + "x": -0.29000000000000004, + "y": 12.020000000000001 + }, + { + "x": -1.78, + "y": 12.020000000000001 + }, + { + "x": -1.78, + "y": 10.58 + }, + { + "x": -0.29000000000000004, + "y": 10.58 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_10", + "anchor_alignment": "center", + "anchor_position": { + "x": -0.8, + "y": 12.520000000000001 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_MCU_3", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_22", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_149", + "pcb_component_id": "pcb_component_23", + "pcb_port_id": "pcb_port_166", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -1.4100000000000001, + "y": 3, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_181", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -1.4100000000000001, + "y": 3, + "pcb_component_id": "pcb_component_23", + "pcb_smtpad_id": "pcb_smtpad_149", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_150", + "pcb_component_id": "pcb_component_23", + "pcb_port_id": "pcb_port_167", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -0.39, + "y": 3, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_182", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -0.39, + "y": 3, + "pcb_component_id": "pcb_component_23", + "pcb_smtpad_id": "pcb_smtpad_150", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_61", + "pcb_component_id": "pcb_component_23", + "layer": "top", + "route": [ + { + "x": -0.39, + "y": 3.7199999999999998 + }, + { + "x": -1.88, + "y": 3.7199999999999998 + }, + { + "x": -1.88, + "y": 2.2800000000000002 + }, + { + "x": -0.39, + "y": 2.2800000000000002 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_11", + "anchor_alignment": "center", + "anchor_position": { + "x": -0.9000000000000002, + "y": 1.7800000000000002 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_MCU_4", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_23", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_151", + "pcb_component_id": "pcb_component_24", + "pcb_port_id": "pcb_port_168", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -5.31, + "y": 11.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_183", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -5.31, + "y": 11.8, + "pcb_component_id": "pcb_component_24", + "pcb_smtpad_id": "pcb_smtpad_151", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_152", + "pcb_component_id": "pcb_component_24", + "pcb_port_id": "pcb_port_169", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -4.29, + "y": 11.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_184", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -4.29, + "y": 11.8, + "pcb_component_id": "pcb_component_24", + "pcb_smtpad_id": "pcb_smtpad_152", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_62", + "pcb_component_id": "pcb_component_24", + "layer": "top", + "route": [ + { + "x": -4.29, + "y": 12.520000000000001 + }, + { + "x": -5.779999999999999, + "y": 12.520000000000001 + }, + { + "x": -5.779999999999999, + "y": 11.08 + }, + { + "x": -4.29, + "y": 11.08 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_12", + "anchor_alignment": "center", + "anchor_position": { + "x": -4.8, + "y": 13.020000000000001 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_MCU_5", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_24", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_153", + "pcb_component_id": "pcb_component_25", + "pcb_port_id": "pcb_port_170", + "layer": "top", + "shape": "rect", + "width": 0.64, + "height": 0.54, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -15, + "y": 10.59, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_185", + "layer": "top", + "shape": "rect", + "width": 0.44799999999999995, + "height": 0.378, + "x": -15, + "y": 10.59, + "pcb_component_id": "pcb_component_25", + "pcb_smtpad_id": "pcb_smtpad_153", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_154", + "pcb_component_id": "pcb_component_25", + "pcb_port_id": "pcb_port_171", + "layer": "top", + "shape": "rect", + "width": 0.64, + "height": 0.54, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -15, + "y": 11.61, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_186", + "layer": "top", + "shape": "rect", + "width": 0.44799999999999995, + "height": 0.378, + "x": -15, + "y": 11.61, + "pcb_component_id": "pcb_component_25", + "pcb_smtpad_id": "pcb_smtpad_154", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_63", + "pcb_component_id": "pcb_component_25", + "layer": "top", + "route": [ + { + "x": -15.72, + "y": 11.61 + }, + { + "x": -15.72, + "y": 10.12 + }, + { + "x": -14.28, + "y": 10.12 + }, + { + "x": -14.28, + "y": 11.61 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_13", + "anchor_alignment": "center", + "anchor_position": { + "x": -16.22, + "y": 11.1 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_FLASH", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_25", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_155", + "pcb_component_id": "pcb_component_26", + "pcb_port_id": "pcb_port_172", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -8.51, + "y": 0.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_187", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -8.51, + "y": 0.8, + "pcb_component_id": "pcb_component_26", + "pcb_smtpad_id": "pcb_smtpad_155", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_156", + "pcb_component_id": "pcb_component_26", + "pcb_port_id": "pcb_port_173", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -7.49, + "y": 0.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_188", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -7.49, + "y": 0.8, + "pcb_component_id": "pcb_component_26", + "pcb_smtpad_id": "pcb_smtpad_156", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_64", + "pcb_component_id": "pcb_component_26", + "layer": "top", + "route": [ + { + "x": -7.49, + "y": 1.52 + }, + { + "x": -8.98, + "y": 1.52 + }, + { + "x": -8.98, + "y": 0.08000000000000007 + }, + { + "x": -7.49, + "y": 0.08000000000000007 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_14", + "anchor_alignment": "center", + "anchor_position": { + "x": -8, + "y": 2.02 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_XIN_1", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_26", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_157", + "pcb_component_id": "pcb_component_27", + "pcb_port_id": "pcb_port_174", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -2.8099999999999996, + "y": 0.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_189", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -2.8099999999999996, + "y": 0.8, + "pcb_component_id": "pcb_component_27", + "pcb_smtpad_id": "pcb_smtpad_157", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_158", + "pcb_component_id": "pcb_component_27", + "pcb_port_id": "pcb_port_175", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -1.7899999999999998, + "y": 0.8, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_190", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -1.7899999999999998, + "y": 0.8, + "pcb_component_id": "pcb_component_27", + "pcb_smtpad_id": "pcb_smtpad_158", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_65", + "pcb_component_id": "pcb_component_27", + "layer": "top", + "route": [ + { + "x": -1.7899999999999998, + "y": 1.52 + }, + { + "x": -3.28, + "y": 1.52 + }, + { + "x": -3.28, + "y": 0.08000000000000007 + }, + { + "x": -1.7899999999999998, + "y": 0.08000000000000007 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_15", + "anchor_alignment": "center", + "anchor_position": { + "x": -2.3, + "y": 2.02 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_XIN_2", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_27", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_159", + "pcb_component_id": "pcb_component_28", + "pcb_port_id": "pcb_port_176", + "layer": "top", + "shape": "rect", + "width": 0.64, + "height": 0.54, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -0.4000000000000001, + "y": 7.59, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_191", + "layer": "top", + "shape": "rect", + "width": 0.44799999999999995, + "height": 0.378, + "x": -0.4000000000000001, + "y": 7.59, + "pcb_component_id": "pcb_component_28", + "pcb_smtpad_id": "pcb_smtpad_159", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_160", + "pcb_component_id": "pcb_component_28", + "pcb_port_id": "pcb_port_177", + "layer": "top", + "shape": "rect", + "width": 0.64, + "height": 0.54, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -0.39999999999999997, + "y": 8.61, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_192", + "layer": "top", + "shape": "rect", + "width": 0.44799999999999995, + "height": 0.378, + "x": -0.39999999999999997, + "y": 8.61, + "pcb_component_id": "pcb_component_28", + "pcb_smtpad_id": "pcb_smtpad_160", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_66", + "pcb_component_id": "pcb_component_28", + "layer": "top", + "route": [ + { + "x": -1.12, + "y": 8.61 + }, + { + "x": -1.12, + "y": 7.119999999999999 + }, + { + "x": 0.31999999999999984, + "y": 7.119999999999999 + }, + { + "x": 0.31999999999999995, + "y": 8.61 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_16", + "anchor_alignment": "center", + "anchor_position": { + "x": 0.8200000000000001, + "y": 8.1 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_RUN", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_28", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_161", + "pcb_component_id": "pcb_component_29", + "pcb_port_id": "pcb_port_178", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 11.8, + "y": -7.425, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_193", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 11.8, + "y": -7.425, + "pcb_component_id": "pcb_component_29", + "pcb_smtpad_id": "pcb_smtpad_161", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_162", + "pcb_component_id": "pcb_component_29", + "pcb_port_id": "pcb_port_179", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 11.8, + "y": -5.7749999999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_194", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 11.8, + "y": -5.7749999999999995, + "pcb_component_id": "pcb_component_29", + "pcb_smtpad_id": "pcb_smtpad_162", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_67", + "pcb_component_id": "pcb_component_29", + "layer": "top", + "route": [ + { + "x": 10.925, + "y": -5.7749999999999995 + }, + { + "x": 10.925, + "y": -8.025 + }, + { + "x": 12.675, + "y": -8.025 + }, + { + "x": 12.675, + "y": -5.7749999999999995 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_17", + "anchor_alignment": "center", + "anchor_position": { + "x": 10.425, + "y": -6.6 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_VM_TOP", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_29", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_163", + "pcb_component_id": "pcb_component_30", + "pcb_port_id": "pcb_port_180", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 11.8, + "y": -4.025, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_195", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 11.8, + "y": -4.025, + "pcb_component_id": "pcb_component_30", + "pcb_smtpad_id": "pcb_smtpad_163", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_164", + "pcb_component_id": "pcb_component_30", + "pcb_port_id": "pcb_port_181", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 11.8, + "y": -2.375, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_196", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 11.8, + "y": -2.375, + "pcb_component_id": "pcb_component_30", + "pcb_smtpad_id": "pcb_smtpad_164", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_68", + "pcb_component_id": "pcb_component_30", + "layer": "top", + "route": [ + { + "x": 10.925, + "y": -2.375 + }, + { + "x": 10.925, + "y": -4.625 + }, + { + "x": 12.675, + "y": -4.625 + }, + { + "x": 12.675, + "y": -2.375 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_18", + "anchor_alignment": "center", + "anchor_position": { + "x": 10.425, + "y": -3.2 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_VM_BOT", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_30", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_165", + "pcb_component_id": "pcb_component_31", + "pcb_port_id": "pcb_port_182", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 13.290000000000001, + "y": -4.9, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_197", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 13.290000000000001, + "y": -4.9, + "pcb_component_id": "pcb_component_31", + "pcb_smtpad_id": "pcb_smtpad_165", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_166", + "pcb_component_id": "pcb_component_31", + "pcb_port_id": "pcb_port_183", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 14.31, + "y": -4.9, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_198", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 14.31, + "y": -4.9, + "pcb_component_id": "pcb_component_31", + "pcb_smtpad_id": "pcb_smtpad_166", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_69", + "pcb_component_id": "pcb_component_31", + "layer": "top", + "route": [ + { + "x": 14.31, + "y": -4.180000000000001 + }, + { + "x": 12.82, + "y": -4.180000000000001 + }, + { + "x": 12.82, + "y": -5.62 + }, + { + "x": 14.31, + "y": -5.62 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_19", + "anchor_alignment": "center", + "anchor_position": { + "x": 13.8, + "y": -3.6800000000000006 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_VM_ADC", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_31", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_167", + "pcb_component_id": "pcb_component_32", + "pcb_port_id": "pcb_port_184", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -7.609999999999999, + "y": -2.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_199", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -7.609999999999999, + "y": -2.4, + "pcb_component_id": "pcb_component_32", + "pcb_smtpad_id": "pcb_smtpad_167", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_168", + "pcb_component_id": "pcb_component_32", + "pcb_port_id": "pcb_port_185", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -6.59, + "y": -2.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_200", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -6.59, + "y": -2.4, + "pcb_component_id": "pcb_component_32", + "pcb_smtpad_id": "pcb_smtpad_168", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_70", + "pcb_component_id": "pcb_component_32", + "layer": "top", + "route": [ + { + "x": -6.59, + "y": -1.68 + }, + { + "x": -8.08, + "y": -1.68 + }, + { + "x": -8.08, + "y": -3.12 + }, + { + "x": -6.59, + "y": -3.12 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_20", + "anchor_alignment": "center", + "anchor_position": { + "x": -7.1, + "y": -1.18 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_EN_PU", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_32", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_169", + "pcb_component_id": "pcb_component_33", + "pcb_port_id": "pcb_port_186", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -3.41, + "y": -2.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_201", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -3.41, + "y": -2.4, + "pcb_component_id": "pcb_component_33", + "pcb_smtpad_id": "pcb_smtpad_169", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_170", + "pcb_component_id": "pcb_component_33", + "pcb_port_id": "pcb_port_187", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -2.3899999999999997, + "y": -2.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_202", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -2.3899999999999997, + "y": -2.4, + "pcb_component_id": "pcb_component_33", + "pcb_smtpad_id": "pcb_smtpad_170", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_71", + "pcb_component_id": "pcb_component_33", + "layer": "top", + "route": [ + { + "x": -2.3899999999999997, + "y": -1.68 + }, + { + "x": -3.88, + "y": -1.68 + }, + { + "x": -3.88, + "y": -3.12 + }, + { + "x": -2.3899999999999997, + "y": -3.12 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_21", + "anchor_alignment": "center", + "anchor_position": { + "x": -2.9, + "y": -1.18 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_AWAKE_PU", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_33", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_171", + "pcb_component_id": "pcb_component_34", + "pcb_port_id": "pcb_port_188", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 0.8899999999999999, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_203", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 0.8899999999999999, + "y": -1.2, + "pcb_component_id": "pcb_component_34", + "pcb_smtpad_id": "pcb_smtpad_171", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_172", + "pcb_component_id": "pcb_component_34", + "pcb_port_id": "pcb_port_189", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 1.91, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_204", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 1.91, + "y": -1.2, + "pcb_component_id": "pcb_component_34", + "pcb_smtpad_id": "pcb_smtpad_172", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_72", + "pcb_component_id": "pcb_component_34", + "layer": "top", + "route": [ + { + "x": 1.91, + "y": -0.48 + }, + { + "x": 0.41999999999999993, + "y": -0.48 + }, + { + "x": 0.41999999999999993, + "y": -1.92 + }, + { + "x": 1.91, + "y": -1.92 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_22", + "anchor_alignment": "center", + "anchor_position": { + "x": 1.4, + "y": 0.020000000000000018 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_MS1_PD", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_34", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_173", + "pcb_component_id": "pcb_component_35", + "pcb_port_id": "pcb_port_190", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 3.79, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_205", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 3.79, + "y": -1.2, + "pcb_component_id": "pcb_component_35", + "pcb_smtpad_id": "pcb_smtpad_173", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_174", + "pcb_component_id": "pcb_component_35", + "pcb_port_id": "pcb_port_191", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 4.81, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_206", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 4.81, + "y": -1.2, + "pcb_component_id": "pcb_component_35", + "pcb_smtpad_id": "pcb_smtpad_174", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_73", + "pcb_component_id": "pcb_component_35", + "layer": "top", + "route": [ + { + "x": 4.81, + "y": -0.48 + }, + { + "x": 3.32, + "y": -0.48 + }, + { + "x": 3.32, + "y": -1.92 + }, + { + "x": 4.81, + "y": -1.92 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_23", + "anchor_alignment": "center", + "anchor_position": { + "x": 4.3, + "y": 0.020000000000000018 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_MS2_PD", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_35", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_175", + "pcb_component_id": "pcb_component_36", + "pcb_port_id": "pcb_port_192", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 6.69, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_207", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 6.69, + "y": -1.2, + "pcb_component_id": "pcb_component_36", + "pcb_smtpad_id": "pcb_smtpad_175", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_176", + "pcb_component_id": "pcb_component_36", + "pcb_port_id": "pcb_port_193", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 7.71, + "y": -1.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_208", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 7.71, + "y": -1.2, + "pcb_component_id": "pcb_component_36", + "pcb_smtpad_id": "pcb_smtpad_176", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_74", + "pcb_component_id": "pcb_component_36", + "layer": "top", + "route": [ + { + "x": 7.71, + "y": -0.48 + }, + { + "x": 6.220000000000001, + "y": -0.48 + }, + { + "x": 6.220000000000001, + "y": -1.92 + }, + { + "x": 7.71, + "y": -1.92 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_24", + "anchor_alignment": "center", + "anchor_position": { + "x": 7.2, + "y": 0.020000000000000018 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_MS3_PD", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_36", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_177", + "pcb_component_id": "pcb_component_37", + "pcb_port_id": "pcb_port_194", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -8, + "y": -11.1625, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_209", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": -8, + "y": -11.1625, + "pcb_component_id": "pcb_component_37", + "pcb_smtpad_id": "pcb_smtpad_177", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_178", + "pcb_component_id": "pcb_component_37", + "pcb_port_id": "pcb_port_195", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -8, + "y": -8.237499999999999, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_210", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": -8, + "y": -8.237499999999999, + "pcb_component_id": "pcb_component_37", + "pcb_smtpad_id": "pcb_smtpad_178", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_75", + "pcb_component_id": "pcb_component_37", + "layer": "top", + "route": [ + { + "x": -9.275, + "y": -8.237499999999999 + }, + { + "x": -9.275, + "y": -11.924999999999999 + }, + { + "x": -6.7250000000000005, + "y": -11.924999999999999 + }, + { + "x": -6.725, + "y": -8.237499999999999 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_25", + "anchor_alignment": "center", + "anchor_position": { + "x": -9.775, + "y": -9.7 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_SENSE1", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_37", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_179", + "pcb_component_id": "pcb_component_38", + "pcb_port_id": "pcb_port_196", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 8.3, + "y": -11.1625, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_211", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": 8.3, + "y": -11.1625, + "pcb_component_id": "pcb_component_38", + "pcb_smtpad_id": "pcb_smtpad_179", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_180", + "pcb_component_id": "pcb_component_38", + "pcb_port_id": "pcb_port_197", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 8.3, + "y": -8.237499999999999, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_212", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": 8.3, + "y": -8.237499999999999, + "pcb_component_id": "pcb_component_38", + "pcb_smtpad_id": "pcb_smtpad_180", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_76", + "pcb_component_id": "pcb_component_38", + "layer": "top", + "route": [ + { + "x": 7.025, + "y": -8.237499999999999 + }, + { + "x": 7.025, + "y": -11.924999999999999 + }, + { + "x": 9.575000000000001, + "y": -11.924999999999999 + }, + { + "x": 9.575000000000001, + "y": -8.237499999999999 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_26", + "anchor_alignment": "center", + "anchor_position": { + "x": 6.525, + "y": -9.7 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_SENSE2", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_38", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_181", + "pcb_component_id": "pcb_component_39", + "pcb_port_id": "pcb_port_198", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 4.69, + "y": -7.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_213", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 4.69, + "y": -7.2, + "pcb_component_id": "pcb_component_39", + "pcb_smtpad_id": "pcb_smtpad_181", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_182", + "pcb_component_id": "pcb_component_39", + "pcb_port_id": "pcb_port_199", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 5.71, + "y": -7.2, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_214", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 5.71, + "y": -7.2, + "pcb_component_id": "pcb_component_39", + "pcb_smtpad_id": "pcb_smtpad_182", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_77", + "pcb_component_id": "pcb_component_39", + "layer": "top", + "route": [ + { + "x": 5.71, + "y": -6.48 + }, + { + "x": 4.220000000000001, + "y": -6.48 + }, + { + "x": 4.220000000000001, + "y": -7.92 + }, + { + "x": 5.71, + "y": -7.92 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_27", + "anchor_alignment": "center", + "anchor_position": { + "x": 5.2, + "y": -5.98 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_VDD", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_39", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_183", + "pcb_component_id": "pcb_component_40", + "pcb_port_id": "pcb_port_200", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 4.69, + "y": -10.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_215", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 4.69, + "y": -10.4, + "pcb_component_id": "pcb_component_40", + "pcb_smtpad_id": "pcb_smtpad_183", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_184", + "pcb_component_id": "pcb_component_40", + "pcb_port_id": "pcb_port_201", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 5.71, + "y": -10.4, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_216", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 5.71, + "y": -10.4, + "pcb_component_id": "pcb_component_40", + "pcb_smtpad_id": "pcb_smtpad_184", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_78", + "pcb_component_id": "pcb_component_40", + "layer": "top", + "route": [ + { + "x": 5.71, + "y": -9.68 + }, + { + "x": 4.220000000000001, + "y": -9.68 + }, + { + "x": 4.220000000000001, + "y": -11.120000000000001 + }, + { + "x": 5.71, + "y": -11.120000000000001 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_28", + "anchor_alignment": "center", + "anchor_position": { + "x": 5.2, + "y": -9.18 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_VREG", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_40", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_185", + "pcb_component_id": "pcb_component_41", + "pcb_port_id": "pcb_port_202", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -0.81, + "y": -11, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_217", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": -0.81, + "y": -11, + "pcb_component_id": "pcb_component_41", + "pcb_smtpad_id": "pcb_smtpad_185", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_186", + "pcb_component_id": "pcb_component_41", + "pcb_port_id": "pcb_port_203", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 0.21000000000000002, + "y": -11, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_218", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 0.21000000000000002, + "y": -11, + "pcb_component_id": "pcb_component_41", + "pcb_smtpad_id": "pcb_smtpad_186", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_79", + "pcb_component_id": "pcb_component_41", + "layer": "top", + "route": [ + { + "x": 0.21000000000000002, + "y": -10.28 + }, + { + "x": -1.28, + "y": -10.28 + }, + { + "x": -1.28, + "y": -11.72 + }, + { + "x": 0.21000000000000002, + "y": -11.72 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_29", + "anchor_alignment": "center", + "anchor_position": { + "x": -0.3, + "y": -9.78 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_CP", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_41", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_187", + "pcb_component_id": "pcb_component_42", + "pcb_port_id": "pcb_port_204", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 1.99, + "y": -11, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_219", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 1.99, + "y": -11, + "pcb_component_id": "pcb_component_42", + "pcb_smtpad_id": "pcb_smtpad_187", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_188", + "pcb_component_id": "pcb_component_42", + "pcb_port_id": "pcb_port_205", + "layer": "top", + "shape": "rect", + "width": 0.54, + "height": 0.64, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 3.01, + "y": -11, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_220", + "layer": "top", + "shape": "rect", + "width": 0.378, + "height": 0.44799999999999995, + "x": 3.01, + "y": -11, + "pcb_component_id": "pcb_component_42", + "pcb_smtpad_id": "pcb_smtpad_188", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_80", + "pcb_component_id": "pcb_component_42", + "layer": "top", + "route": [ + { + "x": 3.01, + "y": -10.28 + }, + { + "x": 1.52, + "y": -10.28 + }, + { + "x": 1.52, + "y": -11.72 + }, + { + "x": 3.01, + "y": -11.72 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_30", + "anchor_alignment": "center", + "anchor_position": { + "x": 2.5, + "y": -9.78 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_VCP", + "ccw_rotation": 0, + "pcb_component_id": "pcb_component_42", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_189", + "pcb_component_id": "pcb_component_43", + "pcb_port_id": "pcb_port_206", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -12.8, + "y": -7.925, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_221", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -12.8, + "y": -7.925, + "pcb_component_id": "pcb_component_43", + "pcb_smtpad_id": "pcb_smtpad_189", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_190", + "pcb_component_id": "pcb_component_43", + "pcb_port_id": "pcb_port_207", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -12.8, + "y": -6.2749999999999995, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_222", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": -12.8, + "y": -6.2749999999999995, + "pcb_component_id": "pcb_component_43", + "pcb_smtpad_id": "pcb_smtpad_190", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_81", + "pcb_component_id": "pcb_component_43", + "layer": "top", + "route": [ + { + "x": -13.675, + "y": -6.2749999999999995 + }, + { + "x": -13.675, + "y": -8.525 + }, + { + "x": -11.925, + "y": -8.525 + }, + { + "x": -11.925, + "y": -6.2749999999999995 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_31", + "anchor_alignment": "center", + "anchor_position": { + "x": -14.175, + "y": -7.1 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_VM_1", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_43", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_191", + "pcb_component_id": "pcb_component_44", + "pcb_port_id": "pcb_port_208", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": -10.1, + "y": -8.4625, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_223", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": -10.1, + "y": -8.4625, + "pcb_component_id": "pcb_component_44", + "pcb_smtpad_id": "pcb_smtpad_191", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_192", + "pcb_component_id": "pcb_component_44", + "pcb_port_id": "pcb_port_209", + "layer": "top", + "shape": "rect", + "width": 1.75, + "height": 1.125, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": -10.1, + "y": -5.5375, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_224", + "layer": "top", + "shape": "rect", + "width": 1.2249999999999999, + "height": 0.7875, + "x": -10.1, + "y": -5.5375, + "pcb_component_id": "pcb_component_44", + "pcb_smtpad_id": "pcb_smtpad_192", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_82", + "pcb_component_id": "pcb_component_44", + "layer": "top", + "route": [ + { + "x": -11.375, + "y": -5.5375 + }, + { + "x": -11.375, + "y": -9.225 + }, + { + "x": -8.825, + "y": -9.225 + }, + { + "x": -8.825, + "y": -5.5375 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_32", + "anchor_alignment": "center", + "anchor_position": { + "x": -8.325, + "y": -7 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "C_DRV_VM_2", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_44", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_193", + "pcb_component_id": "pcb_component_45", + "pcb_port_id": "pcb_port_210", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 16, + "y": 6.575, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_225", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 16, + "y": 6.575, + "pcb_component_id": "pcb_component_45", + "pcb_smtpad_id": "pcb_smtpad_193", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_194", + "pcb_component_id": "pcb_component_45", + "pcb_port_id": "pcb_port_211", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 16, + "y": 8.225, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_226", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 16, + "y": 8.225, + "pcb_component_id": "pcb_component_45", + "pcb_smtpad_id": "pcb_smtpad_194", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_83", + "pcb_component_id": "pcb_component_45", + "layer": "top", + "route": [ + { + "x": 15.125, + "y": 8.225 + }, + { + "x": 15.125, + "y": 5.9750000000000005 + }, + { + "x": 16.875, + "y": 5.9750000000000005 + }, + { + "x": 16.875, + "y": 8.225 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_33", + "anchor_alignment": "center", + "anchor_position": { + "x": 14.625, + "y": 7.4 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "D_STAT", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_45", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_195", + "pcb_component_id": "pcb_component_46", + "pcb_port_id": "pcb_port_212", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["1", "left"], + "is_covered_with_solder_mask": false, + "x": 13, + "y": 6.575, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_227", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 13, + "y": 6.575, + "pcb_component_id": "pcb_component_46", + "pcb_smtpad_id": "pcb_smtpad_195", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_smtpad", + "pcb_smtpad_id": "pcb_smtpad_196", + "pcb_component_id": "pcb_component_46", + "pcb_port_id": "pcb_port_213", + "layer": "top", + "shape": "rect", + "width": 0.95, + "height": 0.8, + "port_hints": ["2", "right"], + "is_covered_with_solder_mask": false, + "x": 13, + "y": 8.225, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_solder_paste", + "pcb_solder_paste_id": "pcb_solder_paste_228", + "layer": "top", + "shape": "rect", + "width": 0.6649999999999999, + "height": 0.5599999999999999, + "x": 13, + "y": 8.225, + "pcb_component_id": "pcb_component_46", + "pcb_smtpad_id": "pcb_smtpad_196", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_path", + "pcb_silkscreen_path_id": "pcb_silkscreen_path_84", + "pcb_component_id": "pcb_component_46", + "layer": "top", + "route": [ + { + "x": 12.125, + "y": 8.225 + }, + { + "x": 12.125, + "y": 5.9750000000000005 + }, + { + "x": 13.875, + "y": 5.9750000000000005 + }, + { + "x": 13.875, + "y": 8.225 + } + ], + "stroke_width": 0.1, + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_silkscreen_text", + "pcb_silkscreen_text_id": "pcb_silkscreen_text_34", + "anchor_alignment": "center", + "anchor_position": { + "x": 11.625, + "y": 7.4 + }, + "font": "tscircuit2024", + "font_size": 0.4, + "layer": "top", + "text": "R_STAT", + "ccw_rotation": 90, + "pcb_component_id": "pcb_component_46", + "subcircuit_id": "subcircuit_source_group_0" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_0", + "pcb_component_id": "pcb_component_0", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.320032000000083, + "y": 15.83496604999998, + "source_port_id": "source_port_0" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_1", + "pcb_component_id": "pcb_component_0", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.320032000000083, + "y": 15.83496604999998, + "source_port_id": "source_port_1" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_2", + "pcb_component_id": "pcb_component_0", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.320032000000083, + "y": 20.01504404999996, + "source_port_id": "source_port_2" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_3", + "pcb_component_id": "pcb_component_0", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.320032000000083, + "y": 20.01504404999996, + "source_port_id": "source_port_3" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_4", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.350006000000007, + "y": 15.184980049999968, + "source_port_id": "source_port_4" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_5", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.050031999999987, + "y": 15.184980049999968, + "source_port_id": "source_port_5" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_6", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.549905999999964, + "y": 15.184980049999968, + "source_port_id": "source_port_6" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_7", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.2499320000000576, + "y": 15.184980049999968, + "source_port_id": "source_port_7" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_8", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.7500600000000757, + "y": 15.184980049999968, + "source_port_id": "source_port_8" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_9", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.249933999999939, + "y": 15.184980049999968, + "source_port_id": "source_port_9" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_10", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.7500619999999569, + "y": 15.184980049999968, + "source_port_id": "source_port_10" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_11", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.24993599999993396, + "y": 15.184980049999968, + "source_port_id": "source_port_11" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_12", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.24993599999993446, + "y": 15.184980049999968, + "source_port_id": "source_port_12" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_13", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.7500619999999574, + "y": 15.184980049999968, + "source_port_id": "source_port_13" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_14", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.750060000000076, + "y": 15.184980049999968, + "source_port_id": "source_port_14" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_15", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.0500320000001016, + "y": 15.184980049999968, + "source_port_id": "source_port_15" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_16", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.350006000000008, + "y": 15.184980049999968, + "source_port_id": "source_port_16" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_17", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.2496799999998986, + "y": 15.184980049999968, + "source_port_id": "source_port_17" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_18", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.249906599999918, + "y": 15.184954649999941, + "source_port_id": "source_port_18" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_19", + "pcb_component_id": "pcb_component_0", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.549880599999938, + "y": 15.184954649999941, + "source_port_id": "source_port_19" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_20", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 8.149095999999872, + "y": 9.050040000000081, + "source_port_id": "source_port_20" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_21", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 8.149095999999872, + "y": 10, + "source_port_id": "source_port_21" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_22", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 8.149095999999872, + "y": 10.949959999999805, + "source_port_id": "source_port_22" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_23", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.850904000000014, + "y": 10.949959999999805, + "source_port_id": "source_port_23" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_24", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.850904000000014, + "y": 10, + "source_port_id": "source_port_24" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_25", + "pcb_component_id": "pcb_component_1", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.850904000000014, + "y": 9.050040000000081, + "source_port_id": "source_port_25" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_26", + "pcb_component_id": "pcb_component_2", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 12.949705999999878, + "y": 12.299972000000025, + "source_port_id": "source_port_26" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_27", + "pcb_component_id": "pcb_component_2", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 12.000507999999968, + "y": 12.299972000000025, + "source_port_id": "source_port_27" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_28", + "pcb_component_id": "pcb_component_2", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.050294000000008, + "y": 12.299972000000025, + "source_port_id": "source_port_28" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_29", + "pcb_component_id": "pcb_component_2", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.050294000000008, + "y": 9.700027999999975, + "source_port_id": "source_port_29" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_30", + "pcb_component_id": "pcb_component_2", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 12.949705999999878, + "y": 9.700027999999975, + "source_port_id": "source_port_30" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_31", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.400071000000071, + "y": 3.7750639999999978, + "source_port_id": "source_port_31" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_32", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.000020999999992, + "y": 3.7750639999999978, + "source_port_id": "source_port_32" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_33", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.599970999999914, + "y": 3.7750639999999978, + "source_port_id": "source_port_33" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_34", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.199921000000063, + "y": 3.7750639999999978, + "source_port_id": "source_port_34" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_35", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.800125000000025, + "y": 3.7750639999999978, + "source_port_id": "source_port_35" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_36", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.400074999999947, + "y": 3.7750639999999978, + "source_port_id": "source_port_36" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_37", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.000024999999982, + "y": 3.7750639999999978, + "source_port_id": "source_port_37" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_38", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.5999750000000175, + "y": 3.7750639999999978, + "source_port_id": "source_port_38" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_39", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.199924999999939, + "y": 3.7750639999999978, + "source_port_id": "source_port_39" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_40", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.8001289999999015, + "y": 3.7750639999999978, + "source_port_id": "source_port_40" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_41", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.4000790000000505, + "y": 3.7750639999999978, + "source_port_id": "source_port_41" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_42", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.0000290000000858, + "y": 3.7750639999999978, + "source_port_id": "source_port_42" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_43", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.5999789999998937, + "y": 3.7750639999999978, + "source_port_id": "source_port_43" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_44", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.1999290000000427, + "y": 3.7750639999999978, + "source_port_id": "source_port_44" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_45", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 4.600056000000063, + "source_port_id": "source_port_45" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_46", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 4.999851999999987, + "source_port_id": "source_port_46" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_47", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 5.399902000000066, + "source_port_id": "source_port_47" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_48", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 5.799951999999803, + "source_port_id": "source_port_48" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_49", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 6.200001999999995, + "source_port_id": "source_port_49" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_50", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 6.60005199999996, + "source_port_id": "source_port_50" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_51", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 6.999847999999997, + "source_port_id": "source_port_51" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_52", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 7.399897999999962, + "source_port_id": "source_port_52" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_53", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 7.799947999999927, + "source_port_id": "source_port_53" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_54", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 8.199998000000004, + "source_port_id": "source_port_54" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_55", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 8.600047999999969, + "source_port_id": "source_port_55" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_56", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 8.99984400000012, + "source_port_id": "source_port_56" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_57", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 9.399893999999858, + "source_port_id": "source_port_57" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_58", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.374936999999977, + "y": 9.799943999999936, + "source_port_id": "source_port_58" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_59", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.1999290000000427, + "y": 10.624936000000002, + "source_port_id": "source_port_59" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_60", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.5999789999998937, + "y": 10.624936000000002, + "source_port_id": "source_port_60" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_61", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.0000290000000858, + "y": 10.624936000000002, + "source_port_id": "source_port_61" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_62", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.4000790000000505, + "y": 10.624936000000002, + "source_port_id": "source_port_62" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_63", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.8001289999999015, + "y": 10.624936000000002, + "source_port_id": "source_port_63" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_64", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.199924999999939, + "y": 10.624936000000002, + "source_port_id": "source_port_64" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_65", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.5999750000000175, + "y": 10.624936000000002, + "source_port_id": "source_port_65" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_66", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.000024999999982, + "y": 10.624936000000002, + "source_port_id": "source_port_66" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_67", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.400074999999947, + "y": 10.624936000000002, + "source_port_id": "source_port_67" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_68", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.800125000000025, + "y": 10.624936000000002, + "source_port_id": "source_port_68" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_69", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.199921000000063, + "y": 10.624936000000002, + "source_port_id": "source_port_69" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_70", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.599970999999914, + "y": 10.624936000000002, + "source_port_id": "source_port_70" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_71", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.000020999999992, + "y": 10.624936000000002, + "source_port_id": "source_port_71" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_72", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.400071000000071, + "y": 10.624936000000002, + "source_port_id": "source_port_72" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_73", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 9.799943999999936, + "source_port_id": "source_port_73" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_74", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 9.399893999999858, + "source_port_id": "source_port_74" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_75", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 8.999844000000122, + "source_port_id": "source_port_75" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_76", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 8.60004799999997, + "source_port_id": "source_port_76" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_77", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 8.199998000000006, + "source_port_id": "source_port_77" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_78", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 7.799947999999927, + "source_port_id": "source_port_78" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_79", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 7.399897999999962, + "source_port_id": "source_port_79" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_80", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 6.999847999999997, + "source_port_id": "source_port_80" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_81", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 6.60005199999996, + "source_port_id": "source_port_81" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_82", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 6.200001999999995, + "source_port_id": "source_port_82" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_83", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 5.799951999999803, + "source_port_id": "source_port_83" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_84", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 5.399902000000066, + "source_port_id": "source_port_84" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_85", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 4.999851999999987, + "source_port_id": "source_port_85" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_86", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.225063000000024, + "y": 4.600056000000063, + "source_port_id": "source_port_86" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_87", + "pcb_component_id": "pcb_component_3", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.80012700000002, + "y": 7.1999999999998865, + "source_port_id": "source_port_87" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_88", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -11.469907999999919, + "y": 5.294999999999914, + "source_port_id": "source_port_88" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_89", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -11.469907999999919, + "y": 6.565000000000009, + "source_port_id": "source_port_89" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_90", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -11.469907999999919, + "y": 7.834999999999991, + "source_port_id": "source_port_90" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_91", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -11.469907999999919, + "y": 9.104999999999972, + "source_port_id": "source_port_91" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_92", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -18.53009200000008, + "y": 9.104999999999974, + "source_port_id": "source_port_92" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_93", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -18.53009200000008, + "y": 7.834999999999991, + "source_port_id": "source_port_93" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_94", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -18.53009200000008, + "y": 6.565000000000009, + "source_port_id": "source_port_94" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_95", + "pcb_component_id": "pcb_component_4", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -18.53009200000008, + "y": 5.294999999999914, + "source_port_id": "source_port_95" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_96", + "pcb_component_id": "pcb_component_5", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.30007399999995, + "y": -0.05001099999999492, + "source_port_id": "source_port_96" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_97", + "pcb_component_id": "pcb_component_5", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.099926000000051, + "y": -0.05001099999999492, + "source_port_id": "source_port_97" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_98", + "pcb_component_id": "pcb_component_5", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.099926000000051, + "y": 1.650010999999995, + "source_port_id": "source_port_98" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_99", + "pcb_component_id": "pcb_component_5", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.30007399999995, + "y": 1.650010999999995, + "source_port_id": "source_port_99" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_100", + "pcb_component_id": "pcb_component_6", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15.81, + "y": -13.5, + "source_port_id": "source_port_100" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_101", + "pcb_component_id": "pcb_component_6", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -13.27, + "y": -13.5, + "source_port_id": "source_port_101" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_102", + "pcb_component_id": "pcb_component_6", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -10.73, + "y": -13.5, + "source_port_id": "source_port_102" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_103", + "pcb_component_id": "pcb_component_6", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.19, + "y": -13.5, + "source_port_id": "source_port_103" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_104", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.7012669999999916, + "y": -3.100004999999994, + "source_port_id": "source_port_104" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_105", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.200886999999999, + "y": -3.100004999999994, + "source_port_id": "source_port_105" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_106", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.7005069999999993, + "y": -3.100004999999994, + "source_port_id": "source_port_106" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_107", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.2001269999999923, + "y": -3.100004999999994, + "source_port_id": "source_port_107" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_108", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.3002530000000004, + "y": -3.100004999999994, + "source_port_id": "source_port_108" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_109", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.8006330000000075, + "y": -3.100004999999994, + "source_port_id": "source_port_109" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_110", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.3010130000000002, + "y": -3.100004999999994, + "source_port_id": "source_port_110" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_111", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -4.098732999999987, + "source_port_id": "source_port_111" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_112", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -4.599112999999994, + "source_port_id": "source_port_112" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_113", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -5.0994929999999865, + "source_port_id": "source_port_113" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_114", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -5.599872999999986, + "source_port_id": "source_port_114" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_115", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -6.100252999999986, + "source_port_id": "source_port_115" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_116", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -6.600632999999993, + "source_port_id": "source_port_116" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_117", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.2999949999999982, + "y": -7.101012999999993, + "source_port_id": "source_port_117" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_118", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.3010130000000006, + "y": -8.099994999999998, + "source_port_id": "source_port_118" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_119", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.8006330000000079, + "y": -8.099994999999998, + "source_port_id": "source_port_119" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_120", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.30025300000000105, + "y": -8.099994999999998, + "source_port_id": "source_port_120" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_121", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.2001269999999917, + "y": -8.099994999999998, + "source_port_id": "source_port_121" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_122", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.7005069999999987, + "y": -8.099994999999998, + "source_port_id": "source_port_122" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_123", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.2008869999999985, + "y": -8.099994999999998, + "source_port_id": "source_port_123" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_124", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.7012669999999912, + "y": -8.099994999999998, + "source_port_id": "source_port_124" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_125", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -7.101012999999993, + "source_port_id": "source_port_125" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_126", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -6.600632999999993, + "source_port_id": "source_port_126" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_127", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -6.100252999999986, + "source_port_id": "source_port_127" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_128", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -5.599872999999986, + "source_port_id": "source_port_128" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_129", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -5.0994929999999865, + "source_port_id": "source_port_129" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_130", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -4.599112999999994, + "source_port_id": "source_port_130" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_131", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.6999949999999986, + "y": -4.098732999999987, + "source_port_id": "source_port_131" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_132", + "pcb_component_id": "pcb_component_7", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.200126999999992, + "y": -5.599872999999986, + "source_port_id": "source_port_132" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_133", + "pcb_component_id": "pcb_component_8", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15.6, + "y": -7.2999950000000124, + "source_port_id": "source_port_133" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_134", + "pcb_component_id": "pcb_component_8", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15.6, + "y": -4.799872999999979, + "source_port_id": "source_port_134" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_135", + "pcb_component_id": "pcb_component_8", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15.6, + "y": -2.300004999999987, + "source_port_id": "source_port_135" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_136", + "pcb_component_id": "pcb_component_9", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.5400000000000063, + "y": -16.8, + "source_port_id": "source_port_136" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_137", + "pcb_component_id": "pcb_component_9", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.539999999999992, + "y": -16.8, + "source_port_id": "source_port_137" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_138", + "pcb_component_id": "pcb_component_10", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.0001059999999145, + "y": -14.5, + "source_port_id": "source_port_138" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_139", + "pcb_component_id": "pcb_component_10", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 9.399893999999971, + "y": -14.5, + "source_port_id": "source_port_139" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_140", + "pcb_component_id": "pcb_component_11", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 10.530078999999954, + "y": -12.8, + "source_port_id": "source_port_140" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_141", + "pcb_component_id": "pcb_component_11", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 15.869921000000044, + "y": -12.8, + "source_port_id": "source_port_141" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_142", + "pcb_component_id": "pcb_component_12", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": -6.350055999999972, + "source_port_id": "source_port_142" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_143", + "pcb_component_id": "pcb_component_12", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": -3.8499339999999393, + "source_port_id": "source_port_143" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_144", + "pcb_component_id": "pcb_component_12", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": -1.3500659999999471, + "source_port_id": "source_port_144" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_145", + "pcb_component_id": "pcb_component_12", + "layers": ["top", "inner1", "inner2", "bottom"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": 1.1500559999999722, + "source_port_id": "source_port_145" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_146", + "pcb_component_id": "pcb_component_13", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -10.1, + "y": 12.475000000000001, + "source_port_id": "source_port_146" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_147", + "pcb_component_id": "pcb_component_13", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -10.1, + "y": 14.125, + "source_port_id": "source_port_147" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_148", + "pcb_component_id": "pcb_component_14", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.7, + "y": 12.475000000000001, + "source_port_id": "source_port_148" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_149", + "pcb_component_id": "pcb_component_14", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.7, + "y": 14.125, + "source_port_id": "source_port_149" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_150", + "pcb_component_id": "pcb_component_15", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1, + "y": 9.175, + "source_port_id": "source_port_150" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_151", + "pcb_component_id": "pcb_component_15", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1, + "y": 10.825, + "source_port_id": "source_port_151" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_152", + "pcb_component_id": "pcb_component_16", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.5, + "y": 9.175, + "source_port_id": "source_port_152" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_153", + "pcb_component_id": "pcb_component_16", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.5, + "y": 10.825, + "source_port_id": "source_port_153" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_154", + "pcb_component_id": "pcb_component_17", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 7.575, + "y": 14.1, + "source_port_id": "source_port_154" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_155", + "pcb_component_id": "pcb_component_17", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 9.225, + "y": 14.1, + "source_port_id": "source_port_155" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_156", + "pcb_component_id": "pcb_component_18", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 14.375, + "y": 10.7, + "source_port_id": "source_port_156" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_157", + "pcb_component_id": "pcb_component_18", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16.025, + "y": 10.7, + "source_port_id": "source_port_157" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_158", + "pcb_component_id": "pcb_component_19", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 2.9749999999999996, + "y": 6.8, + "source_port_id": "source_port_158" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_159", + "pcb_component_id": "pcb_component_19", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.625, + "y": 6.8, + "source_port_id": "source_port_159" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_160", + "pcb_component_id": "pcb_component_20", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -9.709999999999999, + "y": 11.4, + "source_port_id": "source_port_160" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_161", + "pcb_component_id": "pcb_component_20", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.69, + "y": 11.4, + "source_port_id": "source_port_161" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_162", + "pcb_component_id": "pcb_component_21", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -9.91, + "y": 2.8, + "source_port_id": "source_port_162" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_163", + "pcb_component_id": "pcb_component_21", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.89, + "y": 2.8, + "source_port_id": "source_port_163" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_164", + "pcb_component_id": "pcb_component_22", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.31, + "y": 11.3, + "source_port_id": "source_port_164" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_165", + "pcb_component_id": "pcb_component_22", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.29000000000000004, + "y": 11.3, + "source_port_id": "source_port_165" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_166", + "pcb_component_id": "pcb_component_23", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.4100000000000001, + "y": 3, + "source_port_id": "source_port_166" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_167", + "pcb_component_id": "pcb_component_23", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.39, + "y": 3, + "source_port_id": "source_port_167" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_168", + "pcb_component_id": "pcb_component_24", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -5.31, + "y": 11.8, + "source_port_id": "source_port_168" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_169", + "pcb_component_id": "pcb_component_24", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -4.29, + "y": 11.8, + "source_port_id": "source_port_169" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_170", + "pcb_component_id": "pcb_component_25", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15, + "y": 10.59, + "source_port_id": "source_port_170" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_171", + "pcb_component_id": "pcb_component_25", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -15, + "y": 11.61, + "source_port_id": "source_port_171" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_172", + "pcb_component_id": "pcb_component_26", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8.51, + "y": 0.8, + "source_port_id": "source_port_172" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_173", + "pcb_component_id": "pcb_component_26", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.49, + "y": 0.8, + "source_port_id": "source_port_173" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_174", + "pcb_component_id": "pcb_component_27", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.8099999999999996, + "y": 0.8, + "source_port_id": "source_port_174" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_175", + "pcb_component_id": "pcb_component_27", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -1.7899999999999998, + "y": 0.8, + "source_port_id": "source_port_175" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_176", + "pcb_component_id": "pcb_component_28", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.4000000000000001, + "y": 7.59, + "source_port_id": "source_port_176" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_177", + "pcb_component_id": "pcb_component_28", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.39999999999999997, + "y": 8.61, + "source_port_id": "source_port_177" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_178", + "pcb_component_id": "pcb_component_29", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.8, + "y": -7.425, + "source_port_id": "source_port_178" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_179", + "pcb_component_id": "pcb_component_29", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.8, + "y": -5.7749999999999995, + "source_port_id": "source_port_179" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_180", + "pcb_component_id": "pcb_component_30", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.8, + "y": -4.025, + "source_port_id": "source_port_180" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_181", + "pcb_component_id": "pcb_component_30", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 11.8, + "y": -2.375, + "source_port_id": "source_port_181" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_182", + "pcb_component_id": "pcb_component_31", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 13.290000000000001, + "y": -4.9, + "source_port_id": "source_port_182" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_183", + "pcb_component_id": "pcb_component_31", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 14.31, + "y": -4.9, + "source_port_id": "source_port_183" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_184", + "pcb_component_id": "pcb_component_32", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -7.609999999999999, + "y": -2.4, + "source_port_id": "source_port_184" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_185", + "pcb_component_id": "pcb_component_32", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -6.59, + "y": -2.4, + "source_port_id": "source_port_185" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_186", + "pcb_component_id": "pcb_component_33", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -3.41, + "y": -2.4, + "source_port_id": "source_port_186" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_187", + "pcb_component_id": "pcb_component_33", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -2.3899999999999997, + "y": -2.4, + "source_port_id": "source_port_187" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_188", + "pcb_component_id": "pcb_component_34", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.8899999999999999, + "y": -1.2, + "source_port_id": "source_port_188" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_189", + "pcb_component_id": "pcb_component_34", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.91, + "y": -1.2, + "source_port_id": "source_port_189" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_190", + "pcb_component_id": "pcb_component_35", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.79, + "y": -1.2, + "source_port_id": "source_port_190" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_191", + "pcb_component_id": "pcb_component_35", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.81, + "y": -1.2, + "source_port_id": "source_port_191" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_192", + "pcb_component_id": "pcb_component_36", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 6.69, + "y": -1.2, + "source_port_id": "source_port_192" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_193", + "pcb_component_id": "pcb_component_36", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 7.71, + "y": -1.2, + "source_port_id": "source_port_193" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_194", + "pcb_component_id": "pcb_component_37", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8, + "y": -11.1625, + "source_port_id": "source_port_194" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_195", + "pcb_component_id": "pcb_component_37", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -8, + "y": -8.237499999999999, + "source_port_id": "source_port_195" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_196", + "pcb_component_id": "pcb_component_38", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 8.3, + "y": -11.1625, + "source_port_id": "source_port_196" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_197", + "pcb_component_id": "pcb_component_38", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 8.3, + "y": -8.237499999999999, + "source_port_id": "source_port_197" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_198", + "pcb_component_id": "pcb_component_39", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.69, + "y": -7.2, + "source_port_id": "source_port_198" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_199", + "pcb_component_id": "pcb_component_39", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.71, + "y": -7.2, + "source_port_id": "source_port_199" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_200", + "pcb_component_id": "pcb_component_40", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 4.69, + "y": -10.4, + "source_port_id": "source_port_200" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_201", + "pcb_component_id": "pcb_component_40", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 5.71, + "y": -10.4, + "source_port_id": "source_port_201" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_202", + "pcb_component_id": "pcb_component_41", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -0.81, + "y": -11, + "source_port_id": "source_port_202" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_203", + "pcb_component_id": "pcb_component_41", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 0.21000000000000002, + "y": -11, + "source_port_id": "source_port_203" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_204", + "pcb_component_id": "pcb_component_42", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 1.99, + "y": -11, + "source_port_id": "source_port_204" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_205", + "pcb_component_id": "pcb_component_42", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 3.01, + "y": -11, + "source_port_id": "source_port_205" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_206", + "pcb_component_id": "pcb_component_43", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -12.8, + "y": -7.925, + "source_port_id": "source_port_206" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_207", + "pcb_component_id": "pcb_component_43", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -12.8, + "y": -6.2749999999999995, + "source_port_id": "source_port_207" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_208", + "pcb_component_id": "pcb_component_44", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -10.1, + "y": -8.4625, + "source_port_id": "source_port_208" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_209", + "pcb_component_id": "pcb_component_44", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": -10.1, + "y": -5.5375, + "source_port_id": "source_port_209" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_210", + "pcb_component_id": "pcb_component_45", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": 6.575, + "source_port_id": "source_port_210" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_211", + "pcb_component_id": "pcb_component_45", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 16, + "y": 8.225, + "source_port_id": "source_port_211" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_212", + "pcb_component_id": "pcb_component_46", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 13, + "y": 6.575, + "source_port_id": "source_port_212" + }, + { + "type": "pcb_port", + "pcb_port_id": "pcb_port_213", + "pcb_component_id": "pcb_component_46", + "layers": ["top"], + "subcircuit_id": "subcircuit_source_group_0", + "x": 13, + "y": 8.225, + "source_port_id": "source_port_213" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_0", + "position": { + "x": 0, + "y": 16.275002049999973, + "z": -1.1650440499999717 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 180 + }, + "pcb_component_id": "pcb_component_0", + "source_component_id": "source_component_0", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=954b2a5828604707b62aef0fe6e7695f&pn=C709357&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_1", + "position": { + "x": 7.838199999999858, + "y": 9.034799999999962, + "z": 3.0397228 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 180 + }, + "pcb_component_id": "pcb_component_1", + "source_component_id": "source_component_1", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=229b69761e2c45dba6a83d8866dec72d&pn=C7519&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_2", + "position": { + "x": 12.00002539999997, + "y": 11, + "z": -0.2524220000000468 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 180 + }, + "pcb_component_id": "pcb_component_2", + "source_component_id": "source_component_2", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=6d166d1d6c064b99aa79465714e989c1&pn=C51118&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_3", + "position": { + "x": -4.800000000000114, + "y": 7.200127000000021, + "z": -2.2500685000000207 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_3", + "source_component_id": "source_component_3", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=76b360a9d4c54384a4e47d7e5af156df&pn=C2040&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_4", + "position": { + "x": -13.349000000000046, + "y": 4.35519999999998, + "z": -3.0550961000000374 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_4", + "source_component_id": "source_component_4", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=4652e19b90fa4dbb8662aa4cba61a532&pn=C82317&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_5", + "position": { + "x": -5.2, + "y": 0.8, + "z": 0.14999020000002483 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_5", + "source_component_id": "source_component_5", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=02485e56ba8d4732a26526d2983fc729&pn=C9002&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_6", + "position": { + "x": -12, + "y": -13.5, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_6", + "source_component_id": "source_component_6", + "footprinter_string": "pinrow4_p2.54_nopinlabels" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_7", + "position": { + "x": 0.20000000000000018, + "y": -5.599999999999996, + "z": -1.3499941000000015 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 180 + }, + "pcb_component_id": "pcb_component_7", + "source_component_id": "source_component_7", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=4de4bff3c0974d8d92d2aedacebff905&pn=C38437&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_8", + "position": { + "x": -15.599999999999998, + "y": -4.8, + "z": 0.8379999999999996 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 270 + }, + "pcb_component_id": "pcb_component_8", + "source_component_id": "source_component_8", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=de5e3253f11a43faab4baf80f94b73a3&pn=C118954&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_9", + "position": { + "x": -0.29999939999999725, + "y": -16.300000999999998, + "z": 0.600001999999995 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 180 + }, + "pcb_component_id": "pcb_component_9", + "source_component_id": "source_component_9", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=d60ef5d423934d3393dc75fa0a07b6bd&pn=C8465&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_10", + "position": { + "x": 7.1999999999999424, + "y": -14.5, + "z": 0.600001999999995 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_10", + "source_component_id": "source_component_10", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=e3551acb3c5a4975a5e9d36087fe1fa2&pn=C8678&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_11", + "position": { + "x": 13.200000000000113, + "y": -12.8, + "z": 1.0000012000000198 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_11", + "source_component_id": "source_component_11", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=644b78ce0cd64ac4a97304a2c79953d0&pn=C72478&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_12", + "position": { + "x": 16, + "y": -2.1499882000000294, + "z": 0.8000015999999506 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 270 + }, + "pcb_component_id": "pcb_component_12", + "source_component_id": "source_component_12", + "model_obj_url": "https://modelcdn.tscircuit.com/easyeda_models/download?uuid=dfb6c90a881649749adf7c9a695c8112&pn=C7429634&cachebust_origin=http%3A%2F%2Flocalhost%3A3021" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_13", + "position": { + "x": -10.1, + "y": 13.3, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_13", + "source_component_id": "source_component_13", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_14", + "position": { + "x": -7.699999999999999, + "y": 13.3, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_14", + "source_component_id": "source_component_14", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_15", + "position": { + "x": 1, + "y": 10, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_15", + "source_component_id": "source_component_15", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_16", + "position": { + "x": 3.5, + "y": 10, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_16", + "source_component_id": "source_component_16", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_17", + "position": { + "x": 8.4, + "y": 14.1, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_17", + "source_component_id": "source_component_17", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_18", + "position": { + "x": 15.2, + "y": 10.7, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_18", + "source_component_id": "source_component_18", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_19", + "position": { + "x": 3.8, + "y": 6.8, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_19", + "source_component_id": "source_component_19", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_20", + "position": { + "x": -9.2, + "y": 11.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_20", + "source_component_id": "source_component_20", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_21", + "position": { + "x": -9.4, + "y": 2.8, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_21", + "source_component_id": "source_component_21", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_22", + "position": { + "x": -0.8, + "y": 11.3, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_22", + "source_component_id": "source_component_22", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_23", + "position": { + "x": -0.9000000000000001, + "y": 3, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_23", + "source_component_id": "source_component_23", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_24", + "position": { + "x": -4.8, + "y": 11.8, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_24", + "source_component_id": "source_component_24", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_25", + "position": { + "x": -15, + "y": 11.1, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_25", + "source_component_id": "source_component_25", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_26", + "position": { + "x": -8, + "y": 0.8, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_26", + "source_component_id": "source_component_26", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_27", + "position": { + "x": -2.3, + "y": 0.8, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_27", + "source_component_id": "source_component_27", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_28", + "position": { + "x": -0.4, + "y": 8.1, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_28", + "source_component_id": "source_component_28", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_29", + "position": { + "x": 11.8, + "y": -6.6, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_29", + "source_component_id": "source_component_29", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_30", + "position": { + "x": 11.8, + "y": -3.2, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_30", + "source_component_id": "source_component_30", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_31", + "position": { + "x": 13.8, + "y": -4.9, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_31", + "source_component_id": "source_component_31", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_32", + "position": { + "x": -7.1, + "y": -2.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_32", + "source_component_id": "source_component_32", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_33", + "position": { + "x": -2.9, + "y": -2.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_33", + "source_component_id": "source_component_33", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_34", + "position": { + "x": 1.4, + "y": -1.2, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_34", + "source_component_id": "source_component_34", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_35", + "position": { + "x": 4.3, + "y": -1.2, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_35", + "source_component_id": "source_component_35", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_36", + "position": { + "x": 7.2, + "y": -1.2, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_36", + "source_component_id": "source_component_36", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_37", + "position": { + "x": -8, + "y": -9.7, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_37", + "source_component_id": "source_component_37", + "footprinter_string": "1206" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_38", + "position": { + "x": 8.3, + "y": -9.7, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_38", + "source_component_id": "source_component_38", + "footprinter_string": "1206" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_39", + "position": { + "x": 5.2, + "y": -7.2, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_39", + "source_component_id": "source_component_39", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_40", + "position": { + "x": 5.2, + "y": -10.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_40", + "source_component_id": "source_component_40", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_41", + "position": { + "x": -0.30000000000000004, + "y": -11, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_41", + "source_component_id": "source_component_41", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_42", + "position": { + "x": 2.5, + "y": -11, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "pcb_component_id": "pcb_component_42", + "source_component_id": "source_component_42", + "footprinter_string": "0402" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_43", + "position": { + "x": -12.8, + "y": -7.1, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_43", + "source_component_id": "source_component_43", + "footprinter_string": "0603" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_44", + "position": { + "x": -10.1, + "y": -7, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_44", + "source_component_id": "source_component_44", + "footprinter_string": "1206" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_45", + "position": { + "x": 16, + "y": 7.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_45", + "source_component_id": "source_component_45", + "footprinter_string": "0603_color(green)" + }, + { + "type": "cad_component", + "cad_component_id": "cad_component_46", + "position": { + "x": 13, + "y": 7.4, + "z": 0.8 + }, + "rotation": { + "x": 0, + "y": 0, + "z": 90 + }, + "pcb_component_id": "pcb_component_46", + "source_component_id": "source_component_46", + "footprinter_string": "0603" + } +] diff --git a/tests/repros/repro02.test.ts b/tests/repros/repro02.test.ts new file mode 100644 index 0000000..ee54287 --- /dev/null +++ b/tests/repros/repro02.test.ts @@ -0,0 +1,20 @@ +import { expect, test } from "bun:test" +import { convertCircuitJsonToPcbSvg } from "circuit-to-svg" +import type { AnyCircuitElement } from "circuit-json" +import { runAllPlacementChecks } from "../../lib/run-all-checks" +import repro02 from "./repro02.json" + +test("repro02 should report the J_SWD pin1 hole overlap", async () => { + const circuitJson = repro02 as AnyCircuitElement[] + const placementIssues = await runAllPlacementChecks(circuitJson) + const serializedPlacementIssues = JSON.stringify(placementIssues) + + await expect( + convertCircuitJsonToPcbSvg([...circuitJson, ...placementIssues], { + shouldDrawErrors: true, + }), + ).toMatchSvgSnapshot(import.meta.path) + + expect(serializedPlacementIssues).toContain("pcb_plated_hole_4") + expect(serializedPlacementIssues).toContain("pcb_hole_0") +})