├── .gitignore ├── ORDERING.md ├── README.md ├── img ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── back.jpg ├── front.jpg └── front_v2.4.jpg ├── usb_c_cable_tester.kicad_pcb ├── usb_c_cable_tester.kicad_prl ├── usb_c_cable_tester.kicad_pro └── usb_c_cable_tester.kicad_sch /.gitignore: -------------------------------------------------------------------------------- 1 | *-backups 2 | *-bak 3 | *.zip 4 | gerbers/ 5 | gerber/ 6 | fp-info-cache 7 | _autosave* 8 | *auto_saved* 9 | *.csv 10 | *.xml 11 | *.pdf 12 | *.html 13 | jlcpcb 14 | *.lck 15 | *_old -------------------------------------------------------------------------------- /ORDERING.md: -------------------------------------------------------------------------------- 1 | # Ordering Instructions on [JLCPCB](https://jlcpcb.com/). 2 | 3 | ## Download Files 4 | Download jlcpcb.zip from [releases page](https://github.com/alvarop/usb_c_cable_tester/releases/tag/v2.2) 5 | 6 | Unzip the `jlcpcb.zip` file, and you should find three files used below: 7 | 8 | * `gerber/GERBER-usb_c_cable_tester.zip` -- PCB Manufacturing Gerber files (first upload page) 9 | 10 | * `assembly/BOM-usb_c_cable_tester.csv` -- Component Bill of Materials (second upload page) 11 | 12 | * `assembly/POS-usb_c_cable_tester.csv` -- Component Positions (second upload page) 13 | 14 | (There is also another copy of the Gerber files in the `gerber/` 15 | directory of the main zip file, but uploading the whole `jlcpcb.zip` 16 | will confuse the JLCPCB techs and cause them to ask questions. So unzip 17 | the `jlcpcb.zip` first :-) ) 18 | 19 | ## Upload Gerbers and Select PCB Parameters 20 | Go to JLCPCB, click on "instant quote" or "order now" and upload the file GERBER-usb_c_cable_tester.zip 21 | 22 | Select the following settings (or change how you like them) 23 | > ENIG will look better, but it's a bit more expensive. I definitely recommend lead free HASL at the very least 24 | 25 | ![Selection page](img/1.png) 26 | 27 | Make sure you select PCB Assembly as well then click Next 28 | 29 | # Upload BOM and Placement files 30 | 31 | ![Upload BOM](img/2.png) 32 | 33 | Verify BOM 34 | 35 | ![BOM](img/3.png) 36 | 37 | ## Fix Component Placement 38 | Verify component placement (it's not quite right by default) 39 | 40 | First, rotate the battery holder 90 degrees to the left 41 | ![component placement](img/4.png) 42 | 43 | Then select each USB connector and use the arrows on the top right to move it into place 44 | ![front of board](img/5.png) 45 | 46 | You can change the view to the back to make sure the pins line up 47 | 48 | ![back of board](img/6.png) 49 | 50 | The 3d view is also quite useful when trying to line things up 51 | 52 | ![3d view](img/7.png) 53 | 54 | ## Checkout! 55 | 56 | ![Checkout!](img/8.png) 57 | 58 | ## Additional Notes 59 | [There have been reports](https://github.com/alvarop/usb_c_cable_tester/issues/15) of JLC asking if all the pins on one side should be shorted together. The answer is yes, this is on purpose :D 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # USB Cable Tester 2 | 3 | Simple board to test various USB cables! (Note the USB standard helps to identify these [USB-C](https://www.usb.org/usb-type-cr-cable-and-connector-specification), cables that are compliant with the standard will have selected pins according to [cable and connector specification release](https://www.usb.org/sites/default/files/USB%20Type-C%202.2%20Release%20202210%20%281%29.zip)). 4 | 5 | Plug in your cable to both sides and see which signals light up! 6 | 7 | **FOR CABLE USE ONLY. DO NOT EVER PLUG THIS IN TO A DEVICE, THE PINS ON ONE SIDE ARE ALL SHORTED TOGETHER AND THAT COULD BREAK IT!** 8 | 9 | ![Board Front](img/front.jpg) 10 | 11 | ![Board Back](img/back.jpg) 12 | 13 | ## Ordering Pre-made Boards From JLCPCB 14 | I have added instructions on how to order from JLCPCB in the [ORDERING](ORDERING.md) page. 15 | 16 | ## Assembly 17 | Want to build your own? There are two options. 18 | 19 | ### JLCPCB 20 | Take a look at the [v2.2 release](https://github.com/alvarop/usb_c_cable_tester/releases/tag/v2.2). There's a file called jlcpcb.zip which you can use to order bare boards or fully assembled ones from [JLCPCB](https://jlcpcb.com/). 21 | 22 | ### Hand Solder 23 | For a hand-solder friendly version with components you can get on Digikey/Mouser, see [the v2.4 release](https://github.com/alvarop/usb_c_cable_tester/releases/tag/v2.4) 24 | 25 | ## Related Projects! 26 | @coryalder made a neat [3d printed/laser cut case](https://github.com/coryalder/usb-c-tester-case). Check it out! (But make sure it's for the correct version, since components have changed) 27 | 28 | [@foorschtbar@chaos.social](https://mastodon.social/@foorschtbar@chaos.social) made a really nice 3D printed case (multicolor). You can [find it here.](https://www.printables.com/model/1003847-usb-cable-tester-multicolor-case) 29 | 30 | ## License 31 | USB Cable Tester © 2024 by Alvaro Prieto is licensed under CC BY 4.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ 32 | -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/8.png -------------------------------------------------------------------------------- /img/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/back.jpg -------------------------------------------------------------------------------- /img/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/front.jpg -------------------------------------------------------------------------------- /img/front_v2.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarop/usb_c_cable_tester/265233291e6de79a75949a62b986771a50368152/img/front_v2.4.jpg -------------------------------------------------------------------------------- /usb_c_cable_tester.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 0, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 1, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 0.6, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "ratsnest_display_mode": 0, 18 | "selection_filter": { 19 | "dimensions": true, 20 | "footprints": true, 21 | "graphics": true, 22 | "keepouts": true, 23 | "lockedItems": true, 24 | "otherItems": true, 25 | "pads": true, 26 | "text": true, 27 | "tracks": true, 28 | "vias": true, 29 | "zones": true 30 | }, 31 | "visible_items": [ 32 | 0, 33 | 1, 34 | 2, 35 | 3, 36 | 4, 37 | 5, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 14, 45 | 15, 46 | 16, 47 | 17, 48 | 18, 49 | 19, 50 | 20, 51 | 21, 52 | 22, 53 | 23, 54 | 24, 55 | 25, 56 | 26, 57 | 27, 58 | 28, 59 | 29, 60 | 30, 61 | 32, 62 | 33, 63 | 34, 64 | 35, 65 | 36 66 | ], 67 | "visible_layers": "ffcffff_ffffffff", 68 | "zone_display_mode": 0 69 | }, 70 | "meta": { 71 | "filename": "usb_c_cable_tester.kicad_prl", 72 | "version": 3 73 | }, 74 | "project": { 75 | "files": [] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /usb_c_cable_tester.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.254 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "warning", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "warning", 69 | "courtyards_overlap": "error", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint": "error", 76 | "footprint_type_mismatch": "error", 77 | "hole_clearance": "error", 78 | "hole_near_hole": "error", 79 | "invalid_outline": "error", 80 | "isolated_copper": "warning", 81 | "item_on_disabled_layer": "error", 82 | "items_not_allowed": "error", 83 | "length_out_of_range": "error", 84 | "lib_footprint_issues": "warning", 85 | "lib_footprint_mismatch": "warning", 86 | "malformed_courtyard": "error", 87 | "microvia_drill_out_of_range": "error", 88 | "missing_courtyard": "ignore", 89 | "missing_footprint": "warning", 90 | "net_conflict": "warning", 91 | "npth_inside_courtyard": "ignore", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "ignore", 96 | "silk_over_copper": "warning", 97 | "silk_overlap": "warning", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "error", 100 | "starved_thermal": "error", 101 | "text_height": "warning", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "warning", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.150114, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.0, 120 | "min_hole_clearance": 0.2032, 121 | "min_hole_to_hole": 0.254, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 2, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.08, 128 | "min_through_hole_diameter": 0.254, 129 | "min_track_width": 0.15239999999999998, 130 | "min_via_annular_width": 0.124968, 131 | "min_via_diameter": 0.508, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 0, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0, 179 | 0.1524, 180 | 0.17, 181 | 0.2, 182 | 0.254 183 | ], 184 | "via_dimensions": [ 185 | { 186 | "diameter": 0.0, 187 | "drill": 0.0 188 | }, 189 | { 190 | "diameter": 0.508, 191 | "drill": 0.254 192 | } 193 | ], 194 | "zones_allow_external_fillets": false, 195 | "zones_use_no_outline": true 196 | }, 197 | "layer_presets": [], 198 | "viewports": [] 199 | }, 200 | "boards": [], 201 | "cvpcb": { 202 | "equivalence_files": [] 203 | }, 204 | "erc": { 205 | "erc_exclusions": [], 206 | "meta": { 207 | "version": 0 208 | }, 209 | "pin_map": [ 210 | [ 211 | 0, 212 | 0, 213 | 0, 214 | 0, 215 | 0, 216 | 0, 217 | 1, 218 | 0, 219 | 0, 220 | 0, 221 | 0, 222 | 2 223 | ], 224 | [ 225 | 0, 226 | 2, 227 | 0, 228 | 1, 229 | 0, 230 | 0, 231 | 1, 232 | 0, 233 | 2, 234 | 2, 235 | 2, 236 | 2 237 | ], 238 | [ 239 | 0, 240 | 0, 241 | 0, 242 | 0, 243 | 0, 244 | 0, 245 | 1, 246 | 0, 247 | 1, 248 | 0, 249 | 1, 250 | 2 251 | ], 252 | [ 253 | 0, 254 | 1, 255 | 0, 256 | 0, 257 | 0, 258 | 0, 259 | 1, 260 | 1, 261 | 2, 262 | 1, 263 | 1, 264 | 2 265 | ], 266 | [ 267 | 0, 268 | 0, 269 | 0, 270 | 0, 271 | 0, 272 | 0, 273 | 1, 274 | 0, 275 | 0, 276 | 0, 277 | 0, 278 | 2 279 | ], 280 | [ 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 0, 289 | 0, 290 | 0, 291 | 0, 292 | 2 293 | ], 294 | [ 295 | 1, 296 | 1, 297 | 1, 298 | 1, 299 | 1, 300 | 0, 301 | 1, 302 | 1, 303 | 1, 304 | 1, 305 | 1, 306 | 2 307 | ], 308 | [ 309 | 0, 310 | 0, 311 | 0, 312 | 1, 313 | 0, 314 | 0, 315 | 1, 316 | 0, 317 | 0, 318 | 0, 319 | 0, 320 | 2 321 | ], 322 | [ 323 | 0, 324 | 2, 325 | 1, 326 | 2, 327 | 0, 328 | 0, 329 | 1, 330 | 0, 331 | 2, 332 | 2, 333 | 2, 334 | 2 335 | ], 336 | [ 337 | 0, 338 | 2, 339 | 0, 340 | 1, 341 | 0, 342 | 0, 343 | 1, 344 | 0, 345 | 2, 346 | 0, 347 | 0, 348 | 2 349 | ], 350 | [ 351 | 0, 352 | 2, 353 | 1, 354 | 1, 355 | 0, 356 | 0, 357 | 1, 358 | 0, 359 | 2, 360 | 0, 361 | 0, 362 | 2 363 | ], 364 | [ 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2, 373 | 2, 374 | 2, 375 | 2, 376 | 2 377 | ] 378 | ], 379 | "rule_severities": { 380 | "bus_definition_conflict": "error", 381 | "bus_entry_needed": "error", 382 | "bus_to_bus_conflict": "error", 383 | "bus_to_net_conflict": "error", 384 | "conflicting_netclasses": "error", 385 | "different_unit_footprint": "error", 386 | "different_unit_net": "error", 387 | "duplicate_reference": "error", 388 | "duplicate_sheet_names": "error", 389 | "endpoint_off_grid": "warning", 390 | "extra_units": "error", 391 | "global_label_dangling": "warning", 392 | "hier_label_mismatch": "error", 393 | "label_dangling": "error", 394 | "lib_symbol_issues": "warning", 395 | "missing_bidi_pin": "warning", 396 | "missing_input_pin": "warning", 397 | "missing_power_pin": "error", 398 | "missing_unit": "warning", 399 | "multiple_net_names": "warning", 400 | "net_not_bus_member": "warning", 401 | "no_connect_connected": "warning", 402 | "no_connect_dangling": "warning", 403 | "pin_not_connected": "error", 404 | "pin_not_driven": "error", 405 | "pin_to_pin": "ignore", 406 | "power_pin_not_driven": "error", 407 | "similar_labels": "warning", 408 | "simulation_model_issue": "ignore", 409 | "unannotated": "error", 410 | "unit_value_mismatch": "error", 411 | "unresolved_variable": "error", 412 | "wire_dangling": "error" 413 | } 414 | }, 415 | "libraries": { 416 | "pinned_footprint_libs": [ 417 | "snapeda", 418 | "alvarop" 419 | ], 420 | "pinned_symbol_libs": [] 421 | }, 422 | "meta": { 423 | "filename": "usb_c_cable_tester.kicad_pro", 424 | "version": 1 425 | }, 426 | "net_settings": { 427 | "classes": [ 428 | { 429 | "bus_width": 12, 430 | "clearance": 0.150114, 431 | "diff_pair_gap": 0.25, 432 | "diff_pair_via_gap": 0.25, 433 | "diff_pair_width": 0.2, 434 | "line_style": 0, 435 | "microvia_diameter": 0.3, 436 | "microvia_drill": 0.1, 437 | "name": "Default", 438 | "pcb_color": "rgba(0, 0, 0, 0.000)", 439 | "schematic_color": "rgba(0, 0, 0, 0.000)", 440 | "track_width": 0.1524, 441 | "via_diameter": 0.508, 442 | "via_drill": 0.254, 443 | "wire_width": 6 444 | } 445 | ], 446 | "meta": { 447 | "version": 3 448 | }, 449 | "net_colors": null, 450 | "netclass_assignments": null, 451 | "netclass_patterns": [] 452 | }, 453 | "pcbnew": { 454 | "last_paths": { 455 | "gencad": "", 456 | "idf": "", 457 | "netlist": "", 458 | "specctra_dsn": "", 459 | "step": "", 460 | "vrml": "" 461 | }, 462 | "page_layout_descr_file": "" 463 | }, 464 | "schematic": { 465 | "annotate_start_num": 0, 466 | "drawing": { 467 | "dashed_lines_dash_length_ratio": 12.0, 468 | "dashed_lines_gap_length_ratio": 3.0, 469 | "default_line_thickness": 6.0, 470 | "default_text_size": 50.0, 471 | "field_names": [], 472 | "intersheets_ref_own_page": false, 473 | "intersheets_ref_prefix": "", 474 | "intersheets_ref_short": false, 475 | "intersheets_ref_show": false, 476 | "intersheets_ref_suffix": "", 477 | "junction_size_choice": 3, 478 | "label_size_ratio": 0.375, 479 | "pin_symbol_size": 25.0, 480 | "text_offset_ratio": 0.15 481 | }, 482 | "legacy_lib_dir": "", 483 | "legacy_lib_list": [], 484 | "meta": { 485 | "version": 1 486 | }, 487 | "net_format_name": "", 488 | "ngspice": { 489 | "fix_include_paths": true, 490 | "fix_passive_vals": false, 491 | "meta": { 492 | "version": 0 493 | }, 494 | "model_mode": 0, 495 | "workbook_filename": "" 496 | }, 497 | "page_layout_descr_file": "", 498 | "plot_directory": "", 499 | "spice_adjust_passive_values": false, 500 | "spice_current_sheet_as_root": false, 501 | "spice_external_command": "spice \"%I\"", 502 | "spice_model_current_sheet_as_root": true, 503 | "spice_save_all_currents": false, 504 | "spice_save_all_voltages": false, 505 | "subpart_first_id": 65, 506 | "subpart_id_separator": 0 507 | }, 508 | "sheets": [ 509 | [ 510 | "b34019fd-8cd0-4bd2-b342-eb5b70c9786d", 511 | "" 512 | ] 513 | ], 514 | "text_variables": {} 515 | } 516 | -------------------------------------------------------------------------------- /usb_c_cable_tester.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20230121) (generator eeschema) 2 | 3 | (uuid b34019fd-8cd0-4bd2-b342-eb5b70c9786d) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "USB Cable Tester") 9 | (date "2024-08-16") 10 | (rev "2.4") 11 | (company "Quesadillon LLC") 12 | ) 13 | 14 | (lib_symbols 15 | (symbol "Connector:USB3_A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 16 | (property "Reference" "J" (at -10.16 15.24 0) 17 | (effects (font (size 1.27 1.27)) (justify left)) 18 | ) 19 | (property "Value" "USB3_A" (at 10.16 15.24 0) 20 | (effects (font (size 1.27 1.27)) (justify right)) 21 | ) 22 | (property "Footprint" "" (at 3.81 2.54 0) 23 | (effects (font (size 1.27 1.27)) hide) 24 | ) 25 | (property "Datasheet" "~" (at 3.81 2.54 0) 26 | (effects (font (size 1.27 1.27)) hide) 27 | ) 28 | (property "ki_keywords" "usb universal serial bus" (at 0 0 0) 29 | (effects (font (size 1.27 1.27)) hide) 30 | ) 31 | (property "ki_description" "USB 3.0 A connector" (at 0 0 0) 32 | (effects (font (size 1.27 1.27)) hide) 33 | ) 34 | (property "ki_fp_filters" "USB3*" (at 0 0 0) 35 | (effects (font (size 1.27 1.27)) hide) 36 | ) 37 | (symbol "USB3_A_0_0" 38 | (rectangle (start -9.144 8.636) (end -5.08 -3.81) 39 | (stroke (width 0.508) (type default)) 40 | (fill (type none)) 41 | ) 42 | (rectangle (start -7.874 7.366) (end -6.604 -2.286) 43 | (stroke (width 0.508) (type default)) 44 | (fill (type outline)) 45 | ) 46 | (rectangle (start -6.35 0) (end -6.096 -0.762) 47 | (stroke (width 0.508) (type default)) 48 | (fill (type none)) 49 | ) 50 | (rectangle (start -6.35 1.778) (end -6.096 1.016) 51 | (stroke (width 0.508) (type default)) 52 | (fill (type none)) 53 | ) 54 | (rectangle (start -6.35 3.556) (end -6.096 2.794) 55 | (stroke (width 0.508) (type default)) 56 | (fill (type none)) 57 | ) 58 | (rectangle (start -6.35 5.334) (end -6.096 4.572) 59 | (stroke (width 0.508) (type default)) 60 | (fill (type none)) 61 | ) 62 | (rectangle (start -2.794 -15.24) (end -2.286 -14.224) 63 | (stroke (width 0) (type default)) 64 | (fill (type none)) 65 | ) 66 | (rectangle (start -0.254 -15.24) (end 0.254 -14.224) 67 | (stroke (width 0) (type default)) 68 | (fill (type none)) 69 | ) 70 | (rectangle (start 10.16 -12.446) (end 9.144 -12.954) 71 | (stroke (width 0) (type default)) 72 | (fill (type none)) 73 | ) 74 | (rectangle (start 10.16 -9.906) (end 9.144 -10.414) 75 | (stroke (width 0) (type default)) 76 | (fill (type none)) 77 | ) 78 | (rectangle (start 10.16 -4.826) (end 9.144 -5.334) 79 | (stroke (width 0) (type default)) 80 | (fill (type none)) 81 | ) 82 | (rectangle (start 10.16 -2.286) (end 9.144 -2.794) 83 | (stroke (width 0) (type default)) 84 | (fill (type none)) 85 | ) 86 | (rectangle (start 10.16 2.794) (end 9.144 2.286) 87 | (stroke (width 0) (type default)) 88 | (fill (type none)) 89 | ) 90 | (rectangle (start 10.16 5.334) (end 9.144 4.826) 91 | (stroke (width 0) (type default)) 92 | (fill (type none)) 93 | ) 94 | (rectangle (start 10.16 10.414) (end 9.144 9.906) 95 | (stroke (width 0) (type default)) 96 | (fill (type none)) 97 | ) 98 | ) 99 | (symbol "USB3_A_0_1" 100 | (rectangle (start -10.16 13.97) (end 10.16 -15.24) 101 | (stroke (width 0.254) (type default)) 102 | (fill (type background)) 103 | ) 104 | ) 105 | (symbol "USB3_A_1_1" 106 | (circle (center -2.54 1.143) (radius 0.635) 107 | (stroke (width 0.254) (type default)) 108 | (fill (type outline)) 109 | ) 110 | (circle (center 0 -5.842) (radius 1.27) 111 | (stroke (width 0) (type default)) 112 | (fill (type outline)) 113 | ) 114 | (polyline 115 | (pts 116 | (xy 0 -5.842) 117 | (xy 0 4.318) 118 | ) 119 | (stroke (width 0.508) (type default)) 120 | (fill (type none)) 121 | ) 122 | (polyline 123 | (pts 124 | (xy 0 -3.302) 125 | (xy -2.54 -0.762) 126 | (xy -2.54 0.508) 127 | ) 128 | (stroke (width 0.508) (type default)) 129 | (fill (type none)) 130 | ) 131 | (polyline 132 | (pts 133 | (xy 0 -2.032) 134 | (xy 2.54 0.508) 135 | (xy 2.54 1.778) 136 | ) 137 | (stroke (width 0.508) (type default)) 138 | (fill (type none)) 139 | ) 140 | (polyline 141 | (pts 142 | (xy -1.27 4.318) 143 | (xy 0 6.858) 144 | (xy 1.27 4.318) 145 | (xy -1.27 4.318) 146 | ) 147 | (stroke (width 0.254) (type default)) 148 | (fill (type outline)) 149 | ) 150 | (rectangle (start 1.905 1.778) (end 3.175 3.048) 151 | (stroke (width 0.254) (type default)) 152 | (fill (type outline)) 153 | ) 154 | (pin power_in line (at 12.7 10.16 180) (length 2.54) 155 | (name "VBUS" (effects (font (size 1.27 1.27)))) 156 | (number "1" (effects (font (size 1.27 1.27)))) 157 | ) 158 | (pin passive line (at -5.08 -17.78 90) (length 2.54) 159 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 160 | (number "10" (effects (font (size 1.27 1.27)))) 161 | ) 162 | (pin bidirectional line (at 12.7 5.08 180) (length 2.54) 163 | (name "D-" (effects (font (size 1.27 1.27)))) 164 | (number "2" (effects (font (size 1.27 1.27)))) 165 | ) 166 | (pin bidirectional line (at 12.7 2.54 180) (length 2.54) 167 | (name "D+" (effects (font (size 1.27 1.27)))) 168 | (number "3" (effects (font (size 1.27 1.27)))) 169 | ) 170 | (pin power_in line (at 0 -17.78 90) (length 2.54) 171 | (name "GND" (effects (font (size 1.27 1.27)))) 172 | (number "4" (effects (font (size 1.27 1.27)))) 173 | ) 174 | (pin output line (at 12.7 -2.54 180) (length 2.54) 175 | (name "SSRX-" (effects (font (size 1.27 1.27)))) 176 | (number "5" (effects (font (size 1.27 1.27)))) 177 | ) 178 | (pin output line (at 12.7 -5.08 180) (length 2.54) 179 | (name "SSRX+" (effects (font (size 1.27 1.27)))) 180 | (number "6" (effects (font (size 1.27 1.27)))) 181 | ) 182 | (pin passive line (at -2.54 -17.78 90) (length 2.54) 183 | (name "DRAIN" (effects (font (size 1.27 1.27)))) 184 | (number "7" (effects (font (size 1.27 1.27)))) 185 | ) 186 | (pin input line (at 12.7 -10.16 180) (length 2.54) 187 | (name "SSTX-" (effects (font (size 1.27 1.27)))) 188 | (number "8" (effects (font (size 1.27 1.27)))) 189 | ) 190 | (pin input line (at 12.7 -12.7 180) (length 2.54) 191 | (name "SSTX+" (effects (font (size 1.27 1.27)))) 192 | (number "9" (effects (font (size 1.27 1.27)))) 193 | ) 194 | ) 195 | ) 196 | (symbol "Connector:USB3_B" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 197 | (property "Reference" "J" (at -10.16 15.24 0) 198 | (effects (font (size 1.27 1.27)) (justify left)) 199 | ) 200 | (property "Value" "USB3_B" (at 10.16 15.24 0) 201 | (effects (font (size 1.27 1.27)) (justify right)) 202 | ) 203 | (property "Footprint" "" (at 3.81 2.54 0) 204 | (effects (font (size 1.27 1.27)) hide) 205 | ) 206 | (property "Datasheet" "~" (at 3.81 2.54 0) 207 | (effects (font (size 1.27 1.27)) hide) 208 | ) 209 | (property "ki_keywords" "usb universal serial bus" (at 0 0 0) 210 | (effects (font (size 1.27 1.27)) hide) 211 | ) 212 | (property "ki_description" "USB 3.0 B connector" (at 0 0 0) 213 | (effects (font (size 1.27 1.27)) hide) 214 | ) 215 | (symbol "USB3_B_0_0" 216 | (rectangle (start -2.794 -15.24) (end -2.286 -14.224) 217 | (stroke (width 0) (type default)) 218 | (fill (type none)) 219 | ) 220 | (rectangle (start -0.254 -15.24) (end 0.254 -14.224) 221 | (stroke (width 0) (type default)) 222 | (fill (type none)) 223 | ) 224 | (rectangle (start 10.16 -12.446) (end 9.144 -12.954) 225 | (stroke (width 0) (type default)) 226 | (fill (type none)) 227 | ) 228 | (rectangle (start 10.16 -9.906) (end 9.144 -10.414) 229 | (stroke (width 0) (type default)) 230 | (fill (type none)) 231 | ) 232 | (rectangle (start 10.16 -4.826) (end 9.144 -5.334) 233 | (stroke (width 0) (type default)) 234 | (fill (type none)) 235 | ) 236 | (rectangle (start 10.16 -2.286) (end 9.144 -2.794) 237 | (stroke (width 0) (type default)) 238 | (fill (type none)) 239 | ) 240 | (rectangle (start 10.16 2.794) (end 9.144 2.286) 241 | (stroke (width 0) (type default)) 242 | (fill (type none)) 243 | ) 244 | (rectangle (start 10.16 5.334) (end 9.144 4.826) 245 | (stroke (width 0) (type default)) 246 | (fill (type none)) 247 | ) 248 | (rectangle (start 10.16 10.414) (end 9.144 9.906) 249 | (stroke (width 0) (type default)) 250 | (fill (type none)) 251 | ) 252 | ) 253 | (symbol "USB3_B_0_1" 254 | (rectangle (start -10.16 13.97) (end 10.16 -15.24) 255 | (stroke (width 0.254) (type default)) 256 | (fill (type background)) 257 | ) 258 | (rectangle (start -6.477 8.382) (end -4.953 7.747) 259 | (stroke (width 0.254) (type default)) 260 | (fill (type outline)) 261 | ) 262 | (rectangle (start -4.445 4.445) (end -6.985 6.477) 263 | (stroke (width 0.254) (type default)) 264 | (fill (type outline)) 265 | ) 266 | (polyline 267 | (pts 268 | (xy -6.985 8.89) 269 | (xy -6.985 7.493) 270 | (xy -7.62 6.858) 271 | (xy -7.62 3.81) 272 | (xy -3.81 3.81) 273 | (xy -3.81 6.858) 274 | (xy -4.445 7.493) 275 | (xy -4.445 8.89) 276 | (xy -6.858 8.89) 277 | (xy -6.985 8.89) 278 | ) 279 | (stroke (width 0.508) (type default)) 280 | (fill (type none)) 281 | ) 282 | ) 283 | (symbol "USB3_B_1_1" 284 | (circle (center -2.54 1.143) (radius 0.635) 285 | (stroke (width 0.254) (type default)) 286 | (fill (type outline)) 287 | ) 288 | (circle (center 0 -5.842) (radius 1.27) 289 | (stroke (width 0) (type default)) 290 | (fill (type outline)) 291 | ) 292 | (polyline 293 | (pts 294 | (xy 0 -5.842) 295 | (xy 0 4.318) 296 | ) 297 | (stroke (width 0.508) (type default)) 298 | (fill (type none)) 299 | ) 300 | (polyline 301 | (pts 302 | (xy 0 -3.302) 303 | (xy -2.54 -0.762) 304 | (xy -2.54 0.508) 305 | ) 306 | (stroke (width 0.508) (type default)) 307 | (fill (type none)) 308 | ) 309 | (polyline 310 | (pts 311 | (xy 0 -2.032) 312 | (xy 2.54 0.508) 313 | (xy 2.54 1.778) 314 | ) 315 | (stroke (width 0.508) (type default)) 316 | (fill (type none)) 317 | ) 318 | (polyline 319 | (pts 320 | (xy -1.27 4.318) 321 | (xy 0 6.858) 322 | (xy 1.27 4.318) 323 | (xy -1.27 4.318) 324 | ) 325 | (stroke (width 0.254) (type default)) 326 | (fill (type outline)) 327 | ) 328 | (rectangle (start 1.905 1.778) (end 3.175 3.048) 329 | (stroke (width 0.254) (type default)) 330 | (fill (type outline)) 331 | ) 332 | (pin power_out line (at 12.7 10.16 180) (length 2.54) 333 | (name "VBUS" (effects (font (size 1.27 1.27)))) 334 | (number "1" (effects (font (size 1.27 1.27)))) 335 | ) 336 | (pin passive line (at -5.08 -17.78 90) (length 2.54) 337 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 338 | (number "10" (effects (font (size 1.27 1.27)))) 339 | ) 340 | (pin bidirectional line (at 12.7 5.08 180) (length 2.54) 341 | (name "D-" (effects (font (size 1.27 1.27)))) 342 | (number "2" (effects (font (size 1.27 1.27)))) 343 | ) 344 | (pin bidirectional line (at 12.7 2.54 180) (length 2.54) 345 | (name "D+" (effects (font (size 1.27 1.27)))) 346 | (number "3" (effects (font (size 1.27 1.27)))) 347 | ) 348 | (pin power_out line (at 0 -17.78 90) (length 2.54) 349 | (name "GND" (effects (font (size 1.27 1.27)))) 350 | (number "4" (effects (font (size 1.27 1.27)))) 351 | ) 352 | (pin output line (at 12.7 -2.54 180) (length 2.54) 353 | (name "SSTX-" (effects (font (size 1.27 1.27)))) 354 | (number "5" (effects (font (size 1.27 1.27)))) 355 | ) 356 | (pin output line (at 12.7 -5.08 180) (length 2.54) 357 | (name "SSTX+" (effects (font (size 1.27 1.27)))) 358 | (number "6" (effects (font (size 1.27 1.27)))) 359 | ) 360 | (pin passive line (at -2.54 -17.78 90) (length 2.54) 361 | (name "DRAIN" (effects (font (size 1.27 1.27)))) 362 | (number "7" (effects (font (size 1.27 1.27)))) 363 | ) 364 | (pin input line (at 12.7 -10.16 180) (length 2.54) 365 | (name "SSRX-" (effects (font (size 1.27 1.27)))) 366 | (number "8" (effects (font (size 1.27 1.27)))) 367 | ) 368 | (pin input line (at 12.7 -12.7 180) (length 2.54) 369 | (name "SSRX+" (effects (font (size 1.27 1.27)))) 370 | (number "9" (effects (font (size 1.27 1.27)))) 371 | ) 372 | ) 373 | ) 374 | (symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 375 | (property "Reference" "J" (at -5.08 11.43 0) 376 | (effects (font (size 1.27 1.27)) (justify left)) 377 | ) 378 | (property "Value" "USB_B_Micro" (at -5.08 8.89 0) 379 | (effects (font (size 1.27 1.27)) (justify left)) 380 | ) 381 | (property "Footprint" "" (at 3.81 -1.27 0) 382 | (effects (font (size 1.27 1.27)) hide) 383 | ) 384 | (property "Datasheet" "~" (at 3.81 -1.27 0) 385 | (effects (font (size 1.27 1.27)) hide) 386 | ) 387 | (property "ki_keywords" "connector USB micro" (at 0 0 0) 388 | (effects (font (size 1.27 1.27)) hide) 389 | ) 390 | (property "ki_description" "USB Micro Type B connector" (at 0 0 0) 391 | (effects (font (size 1.27 1.27)) hide) 392 | ) 393 | (property "ki_fp_filters" "USB*" (at 0 0 0) 394 | (effects (font (size 1.27 1.27)) hide) 395 | ) 396 | (symbol "USB_B_Micro_0_1" 397 | (rectangle (start -5.08 -7.62) (end 5.08 7.62) 398 | (stroke (width 0.254) (type default)) 399 | (fill (type background)) 400 | ) 401 | (circle (center -3.81 2.159) (radius 0.635) 402 | (stroke (width 0.254) (type default)) 403 | (fill (type outline)) 404 | ) 405 | (circle (center -0.635 3.429) (radius 0.381) 406 | (stroke (width 0.254) (type default)) 407 | (fill (type outline)) 408 | ) 409 | (rectangle (start -0.127 -7.62) (end 0.127 -6.858) 410 | (stroke (width 0) (type default)) 411 | (fill (type none)) 412 | ) 413 | (polyline 414 | (pts 415 | (xy -1.905 2.159) 416 | (xy 0.635 2.159) 417 | ) 418 | (stroke (width 0.254) (type default)) 419 | (fill (type none)) 420 | ) 421 | (polyline 422 | (pts 423 | (xy -3.175 2.159) 424 | (xy -2.54 2.159) 425 | (xy -1.27 3.429) 426 | (xy -0.635 3.429) 427 | ) 428 | (stroke (width 0.254) (type default)) 429 | (fill (type none)) 430 | ) 431 | (polyline 432 | (pts 433 | (xy -2.54 2.159) 434 | (xy -1.905 2.159) 435 | (xy -1.27 0.889) 436 | (xy 0 0.889) 437 | ) 438 | (stroke (width 0.254) (type default)) 439 | (fill (type none)) 440 | ) 441 | (polyline 442 | (pts 443 | (xy 0.635 2.794) 444 | (xy 0.635 1.524) 445 | (xy 1.905 2.159) 446 | (xy 0.635 2.794) 447 | ) 448 | (stroke (width 0.254) (type default)) 449 | (fill (type outline)) 450 | ) 451 | (polyline 452 | (pts 453 | (xy -4.318 5.588) 454 | (xy -1.778 5.588) 455 | (xy -2.032 4.826) 456 | (xy -4.064 4.826) 457 | (xy -4.318 5.588) 458 | ) 459 | (stroke (width 0) (type default)) 460 | (fill (type outline)) 461 | ) 462 | (polyline 463 | (pts 464 | (xy -4.699 5.842) 465 | (xy -4.699 5.588) 466 | (xy -4.445 4.826) 467 | (xy -4.445 4.572) 468 | (xy -1.651 4.572) 469 | (xy -1.651 4.826) 470 | (xy -1.397 5.588) 471 | (xy -1.397 5.842) 472 | (xy -4.699 5.842) 473 | ) 474 | (stroke (width 0) (type default)) 475 | (fill (type none)) 476 | ) 477 | (rectangle (start 0.254 1.27) (end -0.508 0.508) 478 | (stroke (width 0.254) (type default)) 479 | (fill (type outline)) 480 | ) 481 | (rectangle (start 5.08 -5.207) (end 4.318 -4.953) 482 | (stroke (width 0) (type default)) 483 | (fill (type none)) 484 | ) 485 | (rectangle (start 5.08 -2.667) (end 4.318 -2.413) 486 | (stroke (width 0) (type default)) 487 | (fill (type none)) 488 | ) 489 | (rectangle (start 5.08 -0.127) (end 4.318 0.127) 490 | (stroke (width 0) (type default)) 491 | (fill (type none)) 492 | ) 493 | (rectangle (start 5.08 4.953) (end 4.318 5.207) 494 | (stroke (width 0) (type default)) 495 | (fill (type none)) 496 | ) 497 | ) 498 | (symbol "USB_B_Micro_1_1" 499 | (pin power_out line (at 7.62 5.08 180) (length 2.54) 500 | (name "VBUS" (effects (font (size 1.27 1.27)))) 501 | (number "1" (effects (font (size 1.27 1.27)))) 502 | ) 503 | (pin bidirectional line (at 7.62 -2.54 180) (length 2.54) 504 | (name "D-" (effects (font (size 1.27 1.27)))) 505 | (number "2" (effects (font (size 1.27 1.27)))) 506 | ) 507 | (pin bidirectional line (at 7.62 0 180) (length 2.54) 508 | (name "D+" (effects (font (size 1.27 1.27)))) 509 | (number "3" (effects (font (size 1.27 1.27)))) 510 | ) 511 | (pin passive line (at 7.62 -5.08 180) (length 2.54) 512 | (name "ID" (effects (font (size 1.27 1.27)))) 513 | (number "4" (effects (font (size 1.27 1.27)))) 514 | ) 515 | (pin power_out line (at 0 -10.16 90) (length 2.54) 516 | (name "GND" (effects (font (size 1.27 1.27)))) 517 | (number "5" (effects (font (size 1.27 1.27)))) 518 | ) 519 | (pin passive line (at -2.54 -10.16 90) (length 2.54) 520 | (name "Shield" (effects (font (size 1.27 1.27)))) 521 | (number "6" (effects (font (size 1.27 1.27)))) 522 | ) 523 | ) 524 | ) 525 | (symbol "Connector:USB_B_Mini" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 526 | (property "Reference" "J" (at -5.08 11.43 0) 527 | (effects (font (size 1.27 1.27)) (justify left)) 528 | ) 529 | (property "Value" "USB_B_Mini" (at -5.08 8.89 0) 530 | (effects (font (size 1.27 1.27)) (justify left)) 531 | ) 532 | (property "Footprint" "" (at 3.81 -1.27 0) 533 | (effects (font (size 1.27 1.27)) hide) 534 | ) 535 | (property "Datasheet" "~" (at 3.81 -1.27 0) 536 | (effects (font (size 1.27 1.27)) hide) 537 | ) 538 | (property "ki_keywords" "connector USB mini" (at 0 0 0) 539 | (effects (font (size 1.27 1.27)) hide) 540 | ) 541 | (property "ki_description" "USB Mini Type B connector" (at 0 0 0) 542 | (effects (font (size 1.27 1.27)) hide) 543 | ) 544 | (property "ki_fp_filters" "USB*" (at 0 0 0) 545 | (effects (font (size 1.27 1.27)) hide) 546 | ) 547 | (symbol "USB_B_Mini_0_1" 548 | (rectangle (start -5.08 -7.62) (end 5.08 7.62) 549 | (stroke (width 0.254) (type default)) 550 | (fill (type background)) 551 | ) 552 | (circle (center -3.81 2.159) (radius 0.635) 553 | (stroke (width 0.254) (type default)) 554 | (fill (type outline)) 555 | ) 556 | (circle (center -0.635 3.429) (radius 0.381) 557 | (stroke (width 0.254) (type default)) 558 | (fill (type outline)) 559 | ) 560 | (rectangle (start -0.127 -7.62) (end 0.127 -6.858) 561 | (stroke (width 0) (type default)) 562 | (fill (type none)) 563 | ) 564 | (polyline 565 | (pts 566 | (xy -1.905 2.159) 567 | (xy 0.635 2.159) 568 | ) 569 | (stroke (width 0.254) (type default)) 570 | (fill (type none)) 571 | ) 572 | (polyline 573 | (pts 574 | (xy -3.175 2.159) 575 | (xy -2.54 2.159) 576 | (xy -1.27 3.429) 577 | (xy -0.635 3.429) 578 | ) 579 | (stroke (width 0.254) (type default)) 580 | (fill (type none)) 581 | ) 582 | (polyline 583 | (pts 584 | (xy -2.54 2.159) 585 | (xy -1.905 2.159) 586 | (xy -1.27 0.889) 587 | (xy 0 0.889) 588 | ) 589 | (stroke (width 0.254) (type default)) 590 | (fill (type none)) 591 | ) 592 | (polyline 593 | (pts 594 | (xy 0.635 2.794) 595 | (xy 0.635 1.524) 596 | (xy 1.905 2.159) 597 | (xy 0.635 2.794) 598 | ) 599 | (stroke (width 0.254) (type default)) 600 | (fill (type outline)) 601 | ) 602 | (polyline 603 | (pts 604 | (xy -4.318 5.588) 605 | (xy -1.778 5.588) 606 | (xy -2.032 4.826) 607 | (xy -4.064 4.826) 608 | (xy -4.318 5.588) 609 | ) 610 | (stroke (width 0) (type default)) 611 | (fill (type outline)) 612 | ) 613 | (polyline 614 | (pts 615 | (xy -4.699 5.842) 616 | (xy -4.699 5.588) 617 | (xy -4.445 4.826) 618 | (xy -4.445 4.572) 619 | (xy -1.651 4.572) 620 | (xy -1.651 4.826) 621 | (xy -1.397 5.588) 622 | (xy -1.397 5.842) 623 | (xy -4.699 5.842) 624 | ) 625 | (stroke (width 0) (type default)) 626 | (fill (type none)) 627 | ) 628 | (rectangle (start 0.254 1.27) (end -0.508 0.508) 629 | (stroke (width 0.254) (type default)) 630 | (fill (type outline)) 631 | ) 632 | (rectangle (start 5.08 -5.207) (end 4.318 -4.953) 633 | (stroke (width 0) (type default)) 634 | (fill (type none)) 635 | ) 636 | (rectangle (start 5.08 -2.667) (end 4.318 -2.413) 637 | (stroke (width 0) (type default)) 638 | (fill (type none)) 639 | ) 640 | (rectangle (start 5.08 -0.127) (end 4.318 0.127) 641 | (stroke (width 0) (type default)) 642 | (fill (type none)) 643 | ) 644 | (rectangle (start 5.08 4.953) (end 4.318 5.207) 645 | (stroke (width 0) (type default)) 646 | (fill (type none)) 647 | ) 648 | ) 649 | (symbol "USB_B_Mini_1_1" 650 | (pin power_out line (at 7.62 5.08 180) (length 2.54) 651 | (name "VBUS" (effects (font (size 1.27 1.27)))) 652 | (number "1" (effects (font (size 1.27 1.27)))) 653 | ) 654 | (pin bidirectional line (at 7.62 -2.54 180) (length 2.54) 655 | (name "D-" (effects (font (size 1.27 1.27)))) 656 | (number "2" (effects (font (size 1.27 1.27)))) 657 | ) 658 | (pin bidirectional line (at 7.62 0 180) (length 2.54) 659 | (name "D+" (effects (font (size 1.27 1.27)))) 660 | (number "3" (effects (font (size 1.27 1.27)))) 661 | ) 662 | (pin passive line (at 7.62 -5.08 180) (length 2.54) 663 | (name "ID" (effects (font (size 1.27 1.27)))) 664 | (number "4" (effects (font (size 1.27 1.27)))) 665 | ) 666 | (pin power_out line (at 0 -10.16 90) (length 2.54) 667 | (name "GND" (effects (font (size 1.27 1.27)))) 668 | (number "5" (effects (font (size 1.27 1.27)))) 669 | ) 670 | (pin passive line (at -2.54 -10.16 90) (length 2.54) 671 | (name "Shield" (effects (font (size 1.27 1.27)))) 672 | (number "6" (effects (font (size 1.27 1.27)))) 673 | ) 674 | ) 675 | ) 676 | (symbol "Device:Battery_Cell" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 677 | (property "Reference" "BT" (at 2.54 2.54 0) 678 | (effects (font (size 1.27 1.27)) (justify left)) 679 | ) 680 | (property "Value" "Battery_Cell" (at 2.54 0 0) 681 | (effects (font (size 1.27 1.27)) (justify left)) 682 | ) 683 | (property "Footprint" "" (at 0 1.524 90) 684 | (effects (font (size 1.27 1.27)) hide) 685 | ) 686 | (property "Datasheet" "~" (at 0 1.524 90) 687 | (effects (font (size 1.27 1.27)) hide) 688 | ) 689 | (property "ki_keywords" "battery cell" (at 0 0 0) 690 | (effects (font (size 1.27 1.27)) hide) 691 | ) 692 | (property "ki_description" "Single-cell battery" (at 0 0 0) 693 | (effects (font (size 1.27 1.27)) hide) 694 | ) 695 | (symbol "Battery_Cell_0_1" 696 | (rectangle (start -2.286 1.778) (end 2.286 1.524) 697 | (stroke (width 0) (type default)) 698 | (fill (type outline)) 699 | ) 700 | (rectangle (start -1.524 1.016) (end 1.524 0.508) 701 | (stroke (width 0) (type default)) 702 | (fill (type outline)) 703 | ) 704 | (polyline 705 | (pts 706 | (xy 0 0.762) 707 | (xy 0 0) 708 | ) 709 | (stroke (width 0) (type default)) 710 | (fill (type none)) 711 | ) 712 | (polyline 713 | (pts 714 | (xy 0 1.778) 715 | (xy 0 2.54) 716 | ) 717 | (stroke (width 0) (type default)) 718 | (fill (type none)) 719 | ) 720 | (polyline 721 | (pts 722 | (xy 0.762 3.048) 723 | (xy 1.778 3.048) 724 | ) 725 | (stroke (width 0.254) (type default)) 726 | (fill (type none)) 727 | ) 728 | (polyline 729 | (pts 730 | (xy 1.27 3.556) 731 | (xy 1.27 2.54) 732 | ) 733 | (stroke (width 0.254) (type default)) 734 | (fill (type none)) 735 | ) 736 | ) 737 | (symbol "Battery_Cell_1_1" 738 | (pin passive line (at 0 5.08 270) (length 2.54) 739 | (name "+" (effects (font (size 1.27 1.27)))) 740 | (number "1" (effects (font (size 1.27 1.27)))) 741 | ) 742 | (pin passive line (at 0 -2.54 90) (length 2.54) 743 | (name "-" (effects (font (size 1.27 1.27)))) 744 | (number "2" (effects (font (size 1.27 1.27)))) 745 | ) 746 | ) 747 | ) 748 | (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 749 | (property "Reference" "C" (at 0.254 1.778 0) 750 | (effects (font (size 1.27 1.27)) (justify left)) 751 | ) 752 | (property "Value" "C_Small" (at 0.254 -2.032 0) 753 | (effects (font (size 1.27 1.27)) (justify left)) 754 | ) 755 | (property "Footprint" "" (at 0 0 0) 756 | (effects (font (size 1.27 1.27)) hide) 757 | ) 758 | (property "Datasheet" "~" (at 0 0 0) 759 | (effects (font (size 1.27 1.27)) hide) 760 | ) 761 | (property "ki_keywords" "capacitor cap" (at 0 0 0) 762 | (effects (font (size 1.27 1.27)) hide) 763 | ) 764 | (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0) 765 | (effects (font (size 1.27 1.27)) hide) 766 | ) 767 | (property "ki_fp_filters" "C_*" (at 0 0 0) 768 | (effects (font (size 1.27 1.27)) hide) 769 | ) 770 | (symbol "C_Small_0_1" 771 | (polyline 772 | (pts 773 | (xy -1.524 -0.508) 774 | (xy 1.524 -0.508) 775 | ) 776 | (stroke (width 0.3302) (type default)) 777 | (fill (type none)) 778 | ) 779 | (polyline 780 | (pts 781 | (xy -1.524 0.508) 782 | (xy 1.524 0.508) 783 | ) 784 | (stroke (width 0.3048) (type default)) 785 | (fill (type none)) 786 | ) 787 | ) 788 | (symbol "C_Small_1_1" 789 | (pin passive line (at 0 2.54 270) (length 2.032) 790 | (name "~" (effects (font (size 1.27 1.27)))) 791 | (number "1" (effects (font (size 1.27 1.27)))) 792 | ) 793 | (pin passive line (at 0 -2.54 90) (length 2.032) 794 | (name "~" (effects (font (size 1.27 1.27)))) 795 | (number "2" (effects (font (size 1.27 1.27)))) 796 | ) 797 | ) 798 | ) 799 | (symbol "Device:LED_Small_Filled" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 800 | (property "Reference" "D" (at -1.27 3.175 0) 801 | (effects (font (size 1.27 1.27)) (justify left)) 802 | ) 803 | (property "Value" "LED_Small_Filled" (at -4.445 -2.54 0) 804 | (effects (font (size 1.27 1.27)) (justify left)) 805 | ) 806 | (property "Footprint" "" (at 0 0 90) 807 | (effects (font (size 1.27 1.27)) hide) 808 | ) 809 | (property "Datasheet" "~" (at 0 0 90) 810 | (effects (font (size 1.27 1.27)) hide) 811 | ) 812 | (property "ki_keywords" "LED diode light-emitting-diode" (at 0 0 0) 813 | (effects (font (size 1.27 1.27)) hide) 814 | ) 815 | (property "ki_description" "Light emitting diode, small symbol, filled shape" (at 0 0 0) 816 | (effects (font (size 1.27 1.27)) hide) 817 | ) 818 | (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0) 819 | (effects (font (size 1.27 1.27)) hide) 820 | ) 821 | (symbol "LED_Small_Filled_0_1" 822 | (polyline 823 | (pts 824 | (xy -0.762 -1.016) 825 | (xy -0.762 1.016) 826 | ) 827 | (stroke (width 0.254) (type default)) 828 | (fill (type none)) 829 | ) 830 | (polyline 831 | (pts 832 | (xy 1.016 0) 833 | (xy -0.762 0) 834 | ) 835 | (stroke (width 0) (type default)) 836 | (fill (type none)) 837 | ) 838 | (polyline 839 | (pts 840 | (xy 0.762 -1.016) 841 | (xy -0.762 0) 842 | (xy 0.762 1.016) 843 | (xy 0.762 -1.016) 844 | ) 845 | (stroke (width 0.254) (type default)) 846 | (fill (type outline)) 847 | ) 848 | (polyline 849 | (pts 850 | (xy 0 0.762) 851 | (xy -0.508 1.27) 852 | (xy -0.254 1.27) 853 | (xy -0.508 1.27) 854 | (xy -0.508 1.016) 855 | ) 856 | (stroke (width 0) (type default)) 857 | (fill (type none)) 858 | ) 859 | (polyline 860 | (pts 861 | (xy 0.508 1.27) 862 | (xy 0 1.778) 863 | (xy 0.254 1.778) 864 | (xy 0 1.778) 865 | (xy 0 1.524) 866 | ) 867 | (stroke (width 0) (type default)) 868 | (fill (type none)) 869 | ) 870 | ) 871 | (symbol "LED_Small_Filled_1_1" 872 | (pin passive line (at -2.54 0 0) (length 1.778) 873 | (name "K" (effects (font (size 1.27 1.27)))) 874 | (number "1" (effects (font (size 1.27 1.27)))) 875 | ) 876 | (pin passive line (at 2.54 0 180) (length 1.778) 877 | (name "A" (effects (font (size 1.27 1.27)))) 878 | (number "2" (effects (font (size 1.27 1.27)))) 879 | ) 880 | ) 881 | ) 882 | (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) 883 | (property "Reference" "R" (at 0.762 0.508 0) 884 | (effects (font (size 1.27 1.27)) (justify left)) 885 | ) 886 | (property "Value" "R_Small" (at 0.762 -1.016 0) 887 | (effects (font (size 1.27 1.27)) (justify left)) 888 | ) 889 | (property "Footprint" "" (at 0 0 0) 890 | (effects (font (size 1.27 1.27)) hide) 891 | ) 892 | (property "Datasheet" "~" (at 0 0 0) 893 | (effects (font (size 1.27 1.27)) hide) 894 | ) 895 | (property "ki_keywords" "R resistor" (at 0 0 0) 896 | (effects (font (size 1.27 1.27)) hide) 897 | ) 898 | (property "ki_description" "Resistor, small symbol" (at 0 0 0) 899 | (effects (font (size 1.27 1.27)) hide) 900 | ) 901 | (property "ki_fp_filters" "R_*" (at 0 0 0) 902 | (effects (font (size 1.27 1.27)) hide) 903 | ) 904 | (symbol "R_Small_0_1" 905 | (rectangle (start -0.762 1.778) (end 0.762 -1.778) 906 | (stroke (width 0.2032) (type default)) 907 | (fill (type none)) 908 | ) 909 | ) 910 | (symbol "R_Small_1_1" 911 | (pin passive line (at 0 2.54 270) (length 0.762) 912 | (name "~" (effects (font (size 1.27 1.27)))) 913 | (number "1" (effects (font (size 1.27 1.27)))) 914 | ) 915 | (pin passive line (at 0 -2.54 90) (length 0.762) 916 | (name "~" (effects (font (size 1.27 1.27)))) 917 | (number "2" (effects (font (size 1.27 1.27)))) 918 | ) 919 | ) 920 | ) 921 | (symbol "USB_C_Receptacle_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 922 | (property "Reference" "J1" (at 0 33.02 0) 923 | (effects (font (size 1.27 1.27)) (justify right)) 924 | ) 925 | (property "Value" "USB_C_Receptacle" (at 7.62 30.48 0) 926 | (effects (font (size 1.27 1.27)) (justify right)) 927 | ) 928 | (property "Footprint" "alvarop:MOLEX-1054500101" (at -7.62 -48.26 0) 929 | (effects (font (size 1.27 1.27)) hide) 930 | ) 931 | (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at -2.54 -50.8 0) 932 | (effects (font (size 1.27 1.27)) hide) 933 | ) 934 | (property "ki_keywords" "usb universal serial bus type-C full-featured" (at 0 0 0) 935 | (effects (font (size 1.27 1.27)) hide) 936 | ) 937 | (property "ki_description" "USB Full-Featured Type-C Receptacle connector" (at 0 0 0) 938 | (effects (font (size 1.27 1.27)) hide) 939 | ) 940 | (property "ki_fp_filters" "USB*C*Receptacle*" (at 0 0 0) 941 | (effects (font (size 1.27 1.27)) hide) 942 | ) 943 | (symbol "USB_C_Receptacle_1_0_0" 944 | (rectangle (start -0.254 -35.56) (end 0.254 -34.544) 945 | (stroke (width 0) (type default)) 946 | (fill (type none)) 947 | ) 948 | ) 949 | (symbol "USB_C_Receptacle_1_0_1" 950 | (rectangle (start -12.7 27.94) (end 7.62 -35.56) 951 | (stroke (width 0.254) (type default)) 952 | (fill (type background)) 953 | ) 954 | (arc (start -8.89 -1.27) (mid -6.985 -3.1667) (end -5.08 -1.27) 955 | (stroke (width 0.508) (type default)) 956 | (fill (type none)) 957 | ) 958 | (arc (start -7.62 -1.27) (mid -6.985 -1.9023) (end -6.35 -1.27) 959 | (stroke (width 0.254) (type default)) 960 | (fill (type none)) 961 | ) 962 | (arc (start -7.62 -1.27) (mid -6.985 -1.9023) (end -6.35 -1.27) 963 | (stroke (width 0.254) (type default)) 964 | (fill (type outline)) 965 | ) 966 | (rectangle (start -7.62 -1.27) (end -6.35 6.35) 967 | (stroke (width 0.254) (type default)) 968 | (fill (type outline)) 969 | ) 970 | (arc (start -6.35 6.35) (mid -6.985 6.9823) (end -7.62 6.35) 971 | (stroke (width 0.254) (type default)) 972 | (fill (type none)) 973 | ) 974 | (arc (start -6.35 6.35) (mid -6.985 6.9823) (end -7.62 6.35) 975 | (stroke (width 0.254) (type default)) 976 | (fill (type outline)) 977 | ) 978 | (arc (start -5.08 6.35) (mid -6.985 8.2467) (end -8.89 6.35) 979 | (stroke (width 0.508) (type default)) 980 | (fill (type none)) 981 | ) 982 | (polyline 983 | (pts 984 | (xy -8.89 -1.27) 985 | (xy -8.89 6.35) 986 | ) 987 | (stroke (width 0.508) (type default)) 988 | (fill (type none)) 989 | ) 990 | (polyline 991 | (pts 992 | (xy -5.08 6.35) 993 | (xy -5.08 -1.27) 994 | ) 995 | (stroke (width 0.508) (type default)) 996 | (fill (type none)) 997 | ) 998 | ) 999 | (symbol "USB_C_Receptacle_1_1_1" 1000 | (circle (center -2.54 3.683) (radius 0.635) 1001 | (stroke (width 0.254) (type default)) 1002 | (fill (type outline)) 1003 | ) 1004 | (circle (center 0 -3.302) (radius 1.27) 1005 | (stroke (width 0) (type default)) 1006 | (fill (type outline)) 1007 | ) 1008 | (polyline 1009 | (pts 1010 | (xy 0 -3.302) 1011 | (xy 0 6.858) 1012 | ) 1013 | (stroke (width 0.508) (type default)) 1014 | (fill (type none)) 1015 | ) 1016 | (polyline 1017 | (pts 1018 | (xy 0 -0.762) 1019 | (xy -2.54 1.778) 1020 | (xy -2.54 3.048) 1021 | ) 1022 | (stroke (width 0.508) (type default)) 1023 | (fill (type none)) 1024 | ) 1025 | (polyline 1026 | (pts 1027 | (xy 0 0.508) 1028 | (xy 2.54 3.048) 1029 | (xy 2.54 4.318) 1030 | ) 1031 | (stroke (width 0.508) (type default)) 1032 | (fill (type none)) 1033 | ) 1034 | (polyline 1035 | (pts 1036 | (xy -1.27 6.858) 1037 | (xy 0 9.398) 1038 | (xy 1.27 6.858) 1039 | (xy -1.27 6.858) 1040 | ) 1041 | (stroke (width 0.254) (type default)) 1042 | (fill (type outline)) 1043 | ) 1044 | (rectangle (start 1.905 4.318) (end 3.175 5.588) 1045 | (stroke (width 0.254) (type default)) 1046 | (fill (type outline)) 1047 | ) 1048 | (pin passive line (at -7.62 -40.64 90) (length 5.08) 1049 | (name "GND" (effects (font (size 1.27 1.27)))) 1050 | (number "A1" (effects (font (size 1.27 1.27)))) 1051 | ) 1052 | (pin bidirectional line (at 12.7 -17.78 180) (length 5.08) 1053 | (name "RX2-" (effects (font (size 1.27 1.27)))) 1054 | (number "A10" (effects (font (size 1.27 1.27)))) 1055 | ) 1056 | (pin bidirectional line (at 12.7 -20.32 180) (length 5.08) 1057 | (name "RX2+" (effects (font (size 1.27 1.27)))) 1058 | (number "A11" (effects (font (size 1.27 1.27)))) 1059 | ) 1060 | (pin passive line (at -5.08 -40.64 90) (length 5.08) 1061 | (name "GND" (effects (font (size 1.27 1.27)))) 1062 | (number "A12" (effects (font (size 1.27 1.27)))) 1063 | ) 1064 | (pin bidirectional line (at 12.7 -15.24 180) (length 5.08) 1065 | (name "TX1+" (effects (font (size 1.27 1.27)))) 1066 | (number "A2" (effects (font (size 1.27 1.27)))) 1067 | ) 1068 | (pin bidirectional line (at 12.7 -12.7 180) (length 5.08) 1069 | (name "TX1-" (effects (font (size 1.27 1.27)))) 1070 | (number "A3" (effects (font (size 1.27 1.27)))) 1071 | ) 1072 | (pin passive line (at 12.7 25.4 180) (length 5.08) 1073 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1074 | (number "A4" (effects (font (size 1.27 1.27)))) 1075 | ) 1076 | (pin bidirectional line (at 12.7 12.7 180) (length 5.08) 1077 | (name "CC1" (effects (font (size 1.27 1.27)))) 1078 | (number "A5" (effects (font (size 1.27 1.27)))) 1079 | ) 1080 | (pin bidirectional line (at 12.7 0 180) (length 5.08) 1081 | (name "D+" (effects (font (size 1.27 1.27)))) 1082 | (number "A6" (effects (font (size 1.27 1.27)))) 1083 | ) 1084 | (pin bidirectional line (at 12.7 5.08 180) (length 5.08) 1085 | (name "D-" (effects (font (size 1.27 1.27)))) 1086 | (number "A7" (effects (font (size 1.27 1.27)))) 1087 | ) 1088 | (pin bidirectional line (at 12.7 -30.48 180) (length 5.08) 1089 | (name "SBU1" (effects (font (size 1.27 1.27)))) 1090 | (number "A8" (effects (font (size 1.27 1.27)))) 1091 | ) 1092 | (pin passive line (at 12.7 22.86 180) (length 5.08) 1093 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1094 | (number "A9" (effects (font (size 1.27 1.27)))) 1095 | ) 1096 | (pin passive line (at -2.54 -40.64 90) (length 5.08) 1097 | (name "GND" (effects (font (size 1.27 1.27)))) 1098 | (number "B1" (effects (font (size 1.27 1.27)))) 1099 | ) 1100 | (pin bidirectional line (at 12.7 -7.62 180) (length 5.08) 1101 | (name "RX1-" (effects (font (size 1.27 1.27)))) 1102 | (number "B10" (effects (font (size 1.27 1.27)))) 1103 | ) 1104 | (pin bidirectional line (at 12.7 -10.16 180) (length 5.08) 1105 | (name "RX1+" (effects (font (size 1.27 1.27)))) 1106 | (number "B11" (effects (font (size 1.27 1.27)))) 1107 | ) 1108 | (pin passive line (at 0 -40.64 90) (length 5.08) 1109 | (name "GND" (effects (font (size 1.27 1.27)))) 1110 | (number "B12" (effects (font (size 1.27 1.27)))) 1111 | ) 1112 | (pin bidirectional line (at 12.7 -25.4 180) (length 5.08) 1113 | (name "TX2+" (effects (font (size 1.27 1.27)))) 1114 | (number "B2" (effects (font (size 1.27 1.27)))) 1115 | ) 1116 | (pin bidirectional line (at 12.7 -22.86 180) (length 5.08) 1117 | (name "TX2-" (effects (font (size 1.27 1.27)))) 1118 | (number "B3" (effects (font (size 1.27 1.27)))) 1119 | ) 1120 | (pin passive line (at 12.7 17.78 180) (length 5.08) 1121 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1122 | (number "B4" (effects (font (size 1.27 1.27)))) 1123 | ) 1124 | (pin bidirectional line (at 12.7 10.16 180) (length 5.08) 1125 | (name "CC2" (effects (font (size 1.27 1.27)))) 1126 | (number "B5" (effects (font (size 1.27 1.27)))) 1127 | ) 1128 | (pin bidirectional line (at 12.7 -2.54 180) (length 5.08) 1129 | (name "D+" (effects (font (size 1.27 1.27)))) 1130 | (number "B6" (effects (font (size 1.27 1.27)))) 1131 | ) 1132 | (pin bidirectional line (at 12.7 2.54 180) (length 5.08) 1133 | (name "D-" (effects (font (size 1.27 1.27)))) 1134 | (number "B7" (effects (font (size 1.27 1.27)))) 1135 | ) 1136 | (pin bidirectional line (at 12.7 -33.02 180) (length 5.08) 1137 | (name "SBU2" (effects (font (size 1.27 1.27)))) 1138 | (number "B8" (effects (font (size 1.27 1.27)))) 1139 | ) 1140 | (pin passive line (at 12.7 20.32 180) (length 5.08) 1141 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1142 | (number "B9" (effects (font (size 1.27 1.27)))) 1143 | ) 1144 | (pin passive line (at -10.16 -40.64 90) (length 5.08) 1145 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 1146 | (number "S1" (effects (font (size 1.27 1.27)))) 1147 | ) 1148 | ) 1149 | ) 1150 | (symbol "USB_C_Receptacle_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 1151 | (property "Reference" "J?" (at 0 33.02 0) 1152 | (effects (font (size 1.27 1.27)) (justify right)) 1153 | ) 1154 | (property "Value" "USB_C_Receptacle_ALLPINS" (at 7.62 30.48 0) 1155 | (effects (font (size 1.27 1.27)) (justify right)) 1156 | ) 1157 | (property "Footprint" "alvarop:MOLEX-1054500101" (at -7.62 -48.26 0) 1158 | (effects (font (size 1.27 1.27)) hide) 1159 | ) 1160 | (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at -2.54 -50.8 0) 1161 | (effects (font (size 1.27 1.27)) hide) 1162 | ) 1163 | (property "ki_keywords" "usb universal serial bus type-C full-featured" (at 0 0 0) 1164 | (effects (font (size 1.27 1.27)) hide) 1165 | ) 1166 | (property "ki_description" "USB Full-Featured Type-C Receptacle connector" (at 0 0 0) 1167 | (effects (font (size 1.27 1.27)) hide) 1168 | ) 1169 | (property "ki_fp_filters" "USB*C*Receptacle*" (at 0 0 0) 1170 | (effects (font (size 1.27 1.27)) hide) 1171 | ) 1172 | (symbol "USB_C_Receptacle_2_0_0" 1173 | (rectangle (start -0.254 -35.56) (end 0.254 -34.544) 1174 | (stroke (width 0) (type default)) 1175 | (fill (type none)) 1176 | ) 1177 | ) 1178 | (symbol "USB_C_Receptacle_2_0_1" 1179 | (rectangle (start -12.7 27.94) (end 7.62 -35.56) 1180 | (stroke (width 0.254) (type default)) 1181 | (fill (type background)) 1182 | ) 1183 | (arc (start -8.89 -1.27) (mid -6.985 -3.1667) (end -5.08 -1.27) 1184 | (stroke (width 0.508) (type default)) 1185 | (fill (type none)) 1186 | ) 1187 | (arc (start -7.62 -1.27) (mid -6.985 -1.9023) (end -6.35 -1.27) 1188 | (stroke (width 0.254) (type default)) 1189 | (fill (type none)) 1190 | ) 1191 | (arc (start -7.62 -1.27) (mid -6.985 -1.9023) (end -6.35 -1.27) 1192 | (stroke (width 0.254) (type default)) 1193 | (fill (type outline)) 1194 | ) 1195 | (rectangle (start -7.62 -1.27) (end -6.35 6.35) 1196 | (stroke (width 0.254) (type default)) 1197 | (fill (type outline)) 1198 | ) 1199 | (arc (start -6.35 6.35) (mid -6.985 6.9823) (end -7.62 6.35) 1200 | (stroke (width 0.254) (type default)) 1201 | (fill (type none)) 1202 | ) 1203 | (arc (start -6.35 6.35) (mid -6.985 6.9823) (end -7.62 6.35) 1204 | (stroke (width 0.254) (type default)) 1205 | (fill (type outline)) 1206 | ) 1207 | (arc (start -5.08 6.35) (mid -6.985 8.2467) (end -8.89 6.35) 1208 | (stroke (width 0.508) (type default)) 1209 | (fill (type none)) 1210 | ) 1211 | (polyline 1212 | (pts 1213 | (xy -8.89 -1.27) 1214 | (xy -8.89 6.35) 1215 | ) 1216 | (stroke (width 0.508) (type default)) 1217 | (fill (type none)) 1218 | ) 1219 | (polyline 1220 | (pts 1221 | (xy -5.08 6.35) 1222 | (xy -5.08 -1.27) 1223 | ) 1224 | (stroke (width 0.508) (type default)) 1225 | (fill (type none)) 1226 | ) 1227 | ) 1228 | (symbol "USB_C_Receptacle_2_1_1" 1229 | (circle (center -2.54 3.683) (radius 0.635) 1230 | (stroke (width 0.254) (type default)) 1231 | (fill (type outline)) 1232 | ) 1233 | (circle (center 0 -3.302) (radius 1.27) 1234 | (stroke (width 0) (type default)) 1235 | (fill (type outline)) 1236 | ) 1237 | (polyline 1238 | (pts 1239 | (xy 0 -3.302) 1240 | (xy 0 6.858) 1241 | ) 1242 | (stroke (width 0.508) (type default)) 1243 | (fill (type none)) 1244 | ) 1245 | (polyline 1246 | (pts 1247 | (xy 0 -0.762) 1248 | (xy -2.54 1.778) 1249 | (xy -2.54 3.048) 1250 | ) 1251 | (stroke (width 0.508) (type default)) 1252 | (fill (type none)) 1253 | ) 1254 | (polyline 1255 | (pts 1256 | (xy 0 0.508) 1257 | (xy 2.54 3.048) 1258 | (xy 2.54 4.318) 1259 | ) 1260 | (stroke (width 0.508) (type default)) 1261 | (fill (type none)) 1262 | ) 1263 | (polyline 1264 | (pts 1265 | (xy -1.27 6.858) 1266 | (xy 0 9.398) 1267 | (xy 1.27 6.858) 1268 | (xy -1.27 6.858) 1269 | ) 1270 | (stroke (width 0.254) (type default)) 1271 | (fill (type outline)) 1272 | ) 1273 | (rectangle (start 1.905 4.318) (end 3.175 5.588) 1274 | (stroke (width 0.254) (type default)) 1275 | (fill (type outline)) 1276 | ) 1277 | (pin passive line (at -7.62 -40.64 90) (length 5.08) 1278 | (name "GND" (effects (font (size 1.27 1.27)))) 1279 | (number "A1" (effects (font (size 1.27 1.27)))) 1280 | ) 1281 | (pin bidirectional line (at 12.7 -17.78 180) (length 5.08) 1282 | (name "RX2-" (effects (font (size 1.27 1.27)))) 1283 | (number "A10" (effects (font (size 1.27 1.27)))) 1284 | ) 1285 | (pin bidirectional line (at 12.7 -20.32 180) (length 5.08) 1286 | (name "RX2+" (effects (font (size 1.27 1.27)))) 1287 | (number "A11" (effects (font (size 1.27 1.27)))) 1288 | ) 1289 | (pin passive line (at -5.08 -40.64 90) (length 5.08) 1290 | (name "GND" (effects (font (size 1.27 1.27)))) 1291 | (number "A12" (effects (font (size 1.27 1.27)))) 1292 | ) 1293 | (pin bidirectional line (at 12.7 -15.24 180) (length 5.08) 1294 | (name "TX1+" (effects (font (size 1.27 1.27)))) 1295 | (number "A2" (effects (font (size 1.27 1.27)))) 1296 | ) 1297 | (pin bidirectional line (at 12.7 -12.7 180) (length 5.08) 1298 | (name "TX1-" (effects (font (size 1.27 1.27)))) 1299 | (number "A3" (effects (font (size 1.27 1.27)))) 1300 | ) 1301 | (pin passive line (at 12.7 25.4 180) (length 5.08) 1302 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1303 | (number "A4" (effects (font (size 1.27 1.27)))) 1304 | ) 1305 | (pin bidirectional line (at 12.7 12.7 180) (length 5.08) 1306 | (name "CC1" (effects (font (size 1.27 1.27)))) 1307 | (number "A5" (effects (font (size 1.27 1.27)))) 1308 | ) 1309 | (pin bidirectional line (at 12.7 0 180) (length 5.08) 1310 | (name "D+" (effects (font (size 1.27 1.27)))) 1311 | (number "A6" (effects (font (size 1.27 1.27)))) 1312 | ) 1313 | (pin bidirectional line (at 12.7 5.08 180) (length 5.08) 1314 | (name "D-" (effects (font (size 1.27 1.27)))) 1315 | (number "A7" (effects (font (size 1.27 1.27)))) 1316 | ) 1317 | (pin bidirectional line (at 12.7 -30.48 180) (length 5.08) 1318 | (name "SBU1" (effects (font (size 1.27 1.27)))) 1319 | (number "A8" (effects (font (size 1.27 1.27)))) 1320 | ) 1321 | (pin passive line (at 12.7 22.86 180) (length 5.08) 1322 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1323 | (number "A9" (effects (font (size 1.27 1.27)))) 1324 | ) 1325 | (pin passive line (at -2.54 -40.64 90) (length 5.08) 1326 | (name "GND" (effects (font (size 1.27 1.27)))) 1327 | (number "B1" (effects (font (size 1.27 1.27)))) 1328 | ) 1329 | (pin bidirectional line (at 12.7 -7.62 180) (length 5.08) 1330 | (name "RX1-" (effects (font (size 1.27 1.27)))) 1331 | (number "B10" (effects (font (size 1.27 1.27)))) 1332 | ) 1333 | (pin bidirectional line (at 12.7 -10.16 180) (length 5.08) 1334 | (name "RX1+" (effects (font (size 1.27 1.27)))) 1335 | (number "B11" (effects (font (size 1.27 1.27)))) 1336 | ) 1337 | (pin passive line (at 0 -40.64 90) (length 5.08) 1338 | (name "GND" (effects (font (size 1.27 1.27)))) 1339 | (number "B12" (effects (font (size 1.27 1.27)))) 1340 | ) 1341 | (pin bidirectional line (at 12.7 -25.4 180) (length 5.08) 1342 | (name "TX2+" (effects (font (size 1.27 1.27)))) 1343 | (number "B2" (effects (font (size 1.27 1.27)))) 1344 | ) 1345 | (pin bidirectional line (at 12.7 -22.86 180) (length 5.08) 1346 | (name "TX2-" (effects (font (size 1.27 1.27)))) 1347 | (number "B3" (effects (font (size 1.27 1.27)))) 1348 | ) 1349 | (pin passive line (at 12.7 20.32 180) (length 5.08) 1350 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1351 | (number "B4" (effects (font (size 1.27 1.27)))) 1352 | ) 1353 | (pin bidirectional line (at 12.7 10.16 180) (length 5.08) 1354 | (name "CC2" (effects (font (size 1.27 1.27)))) 1355 | (number "B5" (effects (font (size 1.27 1.27)))) 1356 | ) 1357 | (pin bidirectional line (at 12.7 -2.54 180) (length 5.08) 1358 | (name "D+" (effects (font (size 1.27 1.27)))) 1359 | (number "B6" (effects (font (size 1.27 1.27)))) 1360 | ) 1361 | (pin bidirectional line (at 12.7 2.54 180) (length 5.08) 1362 | (name "D-" (effects (font (size 1.27 1.27)))) 1363 | (number "B7" (effects (font (size 1.27 1.27)))) 1364 | ) 1365 | (pin bidirectional line (at 12.7 -33.02 180) (length 5.08) 1366 | (name "SBU2" (effects (font (size 1.27 1.27)))) 1367 | (number "B8" (effects (font (size 1.27 1.27)))) 1368 | ) 1369 | (pin passive line (at 12.7 17.78 180) (length 5.08) 1370 | (name "VBUS" (effects (font (size 1.27 1.27)))) 1371 | (number "B9" (effects (font (size 1.27 1.27)))) 1372 | ) 1373 | (pin passive line (at -10.16 -40.64 90) (length 5.08) 1374 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 1375 | (number "S1" (effects (font (size 1.27 1.27)))) 1376 | ) 1377 | ) 1378 | ) 1379 | (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1380 | (property "Reference" "#PWR" (at 0 -3.81 0) 1381 | (effects (font (size 1.27 1.27)) hide) 1382 | ) 1383 | (property "Value" "+3V3" (at 0 3.556 0) 1384 | (effects (font (size 1.27 1.27))) 1385 | ) 1386 | (property "Footprint" "" (at 0 0 0) 1387 | (effects (font (size 1.27 1.27)) hide) 1388 | ) 1389 | (property "Datasheet" "" (at 0 0 0) 1390 | (effects (font (size 1.27 1.27)) hide) 1391 | ) 1392 | (property "ki_keywords" "global power" (at 0 0 0) 1393 | (effects (font (size 1.27 1.27)) hide) 1394 | ) 1395 | (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0) 1396 | (effects (font (size 1.27 1.27)) hide) 1397 | ) 1398 | (symbol "+3V3_0_1" 1399 | (polyline 1400 | (pts 1401 | (xy -0.762 1.27) 1402 | (xy 0 2.54) 1403 | ) 1404 | (stroke (width 0) (type default)) 1405 | (fill (type none)) 1406 | ) 1407 | (polyline 1408 | (pts 1409 | (xy 0 0) 1410 | (xy 0 2.54) 1411 | ) 1412 | (stroke (width 0) (type default)) 1413 | (fill (type none)) 1414 | ) 1415 | (polyline 1416 | (pts 1417 | (xy 0 2.54) 1418 | (xy 0.762 1.27) 1419 | ) 1420 | (stroke (width 0) (type default)) 1421 | (fill (type none)) 1422 | ) 1423 | ) 1424 | (symbol "+3V3_1_1" 1425 | (pin power_in line (at 0 0 90) (length 0) hide 1426 | (name "+3V3" (effects (font (size 1.27 1.27)))) 1427 | (number "1" (effects (font (size 1.27 1.27)))) 1428 | ) 1429 | ) 1430 | ) 1431 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1432 | (property "Reference" "#PWR" (at 0 -6.35 0) 1433 | (effects (font (size 1.27 1.27)) hide) 1434 | ) 1435 | (property "Value" "GND" (at 0 -3.81 0) 1436 | (effects (font (size 1.27 1.27))) 1437 | ) 1438 | (property "Footprint" "" (at 0 0 0) 1439 | (effects (font (size 1.27 1.27)) hide) 1440 | ) 1441 | (property "Datasheet" "" (at 0 0 0) 1442 | (effects (font (size 1.27 1.27)) hide) 1443 | ) 1444 | (property "ki_keywords" "global power" (at 0 0 0) 1445 | (effects (font (size 1.27 1.27)) hide) 1446 | ) 1447 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) 1448 | (effects (font (size 1.27 1.27)) hide) 1449 | ) 1450 | (symbol "GND_0_1" 1451 | (polyline 1452 | (pts 1453 | (xy 0 0) 1454 | (xy 0 -1.27) 1455 | (xy 1.27 -1.27) 1456 | (xy 0 -2.54) 1457 | (xy -1.27 -1.27) 1458 | (xy 0 -1.27) 1459 | ) 1460 | (stroke (width 0) (type default)) 1461 | (fill (type none)) 1462 | ) 1463 | ) 1464 | (symbol "GND_1_1" 1465 | (pin power_in line (at 0 0 270) (length 0) hide 1466 | (name "GND" (effects (font (size 1.27 1.27)))) 1467 | (number "1" (effects (font (size 1.27 1.27)))) 1468 | ) 1469 | ) 1470 | ) 1471 | ) 1472 | 1473 | (junction (at 88.9 134.62) (diameter 0) (color 0 0 0 0) 1474 | (uuid 01dc8bd6-5c34-4404-9f81-adfbffc2aca1) 1475 | ) 1476 | (junction (at 88.9 78.74) (diameter 0) (color 0 0 0 0) 1477 | (uuid 06ad37a8-43fc-44c1-bd3c-cb2e1079b3ba) 1478 | ) 1479 | (junction (at 279.4 43.18) (diameter 0) (color 0 0 0 0) 1480 | (uuid 085679e4-bb34-4579-aece-0bf84b5154ae) 1481 | ) 1482 | (junction (at 109.22 91.44) (diameter 0) (color 0 0 0 0) 1483 | (uuid 0a8c7e66-d8f8-455c-8620-abc84d367630) 1484 | ) 1485 | (junction (at 88.9 66.04) (diameter 0) (color 0 0 0 0) 1486 | (uuid 0d23f8c5-3ef6-4062-acd2-3455bcdc383a) 1487 | ) 1488 | (junction (at 114.3 91.44) (diameter 0) (color 0 0 0 0) 1489 | (uuid 0e6ac1e5-b458-48e0-a162-38d691357303) 1490 | ) 1491 | (junction (at 88.9 127) (diameter 0) (color 0 0 0 0) 1492 | (uuid 108a0dab-e2ca-44b5-a48f-8b5b898f0198) 1493 | ) 1494 | (junction (at 88.9 106.68) (diameter 0) (color 0 0 0 0) 1495 | (uuid 11707f05-c9fa-4417-9a7a-e90c9d03d203) 1496 | ) 1497 | (junction (at 111.76 91.44) (diameter 0) (color 0 0 0 0) 1498 | (uuid 156e084f-d08a-49fa-86d6-99e5eae68e3c) 1499 | ) 1500 | (junction (at 88.9 25.4) (diameter 0) (color 0 0 0 0) 1501 | (uuid 189fa37a-4090-4ec7-97fb-9470cea840bf) 1502 | ) 1503 | (junction (at 88.9 132.08) (diameter 0) (color 0 0 0 0) 1504 | (uuid 192b9817-bc34-49b9-ad82-a37e4030903b) 1505 | ) 1506 | (junction (at 279.4 139.7) (diameter 0) (color 0 0 0 0) 1507 | (uuid 1cf756a7-522d-47a0-a1a7-f7f9fa5459af) 1508 | ) 1509 | (junction (at 88.9 55.88) (diameter 0) (color 0 0 0 0) 1510 | (uuid 1f5c509b-2491-4986-b850-a96e751df244) 1511 | ) 1512 | (junction (at 88.9 38.1) (diameter 0) (color 0 0 0 0) 1513 | (uuid 2489c067-ba57-4382-9b35-966584831db9) 1514 | ) 1515 | (junction (at 88.9 68.58) (diameter 0) (color 0 0 0 0) 1516 | (uuid 2c40fd17-d8dc-444e-90da-a6b0ef6912b5) 1517 | ) 1518 | (junction (at 114.3 187.96) (diameter 0) (color 0 0 0 0) 1519 | (uuid 38b67795-e882-460c-89e1-e8eadf7f6a90) 1520 | ) 1521 | (junction (at 88.9 45.72) (diameter 0) (color 0 0 0 0) 1522 | (uuid 40eb0f1b-4ac1-47da-aa1f-4ac34b4d5076) 1523 | ) 1524 | (junction (at 88.9 177.8) (diameter 0) (color 0 0 0 0) 1525 | (uuid 414b63d4-18d6-4276-83ba-81e0430aeef1) 1526 | ) 1527 | (junction (at 88.9 58.42) (diameter 0) (color 0 0 0 0) 1528 | (uuid 4309eb25-e3dd-43e2-a304-8d54c0a2c888) 1529 | ) 1530 | (junction (at 88.9 116.84) (diameter 0) (color 0 0 0 0) 1531 | (uuid 52e03033-8d12-45ac-a7b9-8f9a85dbe8f9) 1532 | ) 1533 | (junction (at 88.9 149.86) (diameter 0) (color 0 0 0 0) 1534 | (uuid 54683429-325f-4d43-af7f-c98b8347a21d) 1535 | ) 1536 | (junction (at 88.9 99.06) (diameter 0) (color 0 0 0 0) 1537 | (uuid 570cd96b-4c7d-4534-a0dc-e3f8d010c8b7) 1538 | ) 1539 | (junction (at 279.4 99.06) (diameter 0) (color 0 0 0 0) 1540 | (uuid 588fb2f9-8c1f-40a5-b9bb-680641b0a600) 1541 | ) 1542 | (junction (at 279.4 119.38) (diameter 0) (color 0 0 0 0) 1543 | (uuid 68fe19f5-a588-44ce-b78b-c433da0f4ffc) 1544 | ) 1545 | (junction (at 88.9 73.66) (diameter 0) (color 0 0 0 0) 1546 | (uuid 6a19a683-8b7c-4d03-a4f9-59af74852b66) 1547 | ) 1548 | (junction (at 279.4 27.94) (diameter 0) (color 0 0 0 0) 1549 | (uuid 6cb72d66-4fdc-43d5-88c6-04368832ab35) 1550 | ) 1551 | (junction (at 88.9 30.48) (diameter 0) (color 0 0 0 0) 1552 | (uuid 6e2e604c-0a35-4e66-883d-7e3f439b4027) 1553 | ) 1554 | (junction (at 88.9 175.26) (diameter 0) (color 0 0 0 0) 1555 | (uuid 701b2ec3-5bba-421a-969e-04c4be949af8) 1556 | ) 1557 | (junction (at 109.22 157.48) (diameter 0) (color 0 0 0 0) 1558 | (uuid 702c1f72-4b6b-4ed4-bf72-2e7628c2220f) 1559 | ) 1560 | (junction (at 279.4 58.42) (diameter 0) (color 0 0 0 0) 1561 | (uuid 7261f55c-f347-44d6-b4a6-08cb7c658fa5) 1562 | ) 1563 | (junction (at 88.9 35.56) (diameter 0) (color 0 0 0 0) 1564 | (uuid 73a3b23a-f20b-466e-a9e5-a94ed0b87815) 1565 | ) 1566 | (junction (at 88.9 50.8) (diameter 0) (color 0 0 0 0) 1567 | (uuid 7602d9be-a623-45cf-ba94-4771b4877caf) 1568 | ) 1569 | (junction (at 111.76 157.48) (diameter 0) (color 0 0 0 0) 1570 | (uuid 778f0dfa-e44f-4634-8284-7c75c08e5225) 1571 | ) 1572 | (junction (at 279.4 88.9) (diameter 0) (color 0 0 0 0) 1573 | (uuid 782ed7eb-eb77-4fb3-a941-c1d6cf319698) 1574 | ) 1575 | (junction (at 279.4 104.14) (diameter 0) (color 0 0 0 0) 1576 | (uuid 7da78d5f-7aa2-46cc-8fa1-1bf1c795099f) 1577 | ) 1578 | (junction (at 88.9 142.24) (diameter 0) (color 0 0 0 0) 1579 | (uuid 7e8dbd1b-f5c6-4fee-abd7-27099ed81927) 1580 | ) 1581 | (junction (at 88.9 91.44) (diameter 0) (color 0 0 0 0) 1582 | (uuid 83709a5f-982b-4964-9b6d-15bbed2b6a6c) 1583 | ) 1584 | (junction (at 279.4 68.58) (diameter 0) (color 0 0 0 0) 1585 | (uuid 83b83f5e-918d-41cf-bedc-42834376b59f) 1586 | ) 1587 | (junction (at 116.84 91.44) (diameter 0) (color 0 0 0 0) 1588 | (uuid 8883d4c2-2b1d-4a49-906f-e4f02f95d44a) 1589 | ) 1590 | (junction (at 88.9 157.48) (diameter 0) (color 0 0 0 0) 1591 | (uuid 89e76265-57bf-477c-9b11-e2f46caa695c) 1592 | ) 1593 | (junction (at 88.9 104.14) (diameter 0) (color 0 0 0 0) 1594 | (uuid 8a6f1caa-4cd3-46c5-af20-256234e2ec1e) 1595 | ) 1596 | (junction (at 279.4 83.82) (diameter 0) (color 0 0 0 0) 1597 | (uuid 8dc1c8ec-532f-4bb3-ae79-d4ad883d1dbe) 1598 | ) 1599 | (junction (at 88.9 71.12) (diameter 0) (color 0 0 0 0) 1600 | (uuid 8fef113c-2d7e-4d2c-b3a3-670b8389b315) 1601 | ) 1602 | (junction (at 88.9 139.7) (diameter 0) (color 0 0 0 0) 1603 | (uuid 9afb40a9-d35d-47c8-8480-a9d8fb230c04) 1604 | ) 1605 | (junction (at 88.9 81.28) (diameter 0) (color 0 0 0 0) 1606 | (uuid a4474308-3211-4f61-b9aa-024676c5a30b) 1607 | ) 1608 | (junction (at 88.9 27.94) (diameter 0) (color 0 0 0 0) 1609 | (uuid ad8e7cc5-572d-4e3b-bc1f-81d6c6639bf6) 1610 | ) 1611 | (junction (at 279.4 53.34) (diameter 0) (color 0 0 0 0) 1612 | (uuid b88fe7bf-05e2-4fd9-992a-87d3a6ddc6ad) 1613 | ) 1614 | (junction (at 279.4 78.74) (diameter 0) (color 0 0 0 0) 1615 | (uuid bb479cc9-56e1-48e0-ba3c-b629ed0f2378) 1616 | ) 1617 | (junction (at 279.4 63.5) (diameter 0) (color 0 0 0 0) 1618 | (uuid c56ede79-3961-4da2-873d-b855ae1ca756) 1619 | ) 1620 | (junction (at 279.4 144.78) (diameter 0) (color 0 0 0 0) 1621 | (uuid cb2e61a6-43cf-44b2-b801-4fac8ab7388e) 1622 | ) 1623 | (junction (at 279.4 109.22) (diameter 0) (color 0 0 0 0) 1624 | (uuid cf147809-8975-4cc9-a523-0203b4faa1e8) 1625 | ) 1626 | (junction (at 88.9 147.32) (diameter 0) (color 0 0 0 0) 1627 | (uuid cf91650f-8471-4744-a6fc-c51cc0d25b08) 1628 | ) 1629 | (junction (at 279.4 129.54) (diameter 0) (color 0 0 0 0) 1630 | (uuid d1ba1a35-cb7d-4d42-b7d1-7c34b97edc19) 1631 | ) 1632 | (junction (at 88.9 43.18) (diameter 0) (color 0 0 0 0) 1633 | (uuid d2aff1ee-247b-491c-9c84-57af8a927ca1) 1634 | ) 1635 | (junction (at 279.4 93.98) (diameter 0) (color 0 0 0 0) 1636 | (uuid d6db7831-04c6-4dda-a7d1-565669699211) 1637 | ) 1638 | (junction (at 88.9 170.18) (diameter 0) (color 0 0 0 0) 1639 | (uuid d77b7bb8-cd91-4fe2-b237-1a3694c80a11) 1640 | ) 1641 | (junction (at 279.4 48.26) (diameter 0) (color 0 0 0 0) 1642 | (uuid d9af5836-582c-426f-9fe4-0d515778cf40) 1643 | ) 1644 | (junction (at 279.4 124.46) (diameter 0) (color 0 0 0 0) 1645 | (uuid dc6e8752-07b4-4df6-abb1-5350fe010393) 1646 | ) 1647 | (junction (at 88.9 48.26) (diameter 0) (color 0 0 0 0) 1648 | (uuid e2c7baa5-39f1-4ee3-b90a-17da2ce8ecbc) 1649 | ) 1650 | (junction (at 279.4 73.66) (diameter 0) (color 0 0 0 0) 1651 | (uuid e6e8fc82-0419-48a6-a90e-f6246e77eeff) 1652 | ) 1653 | (junction (at 279.4 114.3) (diameter 0) (color 0 0 0 0) 1654 | (uuid ea2cefba-d00c-41c6-a436-3a4c6b09fb6c) 1655 | ) 1656 | (junction (at 279.4 38.1) (diameter 0) (color 0 0 0 0) 1657 | (uuid eb555933-5171-4091-872f-f104c2a7cb14) 1658 | ) 1659 | (junction (at 88.9 63.5) (diameter 0) (color 0 0 0 0) 1660 | (uuid ed494c61-914f-4bf2-8e7e-a103db5ca48d) 1661 | ) 1662 | (junction (at 279.4 134.62) (diameter 0) (color 0 0 0 0) 1663 | (uuid ee37e7ab-11a5-4940-8259-64d961e2ec79) 1664 | ) 1665 | (junction (at 88.9 60.96) (diameter 0) (color 0 0 0 0) 1666 | (uuid ef340d66-1ba0-44e4-a619-52211533ec92) 1667 | ) 1668 | (junction (at 114.3 116.84) (diameter 0) (color 0 0 0 0) 1669 | (uuid f31e2f04-1ddf-4089-bd45-fd0fc91d7398) 1670 | ) 1671 | (junction (at 88.9 22.86) (diameter 0) (color 0 0 0 0) 1672 | (uuid f5061357-a9ed-4582-b7ab-57169dda3b5f) 1673 | ) 1674 | (junction (at 279.4 33.02) (diameter 0) (color 0 0 0 0) 1675 | (uuid f7113506-6843-442b-8d3b-0b79c7b12541) 1676 | ) 1677 | 1678 | (no_connect (at 106.68 109.22) (uuid 5460015e-1b23-4f80-8bb1-9c874aa310df)) 1679 | (no_connect (at 106.68 180.34) (uuid c34fb2a0-ed48-42d9-b8be-b31aea1461ca)) 1680 | 1681 | (wire (pts (xy 256.54 78.74) (xy 264.16 78.74)) 1682 | (stroke (width 0) (type default)) 1683 | (uuid 003033c8-e0be-499a-84fe-f92634450e3b) 1684 | ) 1685 | (wire (pts (xy 88.9 43.18) (xy 88.9 45.72)) 1686 | (stroke (width 0) (type default)) 1687 | (uuid 00384abb-4477-4985-b324-2c898d9f47d5) 1688 | ) 1689 | (wire (pts (xy 256.54 99.06) (xy 264.16 99.06)) 1690 | (stroke (width 0) (type default)) 1691 | (uuid 00d8820b-41ec-46f4-b470-2804a62d01dd) 1692 | ) 1693 | (wire (pts (xy 88.9 68.58) (xy 96.52 68.58)) 1694 | (stroke (width 0) (type default)) 1695 | (uuid 0215edec-f190-4ea1-90ec-2d846eb7bac7) 1696 | ) 1697 | (wire (pts (xy 88.9 25.4) (xy 88.9 27.94)) 1698 | (stroke (width 0) (type default)) 1699 | (uuid 039d179c-b77b-44e6-8f13-58ef61693bda) 1700 | ) 1701 | (wire (pts (xy 88.9 48.26) (xy 88.9 50.8)) 1702 | (stroke (width 0) (type default)) 1703 | (uuid 0482c567-d0c6-4652-8e77-bd058675fdc0) 1704 | ) 1705 | (wire (pts (xy 88.9 58.42) (xy 96.52 58.42)) 1706 | (stroke (width 0) (type default)) 1707 | (uuid 04abfc80-01a6-4f20-87a9-cff5340de283) 1708 | ) 1709 | (wire (pts (xy 88.9 50.8) (xy 88.9 55.88)) 1710 | (stroke (width 0) (type default)) 1711 | (uuid 053e5457-4b64-4727-90ea-0bd5d52b5db5) 1712 | ) 1713 | (wire (pts (xy 256.54 43.18) (xy 264.16 43.18)) 1714 | (stroke (width 0) (type default)) 1715 | (uuid 054936c7-2319-4d30-abfe-980d0d9dfe2e) 1716 | ) 1717 | (wire (pts (xy 88.9 78.74) (xy 88.9 81.28)) 1718 | (stroke (width 0) (type default)) 1719 | (uuid 05c8c236-680c-4169-bc55-0d0cb2a49051) 1720 | ) 1721 | (wire (pts (xy 185.42 68.58) (xy 198.12 68.58)) 1722 | (stroke (width 0) (type default)) 1723 | (uuid 06d43ba4-9054-410f-9f4d-892fbd2f70c2) 1724 | ) 1725 | (wire (pts (xy 256.54 63.5) (xy 264.16 63.5)) 1726 | (stroke (width 0) (type default)) 1727 | (uuid 06f2bbf1-5e14-47ee-9278-a0ed4c580852) 1728 | ) 1729 | (wire (pts (xy 251.46 48.26) (xy 238.76 48.26)) 1730 | (stroke (width 0) (type default)) 1731 | (uuid 079dadec-207a-40c3-ae44-af513086611c) 1732 | ) 1733 | (wire (pts (xy 279.4 63.5) (xy 279.4 68.58)) 1734 | (stroke (width 0) (type default)) 1735 | (uuid 08245656-e879-4a18-b253-4ba4208fbed7) 1736 | ) 1737 | (wire (pts (xy 116.84 91.44) (xy 116.84 88.9)) 1738 | (stroke (width 0) (type default)) 1739 | (uuid 083ae27e-0d22-441f-b30a-bcf63a68bc44) 1740 | ) 1741 | (wire (pts (xy 269.24 78.74) (xy 279.4 78.74)) 1742 | (stroke (width 0) (type default)) 1743 | (uuid 098f4404-b9da-4fe6-b380-0e8b243f0124) 1744 | ) 1745 | (wire (pts (xy 88.9 43.18) (xy 96.52 43.18)) 1746 | (stroke (width 0) (type default)) 1747 | (uuid 0a0c643d-c3d5-4a93-a466-401bf8beb567) 1748 | ) 1749 | (wire (pts (xy 269.24 134.62) (xy 279.4 134.62)) 1750 | (stroke (width 0) (type default)) 1751 | (uuid 0b601453-4cbf-480b-83f4-d2ff8bc5cadb) 1752 | ) 1753 | (wire (pts (xy 279.4 114.3) (xy 279.4 119.38)) 1754 | (stroke (width 0) (type default)) 1755 | (uuid 0f1a0eb4-44d4-47ab-864f-650202a375a8) 1756 | ) 1757 | (wire (pts (xy 88.9 48.26) (xy 96.52 48.26)) 1758 | (stroke (width 0) (type default)) 1759 | (uuid 0f8e6d80-e073-429d-8aea-7049f5ae429d) 1760 | ) 1761 | (wire (pts (xy 256.54 88.9) (xy 264.16 88.9)) 1762 | (stroke (width 0) (type default)) 1763 | (uuid 0fc3f33e-33a2-4ccc-8bc3-737a4a2d14c2) 1764 | ) 1765 | (wire (pts (xy 251.46 144.78) (xy 238.76 144.78)) 1766 | (stroke (width 0) (type default)) 1767 | (uuid 11cdbc8c-6692-4578-8980-c9b3e8357194) 1768 | ) 1769 | (wire (pts (xy 269.24 68.58) (xy 279.4 68.58)) 1770 | (stroke (width 0) (type default)) 1771 | (uuid 139e05df-2ffb-4a64-b3b4-db8148d05708) 1772 | ) 1773 | (wire (pts (xy 256.54 93.98) (xy 264.16 93.98)) 1774 | (stroke (width 0) (type default)) 1775 | (uuid 1795e1ca-807e-4e17-a876-516a040ffda7) 1776 | ) 1777 | (wire (pts (xy 251.46 129.54) (xy 238.76 129.54)) 1778 | (stroke (width 0) (type default)) 1779 | (uuid 17b2667e-c79c-4f9f-98e2-834eafe3b0d4) 1780 | ) 1781 | (wire (pts (xy 119.38 88.9) (xy 119.38 91.44)) 1782 | (stroke (width 0) (type default)) 1783 | (uuid 17feb8c2-12bf-4ab6-87a2-d5849cd9fec8) 1784 | ) 1785 | (wire (pts (xy 251.46 114.3) (xy 238.76 114.3)) 1786 | (stroke (width 0) (type default)) 1787 | (uuid 1832968d-7474-4e95-802a-4922f5ede1fc) 1788 | ) 1789 | (wire (pts (xy 88.9 45.72) (xy 88.9 48.26)) 1790 | (stroke (width 0) (type default)) 1791 | (uuid 1a74d3f1-2c98-4733-adae-439336dd6cc4) 1792 | ) 1793 | (wire (pts (xy 279.4 33.02) (xy 279.4 38.1)) 1794 | (stroke (width 0) (type default)) 1795 | (uuid 1aec1ce6-fc19-481b-bd6f-ef564313e9ce) 1796 | ) 1797 | (wire (pts (xy 114.3 116.84) (xy 88.9 116.84)) 1798 | (stroke (width 0) (type default)) 1799 | (uuid 1b329489-0f26-4a32-93e7-f5e6131b1598) 1800 | ) 1801 | (wire (pts (xy 251.46 22.86) (xy 238.76 22.86)) 1802 | (stroke (width 0) (type default)) 1803 | (uuid 1cb6be8c-ac10-4cf9-b00d-08f90c81798e) 1804 | ) 1805 | (wire (pts (xy 256.54 83.82) (xy 264.16 83.82)) 1806 | (stroke (width 0) (type default)) 1807 | (uuid 1d45d95a-2dcb-45de-983c-9ee21337be5a) 1808 | ) 1809 | (wire (pts (xy 256.54 124.46) (xy 264.16 124.46)) 1810 | (stroke (width 0) (type default)) 1811 | (uuid 1f26490d-759f-408b-9cc6-bb2514de64ac) 1812 | ) 1813 | (wire (pts (xy 269.24 93.98) (xy 279.4 93.98)) 1814 | (stroke (width 0) (type default)) 1815 | (uuid 249b58f2-5c9f-41ad-80ee-66fedb1e5ca3) 1816 | ) 1817 | (wire (pts (xy 256.54 22.86) (xy 264.16 22.86)) 1818 | (stroke (width 0) (type default)) 1819 | (uuid 267b77b4-2de0-4b27-94a7-64ae333ec922) 1820 | ) 1821 | (wire (pts (xy 88.9 78.74) (xy 96.52 78.74)) 1822 | (stroke (width 0) (type default)) 1823 | (uuid 268287e4-e6c5-48e2-b7ec-8fb6484b18b7) 1824 | ) 1825 | (wire (pts (xy 88.9 170.18) (xy 106.68 170.18)) 1826 | (stroke (width 0) (type default)) 1827 | (uuid 286ee9de-94dd-48a5-b4ca-8d977a0a331c) 1828 | ) 1829 | (wire (pts (xy 111.76 91.44) (xy 114.3 91.44)) 1830 | (stroke (width 0) (type default)) 1831 | (uuid 28b5be07-4b32-4765-b3db-c7458d4a4624) 1832 | ) 1833 | (wire (pts (xy 116.84 185.42) (xy 116.84 187.96)) 1834 | (stroke (width 0) (type default)) 1835 | (uuid 28f4b3e7-fe0a-4912-b749-451acd90ddf9) 1836 | ) 1837 | (wire (pts (xy 256.54 134.62) (xy 264.16 134.62)) 1838 | (stroke (width 0) (type default)) 1839 | (uuid 2a2becbc-959c-4efd-8c4d-d74773f771ab) 1840 | ) 1841 | (wire (pts (xy 162.56 147.32) (xy 162.56 160.02)) 1842 | (stroke (width 0) (type default)) 1843 | (uuid 2b129c15-8363-4a99-a80c-2ae7052ccfb7) 1844 | ) 1845 | (wire (pts (xy 180.34 132.08) (xy 193.04 132.08)) 1846 | (stroke (width 0) (type default)) 1847 | (uuid 2b622acd-f208-4609-a31a-e1ac6573b92f) 1848 | ) 1849 | (wire (pts (xy 114.3 154.94) (xy 114.3 157.48)) 1850 | (stroke (width 0) (type default)) 1851 | (uuid 2f23bc55-76de-4438-b72c-910d1a947b03) 1852 | ) 1853 | (wire (pts (xy 111.76 88.9) (xy 111.76 91.44)) 1854 | (stroke (width 0) (type default)) 1855 | (uuid 2f3775de-7be8-4dac-96b9-09fa339268d9) 1856 | ) 1857 | (wire (pts (xy 180.34 124.46) (xy 193.04 124.46)) 1858 | (stroke (width 0) (type default)) 1859 | (uuid 312c7d9e-d020-4469-8308-4d915807e729) 1860 | ) 1861 | (wire (pts (xy 251.46 109.22) (xy 238.76 109.22)) 1862 | (stroke (width 0) (type default)) 1863 | (uuid 31e724e3-03e0-4ebe-85bf-c397c75909e0) 1864 | ) 1865 | (wire (pts (xy 269.24 43.18) (xy 279.4 43.18)) 1866 | (stroke (width 0) (type default)) 1867 | (uuid 34e871fb-e472-4cd0-af65-5091352b0f2c) 1868 | ) 1869 | (wire (pts (xy 185.42 25.4) (xy 198.12 25.4)) 1870 | (stroke (width 0) (type default)) 1871 | (uuid 35575c7f-954d-45bb-88d4-f27fc3bb0df7) 1872 | ) 1873 | (wire (pts (xy 88.9 81.28) (xy 88.9 91.44)) 1874 | (stroke (width 0) (type default)) 1875 | (uuid 3709f1a1-60aa-4787-b381-8b0ddc27cc6f) 1876 | ) 1877 | (wire (pts (xy 279.4 48.26) (xy 279.4 53.34)) 1878 | (stroke (width 0) (type default)) 1879 | (uuid 397a34bb-9838-4aac-83aa-1b88ae44dcc4) 1880 | ) 1881 | (wire (pts (xy 269.24 27.94) (xy 279.4 27.94)) 1882 | (stroke (width 0) (type default)) 1883 | (uuid 398d403d-3712-435d-9332-5b14a6561b30) 1884 | ) 1885 | (wire (pts (xy 185.42 55.88) (xy 198.12 55.88)) 1886 | (stroke (width 0) (type default)) 1887 | (uuid 398eceb1-f76d-482b-98b9-ce9afc4192b7) 1888 | ) 1889 | (wire (pts (xy 116.84 187.96) (xy 114.3 187.96)) 1890 | (stroke (width 0) (type default)) 1891 | (uuid 3db38056-e2a2-4f3e-974d-8a9b96d4c7dc) 1892 | ) 1893 | (wire (pts (xy 269.24 104.14) (xy 279.4 104.14)) 1894 | (stroke (width 0) (type default)) 1895 | (uuid 43cde372-e2ee-4577-b1cb-d46c71b1b02e) 1896 | ) 1897 | (wire (pts (xy 251.46 124.46) (xy 238.76 124.46)) 1898 | (stroke (width 0) (type default)) 1899 | (uuid 44f12b3e-61f0-466d-a66c-478da7ef4d38) 1900 | ) 1901 | (wire (pts (xy 279.4 73.66) (xy 279.4 78.74)) 1902 | (stroke (width 0) (type default)) 1903 | (uuid 45137d9f-a6b9-4372-af15-a981fc133e6e) 1904 | ) 1905 | (wire (pts (xy 251.46 73.66) (xy 238.76 73.66)) 1906 | (stroke (width 0) (type default)) 1907 | (uuid 461900f0-30d9-4c05-8968-b9736ba07d38) 1908 | ) 1909 | (wire (pts (xy 88.9 116.84) (xy 88.9 127)) 1910 | (stroke (width 0) (type default)) 1911 | (uuid 4709e0e8-5bf9-428a-ae85-e8924104bece) 1912 | ) 1913 | (wire (pts (xy 256.54 139.7) (xy 264.16 139.7)) 1914 | (stroke (width 0) (type default)) 1915 | (uuid 4816c529-bbf4-4599-b6cb-a92956e13de3) 1916 | ) 1917 | (wire (pts (xy 185.42 38.1) (xy 198.12 38.1)) 1918 | (stroke (width 0) (type default)) 1919 | (uuid 49019b24-348f-4365-9bd0-3c9e61f0d610) 1920 | ) 1921 | (wire (pts (xy 88.9 106.68) (xy 106.68 106.68)) 1922 | (stroke (width 0) (type default)) 1923 | (uuid 4a8803a8-33ac-4f1a-a012-dbb6249dc9ab) 1924 | ) 1925 | (wire (pts (xy 172.72 88.9) (xy 172.72 101.6)) 1926 | (stroke (width 0) (type default)) 1927 | (uuid 4a983aa9-462c-46d2-8731-e954bf2a2e20) 1928 | ) 1929 | (wire (pts (xy 269.24 38.1) (xy 279.4 38.1)) 1930 | (stroke (width 0) (type default)) 1931 | (uuid 4dcfb1b5-3d8b-4bd5-81c0-dc3763f26af4) 1932 | ) 1933 | (wire (pts (xy 88.9 22.86) (xy 88.9 25.4)) 1934 | (stroke (width 0) (type default)) 1935 | (uuid 50170406-bd30-4110-be67-653531953dfb) 1936 | ) 1937 | (wire (pts (xy 109.22 91.44) (xy 111.76 91.44)) 1938 | (stroke (width 0) (type default)) 1939 | (uuid 50dabff6-309c-4b9b-9a79-2ed263723124) 1940 | ) 1941 | (wire (pts (xy 279.4 93.98) (xy 279.4 99.06)) 1942 | (stroke (width 0) (type default)) 1943 | (uuid 52856ddc-c7dc-48d6-bea2-2c5e52bcf4ac) 1944 | ) 1945 | (wire (pts (xy 88.9 55.88) (xy 96.52 55.88)) 1946 | (stroke (width 0) (type default)) 1947 | (uuid 535772a6-1a7c-42d1-a4f9-37eb4a91dcc3) 1948 | ) 1949 | (wire (pts (xy 269.24 99.06) (xy 279.4 99.06)) 1950 | (stroke (width 0) (type default)) 1951 | (uuid 53650079-3420-4f3d-bf3a-c03268c95f51) 1952 | ) 1953 | (wire (pts (xy 185.42 50.8) (xy 198.12 50.8)) 1954 | (stroke (width 0) (type default)) 1955 | (uuid 5421f701-8d0b-4131-a19e-18237ee19d36) 1956 | ) 1957 | (wire (pts (xy 167.64 147.32) (xy 167.64 160.02)) 1958 | (stroke (width 0) (type default)) 1959 | (uuid 54bd5fd8-d2a3-44ef-84c8-acb2d6ca68e0) 1960 | ) 1961 | (wire (pts (xy 111.76 154.94) (xy 111.76 157.48)) 1962 | (stroke (width 0) (type default)) 1963 | (uuid 5737c8f2-9f86-4ff1-8818-71e5bdbd3237) 1964 | ) 1965 | (wire (pts (xy 109.22 91.44) (xy 109.22 88.9)) 1966 | (stroke (width 0) (type default)) 1967 | (uuid 578ffcdc-9b8d-4a82-885f-00dcd3fcf0c9) 1968 | ) 1969 | (wire (pts (xy 45.72 35.56) (xy 45.72 38.1)) 1970 | (stroke (width 0) (type default)) 1971 | (uuid 57a11800-05bc-4713-bfad-05053d9e37da) 1972 | ) 1973 | (wire (pts (xy 88.9 71.12) (xy 88.9 73.66)) 1974 | (stroke (width 0) (type default)) 1975 | (uuid 58936396-6cb3-4d11-8ebc-a5933743fb02) 1976 | ) 1977 | (wire (pts (xy 279.4 83.82) (xy 279.4 88.9)) 1978 | (stroke (width 0) (type default)) 1979 | (uuid 58f7d347-27af-44b7-ac33-b7f7125df09d) 1980 | ) 1981 | (wire (pts (xy 63.5 33.02) (xy 63.5 35.56)) 1982 | (stroke (width 0) (type default)) 1983 | (uuid 590dcd8a-8044-4bcd-871f-085fc736c957) 1984 | ) 1985 | (wire (pts (xy 180.34 127) (xy 193.04 127)) 1986 | (stroke (width 0) (type default)) 1987 | (uuid 5afffff6-72f4-48fe-9c3a-9c7a6cb08617) 1988 | ) 1989 | (wire (pts (xy 88.9 106.68) (xy 88.9 116.84)) 1990 | (stroke (width 0) (type default)) 1991 | (uuid 5e09c8ea-18d0-4d62-b453-419997b35c6b) 1992 | ) 1993 | (wire (pts (xy 88.9 73.66) (xy 88.9 78.74)) 1994 | (stroke (width 0) (type default)) 1995 | (uuid 5ea1f091-536f-48e1-9c75-d6c75766b55b) 1996 | ) 1997 | (wire (pts (xy 88.9 99.06) (xy 88.9 91.44)) 1998 | (stroke (width 0) (type default)) 1999 | (uuid 5f05d3ee-c36f-48ee-a80e-7456d1aa0356) 2000 | ) 2001 | (wire (pts (xy 269.24 63.5) (xy 279.4 63.5)) 2002 | (stroke (width 0) (type default)) 2003 | (uuid 6001a30a-99c1-4b32-9b38-5ce4f6e0e7d9) 2004 | ) 2005 | (wire (pts (xy 180.34 134.62) (xy 193.04 134.62)) 2006 | (stroke (width 0) (type default)) 2007 | (uuid 60c17f18-b5bc-4e1b-97bc-0deb80746f2b) 2008 | ) 2009 | (wire (pts (xy 88.9 134.62) (xy 88.9 139.7)) 2010 | (stroke (width 0) (type default)) 2011 | (uuid 6181b4b9-ad8e-49ea-97b5-4d6bf6f0b73d) 2012 | ) 2013 | (wire (pts (xy 269.24 144.78) (xy 279.4 144.78)) 2014 | (stroke (width 0) (type default)) 2015 | (uuid 61c45392-ee8e-4d4d-a973-ab01bff0f3dd) 2016 | ) 2017 | (wire (pts (xy 63.5 25.4) (xy 63.5 27.94)) 2018 | (stroke (width 0) (type default)) 2019 | (uuid 62894460-5f0f-4dbc-9eaf-edc14aa09d04) 2020 | ) 2021 | (wire (pts (xy 165.1 147.32) (xy 165.1 160.02)) 2022 | (stroke (width 0) (type default)) 2023 | (uuid 64eae000-90fd-4f3f-b52c-240078d983dd) 2024 | ) 2025 | (wire (pts (xy 185.42 30.48) (xy 198.12 30.48)) 2026 | (stroke (width 0) (type default)) 2027 | (uuid 658a94de-be60-4f4b-af81-69945d9768a2) 2028 | ) 2029 | (wire (pts (xy 119.38 91.44) (xy 116.84 91.44)) 2030 | (stroke (width 0) (type default)) 2031 | (uuid 681e5473-1127-4f3c-a0ed-99e36d36bd98) 2032 | ) 2033 | (wire (pts (xy 185.42 78.74) (xy 198.12 78.74)) 2034 | (stroke (width 0) (type default)) 2035 | (uuid 6869d413-506c-4296-85d8-8d3dfa864aa1) 2036 | ) 2037 | (wire (pts (xy 279.4 129.54) (xy 279.4 134.62)) 2038 | (stroke (width 0) (type default)) 2039 | (uuid 68e5547c-7f99-4a22-b323-9f9b6511b986) 2040 | ) 2041 | (wire (pts (xy 279.4 104.14) (xy 279.4 109.22)) 2042 | (stroke (width 0) (type default)) 2043 | (uuid 6fbf420e-1794-404d-bb75-a7ad7722f15f) 2044 | ) 2045 | (wire (pts (xy 279.4 38.1) (xy 279.4 43.18)) 2046 | (stroke (width 0) (type default)) 2047 | (uuid 70742394-d369-4f11-84df-3ec03060f65d) 2048 | ) 2049 | (wire (pts (xy 88.9 99.06) (xy 106.68 99.06)) 2050 | (stroke (width 0) (type default)) 2051 | (uuid 71ef4bb1-7a56-4435-8361-f9280e6cb504) 2052 | ) 2053 | (wire (pts (xy 279.4 109.22) (xy 279.4 114.3)) 2054 | (stroke (width 0) (type default)) 2055 | (uuid 7235ee09-bb59-4f48-b042-f764cec1a00e) 2056 | ) 2057 | (wire (pts (xy 88.9 147.32) (xy 88.9 149.86)) 2058 | (stroke (width 0) (type default)) 2059 | (uuid 723ec14d-34e7-4bc8-bab3-1326dba1a361) 2060 | ) 2061 | (wire (pts (xy 88.9 139.7) (xy 96.52 139.7)) 2062 | (stroke (width 0) (type default)) 2063 | (uuid 740f9b4a-4008-47a0-a4c8-ed81bb8cc81d) 2064 | ) 2065 | (wire (pts (xy 88.9 132.08) (xy 96.52 132.08)) 2066 | (stroke (width 0) (type default)) 2067 | (uuid 76339274-7eaa-4346-a853-768a81c11c93) 2068 | ) 2069 | (wire (pts (xy 256.54 48.26) (xy 264.16 48.26)) 2070 | (stroke (width 0) (type default)) 2071 | (uuid 79168c4c-6e03-4fd5-8b52-a05be6909bd3) 2072 | ) 2073 | (wire (pts (xy 279.4 43.18) (xy 279.4 48.26)) 2074 | (stroke (width 0) (type default)) 2075 | (uuid 79251ad7-2e00-421c-94ea-437801435a9b) 2076 | ) 2077 | (wire (pts (xy 88.9 55.88) (xy 88.9 58.42)) 2078 | (stroke (width 0) (type default)) 2079 | (uuid 7930cec9-e4b8-4b8b-a430-43a709aa1454) 2080 | ) 2081 | (wire (pts (xy 185.42 60.96) (xy 198.12 60.96)) 2082 | (stroke (width 0) (type default)) 2083 | (uuid 79ebfb1a-6b98-4940-83f8-c9ba4a587a2a) 2084 | ) 2085 | (wire (pts (xy 256.54 58.42) (xy 264.16 58.42)) 2086 | (stroke (width 0) (type default)) 2087 | (uuid 7a304ee4-635c-48a3-91f7-ec9e95b955c9) 2088 | ) 2089 | (wire (pts (xy 251.46 134.62) (xy 238.76 134.62)) 2090 | (stroke (width 0) (type default)) 2091 | (uuid 7a4dfd67-f407-4217-9636-dfa8e34cdded) 2092 | ) 2093 | (wire (pts (xy 251.46 83.82) (xy 238.76 83.82)) 2094 | (stroke (width 0) (type default)) 2095 | (uuid 7f95b7e8-7b97-415e-ba4b-c099a6052fc3) 2096 | ) 2097 | (wire (pts (xy 114.3 91.44) (xy 116.84 91.44)) 2098 | (stroke (width 0) (type default)) 2099 | (uuid 81fedeac-e808-494e-b0ef-b172150633ab) 2100 | ) 2101 | (wire (pts (xy 269.24 53.34) (xy 279.4 53.34)) 2102 | (stroke (width 0) (type default)) 2103 | (uuid 8398d282-7fc2-407f-8520-fa00dbff679a) 2104 | ) 2105 | (wire (pts (xy 269.24 48.26) (xy 279.4 48.26)) 2106 | (stroke (width 0) (type default)) 2107 | (uuid 847ecd31-f9c1-4408-a651-512ca99c5eed) 2108 | ) 2109 | (wire (pts (xy 251.46 99.06) (xy 238.76 99.06)) 2110 | (stroke (width 0) (type default)) 2111 | (uuid 8538cef6-d677-4b26-a5cc-ddfebbac4f0c) 2112 | ) 2113 | (wire (pts (xy 114.3 114.3) (xy 114.3 116.84)) 2114 | (stroke (width 0) (type default)) 2115 | (uuid 853b309b-6566-48d5-b076-198563b73daa) 2116 | ) 2117 | (wire (pts (xy 88.9 73.66) (xy 96.52 73.66)) 2118 | (stroke (width 0) (type default)) 2119 | (uuid 85da8b78-1568-416d-8218-979e6417cba7) 2120 | ) 2121 | (wire (pts (xy 180.34 142.24) (xy 193.04 142.24)) 2122 | (stroke (width 0) (type default)) 2123 | (uuid 865ccf62-13f5-4f4e-a802-f8f2f4024908) 2124 | ) 2125 | (wire (pts (xy 88.9 134.62) (xy 96.52 134.62)) 2126 | (stroke (width 0) (type default)) 2127 | (uuid 86c9e10d-8f6f-480b-9e24-c538150f59a1) 2128 | ) 2129 | (wire (pts (xy 256.54 144.78) (xy 264.16 144.78)) 2130 | (stroke (width 0) (type default)) 2131 | (uuid 86fc0a6e-6f84-48fb-b602-956cc41728b9) 2132 | ) 2133 | (wire (pts (xy 279.4 53.34) (xy 279.4 58.42)) 2134 | (stroke (width 0) (type default)) 2135 | (uuid 893febba-a737-466f-a1f2-303e4ba0472c) 2136 | ) 2137 | (wire (pts (xy 109.22 157.48) (xy 88.9 157.48)) 2138 | (stroke (width 0) (type default)) 2139 | (uuid 8a34c21d-de62-4f7a-9b39-115dbc130415) 2140 | ) 2141 | (wire (pts (xy 88.9 132.08) (xy 88.9 134.62)) 2142 | (stroke (width 0) (type default)) 2143 | (uuid 8a8f0668-9224-4a7c-9b3f-4d837eebc7a3) 2144 | ) 2145 | (wire (pts (xy 269.24 83.82) (xy 279.4 83.82)) 2146 | (stroke (width 0) (type default)) 2147 | (uuid 8ad897fb-9090-4436-a350-45c69e106cd9) 2148 | ) 2149 | (wire (pts (xy 251.46 68.58) (xy 238.76 68.58)) 2150 | (stroke (width 0) (type default)) 2151 | (uuid 8b743c9c-b6d8-447a-9f2c-d41162747280) 2152 | ) 2153 | (wire (pts (xy 162.56 88.9) (xy 162.56 101.6)) 2154 | (stroke (width 0) (type default)) 2155 | (uuid 8c9d4411-7d3a-4c28-877d-d48edaf46b6e) 2156 | ) 2157 | (wire (pts (xy 180.34 119.38) (xy 193.04 119.38)) 2158 | (stroke (width 0) (type default)) 2159 | (uuid 913b76d1-98f7-411c-a929-681c915ec655) 2160 | ) 2161 | (wire (pts (xy 114.3 185.42) (xy 114.3 187.96)) 2162 | (stroke (width 0) (type default)) 2163 | (uuid 916414af-efdd-488d-a48c-2bb0143d27f2) 2164 | ) 2165 | (wire (pts (xy 96.52 22.86) (xy 88.9 22.86)) 2166 | (stroke (width 0) (type default)) 2167 | (uuid 9273d16d-74a0-4344-b9f9-03c5a86da9ce) 2168 | ) 2169 | (wire (pts (xy 114.3 187.96) (xy 88.9 187.96)) 2170 | (stroke (width 0) (type default)) 2171 | (uuid 931f19bc-5161-423e-a9ff-056e99b196cc) 2172 | ) 2173 | (wire (pts (xy 269.24 88.9) (xy 279.4 88.9)) 2174 | (stroke (width 0) (type default)) 2175 | (uuid 93beb17b-2edb-4e8a-8341-b380fddfe67b) 2176 | ) 2177 | (wire (pts (xy 185.42 48.26) (xy 198.12 48.26)) 2178 | (stroke (width 0) (type default)) 2179 | (uuid 93c27cf4-0e0c-4422-9bd9-d359f23fdf61) 2180 | ) 2181 | (wire (pts (xy 88.9 50.8) (xy 96.52 50.8)) 2182 | (stroke (width 0) (type default)) 2183 | (uuid 952ba3e6-3974-4f5f-b97f-920bd440b032) 2184 | ) 2185 | (wire (pts (xy 269.24 139.7) (xy 279.4 139.7)) 2186 | (stroke (width 0) (type default)) 2187 | (uuid 952fa2e7-0348-4e45-bcbc-8047207988b8) 2188 | ) 2189 | (wire (pts (xy 88.9 177.8) (xy 106.68 177.8)) 2190 | (stroke (width 0) (type default)) 2191 | (uuid 9629dc83-d633-44b0-a395-3c365516381a) 2192 | ) 2193 | (wire (pts (xy 185.42 66.04) (xy 198.12 66.04)) 2194 | (stroke (width 0) (type default)) 2195 | (uuid 96aaa376-040d-4bd3-b82d-a2fddc0ba761) 2196 | ) 2197 | (wire (pts (xy 88.9 60.96) (xy 96.52 60.96)) 2198 | (stroke (width 0) (type default)) 2199 | (uuid 974f0648-8eb1-4421-8c80-c0147ad000da) 2200 | ) 2201 | (wire (pts (xy 88.9 38.1) (xy 96.52 38.1)) 2202 | (stroke (width 0) (type default)) 2203 | (uuid 979f15b0-0b2d-4c2b-b629-f1e3019c43b5) 2204 | ) 2205 | (wire (pts (xy 185.42 35.56) (xy 198.12 35.56)) 2206 | (stroke (width 0) (type default)) 2207 | (uuid 999f0a10-bbad-4a94-be03-b438ae49fc4a) 2208 | ) 2209 | (wire (pts (xy 170.18 88.9) (xy 170.18 101.6)) 2210 | (stroke (width 0) (type default)) 2211 | (uuid 9b775f8b-873d-48e2-9b33-83e79a72ff0b) 2212 | ) 2213 | (wire (pts (xy 279.4 78.74) (xy 279.4 83.82)) 2214 | (stroke (width 0) (type default)) 2215 | (uuid 9c055823-add2-4281-90c3-3701cd3f8d9e) 2216 | ) 2217 | (wire (pts (xy 279.4 134.62) (xy 279.4 139.7)) 2218 | (stroke (width 0) (type default)) 2219 | (uuid 9c41c135-6429-4b7b-a6b8-5498537ab9b4) 2220 | ) 2221 | (wire (pts (xy 256.54 129.54) (xy 264.16 129.54)) 2222 | (stroke (width 0) (type default)) 2223 | (uuid 9db49013-d4e7-423a-9dcb-f2952beab599) 2224 | ) 2225 | (wire (pts (xy 88.9 149.86) (xy 88.9 157.48)) 2226 | (stroke (width 0) (type default)) 2227 | (uuid 9fa3e545-975a-4330-bc38-fa318110c715) 2228 | ) 2229 | (wire (pts (xy 88.9 27.94) (xy 96.52 27.94)) 2230 | (stroke (width 0) (type default)) 2231 | (uuid a0b3ab11-b240-4acc-8443-b3d581b43d1d) 2232 | ) 2233 | (wire (pts (xy 88.9 81.28) (xy 96.52 81.28)) 2234 | (stroke (width 0) (type default)) 2235 | (uuid a1027695-e24d-4146-9e2b-9c0986806ed8) 2236 | ) 2237 | (wire (pts (xy 45.72 25.4) (xy 45.72 27.94)) 2238 | (stroke (width 0) (type default)) 2239 | (uuid a11c152e-d1e5-41a2-b06d-d1041f6f0d5a) 2240 | ) 2241 | (wire (pts (xy 116.84 114.3) (xy 116.84 116.84)) 2242 | (stroke (width 0) (type default)) 2243 | (uuid a2016f9e-b468-46ad-85bb-6c758d23ef3a) 2244 | ) 2245 | (wire (pts (xy 251.46 33.02) (xy 238.76 33.02)) 2246 | (stroke (width 0) (type default)) 2247 | (uuid a329d132-0709-4d11-b44c-4da7eb5e56d7) 2248 | ) 2249 | (wire (pts (xy 269.24 124.46) (xy 279.4 124.46)) 2250 | (stroke (width 0) (type default)) 2251 | (uuid a37d0332-41ae-4d87-8103-7d524fd567f8) 2252 | ) 2253 | (wire (pts (xy 269.24 22.86) (xy 279.4 22.86)) 2254 | (stroke (width 0) (type default)) 2255 | (uuid a5aff4e8-5220-4e90-a48d-26d6865325e0) 2256 | ) 2257 | (wire (pts (xy 251.46 78.74) (xy 238.76 78.74)) 2258 | (stroke (width 0) (type default)) 2259 | (uuid a5b89189-17ce-4703-b4f9-7554b7bfca03) 2260 | ) 2261 | (wire (pts (xy 88.9 38.1) (xy 88.9 43.18)) 2262 | (stroke (width 0) (type default)) 2263 | (uuid a7b4319d-6882-4951-89b7-925604b16815) 2264 | ) 2265 | (wire (pts (xy 279.4 22.86) (xy 279.4 27.94)) 2266 | (stroke (width 0) (type default)) 2267 | (uuid a9884cae-e56d-4fd3-b6d5-568159949889) 2268 | ) 2269 | (wire (pts (xy 251.46 119.38) (xy 238.76 119.38)) 2270 | (stroke (width 0) (type default)) 2271 | (uuid a9c415ce-7f4e-457a-83f6-8545c9a10560) 2272 | ) 2273 | (wire (pts (xy 88.9 66.04) (xy 88.9 68.58)) 2274 | (stroke (width 0) (type default)) 2275 | (uuid ab559191-a82e-40b0-a74c-2eccc8d6c47e) 2276 | ) 2277 | (wire (pts (xy 279.4 144.78) (xy 279.4 147.32)) 2278 | (stroke (width 0) (type default)) 2279 | (uuid ac7245fd-6747-4993-bfcf-e62348053e93) 2280 | ) 2281 | (wire (pts (xy 185.42 71.12) (xy 198.12 71.12)) 2282 | (stroke (width 0) (type default)) 2283 | (uuid ac91c668-9071-438d-bce2-e8b95b021a5d) 2284 | ) 2285 | (wire (pts (xy 88.9 45.72) (xy 96.52 45.72)) 2286 | (stroke (width 0) (type default)) 2287 | (uuid ad829b83-97c2-47a8-97b1-20fe0d775b09) 2288 | ) 2289 | (wire (pts (xy 88.9 25.4) (xy 96.52 25.4)) 2290 | (stroke (width 0) (type default)) 2291 | (uuid af03adb9-3ae8-4bd9-88ae-4d2c558aec47) 2292 | ) 2293 | (wire (pts (xy 279.4 27.94) (xy 279.4 33.02)) 2294 | (stroke (width 0) (type default)) 2295 | (uuid af83ad76-ffa2-4f88-82dd-9bec5ec1fc7e) 2296 | ) 2297 | (wire (pts (xy 114.3 157.48) (xy 111.76 157.48)) 2298 | (stroke (width 0) (type default)) 2299 | (uuid b0b606dc-de3d-4a0d-b78f-61edc7816559) 2300 | ) 2301 | (wire (pts (xy 256.54 104.14) (xy 264.16 104.14)) 2302 | (stroke (width 0) (type default)) 2303 | (uuid b1518a7c-a4dd-4ff0-a804-3834d7399ddf) 2304 | ) 2305 | (wire (pts (xy 88.9 63.5) (xy 96.52 63.5)) 2306 | (stroke (width 0) (type default)) 2307 | (uuid b182aba8-7763-4d50-822b-7e6187ba46b9) 2308 | ) 2309 | (wire (pts (xy 167.64 88.9) (xy 167.64 101.6)) 2310 | (stroke (width 0) (type default)) 2311 | (uuid b1ef1860-4376-4384-b35b-35db24732629) 2312 | ) 2313 | (wire (pts (xy 88.9 175.26) (xy 106.68 175.26)) 2314 | (stroke (width 0) (type default)) 2315 | (uuid b2e449da-739c-46a4-a987-c938acef148c) 2316 | ) 2317 | (wire (pts (xy 180.34 139.7) (xy 193.04 139.7)) 2318 | (stroke (width 0) (type default)) 2319 | (uuid b54c4e5f-ffb2-41ed-9d1d-c187fe750e07) 2320 | ) 2321 | (wire (pts (xy 88.9 177.8) (xy 88.9 187.96)) 2322 | (stroke (width 0) (type default)) 2323 | (uuid b58f4b4c-48da-4dde-ac45-d80a1f144e86) 2324 | ) 2325 | (wire (pts (xy 88.9 66.04) (xy 96.52 66.04)) 2326 | (stroke (width 0) (type default)) 2327 | (uuid b6b4fa91-74de-4c24-b1a1-d365c11c67a5) 2328 | ) 2329 | (wire (pts (xy 256.54 33.02) (xy 264.16 33.02)) 2330 | (stroke (width 0) (type default)) 2331 | (uuid b6bb9986-2ad3-4cac-b503-520a505fea15) 2332 | ) 2333 | (wire (pts (xy 269.24 33.02) (xy 279.4 33.02)) 2334 | (stroke (width 0) (type default)) 2335 | (uuid b746e892-cd94-40fc-86eb-09b4a2d16f00) 2336 | ) 2337 | (wire (pts (xy 88.9 35.56) (xy 88.9 38.1)) 2338 | (stroke (width 0) (type default)) 2339 | (uuid b83aafa5-2229-4283-af92-926562d14f73) 2340 | ) 2341 | (wire (pts (xy 165.1 88.9) (xy 165.1 101.6)) 2342 | (stroke (width 0) (type default)) 2343 | (uuid b954b692-85dd-4148-aa97-5ff1666b610d) 2344 | ) 2345 | (wire (pts (xy 269.24 109.22) (xy 279.4 109.22)) 2346 | (stroke (width 0) (type default)) 2347 | (uuid b974c70c-3aea-485b-8acf-70898ac0f0a9) 2348 | ) 2349 | (wire (pts (xy 88.9 104.14) (xy 106.68 104.14)) 2350 | (stroke (width 0) (type default)) 2351 | (uuid b9bc1df7-5443-4644-a96f-2a68258a065d) 2352 | ) 2353 | (wire (pts (xy 88.9 157.48) (xy 88.9 170.18)) 2354 | (stroke (width 0) (type default)) 2355 | (uuid ba872172-2870-431f-9db9-a7fc39967842) 2356 | ) 2357 | (wire (pts (xy 88.9 127) (xy 88.9 132.08)) 2358 | (stroke (width 0) (type default)) 2359 | (uuid bc6d151d-15db-42b9-a53d-1aa52549aeff) 2360 | ) 2361 | (wire (pts (xy 256.54 114.3) (xy 264.16 114.3)) 2362 | (stroke (width 0) (type default)) 2363 | (uuid bd5958a1-e692-45a8-81e1-cfb7e105617e) 2364 | ) 2365 | (wire (pts (xy 88.9 30.48) (xy 96.52 30.48)) 2366 | (stroke (width 0) (type default)) 2367 | (uuid bd669d8d-c078-4877-a93f-b0e381a072f0) 2368 | ) 2369 | (wire (pts (xy 269.24 119.38) (xy 279.4 119.38)) 2370 | (stroke (width 0) (type default)) 2371 | (uuid be4afeb5-1c82-4ee3-9296-e04676bbdfc8) 2372 | ) 2373 | (wire (pts (xy 185.42 58.42) (xy 198.12 58.42)) 2374 | (stroke (width 0) (type default)) 2375 | (uuid be91cc07-e4d9-4d90-8fe0-9baf0051c363) 2376 | ) 2377 | (wire (pts (xy 256.54 38.1) (xy 264.16 38.1)) 2378 | (stroke (width 0) (type default)) 2379 | (uuid bf1b4bf4-9f5f-421d-b6dd-7d7f3d3c472c) 2380 | ) 2381 | (wire (pts (xy 269.24 114.3) (xy 279.4 114.3)) 2382 | (stroke (width 0) (type default)) 2383 | (uuid bf79db3d-6d09-4427-b9de-7044b9b435fa) 2384 | ) 2385 | (wire (pts (xy 256.54 109.22) (xy 264.16 109.22)) 2386 | (stroke (width 0) (type default)) 2387 | (uuid bff38a2b-bfca-498e-abc9-376b69fb607b) 2388 | ) 2389 | (wire (pts (xy 256.54 68.58) (xy 264.16 68.58)) 2390 | (stroke (width 0) (type default)) 2391 | (uuid c062b9b9-505a-41d5-83a5-beba66390bfc) 2392 | ) 2393 | (wire (pts (xy 251.46 38.1) (xy 238.76 38.1)) 2394 | (stroke (width 0) (type default)) 2395 | (uuid c26cbde7-a105-45a9-ad57-210e2a63e1e5) 2396 | ) 2397 | (wire (pts (xy 88.9 106.68) (xy 88.9 104.14)) 2398 | (stroke (width 0) (type default)) 2399 | (uuid c3277ab8-ea61-4f85-82bb-7efdfac79f61) 2400 | ) 2401 | (wire (pts (xy 279.4 58.42) (xy 279.4 63.5)) 2402 | (stroke (width 0) (type default)) 2403 | (uuid c3b4a25a-348f-446c-a629-a2c66400c379) 2404 | ) 2405 | (wire (pts (xy 251.46 93.98) (xy 238.76 93.98)) 2406 | (stroke (width 0) (type default)) 2407 | (uuid c55bb111-57ba-4e24-a2e6-490d07b8465e) 2408 | ) 2409 | (wire (pts (xy 279.4 119.38) (xy 279.4 124.46)) 2410 | (stroke (width 0) (type default)) 2411 | (uuid c5cec560-bad5-475b-b1e6-18ec6bef9f29) 2412 | ) 2413 | (wire (pts (xy 269.24 129.54) (xy 279.4 129.54)) 2414 | (stroke (width 0) (type default)) 2415 | (uuid c5f07838-5c13-4b67-abaa-1ebcf52d4e70) 2416 | ) 2417 | (wire (pts (xy 279.4 124.46) (xy 279.4 129.54)) 2418 | (stroke (width 0) (type default)) 2419 | (uuid c5fde1d7-7650-4ad4-8191-62216648555c) 2420 | ) 2421 | (wire (pts (xy 88.9 170.18) (xy 88.9 175.26)) 2422 | (stroke (width 0) (type default)) 2423 | (uuid c6963ff4-0a8b-4437-83a9-1c04e0103ccc) 2424 | ) 2425 | (wire (pts (xy 88.9 91.44) (xy 109.22 91.44)) 2426 | (stroke (width 0) (type default)) 2427 | (uuid cbc7fd94-0172-4ff5-8667-a270fdab2e33) 2428 | ) 2429 | (wire (pts (xy 88.9 142.24) (xy 88.9 147.32)) 2430 | (stroke (width 0) (type default)) 2431 | (uuid cc24cee9-96cd-444f-801c-77d1017f9cbe) 2432 | ) 2433 | (wire (pts (xy 88.9 104.14) (xy 88.9 99.06)) 2434 | (stroke (width 0) (type default)) 2435 | (uuid ceb8b1f5-d9a8-4c5e-a5c8-43c9b51ffb5e) 2436 | ) 2437 | (wire (pts (xy 269.24 58.42) (xy 279.4 58.42)) 2438 | (stroke (width 0) (type default)) 2439 | (uuid cf697f0a-62dd-4515-8931-c2ac45649492) 2440 | ) 2441 | (wire (pts (xy 279.4 88.9) (xy 279.4 93.98)) 2442 | (stroke (width 0) (type default)) 2443 | (uuid d010e8e0-2dae-4cde-be71-a4109c2d5b8f) 2444 | ) 2445 | (wire (pts (xy 279.4 68.58) (xy 279.4 73.66)) 2446 | (stroke (width 0) (type default)) 2447 | (uuid d3868411-08cb-47b8-a579-140faabcd140) 2448 | ) 2449 | (wire (pts (xy 251.46 104.14) (xy 238.76 104.14)) 2450 | (stroke (width 0) (type default)) 2451 | (uuid d667d6eb-226d-4e4b-be7a-02769be01628) 2452 | ) 2453 | (wire (pts (xy 279.4 99.06) (xy 279.4 104.14)) 2454 | (stroke (width 0) (type default)) 2455 | (uuid d79f14ac-d854-41c5-a714-ba358b272362) 2456 | ) 2457 | (wire (pts (xy 88.9 60.96) (xy 88.9 63.5)) 2458 | (stroke (width 0) (type default)) 2459 | (uuid d7aafb39-a515-40c0-85aa-4a6dd95ce126) 2460 | ) 2461 | (wire (pts (xy 251.46 58.42) (xy 238.76 58.42)) 2462 | (stroke (width 0) (type default)) 2463 | (uuid d838d515-837b-4946-84ca-c174aff337b9) 2464 | ) 2465 | (wire (pts (xy 185.42 63.5) (xy 198.12 63.5)) 2466 | (stroke (width 0) (type default)) 2467 | (uuid d846a400-80c8-44c4-b827-f21da5eb64ee) 2468 | ) 2469 | (wire (pts (xy 88.9 127) (xy 96.52 127)) 2470 | (stroke (width 0) (type default)) 2471 | (uuid d8f5a508-a261-4043-8742-7d8fe74e375f) 2472 | ) 2473 | (wire (pts (xy 88.9 142.24) (xy 96.52 142.24)) 2474 | (stroke (width 0) (type default)) 2475 | (uuid d8ff2415-176f-4cbe-a919-cf6e112d6759) 2476 | ) 2477 | (wire (pts (xy 251.46 53.34) (xy 238.76 53.34)) 2478 | (stroke (width 0) (type default)) 2479 | (uuid da89f7ee-9fda-4ed9-a041-6dfa8980d5f1) 2480 | ) 2481 | (wire (pts (xy 185.42 27.94) (xy 198.12 27.94)) 2482 | (stroke (width 0) (type default)) 2483 | (uuid dc5393ec-e9cb-46b6-8c57-f6b57c10753d) 2484 | ) 2485 | (wire (pts (xy 88.9 30.48) (xy 88.9 35.56)) 2486 | (stroke (width 0) (type default)) 2487 | (uuid dca0397a-6543-4e22-aac8-45a502edeadf) 2488 | ) 2489 | (wire (pts (xy 251.46 63.5) (xy 238.76 63.5)) 2490 | (stroke (width 0) (type default)) 2491 | (uuid dd63d9f5-601b-4267-9338-e01e6ae51661) 2492 | ) 2493 | (wire (pts (xy 88.9 139.7) (xy 88.9 142.24)) 2494 | (stroke (width 0) (type default)) 2495 | (uuid df5f1912-6cd6-4f29-a7f8-ac5365d34288) 2496 | ) 2497 | (wire (pts (xy 88.9 20.32) (xy 88.9 22.86)) 2498 | (stroke (width 0) (type default)) 2499 | (uuid e1f9d5e8-1f3e-4ae7-a473-4c20f7360284) 2500 | ) 2501 | (wire (pts (xy 88.9 71.12) (xy 96.52 71.12)) 2502 | (stroke (width 0) (type default)) 2503 | (uuid e46bcad8-e7f1-4ae7-a313-bb3b4842cccf) 2504 | ) 2505 | (wire (pts (xy 251.46 88.9) (xy 238.76 88.9)) 2506 | (stroke (width 0) (type default)) 2507 | (uuid e7760251-ee01-4a7f-93cf-867eadcd3544) 2508 | ) 2509 | (wire (pts (xy 88.9 175.26) (xy 88.9 177.8)) 2510 | (stroke (width 0) (type default)) 2511 | (uuid e7cca25c-2a3c-4cc2-8560-15004442cdfc) 2512 | ) 2513 | (wire (pts (xy 251.46 43.18) (xy 238.76 43.18)) 2514 | (stroke (width 0) (type default)) 2515 | (uuid e7dc3435-8d01-437c-8c35-046a46886a93) 2516 | ) 2517 | (wire (pts (xy 185.42 73.66) (xy 198.12 73.66)) 2518 | (stroke (width 0) (type default)) 2519 | (uuid e86a43ff-85e2-446f-ba3b-30b2d90c947c) 2520 | ) 2521 | (wire (pts (xy 111.76 157.48) (xy 109.22 157.48)) 2522 | (stroke (width 0) (type default)) 2523 | (uuid e87f336f-e836-4d39-9733-f322074e733c) 2524 | ) 2525 | (wire (pts (xy 88.9 149.86) (xy 96.52 149.86)) 2526 | (stroke (width 0) (type default)) 2527 | (uuid e88e0ca0-9a54-42c9-bdaa-56ef10f4dcac) 2528 | ) 2529 | (wire (pts (xy 88.9 63.5) (xy 88.9 66.04)) 2530 | (stroke (width 0) (type default)) 2531 | (uuid eaeb2236-d42b-429d-b064-b31b0a437d14) 2532 | ) 2533 | (wire (pts (xy 88.9 147.32) (xy 96.52 147.32)) 2534 | (stroke (width 0) (type default)) 2535 | (uuid ebf6a604-1a60-4a4a-b1d1-6e27159fd27c) 2536 | ) 2537 | (wire (pts (xy 185.42 22.86) (xy 198.12 22.86)) 2538 | (stroke (width 0) (type default)) 2539 | (uuid eca897ea-9329-4824-8587-c908a31a004f) 2540 | ) 2541 | (wire (pts (xy 256.54 73.66) (xy 264.16 73.66)) 2542 | (stroke (width 0) (type default)) 2543 | (uuid ecdc7833-fe7a-4569-9834-062475e770f2) 2544 | ) 2545 | (wire (pts (xy 88.9 35.56) (xy 96.52 35.56)) 2546 | (stroke (width 0) (type default)) 2547 | (uuid edda57b2-9c94-49ee-a0ec-84f4b5ff0478) 2548 | ) 2549 | (wire (pts (xy 256.54 53.34) (xy 264.16 53.34)) 2550 | (stroke (width 0) (type default)) 2551 | (uuid ee9a3269-eefe-4bf6-9a3e-19ce180a1ce9) 2552 | ) 2553 | (wire (pts (xy 185.42 45.72) (xy 198.12 45.72)) 2554 | (stroke (width 0) (type default)) 2555 | (uuid eed38330-8f30-4320-ba73-00b6cba50eab) 2556 | ) 2557 | (wire (pts (xy 269.24 73.66) (xy 279.4 73.66)) 2558 | (stroke (width 0) (type default)) 2559 | (uuid f0ef6dbe-9e25-49d7-affd-74c3973acfc1) 2560 | ) 2561 | (wire (pts (xy 116.84 116.84) (xy 114.3 116.84)) 2562 | (stroke (width 0) (type default)) 2563 | (uuid f2933dc1-3212-4551-aa19-508a8cb63c57) 2564 | ) 2565 | (wire (pts (xy 256.54 27.94) (xy 264.16 27.94)) 2566 | (stroke (width 0) (type default)) 2567 | (uuid f372a286-1726-4e23-a3da-42f1d849f8b1) 2568 | ) 2569 | (wire (pts (xy 185.42 43.18) (xy 198.12 43.18)) 2570 | (stroke (width 0) (type default)) 2571 | (uuid f4d2f7b0-0717-4131-85bb-f10747531f3d) 2572 | ) 2573 | (wire (pts (xy 114.3 88.9) (xy 114.3 91.44)) 2574 | (stroke (width 0) (type default)) 2575 | (uuid f54f6f65-29bd-4018-b662-741043560730) 2576 | ) 2577 | (wire (pts (xy 109.22 154.94) (xy 109.22 157.48)) 2578 | (stroke (width 0) (type default)) 2579 | (uuid f60ead94-4b33-45cd-bb28-6fa25f0f7025) 2580 | ) 2581 | (wire (pts (xy 88.9 27.94) (xy 88.9 30.48)) 2582 | (stroke (width 0) (type default)) 2583 | (uuid f6419c1b-b8b9-42c3-95ce-a57499e74432) 2584 | ) 2585 | (wire (pts (xy 279.4 139.7) (xy 279.4 144.78)) 2586 | (stroke (width 0) (type default)) 2587 | (uuid f6960ed7-3cd2-402e-8200-0f7dba51f6dc) 2588 | ) 2589 | (wire (pts (xy 185.42 81.28) (xy 198.12 81.28)) 2590 | (stroke (width 0) (type default)) 2591 | (uuid f8586786-1f12-41a9-9ef6-8d3bc9bb16a6) 2592 | ) 2593 | (wire (pts (xy 256.54 119.38) (xy 264.16 119.38)) 2594 | (stroke (width 0) (type default)) 2595 | (uuid f92fb9d6-70e1-402d-9abd-60f20bb437cb) 2596 | ) 2597 | (wire (pts (xy 251.46 139.7) (xy 238.76 139.7)) 2598 | (stroke (width 0) (type default)) 2599 | (uuid f992cde0-60e2-4af1-a0f6-25bc1feac61a) 2600 | ) 2601 | (wire (pts (xy 88.9 58.42) (xy 88.9 60.96)) 2602 | (stroke (width 0) (type default)) 2603 | (uuid fb949143-b900-4b45-94d2-c7687de60889) 2604 | ) 2605 | (wire (pts (xy 88.9 68.58) (xy 88.9 71.12)) 2606 | (stroke (width 0) (type default)) 2607 | (uuid ff3b2d55-ec34-4d20-a4d1-f6691a671362) 2608 | ) 2609 | (wire (pts (xy 251.46 27.94) (xy 238.76 27.94)) 2610 | (stroke (width 0) (type default)) 2611 | (uuid ffbe5dd4-5115-4d43-8eff-c2fa7bd7a0e3) 2612 | ) 2613 | 2614 | (label "D+_A" (at 198.12 48.26 180) (fields_autoplaced) 2615 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2616 | (uuid 01e615ac-c696-454d-ae7d-a7b4193b8b5b) 2617 | ) 2618 | (label "GND_B12" (at 172.72 101.6 90) (fields_autoplaced) 2619 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2620 | (uuid 0340d3d3-dd61-475f-8ecc-7dc5de8745ac) 2621 | ) 2622 | (label "TX2-" (at 198.12 71.12 180) (fields_autoplaced) 2623 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2624 | (uuid 05643c49-5974-412a-a4e8-046873896cde) 2625 | ) 2626 | (label "VBUS_B4" (at 198.12 27.94 180) (fields_autoplaced) 2627 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2628 | (uuid 08383ff3-0399-4ee3-a034-562b9d0b61f0) 2629 | ) 2630 | (label "RX1+" (at 198.12 58.42 180) (fields_autoplaced) 2631 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2632 | (uuid 0bf31f96-a0ca-49f5-bf1b-cb37f50405ae) 2633 | ) 2634 | (label "VBUS_A9" (at 238.76 114.3 0) (fields_autoplaced) 2635 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2636 | (uuid 0eae73b7-edda-4b3a-92b6-fe2d787eeb18) 2637 | ) 2638 | (label "VBUS_B4" (at 238.76 22.86 0) (fields_autoplaced) 2639 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2640 | (uuid 0ec41510-90ec-43d6-8158-c37580a3c5e7) 2641 | ) 2642 | (label "RX2+" (at 193.04 134.62 180) (fields_autoplaced) 2643 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2644 | (uuid 18471657-a030-4e32-b3fd-a8fff9151846) 2645 | ) 2646 | (label "VBUS_A9" (at 198.12 25.4 180) (fields_autoplaced) 2647 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2648 | (uuid 1b322f21-d239-47e8-a0c8-47c31861dbaa) 2649 | ) 2650 | (label "RX2-" (at 238.76 48.26 0) (fields_autoplaced) 2651 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2652 | (uuid 1beb77ac-f6e3-42a5-8cb2-82028aed4842) 2653 | ) 2654 | (label "GND_B12" (at 238.76 144.78 0) (fields_autoplaced) 2655 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2656 | (uuid 20eb08c0-673a-46b2-b7ed-89bfa7260c7b) 2657 | ) 2658 | (label "CC2" (at 238.76 93.98 0) (fields_autoplaced) 2659 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2660 | (uuid 2a460c13-e632-498b-86f6-fa84363c328f) 2661 | ) 2662 | (label "D-_A" (at 193.04 124.46 180) (fields_autoplaced) 2663 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2664 | (uuid 32e17822-f56b-42fa-891c-dcaa68429cab) 2665 | ) 2666 | (label "VBUS_B9" (at 198.12 30.48 180) (fields_autoplaced) 2667 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2668 | (uuid 3bb25935-f7ee-4008-9099-3837c6baf914) 2669 | ) 2670 | (label "SBU2" (at 238.76 109.22 0) (fields_autoplaced) 2671 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2672 | (uuid 4b0a2a30-dd1f-43d1-a442-e59fd7ea2b02) 2673 | ) 2674 | (label "GND_B1" (at 238.76 139.7 0) (fields_autoplaced) 2675 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2676 | (uuid 4e711463-dbf9-49bd-b4d4-bdf4d4cbe3f7) 2677 | ) 2678 | (label "TX2+" (at 198.12 73.66 180) (fields_autoplaced) 2679 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2680 | (uuid 58088d77-c7a8-495d-9858-a9099c3879d8) 2681 | ) 2682 | (label "D-_A" (at 198.12 43.18 180) (fields_autoplaced) 2683 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2684 | (uuid 6993fd4d-ea95-41fa-8e11-7968a88916f7) 2685 | ) 2686 | (label "SHLD" (at 162.56 160.02 90) (fields_autoplaced) 2687 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2688 | (uuid 69eb5134-fef0-4e96-941a-10ae3ed75626) 2689 | ) 2690 | (label "VBUS_B9" (at 238.76 27.94 0) (fields_autoplaced) 2691 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2692 | (uuid 6ab5e987-2db9-454a-b115-ecc2e6909c46) 2693 | ) 2694 | (label "GND_A1" (at 167.64 160.02 90) (fields_autoplaced) 2695 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2696 | (uuid 73f6512e-4ffa-4b95-b7f5-6729af3a6c89) 2697 | ) 2698 | (label "SHLD" (at 162.56 101.6 90) (fields_autoplaced) 2699 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2700 | (uuid 73fd2189-84ae-419f-b53d-d016bbfde400) 2701 | ) 2702 | (label "SHLD" (at 238.76 124.46 0) (fields_autoplaced) 2703 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2704 | (uuid 74c10320-d555-4758-90d3-56657e59d3c6) 2705 | ) 2706 | (label "SBU1" (at 238.76 104.14 0) (fields_autoplaced) 2707 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2708 | (uuid 777a5e1d-9f4d-4aac-9f16-75e2d30125c6) 2709 | ) 2710 | (label "RX2+" (at 238.76 43.18 0) (fields_autoplaced) 2711 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2712 | (uuid 77b67ca3-5b69-46a2-a573-b5cace2a4a74) 2713 | ) 2714 | (label "GND_B1" (at 170.18 101.6 90) (fields_autoplaced) 2715 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2716 | (uuid 78310a06-a228-4fb4-82af-ab73689d8653) 2717 | ) 2718 | (label "RX2-" (at 198.12 66.04 180) (fields_autoplaced) 2719 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2720 | (uuid 7cfed714-8624-471b-9d30-4d4543c4eb9a) 2721 | ) 2722 | (label "CC1" (at 238.76 99.06 0) (fields_autoplaced) 2723 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2724 | (uuid 854d9d5a-7aa5-47da-b602-297cbc339984) 2725 | ) 2726 | (label "GND_A1" (at 238.76 129.54 0) (fields_autoplaced) 2727 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2728 | (uuid 87a78fbd-bb4f-4fcf-b6ea-1d30246e2005) 2729 | ) 2730 | (label "TX2-" (at 238.76 38.1 0) (fields_autoplaced) 2731 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2732 | (uuid 9217c879-5cde-4c48-acc2-ebd81070ac19) 2733 | ) 2734 | (label "TX2+" (at 238.76 33.02 0) (fields_autoplaced) 2735 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2736 | (uuid 9652af11-c44d-4cac-8cff-c49604ffa65f) 2737 | ) 2738 | (label "D-_B" (at 238.76 83.82 0) (fields_autoplaced) 2739 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2740 | (uuid 982478cf-0c6c-404e-87d9-0d6ba87cee01) 2741 | ) 2742 | (label "D-_B" (at 198.12 45.72 180) (fields_autoplaced) 2743 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2744 | (uuid 9b44ac92-be8c-4b74-b1f2-94a43f1d13ee) 2745 | ) 2746 | (label "TX1-" (at 238.76 58.42 0) (fields_autoplaced) 2747 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2748 | (uuid a1417334-5662-41fb-a3f7-2aec60d4a2f6) 2749 | ) 2750 | (label "TX1-" (at 198.12 60.96 180) (fields_autoplaced) 2751 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2752 | (uuid a7fdabe8-b862-498c-a165-553d74937c07) 2753 | ) 2754 | (label "CC2" (at 198.12 38.1 180) (fields_autoplaced) 2755 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2756 | (uuid aa1ccf40-608f-49ae-ae33-122c6ab15f53) 2757 | ) 2758 | (label "GND_A12" (at 165.1 160.02 90) (fields_autoplaced) 2759 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2760 | (uuid af1ccc02-ffca-4ec7-9a94-9d5c0dea43d8) 2761 | ) 2762 | (label "CC1" (at 198.12 35.56 180) (fields_autoplaced) 2763 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2764 | (uuid b31ce301-50f2-4611-bd3c-146096bd6436) 2765 | ) 2766 | (label "TX1+" (at 193.04 142.24 180) (fields_autoplaced) 2767 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2768 | (uuid b3d91cd8-80bb-49de-af2a-d8704883e2b3) 2769 | ) 2770 | (label "D+_A" (at 238.76 78.74 0) (fields_autoplaced) 2771 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2772 | (uuid b5482f62-a62b-4e84-a6d6-46047a22fe71) 2773 | ) 2774 | (label "GND_A12" (at 167.64 101.6 90) (fields_autoplaced) 2775 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2776 | (uuid b84530a4-71e2-4671-bbe1-178433a50c44) 2777 | ) 2778 | (label "RX2-" (at 193.04 132.08 180) (fields_autoplaced) 2779 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2780 | (uuid b958f5db-1f11-4b2a-a521-9cd6721efb65) 2781 | ) 2782 | (label "RX1-" (at 198.12 55.88 180) (fields_autoplaced) 2783 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2784 | (uuid bac9b7fd-7946-4865-ae15-16f298540fcd) 2785 | ) 2786 | (label "GND_A1" (at 165.1 101.6 90) (fields_autoplaced) 2787 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2788 | (uuid bb1220e1-351b-465f-97d4-b8595c4f6e3c) 2789 | ) 2790 | (label "TX1-" (at 193.04 139.7 180) (fields_autoplaced) 2791 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2792 | (uuid bd62721e-35c8-4009-82a4-f1417986f1bf) 2793 | ) 2794 | (label "RX2+" (at 198.12 68.58 180) (fields_autoplaced) 2795 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2796 | (uuid c3eed801-806d-474d-a5b3-4e1552f91254) 2797 | ) 2798 | (label "VBUS_A4" (at 238.76 119.38 0) (fields_autoplaced) 2799 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2800 | (uuid c4df33b4-53aa-4512-948e-bb52cb9be98a) 2801 | ) 2802 | (label "D+_A" (at 193.04 127 180) (fields_autoplaced) 2803 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2804 | (uuid c689c828-cd06-4c45-89e3-870f0cacb3c2) 2805 | ) 2806 | (label "TX1+" (at 238.76 53.34 0) (fields_autoplaced) 2807 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2808 | (uuid c7a60ebe-dacf-4b03-9a43-f296f003210c) 2809 | ) 2810 | (label "RX1-" (at 238.76 68.58 0) (fields_autoplaced) 2811 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2812 | (uuid d60260cc-313d-467d-aff4-33521ab24137) 2813 | ) 2814 | (label "TX1+" (at 198.12 63.5 180) (fields_autoplaced) 2815 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2816 | (uuid d7a0ce96-3ad8-48b2-b259-ef49dacdfaa0) 2817 | ) 2818 | (label "VBUS_A4" (at 198.12 22.86 180) (fields_autoplaced) 2819 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2820 | (uuid dd1d16e7-8cc1-4b08-8797-f6eb5005e8b1) 2821 | ) 2822 | (label "VBUS_A4" (at 193.04 119.38 180) (fields_autoplaced) 2823 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2824 | (uuid dd7dda4c-0332-42d5-9522-706e0c3bc222) 2825 | ) 2826 | (label "D+_B" (at 198.12 50.8 180) (fields_autoplaced) 2827 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2828 | (uuid dfad9851-04c2-4987-b262-d26ecc4de5ca) 2829 | ) 2830 | (label "SBU2" (at 198.12 81.28 180) (fields_autoplaced) 2831 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2832 | (uuid e79bfdad-4f3d-4b69-812b-0ce8bb7fda26) 2833 | ) 2834 | (label "RX1+" (at 238.76 63.5 0) (fields_autoplaced) 2835 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2836 | (uuid ebf293fc-b09f-48b1-a0c9-f446f40947dd) 2837 | ) 2838 | (label "D-_A" (at 238.76 88.9 0) (fields_autoplaced) 2839 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2840 | (uuid ec410c6a-78a7-46f6-8c07-979e808ae8a8) 2841 | ) 2842 | (label "SBU1" (at 198.12 78.74 180) (fields_autoplaced) 2843 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2844 | (uuid f37aa5c3-9855-46a2-a858-20ff3d954fce) 2845 | ) 2846 | (label "GND_A12" (at 238.76 134.62 0) (fields_autoplaced) 2847 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2848 | (uuid f5d37d9b-caa2-4898-aa4c-714f58de4ad0) 2849 | ) 2850 | (label "D+_B" (at 238.76 73.66 0) (fields_autoplaced) 2851 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2852 | (uuid f9d751dd-4d59-40e3-9896-3604c594acc9) 2853 | ) 2854 | 2855 | (symbol (lib_id "Device:R_Small") (at 254 109.22 90) (unit 1) 2856 | (in_bom yes) (on_board yes) (dnp no) 2857 | (uuid 016e2de9-49fa-4eec-b294-377f8bb32b78) 2858 | (property "Reference" "R18" (at 251.46 106.68 90) 2859 | (effects (font (size 1.27 1.27))) 2860 | ) 2861 | (property "Value" "330" (at 256.54 106.68 90) 2862 | (effects (font (size 1.27 1.27))) 2863 | ) 2864 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 109.22 0) 2865 | (effects (font (size 1.27 1.27)) hide) 2866 | ) 2867 | (property "Datasheet" "~" (at 254 109.22 0) 2868 | (effects (font (size 1.27 1.27)) hide) 2869 | ) 2870 | (property "ALT MPN" "" (at 254 109.22 0) 2871 | (effects (font (size 1.27 1.27)) hide) 2872 | ) 2873 | (property "ALT Manufacturer" "" (at 254 109.22 0) 2874 | (effects (font (size 1.27 1.27)) hide) 2875 | ) 2876 | (property "MPN" "" (at 254 109.22 0) 2877 | (effects (font (size 1.27 1.27)) hide) 2878 | ) 2879 | (property "Manufacturer" "" (at 254 109.22 0) 2880 | (effects (font (size 1.27 1.27)) hide) 2881 | ) 2882 | (pin "1" (uuid 3ac4eb5c-5f2a-4d64-b904-2f6d66498574)) 2883 | (pin "2" (uuid e00f1696-69be-425a-81ed-5ac62e1eff0a)) 2884 | (instances 2885 | (project "usb_c_cable_tester" 2886 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 2887 | (reference "R18") (unit 1) 2888 | ) 2889 | ) 2890 | ) 2891 | ) 2892 | 2893 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 22.86 180) (unit 1) 2894 | (in_bom yes) (on_board yes) (dnp no) 2895 | (uuid 087bb82e-02ae-4234-9b34-fc88a9bf3fc4) 2896 | (property "Reference" "D1" (at 264.16 20.32 0) 2897 | (effects (font (size 1.27 1.27))) 2898 | ) 2899 | (property "Value" "LED" (at 269.24 20.32 0) 2900 | (effects (font (size 1.27 1.27))) 2901 | ) 2902 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 22.86 90) 2903 | (effects (font (size 1.27 1.27)) hide) 2904 | ) 2905 | (property "Datasheet" "~" (at 266.7 22.86 90) 2906 | (effects (font (size 1.27 1.27)) hide) 2907 | ) 2908 | (property "ALT MPN" "" (at 266.7 22.86 0) 2909 | (effects (font (size 1.27 1.27)) hide) 2910 | ) 2911 | (property "ALT Manufacturer" "" (at 266.7 22.86 0) 2912 | (effects (font (size 1.27 1.27)) hide) 2913 | ) 2914 | (property "MPN" "" (at 266.7 22.86 0) 2915 | (effects (font (size 1.27 1.27)) hide) 2916 | ) 2917 | (property "Manufacturer" "" (at 266.7 22.86 0) 2918 | (effects (font (size 1.27 1.27)) hide) 2919 | ) 2920 | (pin "1" (uuid 60028476-63fe-4218-bb64-28eb266c2ce6)) 2921 | (pin "2" (uuid 6da472d5-a01b-4d0e-adec-d013b38846c4)) 2922 | (instances 2923 | (project "usb_c_cable_tester" 2924 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 2925 | (reference "D1") (unit 1) 2926 | ) 2927 | ) 2928 | ) 2929 | ) 2930 | 2931 | (symbol (lib_id "Device:R_Small") (at 254 22.86 90) (unit 1) 2932 | (in_bom yes) (on_board yes) (dnp no) 2933 | (uuid 08fbcc9f-12ee-4fad-a5e3-ec17fcbc51ec) 2934 | (property "Reference" "R1" (at 251.46 20.32 90) 2935 | (effects (font (size 1.27 1.27))) 2936 | ) 2937 | (property "Value" "330" (at 256.54 20.32 90) 2938 | (effects (font (size 1.27 1.27))) 2939 | ) 2940 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 22.86 0) 2941 | (effects (font (size 1.27 1.27)) hide) 2942 | ) 2943 | (property "Datasheet" "~" (at 254 22.86 0) 2944 | (effects (font (size 1.27 1.27)) hide) 2945 | ) 2946 | (property "ALT MPN" "" (at 254 22.86 0) 2947 | (effects (font (size 1.27 1.27)) hide) 2948 | ) 2949 | (property "ALT Manufacturer" "" (at 254 22.86 0) 2950 | (effects (font (size 1.27 1.27)) hide) 2951 | ) 2952 | (property "MPN" "" (at 254 22.86 0) 2953 | (effects (font (size 1.27 1.27)) hide) 2954 | ) 2955 | (property "Manufacturer" "" (at 254 22.86 0) 2956 | (effects (font (size 1.27 1.27)) hide) 2957 | ) 2958 | (pin "1" (uuid 1f8f2637-db92-46b4-84f6-7a9fe4131bb1)) 2959 | (pin "2" (uuid d1213a0d-ce5d-4388-b0f4-b09a363d2365)) 2960 | (instances 2961 | (project "usb_c_cable_tester" 2962 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 2963 | (reference "R1") (unit 1) 2964 | ) 2965 | ) 2966 | ) 2967 | ) 2968 | 2969 | (symbol (lib_id "Device:R_Small") (at 254 83.82 90) (unit 1) 2970 | (in_bom yes) (on_board yes) (dnp no) 2971 | (uuid 1706d6ec-7608-4fbc-82cf-99a87bf021e4) 2972 | (property "Reference" "R13" (at 251.46 81.28 90) 2973 | (effects (font (size 1.27 1.27))) 2974 | ) 2975 | (property "Value" "330" (at 256.54 81.28 90) 2976 | (effects (font (size 1.27 1.27))) 2977 | ) 2978 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 83.82 0) 2979 | (effects (font (size 1.27 1.27)) hide) 2980 | ) 2981 | (property "Datasheet" "~" (at 254 83.82 0) 2982 | (effects (font (size 1.27 1.27)) hide) 2983 | ) 2984 | (property "ALT MPN" "" (at 254 83.82 0) 2985 | (effects (font (size 1.27 1.27)) hide) 2986 | ) 2987 | (property "ALT Manufacturer" "" (at 254 83.82 0) 2988 | (effects (font (size 1.27 1.27)) hide) 2989 | ) 2990 | (property "MPN" "" (at 254 83.82 0) 2991 | (effects (font (size 1.27 1.27)) hide) 2992 | ) 2993 | (property "Manufacturer" "" (at 254 83.82 0) 2994 | (effects (font (size 1.27 1.27)) hide) 2995 | ) 2996 | (pin "1" (uuid 53bf1ef7-3236-48a6-8a24-3637b265c171)) 2997 | (pin "2" (uuid 3e823fa2-9822-4079-a3ef-12d004b63863)) 2998 | (instances 2999 | (project "usb_c_cable_tester" 3000 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3001 | (reference "R13") (unit 1) 3002 | ) 3003 | ) 3004 | ) 3005 | ) 3006 | 3007 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 53.34 180) (unit 1) 3008 | (in_bom yes) (on_board yes) (dnp no) 3009 | (uuid 210b66c6-5d58-476a-bca7-0182e67541d8) 3010 | (property "Reference" "D7" (at 264.16 50.8 0) 3011 | (effects (font (size 1.27 1.27))) 3012 | ) 3013 | (property "Value" "LED" (at 269.24 50.8 0) 3014 | (effects (font (size 1.27 1.27))) 3015 | ) 3016 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 53.34 90) 3017 | (effects (font (size 1.27 1.27)) hide) 3018 | ) 3019 | (property "Datasheet" "~" (at 266.7 53.34 90) 3020 | (effects (font (size 1.27 1.27)) hide) 3021 | ) 3022 | (property "ALT MPN" "" (at 266.7 53.34 0) 3023 | (effects (font (size 1.27 1.27)) hide) 3024 | ) 3025 | (property "ALT Manufacturer" "" (at 266.7 53.34 0) 3026 | (effects (font (size 1.27 1.27)) hide) 3027 | ) 3028 | (property "MPN" "" (at 266.7 53.34 0) 3029 | (effects (font (size 1.27 1.27)) hide) 3030 | ) 3031 | (property "Manufacturer" "" (at 266.7 53.34 0) 3032 | (effects (font (size 1.27 1.27)) hide) 3033 | ) 3034 | (pin "1" (uuid bf18328c-df96-458a-bfac-69069b77051a)) 3035 | (pin "2" (uuid 8dfbecc1-b8c9-4a8b-b619-933abdab8a67)) 3036 | (instances 3037 | (project "usb_c_cable_tester" 3038 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3039 | (reference "D7") (unit 1) 3040 | ) 3041 | ) 3042 | ) 3043 | ) 3044 | 3045 | (symbol (lib_name "USB_C_Receptacle_1") (lib_id "Connector:USB_C_Receptacle") (at 109.22 48.26 0) (mirror y) (unit 1) 3046 | (in_bom yes) (on_board yes) (dnp no) 3047 | (uuid 234e946c-70b4-461f-b056-b8249b8b4982) 3048 | (property "Reference" "J1" (at 109.22 15.24 0) 3049 | (effects (font (size 1.27 1.27)) (justify right)) 3050 | ) 3051 | (property "Value" "USB_C_Receptacle" (at 101.6 17.78 0) 3052 | (effects (font (size 1.27 1.27)) (justify right)) 3053 | ) 3054 | (property "Footprint" "snapeda:BELFUSE_SS-52400-003" (at 116.84 96.52 0) 3055 | (effects (font (size 1.27 1.27)) hide) 3056 | ) 3057 | (property "Datasheet" "" (at 111.76 99.06 0) 3058 | (effects (font (size 1.27 1.27)) hide) 3059 | ) 3060 | (property "ALT MPN" "" (at 109.22 48.26 0) 3061 | (effects (font (size 1.27 1.27)) hide) 3062 | ) 3063 | (property "ALT Manufacturer" "" (at 109.22 48.26 0) 3064 | (effects (font (size 1.27 1.27)) hide) 3065 | ) 3066 | (property "MPN" "SS-52400-003" (at 109.22 48.26 0) 3067 | (effects (font (size 1.27 1.27)) hide) 3068 | ) 3069 | (property "Manufacturer" "Stewart Connector" (at 109.22 48.26 0) 3070 | (effects (font (size 1.27 1.27)) hide) 3071 | ) 3072 | (pin "A1" (uuid 6ebf0e69-92da-49fc-b52a-b2d03d960e10)) 3073 | (pin "A10" (uuid 41b4b1b5-988a-4b66-9022-1c5049f55098)) 3074 | (pin "A11" (uuid 54409bf9-d7f2-4312-92f3-2123be1ee352)) 3075 | (pin "A12" (uuid d1756c5a-5d55-48bd-8acb-7497c4e3c4c7)) 3076 | (pin "A2" (uuid 82307e74-dc9d-41f9-bdd7-49719184b289)) 3077 | (pin "A3" (uuid 5320d2be-1873-4c05-bd12-bfe0f52a5815)) 3078 | (pin "A4" (uuid 8d03f77b-c627-485b-8e11-c5555491a2fb)) 3079 | (pin "A5" (uuid 324e45f2-67a7-4796-8b6d-89c40dd986a0)) 3080 | (pin "A6" (uuid 9202a411-e652-4a2e-8a1f-7c5018c37938)) 3081 | (pin "A7" (uuid af8d3345-9b4b-4beb-8c45-e93e2d0c95f1)) 3082 | (pin "A8" (uuid a6906780-bdc0-4bfe-830c-8c45415d4367)) 3083 | (pin "A9" (uuid 261a7624-0983-4de7-8d0b-bd534fc8ce84)) 3084 | (pin "B1" (uuid 22892338-1a6f-4cca-b076-ba06a1ab0996)) 3085 | (pin "B10" (uuid 222b8b1f-1b03-44f2-9280-4d5ba3649c58)) 3086 | (pin "B11" (uuid f4ce3051-e753-4c93-ba18-7e330658b5fa)) 3087 | (pin "B12" (uuid 9406e0cc-b932-4671-8fe9-6142df7fa919)) 3088 | (pin "B2" (uuid ceaecae5-5ec5-4297-a901-8bea81e5f480)) 3089 | (pin "B3" (uuid 9e27c0b8-5977-4050-8141-bd52633073a5)) 3090 | (pin "B4" (uuid ec633d7c-32ee-4563-aef5-a9c83f5d7f56)) 3091 | (pin "B5" (uuid 95c3be87-35e7-4fc9-98cd-3690445f2165)) 3092 | (pin "B6" (uuid 1a2e10d2-04e5-4ff6-b735-221dd20d4da2)) 3093 | (pin "B7" (uuid 1618cb45-a874-4d93-8c67-ed6203b91375)) 3094 | (pin "B8" (uuid ad2ed30f-5ff1-435b-82e0-3e28afd1bc12)) 3095 | (pin "B9" (uuid fe8b4a2c-131f-4c20-b456-6b1100857c8a)) 3096 | (pin "S1" (uuid fc5a514b-8b38-4e54-a342-d62c62b8210a)) 3097 | (instances 3098 | (project "usb_c_cable_tester" 3099 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3100 | (reference "J1") (unit 1) 3101 | ) 3102 | ) 3103 | ) 3104 | ) 3105 | 3106 | (symbol (lib_id "Device:R_Small") (at 254 93.98 90) (unit 1) 3107 | (in_bom yes) (on_board yes) (dnp no) 3108 | (uuid 23e1c2c3-52d5-4aa3-93c1-7a0ca80c1ec9) 3109 | (property "Reference" "R15" (at 251.46 91.44 90) 3110 | (effects (font (size 1.27 1.27))) 3111 | ) 3112 | (property "Value" "330" (at 256.54 91.44 90) 3113 | (effects (font (size 1.27 1.27))) 3114 | ) 3115 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 93.98 0) 3116 | (effects (font (size 1.27 1.27)) hide) 3117 | ) 3118 | (property "Datasheet" "~" (at 254 93.98 0) 3119 | (effects (font (size 1.27 1.27)) hide) 3120 | ) 3121 | (property "ALT MPN" "" (at 254 93.98 0) 3122 | (effects (font (size 1.27 1.27)) hide) 3123 | ) 3124 | (property "ALT Manufacturer" "" (at 254 93.98 0) 3125 | (effects (font (size 1.27 1.27)) hide) 3126 | ) 3127 | (property "MPN" "" (at 254 93.98 0) 3128 | (effects (font (size 1.27 1.27)) hide) 3129 | ) 3130 | (property "Manufacturer" "" (at 254 93.98 0) 3131 | (effects (font (size 1.27 1.27)) hide) 3132 | ) 3133 | (pin "1" (uuid dc08a94b-3e17-4432-886c-b11d16ae93c6)) 3134 | (pin "2" (uuid f875245e-9f90-4aec-bf44-6f270d836edb)) 3135 | (instances 3136 | (project "usb_c_cable_tester" 3137 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3138 | (reference "R15") (unit 1) 3139 | ) 3140 | ) 3141 | ) 3142 | ) 3143 | 3144 | (symbol (lib_id "power:+3V3") (at 63.5 25.4 0) (unit 1) 3145 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3146 | (uuid 262d6854-8eee-4e07-8bb8-0ec3279cfd0e) 3147 | (property "Reference" "#PWR0101" (at 63.5 29.21 0) 3148 | (effects (font (size 1.27 1.27)) hide) 3149 | ) 3150 | (property "Value" "+3V3" (at 63.5 20.32 0) 3151 | (effects (font (size 1.27 1.27))) 3152 | ) 3153 | (property "Footprint" "" (at 63.5 25.4 0) 3154 | (effects (font (size 1.27 1.27)) hide) 3155 | ) 3156 | (property "Datasheet" "" (at 63.5 25.4 0) 3157 | (effects (font (size 1.27 1.27)) hide) 3158 | ) 3159 | (pin "1" (uuid 90e39b95-adc8-4dfe-9b56-1736e683585b)) 3160 | (instances 3161 | (project "usb_c_cable_tester" 3162 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3163 | (reference "#PWR0101") (unit 1) 3164 | ) 3165 | ) 3166 | ) 3167 | ) 3168 | 3169 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 99.06 180) (unit 1) 3170 | (in_bom yes) (on_board yes) (dnp no) 3171 | (uuid 26ea60b6-475d-43f3-9a47-82d8f812df6e) 3172 | (property "Reference" "D16" (at 264.16 96.52 0) 3173 | (effects (font (size 1.27 1.27))) 3174 | ) 3175 | (property "Value" "LED" (at 269.24 96.52 0) 3176 | (effects (font (size 1.27 1.27))) 3177 | ) 3178 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 99.06 90) 3179 | (effects (font (size 1.27 1.27)) hide) 3180 | ) 3181 | (property "Datasheet" "~" (at 266.7 99.06 90) 3182 | (effects (font (size 1.27 1.27)) hide) 3183 | ) 3184 | (property "ALT MPN" "" (at 266.7 99.06 0) 3185 | (effects (font (size 1.27 1.27)) hide) 3186 | ) 3187 | (property "ALT Manufacturer" "" (at 266.7 99.06 0) 3188 | (effects (font (size 1.27 1.27)) hide) 3189 | ) 3190 | (property "MPN" "" (at 266.7 99.06 0) 3191 | (effects (font (size 1.27 1.27)) hide) 3192 | ) 3193 | (property "Manufacturer" "" (at 266.7 99.06 0) 3194 | (effects (font (size 1.27 1.27)) hide) 3195 | ) 3196 | (pin "1" (uuid 536b3dcf-a843-41f4-97ed-622e1380c320)) 3197 | (pin "2" (uuid e1a7b459-5ad6-4723-bcf2-b330cf623b49)) 3198 | (instances 3199 | (project "usb_c_cable_tester" 3200 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3201 | (reference "D16") (unit 1) 3202 | ) 3203 | ) 3204 | ) 3205 | ) 3206 | 3207 | (symbol (lib_id "Device:R_Small") (at 254 33.02 90) (unit 1) 3208 | (in_bom yes) (on_board yes) (dnp no) 3209 | (uuid 2a9d6ff5-e704-4730-8f8b-0004e065912e) 3210 | (property "Reference" "R3" (at 251.46 30.48 90) 3211 | (effects (font (size 1.27 1.27))) 3212 | ) 3213 | (property "Value" "330" (at 256.54 30.48 90) 3214 | (effects (font (size 1.27 1.27))) 3215 | ) 3216 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 33.02 0) 3217 | (effects (font (size 1.27 1.27)) hide) 3218 | ) 3219 | (property "Datasheet" "~" (at 254 33.02 0) 3220 | (effects (font (size 1.27 1.27)) hide) 3221 | ) 3222 | (property "ALT MPN" "" (at 254 33.02 0) 3223 | (effects (font (size 1.27 1.27)) hide) 3224 | ) 3225 | (property "ALT Manufacturer" "" (at 254 33.02 0) 3226 | (effects (font (size 1.27 1.27)) hide) 3227 | ) 3228 | (property "MPN" "" (at 254 33.02 0) 3229 | (effects (font (size 1.27 1.27)) hide) 3230 | ) 3231 | (property "Manufacturer" "" (at 254 33.02 0) 3232 | (effects (font (size 1.27 1.27)) hide) 3233 | ) 3234 | (pin "1" (uuid 3c740029-44f7-4419-9e75-41a717f385ea)) 3235 | (pin "2" (uuid 7fa742ab-29c6-4dac-942d-be03a8ce24f0)) 3236 | (instances 3237 | (project "usb_c_cable_tester" 3238 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3239 | (reference "R3") (unit 1) 3240 | ) 3241 | ) 3242 | ) 3243 | ) 3244 | 3245 | (symbol (lib_id "Device:R_Small") (at 254 58.42 90) (unit 1) 3246 | (in_bom yes) (on_board yes) (dnp no) 3247 | (uuid 2b83c3c0-92b3-442c-b80e-1082485a961e) 3248 | (property "Reference" "R8" (at 251.46 55.88 90) 3249 | (effects (font (size 1.27 1.27))) 3250 | ) 3251 | (property "Value" "330" (at 256.54 55.88 90) 3252 | (effects (font (size 1.27 1.27))) 3253 | ) 3254 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 58.42 0) 3255 | (effects (font (size 1.27 1.27)) hide) 3256 | ) 3257 | (property "Datasheet" "~" (at 254 58.42 0) 3258 | (effects (font (size 1.27 1.27)) hide) 3259 | ) 3260 | (property "ALT MPN" "" (at 254 58.42 0) 3261 | (effects (font (size 1.27 1.27)) hide) 3262 | ) 3263 | (property "ALT Manufacturer" "" (at 254 58.42 0) 3264 | (effects (font (size 1.27 1.27)) hide) 3265 | ) 3266 | (property "MPN" "" (at 254 58.42 0) 3267 | (effects (font (size 1.27 1.27)) hide) 3268 | ) 3269 | (property "Manufacturer" "" (at 254 58.42 0) 3270 | (effects (font (size 1.27 1.27)) hide) 3271 | ) 3272 | (pin "1" (uuid 03d8b12c-8b5c-4801-8ad8-e0aec7e8df97)) 3273 | (pin "2" (uuid ebefa32d-09f3-41a4-b3a1-6b29f3fd25c7)) 3274 | (instances 3275 | (project "usb_c_cable_tester" 3276 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3277 | (reference "R8") (unit 1) 3278 | ) 3279 | ) 3280 | ) 3281 | ) 3282 | 3283 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 114.3 180) (unit 1) 3284 | (in_bom yes) (on_board yes) (dnp no) 3285 | (uuid 2fa5cd6b-c6fd-4542-aa00-2333dc6e7973) 3286 | (property "Reference" "D19" (at 264.16 111.76 0) 3287 | (effects (font (size 1.27 1.27))) 3288 | ) 3289 | (property "Value" "LED" (at 269.24 111.76 0) 3290 | (effects (font (size 1.27 1.27))) 3291 | ) 3292 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 114.3 90) 3293 | (effects (font (size 1.27 1.27)) hide) 3294 | ) 3295 | (property "Datasheet" "~" (at 266.7 114.3 90) 3296 | (effects (font (size 1.27 1.27)) hide) 3297 | ) 3298 | (property "ALT MPN" "" (at 266.7 114.3 0) 3299 | (effects (font (size 1.27 1.27)) hide) 3300 | ) 3301 | (property "ALT Manufacturer" "" (at 266.7 114.3 0) 3302 | (effects (font (size 1.27 1.27)) hide) 3303 | ) 3304 | (property "MPN" "" (at 266.7 114.3 0) 3305 | (effects (font (size 1.27 1.27)) hide) 3306 | ) 3307 | (property "Manufacturer" "" (at 266.7 114.3 0) 3308 | (effects (font (size 1.27 1.27)) hide) 3309 | ) 3310 | (pin "1" (uuid 635872dc-208b-440c-81ac-ae570b8fce1a)) 3311 | (pin "2" (uuid da6feef2-2199-41d1-af41-c47b9997d601)) 3312 | (instances 3313 | (project "usb_c_cable_tester" 3314 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3315 | (reference "D19") (unit 1) 3316 | ) 3317 | ) 3318 | ) 3319 | ) 3320 | 3321 | (symbol (lib_id "Device:R_Small") (at 254 124.46 90) (unit 1) 3322 | (in_bom yes) (on_board yes) (dnp no) 3323 | (uuid 349e6b00-aa85-4eb4-9df6-c9ff74e599a9) 3324 | (property "Reference" "R21" (at 251.46 121.92 90) 3325 | (effects (font (size 1.27 1.27))) 3326 | ) 3327 | (property "Value" "330" (at 256.54 121.92 90) 3328 | (effects (font (size 1.27 1.27))) 3329 | ) 3330 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 124.46 0) 3331 | (effects (font (size 1.27 1.27)) hide) 3332 | ) 3333 | (property "Datasheet" "~" (at 254 124.46 0) 3334 | (effects (font (size 1.27 1.27)) hide) 3335 | ) 3336 | (property "ALT MPN" "" (at 254 124.46 0) 3337 | (effects (font (size 1.27 1.27)) hide) 3338 | ) 3339 | (property "ALT Manufacturer" "" (at 254 124.46 0) 3340 | (effects (font (size 1.27 1.27)) hide) 3341 | ) 3342 | (property "MPN" "" (at 254 124.46 0) 3343 | (effects (font (size 1.27 1.27)) hide) 3344 | ) 3345 | (property "Manufacturer" "" (at 254 124.46 0) 3346 | (effects (font (size 1.27 1.27)) hide) 3347 | ) 3348 | (pin "1" (uuid 912858d2-1ef3-48f5-bccc-301c33250c87)) 3349 | (pin "2" (uuid 4880b338-e2a2-480a-a76e-7d6d80f44baa)) 3350 | (instances 3351 | (project "usb_c_cable_tester" 3352 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3353 | (reference "R21") (unit 1) 3354 | ) 3355 | ) 3356 | ) 3357 | ) 3358 | 3359 | (symbol (lib_id "Device:R_Small") (at 254 99.06 90) (unit 1) 3360 | (in_bom yes) (on_board yes) (dnp no) 3361 | (uuid 38536f7a-012b-4eb5-8330-84df68082fca) 3362 | (property "Reference" "R16" (at 251.46 96.52 90) 3363 | (effects (font (size 1.27 1.27))) 3364 | ) 3365 | (property "Value" "330" (at 256.54 96.52 90) 3366 | (effects (font (size 1.27 1.27))) 3367 | ) 3368 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 99.06 0) 3369 | (effects (font (size 1.27 1.27)) hide) 3370 | ) 3371 | (property "Datasheet" "~" (at 254 99.06 0) 3372 | (effects (font (size 1.27 1.27)) hide) 3373 | ) 3374 | (property "ALT MPN" "" (at 254 99.06 0) 3375 | (effects (font (size 1.27 1.27)) hide) 3376 | ) 3377 | (property "ALT Manufacturer" "" (at 254 99.06 0) 3378 | (effects (font (size 1.27 1.27)) hide) 3379 | ) 3380 | (property "MPN" "" (at 254 99.06 0) 3381 | (effects (font (size 1.27 1.27)) hide) 3382 | ) 3383 | (property "Manufacturer" "" (at 254 99.06 0) 3384 | (effects (font (size 1.27 1.27)) hide) 3385 | ) 3386 | (pin "1" (uuid 41bdb5ce-cc1c-4c23-8ab9-5e0b9b84a6c4)) 3387 | (pin "2" (uuid ff4311d1-6533-4612-ab4e-8ab0afa55e10)) 3388 | (instances 3389 | (project "usb_c_cable_tester" 3390 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3391 | (reference "R16") (unit 1) 3392 | ) 3393 | ) 3394 | ) 3395 | ) 3396 | 3397 | (symbol (lib_id "Device:R_Small") (at 254 139.7 90) (unit 1) 3398 | (in_bom yes) (on_board yes) (dnp no) 3399 | (uuid 390e4ab1-2f95-4f2a-a44f-a355fe8e3442) 3400 | (property "Reference" "R24" (at 251.46 137.16 90) 3401 | (effects (font (size 1.27 1.27))) 3402 | ) 3403 | (property "Value" "330" (at 256.54 137.16 90) 3404 | (effects (font (size 1.27 1.27))) 3405 | ) 3406 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 139.7 0) 3407 | (effects (font (size 1.27 1.27)) hide) 3408 | ) 3409 | (property "Datasheet" "~" (at 254 139.7 0) 3410 | (effects (font (size 1.27 1.27)) hide) 3411 | ) 3412 | (property "ALT MPN" "" (at 254 139.7 0) 3413 | (effects (font (size 1.27 1.27)) hide) 3414 | ) 3415 | (property "ALT Manufacturer" "" (at 254 139.7 0) 3416 | (effects (font (size 1.27 1.27)) hide) 3417 | ) 3418 | (property "MPN" "" (at 254 139.7 0) 3419 | (effects (font (size 1.27 1.27)) hide) 3420 | ) 3421 | (property "Manufacturer" "" (at 254 139.7 0) 3422 | (effects (font (size 1.27 1.27)) hide) 3423 | ) 3424 | (pin "1" (uuid 37570c51-9f65-4705-844e-08eeeea15602)) 3425 | (pin "2" (uuid 69cd1931-1afa-42d9-b268-b92b9fe11aa4)) 3426 | (instances 3427 | (project "usb_c_cable_tester" 3428 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3429 | (reference "R24") (unit 1) 3430 | ) 3431 | ) 3432 | ) 3433 | ) 3434 | 3435 | (symbol (lib_id "Device:R_Small") (at 254 119.38 90) (unit 1) 3436 | (in_bom yes) (on_board yes) (dnp no) 3437 | (uuid 3beb66dd-9b69-49ab-946f-2ef8d31dcba9) 3438 | (property "Reference" "R20" (at 251.46 116.84 90) 3439 | (effects (font (size 1.27 1.27))) 3440 | ) 3441 | (property "Value" "330" (at 256.54 116.84 90) 3442 | (effects (font (size 1.27 1.27))) 3443 | ) 3444 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 119.38 0) 3445 | (effects (font (size 1.27 1.27)) hide) 3446 | ) 3447 | (property "Datasheet" "~" (at 254 119.38 0) 3448 | (effects (font (size 1.27 1.27)) hide) 3449 | ) 3450 | (property "ALT MPN" "" (at 254 119.38 0) 3451 | (effects (font (size 1.27 1.27)) hide) 3452 | ) 3453 | (property "ALT Manufacturer" "" (at 254 119.38 0) 3454 | (effects (font (size 1.27 1.27)) hide) 3455 | ) 3456 | (property "MPN" "" (at 254 119.38 0) 3457 | (effects (font (size 1.27 1.27)) hide) 3458 | ) 3459 | (property "Manufacturer" "" (at 254 119.38 0) 3460 | (effects (font (size 1.27 1.27)) hide) 3461 | ) 3462 | (pin "1" (uuid e4b2bbc0-4d9f-4566-a375-8fdb39c5a7bc)) 3463 | (pin "2" (uuid 16a1449c-6852-4b4a-93e1-8103d44c79c0)) 3464 | (instances 3465 | (project "usb_c_cable_tester" 3466 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3467 | (reference "R20") (unit 1) 3468 | ) 3469 | ) 3470 | ) 3471 | ) 3472 | 3473 | (symbol (lib_id "Device:R_Small") (at 254 68.58 90) (unit 1) 3474 | (in_bom yes) (on_board yes) (dnp no) 3475 | (uuid 3dfc9580-27e1-4c87-8fbd-abff76a734fd) 3476 | (property "Reference" "R10" (at 251.46 66.04 90) 3477 | (effects (font (size 1.27 1.27))) 3478 | ) 3479 | (property "Value" "330" (at 256.54 66.04 90) 3480 | (effects (font (size 1.27 1.27))) 3481 | ) 3482 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 68.58 0) 3483 | (effects (font (size 1.27 1.27)) hide) 3484 | ) 3485 | (property "Datasheet" "~" (at 254 68.58 0) 3486 | (effects (font (size 1.27 1.27)) hide) 3487 | ) 3488 | (property "ALT MPN" "" (at 254 68.58 0) 3489 | (effects (font (size 1.27 1.27)) hide) 3490 | ) 3491 | (property "ALT Manufacturer" "" (at 254 68.58 0) 3492 | (effects (font (size 1.27 1.27)) hide) 3493 | ) 3494 | (property "MPN" "" (at 254 68.58 0) 3495 | (effects (font (size 1.27 1.27)) hide) 3496 | ) 3497 | (property "Manufacturer" "" (at 254 68.58 0) 3498 | (effects (font (size 1.27 1.27)) hide) 3499 | ) 3500 | (pin "1" (uuid 5c7c77d3-6ffd-4a67-b68e-cf1811db8cda)) 3501 | (pin "2" (uuid 80f5c8af-168c-4ea2-9f00-10b3a71bc9aa)) 3502 | (instances 3503 | (project "usb_c_cable_tester" 3504 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3505 | (reference "R10") (unit 1) 3506 | ) 3507 | ) 3508 | ) 3509 | ) 3510 | 3511 | (symbol (lib_id "power:+3V3") (at 88.9 20.32 0) (unit 1) 3512 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3513 | (uuid 4827a1ec-0bc8-489f-9de1-13addc161603) 3514 | (property "Reference" "#PWR0105" (at 88.9 24.13 0) 3515 | (effects (font (size 1.27 1.27)) hide) 3516 | ) 3517 | (property "Value" "+3V3" (at 88.9 15.24 0) 3518 | (effects (font (size 1.27 1.27))) 3519 | ) 3520 | (property "Footprint" "" (at 88.9 20.32 0) 3521 | (effects (font (size 1.27 1.27)) hide) 3522 | ) 3523 | (property "Datasheet" "" (at 88.9 20.32 0) 3524 | (effects (font (size 1.27 1.27)) hide) 3525 | ) 3526 | (pin "1" (uuid d8486389-9107-4edf-a74a-246161d527c7)) 3527 | (instances 3528 | (project "usb_c_cable_tester" 3529 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3530 | (reference "#PWR0105") (unit 1) 3531 | ) 3532 | ) 3533 | ) 3534 | ) 3535 | 3536 | (symbol (lib_id "power:+3V3") (at 45.72 25.4 0) (unit 1) 3537 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3538 | (uuid 50d3e5c8-341e-4266-aced-a3ccb99a351a) 3539 | (property "Reference" "#PWR0103" (at 45.72 29.21 0) 3540 | (effects (font (size 1.27 1.27)) hide) 3541 | ) 3542 | (property "Value" "+3V3" (at 45.72 20.32 0) 3543 | (effects (font (size 1.27 1.27))) 3544 | ) 3545 | (property "Footprint" "" (at 45.72 25.4 0) 3546 | (effects (font (size 1.27 1.27)) hide) 3547 | ) 3548 | (property "Datasheet" "" (at 45.72 25.4 0) 3549 | (effects (font (size 1.27 1.27)) hide) 3550 | ) 3551 | (pin "1" (uuid 0ff59794-b893-4f52-b6b4-cbaac73d0d6d)) 3552 | (instances 3553 | (project "usb_c_cable_tester" 3554 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3555 | (reference "#PWR0103") (unit 1) 3556 | ) 3557 | ) 3558 | ) 3559 | ) 3560 | 3561 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 43.18 180) (unit 1) 3562 | (in_bom yes) (on_board yes) (dnp no) 3563 | (uuid 52373a51-a990-429a-8383-664152dd563e) 3564 | (property "Reference" "D5" (at 264.16 40.64 0) 3565 | (effects (font (size 1.27 1.27))) 3566 | ) 3567 | (property "Value" "LED" (at 269.24 40.64 0) 3568 | (effects (font (size 1.27 1.27))) 3569 | ) 3570 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 43.18 90) 3571 | (effects (font (size 1.27 1.27)) hide) 3572 | ) 3573 | (property "Datasheet" "~" (at 266.7 43.18 90) 3574 | (effects (font (size 1.27 1.27)) hide) 3575 | ) 3576 | (property "ALT MPN" "" (at 266.7 43.18 0) 3577 | (effects (font (size 1.27 1.27)) hide) 3578 | ) 3579 | (property "ALT Manufacturer" "" (at 266.7 43.18 0) 3580 | (effects (font (size 1.27 1.27)) hide) 3581 | ) 3582 | (property "MPN" "" (at 266.7 43.18 0) 3583 | (effects (font (size 1.27 1.27)) hide) 3584 | ) 3585 | (property "Manufacturer" "" (at 266.7 43.18 0) 3586 | (effects (font (size 1.27 1.27)) hide) 3587 | ) 3588 | (pin "1" (uuid 57ff4b0c-0548-4364-9541-ed9536e17ffb)) 3589 | (pin "2" (uuid 56677f76-7f3b-4494-adde-69971b0c9766)) 3590 | (instances 3591 | (project "usb_c_cable_tester" 3592 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3593 | (reference "D5") (unit 1) 3594 | ) 3595 | ) 3596 | ) 3597 | ) 3598 | 3599 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 109.22 180) (unit 1) 3600 | (in_bom yes) (on_board yes) (dnp no) 3601 | (uuid 5425e3f2-99bd-4751-840a-6b9ea0376fe1) 3602 | (property "Reference" "D18" (at 264.16 106.68 0) 3603 | (effects (font (size 1.27 1.27))) 3604 | ) 3605 | (property "Value" "LED" (at 269.24 106.68 0) 3606 | (effects (font (size 1.27 1.27))) 3607 | ) 3608 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 109.22 90) 3609 | (effects (font (size 1.27 1.27)) hide) 3610 | ) 3611 | (property "Datasheet" "~" (at 266.7 109.22 90) 3612 | (effects (font (size 1.27 1.27)) hide) 3613 | ) 3614 | (property "ALT MPN" "" (at 266.7 109.22 0) 3615 | (effects (font (size 1.27 1.27)) hide) 3616 | ) 3617 | (property "ALT Manufacturer" "" (at 266.7 109.22 0) 3618 | (effects (font (size 1.27 1.27)) hide) 3619 | ) 3620 | (property "MPN" "" (at 266.7 109.22 0) 3621 | (effects (font (size 1.27 1.27)) hide) 3622 | ) 3623 | (property "Manufacturer" "" (at 266.7 109.22 0) 3624 | (effects (font (size 1.27 1.27)) hide) 3625 | ) 3626 | (pin "1" (uuid 20cbce41-dd60-417d-a8b5-366b77abac4e)) 3627 | (pin "2" (uuid 235078cc-8676-49e4-8951-72de2c80efc9)) 3628 | (instances 3629 | (project "usb_c_cable_tester" 3630 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3631 | (reference "D18") (unit 1) 3632 | ) 3633 | ) 3634 | ) 3635 | ) 3636 | 3637 | (symbol (lib_id "Device:R_Small") (at 254 53.34 90) (unit 1) 3638 | (in_bom yes) (on_board yes) (dnp no) 3639 | (uuid 5ad7abf6-2f68-4c8b-b2f3-3711bc67bf96) 3640 | (property "Reference" "R7" (at 251.46 50.8 90) 3641 | (effects (font (size 1.27 1.27))) 3642 | ) 3643 | (property "Value" "330" (at 256.54 50.8 90) 3644 | (effects (font (size 1.27 1.27))) 3645 | ) 3646 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 53.34 0) 3647 | (effects (font (size 1.27 1.27)) hide) 3648 | ) 3649 | (property "Datasheet" "~" (at 254 53.34 0) 3650 | (effects (font (size 1.27 1.27)) hide) 3651 | ) 3652 | (property "ALT MPN" "" (at 254 53.34 0) 3653 | (effects (font (size 1.27 1.27)) hide) 3654 | ) 3655 | (property "ALT Manufacturer" "" (at 254 53.34 0) 3656 | (effects (font (size 1.27 1.27)) hide) 3657 | ) 3658 | (property "MPN" "" (at 254 53.34 0) 3659 | (effects (font (size 1.27 1.27)) hide) 3660 | ) 3661 | (property "Manufacturer" "" (at 254 53.34 0) 3662 | (effects (font (size 1.27 1.27)) hide) 3663 | ) 3664 | (pin "1" (uuid 11a54087-6f66-4923-8d07-7a0373e5f6ca)) 3665 | (pin "2" (uuid fa3beaf5-4f3f-46a5-b038-5a6e5308008f)) 3666 | (instances 3667 | (project "usb_c_cable_tester" 3668 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3669 | (reference "R7") (unit 1) 3670 | ) 3671 | ) 3672 | ) 3673 | ) 3674 | 3675 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 68.58 180) (unit 1) 3676 | (in_bom yes) (on_board yes) (dnp no) 3677 | (uuid 5e253fd1-705f-4260-959f-81ad50b440dc) 3678 | (property "Reference" "D10" (at 264.16 66.04 0) 3679 | (effects (font (size 1.27 1.27))) 3680 | ) 3681 | (property "Value" "LED" (at 269.24 66.04 0) 3682 | (effects (font (size 1.27 1.27))) 3683 | ) 3684 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 68.58 90) 3685 | (effects (font (size 1.27 1.27)) hide) 3686 | ) 3687 | (property "Datasheet" "~" (at 266.7 68.58 90) 3688 | (effects (font (size 1.27 1.27)) hide) 3689 | ) 3690 | (property "ALT MPN" "" (at 266.7 68.58 0) 3691 | (effects (font (size 1.27 1.27)) hide) 3692 | ) 3693 | (property "ALT Manufacturer" "" (at 266.7 68.58 0) 3694 | (effects (font (size 1.27 1.27)) hide) 3695 | ) 3696 | (property "MPN" "" (at 266.7 68.58 0) 3697 | (effects (font (size 1.27 1.27)) hide) 3698 | ) 3699 | (property "Manufacturer" "" (at 266.7 68.58 0) 3700 | (effects (font (size 1.27 1.27)) hide) 3701 | ) 3702 | (pin "1" (uuid bfb65f03-5486-47d2-a5f6-130d24b5abee)) 3703 | (pin "2" (uuid 8e985a4f-c7e8-45f3-b99a-75608a38a8e6)) 3704 | (instances 3705 | (project "usb_c_cable_tester" 3706 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3707 | (reference "D10") (unit 1) 3708 | ) 3709 | ) 3710 | ) 3711 | ) 3712 | 3713 | (symbol (lib_id "Device:R_Small") (at 254 43.18 90) (unit 1) 3714 | (in_bom yes) (on_board yes) (dnp no) 3715 | (uuid 65d913ea-e2e6-42b8-9348-0177bb9f9dc3) 3716 | (property "Reference" "R5" (at 251.46 40.64 90) 3717 | (effects (font (size 1.27 1.27))) 3718 | ) 3719 | (property "Value" "330" (at 256.54 40.64 90) 3720 | (effects (font (size 1.27 1.27))) 3721 | ) 3722 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 43.18 0) 3723 | (effects (font (size 1.27 1.27)) hide) 3724 | ) 3725 | (property "Datasheet" "~" (at 254 43.18 0) 3726 | (effects (font (size 1.27 1.27)) hide) 3727 | ) 3728 | (property "ALT MPN" "" (at 254 43.18 0) 3729 | (effects (font (size 1.27 1.27)) hide) 3730 | ) 3731 | (property "ALT Manufacturer" "" (at 254 43.18 0) 3732 | (effects (font (size 1.27 1.27)) hide) 3733 | ) 3734 | (property "MPN" "" (at 254 43.18 0) 3735 | (effects (font (size 1.27 1.27)) hide) 3736 | ) 3737 | (property "Manufacturer" "" (at 254 43.18 0) 3738 | (effects (font (size 1.27 1.27)) hide) 3739 | ) 3740 | (pin "1" (uuid a21f6615-268d-4ae2-a234-e55cbd4f3ef1)) 3741 | (pin "2" (uuid 03a9f3aa-fbbf-4f10-9f87-879c7da85027)) 3742 | (instances 3743 | (project "usb_c_cable_tester" 3744 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3745 | (reference "R5") (unit 1) 3746 | ) 3747 | ) 3748 | ) 3749 | ) 3750 | 3751 | (symbol (lib_id "power:GND") (at 63.5 35.56 0) (unit 1) 3752 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3753 | (uuid 6a44aefd-7654-4a17-85a3-9fd11c64a407) 3754 | (property "Reference" "#PWR0102" (at 63.5 41.91 0) 3755 | (effects (font (size 1.27 1.27)) hide) 3756 | ) 3757 | (property "Value" "GND" (at 63.5 40.64 0) 3758 | (effects (font (size 1.27 1.27))) 3759 | ) 3760 | (property "Footprint" "" (at 63.5 35.56 0) 3761 | (effects (font (size 1.27 1.27)) hide) 3762 | ) 3763 | (property "Datasheet" "" (at 63.5 35.56 0) 3764 | (effects (font (size 1.27 1.27)) hide) 3765 | ) 3766 | (pin "1" (uuid eeae7134-d425-49c8-b829-06fce0b43ccb)) 3767 | (instances 3768 | (project "usb_c_cable_tester" 3769 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3770 | (reference "#PWR0102") (unit 1) 3771 | ) 3772 | ) 3773 | ) 3774 | ) 3775 | 3776 | (symbol (lib_id "Connector:USB_B_Mini") (at 114.3 175.26 0) (mirror y) (unit 1) 3777 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3778 | (uuid 6aec2b23-bcdb-4fee-a4ed-a6adf5daecb4) 3779 | (property "Reference" "J5" (at 120.65 173.9899 0) 3780 | (effects (font (size 1.27 1.27)) (justify right)) 3781 | ) 3782 | (property "Value" "USB_B_Mini" (at 120.65 176.5299 0) 3783 | (effects (font (size 1.27 1.27)) (justify right)) 3784 | ) 3785 | (property "Footprint" "snapeda:TE_1734510-1" (at 110.49 176.53 0) 3786 | (effects (font (size 1.27 1.27)) hide) 3787 | ) 3788 | (property "Datasheet" "~" (at 110.49 176.53 0) 3789 | (effects (font (size 1.27 1.27)) hide) 3790 | ) 3791 | (property "ALT MPN" "0548190519" (at 114.3 175.26 0) 3792 | (effects (font (size 1.27 1.27)) hide) 3793 | ) 3794 | (property "ALT Manufacturer" "Molex" (at 114.3 175.26 0) 3795 | (effects (font (size 1.27 1.27)) hide) 3796 | ) 3797 | (property "MPN" "1734510-1" (at 114.3 175.26 0) 3798 | (effects (font (size 1.27 1.27)) hide) 3799 | ) 3800 | (property "Manufacturer" "TE Connectivity" (at 114.3 175.26 0) 3801 | (effects (font (size 1.27 1.27)) hide) 3802 | ) 3803 | (pin "1" (uuid 1069ee54-1a07-4b2a-83da-d060ef487568)) 3804 | (pin "2" (uuid 4de30dee-e6e9-4036-8037-8ed055553bc9)) 3805 | (pin "3" (uuid b469538e-6cc7-4028-a597-b4709c7069ff)) 3806 | (pin "4" (uuid d8eb6c3e-c02b-4190-8b0b-bf7798ef9c1a)) 3807 | (pin "5" (uuid bdd3a96c-03f5-439a-814c-b89145e8f2aa)) 3808 | (pin "6" (uuid 946b3155-7fbf-4801-aa53-c925e8c8b0b2)) 3809 | (instances 3810 | (project "usb_c_cable_tester" 3811 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3812 | (reference "J5") (unit 1) 3813 | ) 3814 | ) 3815 | ) 3816 | ) 3817 | 3818 | (symbol (lib_id "power:GND") (at 279.4 147.32 0) (unit 1) 3819 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3820 | (uuid 6fb2c29e-204b-4b0b-af92-336d470d288c) 3821 | (property "Reference" "#PWR0106" (at 279.4 153.67 0) 3822 | (effects (font (size 1.27 1.27)) hide) 3823 | ) 3824 | (property "Value" "GND" (at 279.4 152.4 0) 3825 | (effects (font (size 1.27 1.27))) 3826 | ) 3827 | (property "Footprint" "" (at 279.4 147.32 0) 3828 | (effects (font (size 1.27 1.27)) hide) 3829 | ) 3830 | (property "Datasheet" "" (at 279.4 147.32 0) 3831 | (effects (font (size 1.27 1.27)) hide) 3832 | ) 3833 | (pin "1" (uuid d1c6eb34-84f1-4301-b97b-f0ee32e89a3e)) 3834 | (instances 3835 | (project "usb_c_cable_tester" 3836 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3837 | (reference "#PWR0106") (unit 1) 3838 | ) 3839 | ) 3840 | ) 3841 | ) 3842 | 3843 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 124.46 180) (unit 1) 3844 | (in_bom yes) (on_board yes) (dnp no) 3845 | (uuid 742ac804-1450-49b6-a130-313cae7b7f5b) 3846 | (property "Reference" "D21" (at 264.16 121.92 0) 3847 | (effects (font (size 1.27 1.27))) 3848 | ) 3849 | (property "Value" "LED" (at 269.24 121.92 0) 3850 | (effects (font (size 1.27 1.27))) 3851 | ) 3852 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 124.46 90) 3853 | (effects (font (size 1.27 1.27)) hide) 3854 | ) 3855 | (property "Datasheet" "~" (at 266.7 124.46 90) 3856 | (effects (font (size 1.27 1.27)) hide) 3857 | ) 3858 | (property "ALT MPN" "" (at 266.7 124.46 0) 3859 | (effects (font (size 1.27 1.27)) hide) 3860 | ) 3861 | (property "ALT Manufacturer" "" (at 266.7 124.46 0) 3862 | (effects (font (size 1.27 1.27)) hide) 3863 | ) 3864 | (property "MPN" "" (at 266.7 124.46 0) 3865 | (effects (font (size 1.27 1.27)) hide) 3866 | ) 3867 | (property "Manufacturer" "" (at 266.7 124.46 0) 3868 | (effects (font (size 1.27 1.27)) hide) 3869 | ) 3870 | (pin "1" (uuid ea95aae2-238a-4673-a9b5-2cf0fe52df89)) 3871 | (pin "2" (uuid d4317a11-237b-4c34-bed2-6a2093d01a21)) 3872 | (instances 3873 | (project "usb_c_cable_tester" 3874 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3875 | (reference "D21") (unit 1) 3876 | ) 3877 | ) 3878 | ) 3879 | ) 3880 | 3881 | (symbol (lib_id "power:GND") (at 45.72 38.1 0) (unit 1) 3882 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3883 | (uuid 76cfee3b-0f8e-4e2c-88f4-e3b886b1053b) 3884 | (property "Reference" "#PWR0104" (at 45.72 44.45 0) 3885 | (effects (font (size 1.27 1.27)) hide) 3886 | ) 3887 | (property "Value" "GND" (at 45.72 43.18 0) 3888 | (effects (font (size 1.27 1.27))) 3889 | ) 3890 | (property "Footprint" "" (at 45.72 38.1 0) 3891 | (effects (font (size 1.27 1.27)) hide) 3892 | ) 3893 | (property "Datasheet" "" (at 45.72 38.1 0) 3894 | (effects (font (size 1.27 1.27)) hide) 3895 | ) 3896 | (pin "1" (uuid 92142ad6-0277-42c5-be63-ead534b3d534)) 3897 | (instances 3898 | (project "usb_c_cable_tester" 3899 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3900 | (reference "#PWR0104") (unit 1) 3901 | ) 3902 | ) 3903 | ) 3904 | ) 3905 | 3906 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 78.74 180) (unit 1) 3907 | (in_bom yes) (on_board yes) (dnp no) 3908 | (uuid 7a2a21d6-9203-418b-9fee-697df897c6e8) 3909 | (property "Reference" "D12" (at 264.16 76.2 0) 3910 | (effects (font (size 1.27 1.27))) 3911 | ) 3912 | (property "Value" "LED" (at 269.24 76.2 0) 3913 | (effects (font (size 1.27 1.27))) 3914 | ) 3915 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 78.74 90) 3916 | (effects (font (size 1.27 1.27)) hide) 3917 | ) 3918 | (property "Datasheet" "~" (at 266.7 78.74 90) 3919 | (effects (font (size 1.27 1.27)) hide) 3920 | ) 3921 | (property "ALT MPN" "" (at 266.7 78.74 0) 3922 | (effects (font (size 1.27 1.27)) hide) 3923 | ) 3924 | (property "ALT Manufacturer" "" (at 266.7 78.74 0) 3925 | (effects (font (size 1.27 1.27)) hide) 3926 | ) 3927 | (property "MPN" "" (at 266.7 78.74 0) 3928 | (effects (font (size 1.27 1.27)) hide) 3929 | ) 3930 | (property "Manufacturer" "" (at 266.7 78.74 0) 3931 | (effects (font (size 1.27 1.27)) hide) 3932 | ) 3933 | (pin "1" (uuid 20fc8d95-2a3e-45b7-a6fa-84c762934cf1)) 3934 | (pin "2" (uuid 20a81c71-670b-4f75-ac66-a63a265828bd)) 3935 | (instances 3936 | (project "usb_c_cable_tester" 3937 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3938 | (reference "D12") (unit 1) 3939 | ) 3940 | ) 3941 | ) 3942 | ) 3943 | 3944 | (symbol (lib_id "Device:R_Small") (at 254 78.74 90) (unit 1) 3945 | (in_bom yes) (on_board yes) (dnp no) 3946 | (uuid 7c367326-4bd3-4093-9517-131665afe683) 3947 | (property "Reference" "R12" (at 251.46 76.2 90) 3948 | (effects (font (size 1.27 1.27))) 3949 | ) 3950 | (property "Value" "330" (at 256.54 76.2 90) 3951 | (effects (font (size 1.27 1.27))) 3952 | ) 3953 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 78.74 0) 3954 | (effects (font (size 1.27 1.27)) hide) 3955 | ) 3956 | (property "Datasheet" "~" (at 254 78.74 0) 3957 | (effects (font (size 1.27 1.27)) hide) 3958 | ) 3959 | (property "ALT MPN" "" (at 254 78.74 0) 3960 | (effects (font (size 1.27 1.27)) hide) 3961 | ) 3962 | (property "ALT Manufacturer" "" (at 254 78.74 0) 3963 | (effects (font (size 1.27 1.27)) hide) 3964 | ) 3965 | (property "MPN" "" (at 254 78.74 0) 3966 | (effects (font (size 1.27 1.27)) hide) 3967 | ) 3968 | (property "Manufacturer" "" (at 254 78.74 0) 3969 | (effects (font (size 1.27 1.27)) hide) 3970 | ) 3971 | (pin "1" (uuid 2e6216ea-246e-4f31-9a63-3773cbea2d4c)) 3972 | (pin "2" (uuid 1dc07a1d-4f75-4ecb-95ad-16d650a6042e)) 3973 | (instances 3974 | (project "usb_c_cable_tester" 3975 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 3976 | (reference "R12") (unit 1) 3977 | ) 3978 | ) 3979 | ) 3980 | ) 3981 | 3982 | (symbol (lib_id "Device:Battery_Cell") (at 45.72 33.02 0) (unit 1) 3983 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 3984 | (uuid 7fe219f9-b383-454c-8a61-84101dfce0c2) 3985 | (property "Reference" "BT1" (at 49.53 29.7179 0) 3986 | (effects (font (size 1.27 1.27)) (justify left)) 3987 | ) 3988 | (property "Value" "CR2032" (at 49.53 32.2579 0) 3989 | (effects (font (size 1.27 1.27)) (justify left)) 3990 | ) 3991 | (property "Footprint" "snapeda:BAT_BU2032SM-BT-GTR" (at 45.72 31.496 90) 3992 | (effects (font (size 1.27 1.27)) hide) 3993 | ) 3994 | (property "Datasheet" "~" (at 45.72 31.496 90) 3995 | (effects (font (size 1.27 1.27)) hide) 3996 | ) 3997 | (property "ALT MPN" "" (at 45.72 33.02 0) 3998 | (effects (font (size 1.27 1.27)) hide) 3999 | ) 4000 | (property "ALT Manufacturer" "" (at 45.72 33.02 0) 4001 | (effects (font (size 1.27 1.27)) hide) 4002 | ) 4003 | (property "MPN" "BU2032SM-BT-GTR" (at 45.72 33.02 0) 4004 | (effects (font (size 1.27 1.27)) hide) 4005 | ) 4006 | (property "Manufacturer" "Memory Protection Devices" (at 45.72 33.02 0) 4007 | (effects (font (size 1.27 1.27)) hide) 4008 | ) 4009 | (pin "1" (uuid bb8178d1-e4eb-438e-b382-f5a9f7ce5e20)) 4010 | (pin "2" (uuid 2ff934b4-6452-42dc-83f6-1239764d9222)) 4011 | (instances 4012 | (project "usb_c_cable_tester" 4013 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4014 | (reference "BT1") (unit 1) 4015 | ) 4016 | ) 4017 | ) 4018 | ) 4019 | 4020 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 73.66 180) (unit 1) 4021 | (in_bom yes) (on_board yes) (dnp no) 4022 | (uuid 829a3964-465f-43cd-9ce8-ff62bb83dbd4) 4023 | (property "Reference" "D11" (at 264.16 71.12 0) 4024 | (effects (font (size 1.27 1.27))) 4025 | ) 4026 | (property "Value" "LED" (at 269.24 71.12 0) 4027 | (effects (font (size 1.27 1.27))) 4028 | ) 4029 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 73.66 90) 4030 | (effects (font (size 1.27 1.27)) hide) 4031 | ) 4032 | (property "Datasheet" "~" (at 266.7 73.66 90) 4033 | (effects (font (size 1.27 1.27)) hide) 4034 | ) 4035 | (property "ALT MPN" "" (at 266.7 73.66 0) 4036 | (effects (font (size 1.27 1.27)) hide) 4037 | ) 4038 | (property "ALT Manufacturer" "" (at 266.7 73.66 0) 4039 | (effects (font (size 1.27 1.27)) hide) 4040 | ) 4041 | (property "MPN" "" (at 266.7 73.66 0) 4042 | (effects (font (size 1.27 1.27)) hide) 4043 | ) 4044 | (property "Manufacturer" "" (at 266.7 73.66 0) 4045 | (effects (font (size 1.27 1.27)) hide) 4046 | ) 4047 | (pin "1" (uuid 01ab2ac8-f725-4039-b873-18fa5640a841)) 4048 | (pin "2" (uuid 69f30a2a-a96c-4fdf-9cd1-d7e69a25fbb2)) 4049 | (instances 4050 | (project "usb_c_cable_tester" 4051 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4052 | (reference "D11") (unit 1) 4053 | ) 4054 | ) 4055 | ) 4056 | ) 4057 | 4058 | (symbol (lib_id "Device:C_Small") (at 63.5 30.48 0) (unit 1) 4059 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 4060 | (uuid 82eb0cc4-ba2e-4f16-afb4-1369040b6d95) 4061 | (property "Reference" "C1" (at 66.04 29.2162 0) 4062 | (effects (font (size 1.27 1.27)) (justify left)) 4063 | ) 4064 | (property "Value" "1uF" (at 66.04 31.7562 0) 4065 | (effects (font (size 1.27 1.27)) (justify left)) 4066 | ) 4067 | (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 63.5 30.48 0) 4068 | (effects (font (size 1.27 1.27)) hide) 4069 | ) 4070 | (property "Datasheet" "~" (at 63.5 30.48 0) 4071 | (effects (font (size 1.27 1.27)) hide) 4072 | ) 4073 | (property "ALT MPN" "" (at 63.5 30.48 0) 4074 | (effects (font (size 1.27 1.27)) hide) 4075 | ) 4076 | (property "ALT Manufacturer" "" (at 63.5 30.48 0) 4077 | (effects (font (size 1.27 1.27)) hide) 4078 | ) 4079 | (property "MPN" "" (at 63.5 30.48 0) 4080 | (effects (font (size 1.27 1.27)) hide) 4081 | ) 4082 | (property "Manufacturer" "" (at 63.5 30.48 0) 4083 | (effects (font (size 1.27 1.27)) hide) 4084 | ) 4085 | (pin "1" (uuid ca60b116-8ec2-44a4-8ed5-9c6b4a4fe758)) 4086 | (pin "2" (uuid b3798763-cd6d-427e-bea5-db01130d3d2f)) 4087 | (instances 4088 | (project "usb_c_cable_tester" 4089 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4090 | (reference "C1") (unit 1) 4091 | ) 4092 | ) 4093 | ) 4094 | ) 4095 | 4096 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 93.98 180) (unit 1) 4097 | (in_bom yes) (on_board yes) (dnp no) 4098 | (uuid 830fc4b3-c8c8-4541-899e-44c199468233) 4099 | (property "Reference" "D15" (at 264.16 91.44 0) 4100 | (effects (font (size 1.27 1.27))) 4101 | ) 4102 | (property "Value" "LED" (at 269.24 91.44 0) 4103 | (effects (font (size 1.27 1.27))) 4104 | ) 4105 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 93.98 90) 4106 | (effects (font (size 1.27 1.27)) hide) 4107 | ) 4108 | (property "Datasheet" "~" (at 266.7 93.98 90) 4109 | (effects (font (size 1.27 1.27)) hide) 4110 | ) 4111 | (property "ALT MPN" "" (at 266.7 93.98 0) 4112 | (effects (font (size 1.27 1.27)) hide) 4113 | ) 4114 | (property "ALT Manufacturer" "" (at 266.7 93.98 0) 4115 | (effects (font (size 1.27 1.27)) hide) 4116 | ) 4117 | (property "MPN" "" (at 266.7 93.98 0) 4118 | (effects (font (size 1.27 1.27)) hide) 4119 | ) 4120 | (property "Manufacturer" "" (at 266.7 93.98 0) 4121 | (effects (font (size 1.27 1.27)) hide) 4122 | ) 4123 | (pin "1" (uuid 7a66bfc9-6d19-444a-ba0c-98564eb6be4b)) 4124 | (pin "2" (uuid 485c258e-0341-4fee-ad33-ed845bc2640d)) 4125 | (instances 4126 | (project "usb_c_cable_tester" 4127 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4128 | (reference "D15") (unit 1) 4129 | ) 4130 | ) 4131 | ) 4132 | ) 4133 | 4134 | (symbol (lib_id "Device:R_Small") (at 254 73.66 90) (unit 1) 4135 | (in_bom yes) (on_board yes) (dnp no) 4136 | (uuid 83b5e150-6986-4773-81b4-ad0368a743ab) 4137 | (property "Reference" "R11" (at 251.46 71.12 90) 4138 | (effects (font (size 1.27 1.27))) 4139 | ) 4140 | (property "Value" "330" (at 256.54 71.12 90) 4141 | (effects (font (size 1.27 1.27))) 4142 | ) 4143 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 73.66 0) 4144 | (effects (font (size 1.27 1.27)) hide) 4145 | ) 4146 | (property "Datasheet" "~" (at 254 73.66 0) 4147 | (effects (font (size 1.27 1.27)) hide) 4148 | ) 4149 | (property "ALT MPN" "" (at 254 73.66 0) 4150 | (effects (font (size 1.27 1.27)) hide) 4151 | ) 4152 | (property "ALT Manufacturer" "" (at 254 73.66 0) 4153 | (effects (font (size 1.27 1.27)) hide) 4154 | ) 4155 | (property "MPN" "" (at 254 73.66 0) 4156 | (effects (font (size 1.27 1.27)) hide) 4157 | ) 4158 | (property "Manufacturer" "" (at 254 73.66 0) 4159 | (effects (font (size 1.27 1.27)) hide) 4160 | ) 4161 | (pin "1" (uuid dc302b89-17c9-4c3d-a17f-3cbfa8433c0c)) 4162 | (pin "2" (uuid fb5b0e01-b835-4653-b599-560baeca0476)) 4163 | (instances 4164 | (project "usb_c_cable_tester" 4165 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4166 | (reference "R11") (unit 1) 4167 | ) 4168 | ) 4169 | ) 4170 | ) 4171 | 4172 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 63.5 180) (unit 1) 4173 | (in_bom yes) (on_board yes) (dnp no) 4174 | (uuid 84d53d5a-5612-419b-8dcc-d54471b28a54) 4175 | (property "Reference" "D9" (at 264.16 60.96 0) 4176 | (effects (font (size 1.27 1.27))) 4177 | ) 4178 | (property "Value" "LED" (at 269.24 60.96 0) 4179 | (effects (font (size 1.27 1.27))) 4180 | ) 4181 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 63.5 90) 4182 | (effects (font (size 1.27 1.27)) hide) 4183 | ) 4184 | (property "Datasheet" "~" (at 266.7 63.5 90) 4185 | (effects (font (size 1.27 1.27)) hide) 4186 | ) 4187 | (property "ALT MPN" "" (at 266.7 63.5 0) 4188 | (effects (font (size 1.27 1.27)) hide) 4189 | ) 4190 | (property "ALT Manufacturer" "" (at 266.7 63.5 0) 4191 | (effects (font (size 1.27 1.27)) hide) 4192 | ) 4193 | (property "MPN" "" (at 266.7 63.5 0) 4194 | (effects (font (size 1.27 1.27)) hide) 4195 | ) 4196 | (property "Manufacturer" "" (at 266.7 63.5 0) 4197 | (effects (font (size 1.27 1.27)) hide) 4198 | ) 4199 | (pin "1" (uuid f05ddf43-1f9a-48a4-bf70-7dc9e0e0825a)) 4200 | (pin "2" (uuid 2f50425d-3563-40fe-8b3c-aec32fa2501c)) 4201 | (instances 4202 | (project "usb_c_cable_tester" 4203 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4204 | (reference "D9") (unit 1) 4205 | ) 4206 | ) 4207 | ) 4208 | ) 4209 | 4210 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 38.1 180) (unit 1) 4211 | (in_bom yes) (on_board yes) (dnp no) 4212 | (uuid 862b4058-2b56-4c05-af66-939ed98de3b9) 4213 | (property "Reference" "D4" (at 264.16 35.56 0) 4214 | (effects (font (size 1.27 1.27))) 4215 | ) 4216 | (property "Value" "LED" (at 269.24 35.56 0) 4217 | (effects (font (size 1.27 1.27))) 4218 | ) 4219 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 38.1 90) 4220 | (effects (font (size 1.27 1.27)) hide) 4221 | ) 4222 | (property "Datasheet" "~" (at 266.7 38.1 90) 4223 | (effects (font (size 1.27 1.27)) hide) 4224 | ) 4225 | (property "ALT MPN" "" (at 266.7 38.1 0) 4226 | (effects (font (size 1.27 1.27)) hide) 4227 | ) 4228 | (property "ALT Manufacturer" "" (at 266.7 38.1 0) 4229 | (effects (font (size 1.27 1.27)) hide) 4230 | ) 4231 | (property "MPN" "" (at 266.7 38.1 0) 4232 | (effects (font (size 1.27 1.27)) hide) 4233 | ) 4234 | (property "Manufacturer" "" (at 266.7 38.1 0) 4235 | (effects (font (size 1.27 1.27)) hide) 4236 | ) 4237 | (pin "1" (uuid e1fceeb4-8faa-4a1d-9837-d0a3da0636df)) 4238 | (pin "2" (uuid f9b67308-ee6f-46c1-8288-6ed8e1459e34)) 4239 | (instances 4240 | (project "usb_c_cable_tester" 4241 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4242 | (reference "D4") (unit 1) 4243 | ) 4244 | ) 4245 | ) 4246 | ) 4247 | 4248 | (symbol (lib_id "Device:R_Small") (at 254 129.54 90) (unit 1) 4249 | (in_bom yes) (on_board yes) (dnp no) 4250 | (uuid 8d1f8c5c-95a6-4774-9703-af3b89bca7ae) 4251 | (property "Reference" "R22" (at 251.46 127 90) 4252 | (effects (font (size 1.27 1.27))) 4253 | ) 4254 | (property "Value" "330" (at 256.54 127 90) 4255 | (effects (font (size 1.27 1.27))) 4256 | ) 4257 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 129.54 0) 4258 | (effects (font (size 1.27 1.27)) hide) 4259 | ) 4260 | (property "Datasheet" "~" (at 254 129.54 0) 4261 | (effects (font (size 1.27 1.27)) hide) 4262 | ) 4263 | (property "ALT MPN" "" (at 254 129.54 0) 4264 | (effects (font (size 1.27 1.27)) hide) 4265 | ) 4266 | (property "ALT Manufacturer" "" (at 254 129.54 0) 4267 | (effects (font (size 1.27 1.27)) hide) 4268 | ) 4269 | (property "MPN" "" (at 254 129.54 0) 4270 | (effects (font (size 1.27 1.27)) hide) 4271 | ) 4272 | (property "Manufacturer" "" (at 254 129.54 0) 4273 | (effects (font (size 1.27 1.27)) hide) 4274 | ) 4275 | (pin "1" (uuid c833f201-7e7a-4ea2-9281-3792aead10f2)) 4276 | (pin "2" (uuid ea21626c-7e6b-436e-a35f-4677d1de1261)) 4277 | (instances 4278 | (project "usb_c_cable_tester" 4279 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4280 | (reference "R22") (unit 1) 4281 | ) 4282 | ) 4283 | ) 4284 | ) 4285 | 4286 | (symbol (lib_id "Device:R_Small") (at 254 63.5 90) (unit 1) 4287 | (in_bom yes) (on_board yes) (dnp no) 4288 | (uuid 8deb4071-9878-4c22-abed-82e2ab260ddd) 4289 | (property "Reference" "R9" (at 251.46 60.96 90) 4290 | (effects (font (size 1.27 1.27))) 4291 | ) 4292 | (property "Value" "330" (at 256.54 60.96 90) 4293 | (effects (font (size 1.27 1.27))) 4294 | ) 4295 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 63.5 0) 4296 | (effects (font (size 1.27 1.27)) hide) 4297 | ) 4298 | (property "Datasheet" "~" (at 254 63.5 0) 4299 | (effects (font (size 1.27 1.27)) hide) 4300 | ) 4301 | (property "ALT MPN" "" (at 254 63.5 0) 4302 | (effects (font (size 1.27 1.27)) hide) 4303 | ) 4304 | (property "ALT Manufacturer" "" (at 254 63.5 0) 4305 | (effects (font (size 1.27 1.27)) hide) 4306 | ) 4307 | (property "MPN" "" (at 254 63.5 0) 4308 | (effects (font (size 1.27 1.27)) hide) 4309 | ) 4310 | (property "Manufacturer" "" (at 254 63.5 0) 4311 | (effects (font (size 1.27 1.27)) hide) 4312 | ) 4313 | (pin "1" (uuid d1add8f0-0966-48b5-a0ff-f750769dffec)) 4314 | (pin "2" (uuid e5949ed2-55de-454e-929e-2918cc858d1c)) 4315 | (instances 4316 | (project "usb_c_cable_tester" 4317 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4318 | (reference "R9") (unit 1) 4319 | ) 4320 | ) 4321 | ) 4322 | ) 4323 | 4324 | (symbol (lib_id "Device:R_Small") (at 254 114.3 90) (unit 1) 4325 | (in_bom yes) (on_board yes) (dnp no) 4326 | (uuid 8f7e178c-6bc8-4f2a-b575-849a9513861c) 4327 | (property "Reference" "R19" (at 251.46 111.76 90) 4328 | (effects (font (size 1.27 1.27))) 4329 | ) 4330 | (property "Value" "330" (at 256.54 111.76 90) 4331 | (effects (font (size 1.27 1.27))) 4332 | ) 4333 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 114.3 0) 4334 | (effects (font (size 1.27 1.27)) hide) 4335 | ) 4336 | (property "Datasheet" "~" (at 254 114.3 0) 4337 | (effects (font (size 1.27 1.27)) hide) 4338 | ) 4339 | (property "ALT MPN" "" (at 254 114.3 0) 4340 | (effects (font (size 1.27 1.27)) hide) 4341 | ) 4342 | (property "ALT Manufacturer" "" (at 254 114.3 0) 4343 | (effects (font (size 1.27 1.27)) hide) 4344 | ) 4345 | (property "MPN" "" (at 254 114.3 0) 4346 | (effects (font (size 1.27 1.27)) hide) 4347 | ) 4348 | (property "Manufacturer" "" (at 254 114.3 0) 4349 | (effects (font (size 1.27 1.27)) hide) 4350 | ) 4351 | (pin "1" (uuid 62944b0d-b6c2-47f1-88ef-9d7d95aed9d4)) 4352 | (pin "2" (uuid e08fd688-28c4-4925-b15a-f72a003457ee)) 4353 | (instances 4354 | (project "usb_c_cable_tester" 4355 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4356 | (reference "R19") (unit 1) 4357 | ) 4358 | ) 4359 | ) 4360 | ) 4361 | 4362 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 104.14 180) (unit 1) 4363 | (in_bom yes) (on_board yes) (dnp no) 4364 | (uuid 91cc2205-18a8-4ce7-bb31-53775b8466ef) 4365 | (property "Reference" "D17" (at 264.16 101.6 0) 4366 | (effects (font (size 1.27 1.27))) 4367 | ) 4368 | (property "Value" "LED" (at 269.24 101.6 0) 4369 | (effects (font (size 1.27 1.27))) 4370 | ) 4371 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 104.14 90) 4372 | (effects (font (size 1.27 1.27)) hide) 4373 | ) 4374 | (property "Datasheet" "~" (at 266.7 104.14 90) 4375 | (effects (font (size 1.27 1.27)) hide) 4376 | ) 4377 | (property "ALT MPN" "" (at 266.7 104.14 0) 4378 | (effects (font (size 1.27 1.27)) hide) 4379 | ) 4380 | (property "ALT Manufacturer" "" (at 266.7 104.14 0) 4381 | (effects (font (size 1.27 1.27)) hide) 4382 | ) 4383 | (property "MPN" "" (at 266.7 104.14 0) 4384 | (effects (font (size 1.27 1.27)) hide) 4385 | ) 4386 | (property "Manufacturer" "" (at 266.7 104.14 0) 4387 | (effects (font (size 1.27 1.27)) hide) 4388 | ) 4389 | (pin "1" (uuid b7892739-6401-4627-946b-d156ac397dc3)) 4390 | (pin "2" (uuid dabe0bed-b3c9-4b4a-b1d5-b7807288c7b0)) 4391 | (instances 4392 | (project "usb_c_cable_tester" 4393 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4394 | (reference "D17") (unit 1) 4395 | ) 4396 | ) 4397 | ) 4398 | ) 4399 | 4400 | (symbol (lib_id "Device:R_Small") (at 254 48.26 90) (unit 1) 4401 | (in_bom yes) (on_board yes) (dnp no) 4402 | (uuid 9513f2f0-97a3-4eb4-915b-9a00c2089fe8) 4403 | (property "Reference" "R6" (at 251.46 45.72 90) 4404 | (effects (font (size 1.27 1.27))) 4405 | ) 4406 | (property "Value" "330" (at 256.54 45.72 90) 4407 | (effects (font (size 1.27 1.27))) 4408 | ) 4409 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 48.26 0) 4410 | (effects (font (size 1.27 1.27)) hide) 4411 | ) 4412 | (property "Datasheet" "~" (at 254 48.26 0) 4413 | (effects (font (size 1.27 1.27)) hide) 4414 | ) 4415 | (property "ALT MPN" "" (at 254 48.26 0) 4416 | (effects (font (size 1.27 1.27)) hide) 4417 | ) 4418 | (property "ALT Manufacturer" "" (at 254 48.26 0) 4419 | (effects (font (size 1.27 1.27)) hide) 4420 | ) 4421 | (property "MPN" "" (at 254 48.26 0) 4422 | (effects (font (size 1.27 1.27)) hide) 4423 | ) 4424 | (property "Manufacturer" "" (at 254 48.26 0) 4425 | (effects (font (size 1.27 1.27)) hide) 4426 | ) 4427 | (pin "1" (uuid b54a38d7-3a90-48ef-8342-ec0c2a34db43)) 4428 | (pin "2" (uuid f8dc11b9-33e5-43f1-90c6-ff6e1f4c894f)) 4429 | (instances 4430 | (project "usb_c_cable_tester" 4431 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4432 | (reference "R6") (unit 1) 4433 | ) 4434 | ) 4435 | ) 4436 | ) 4437 | 4438 | (symbol (lib_id "Device:R_Small") (at 254 144.78 90) (unit 1) 4439 | (in_bom yes) (on_board yes) (dnp no) 4440 | (uuid 95d741f8-ad0c-498f-9a85-a90081e3c767) 4441 | (property "Reference" "R25" (at 251.46 142.24 90) 4442 | (effects (font (size 1.27 1.27))) 4443 | ) 4444 | (property "Value" "330" (at 256.54 142.24 90) 4445 | (effects (font (size 1.27 1.27))) 4446 | ) 4447 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 144.78 0) 4448 | (effects (font (size 1.27 1.27)) hide) 4449 | ) 4450 | (property "Datasheet" "~" (at 254 144.78 0) 4451 | (effects (font (size 1.27 1.27)) hide) 4452 | ) 4453 | (property "ALT MPN" "" (at 254 144.78 0) 4454 | (effects (font (size 1.27 1.27)) hide) 4455 | ) 4456 | (property "ALT Manufacturer" "" (at 254 144.78 0) 4457 | (effects (font (size 1.27 1.27)) hide) 4458 | ) 4459 | (property "MPN" "" (at 254 144.78 0) 4460 | (effects (font (size 1.27 1.27)) hide) 4461 | ) 4462 | (property "Manufacturer" "" (at 254 144.78 0) 4463 | (effects (font (size 1.27 1.27)) hide) 4464 | ) 4465 | (pin "1" (uuid 88d61552-8480-4133-ad4c-8d74180e52f7)) 4466 | (pin "2" (uuid b5a65f7c-75f5-42a4-ad75-f5964d13a0ef)) 4467 | (instances 4468 | (project "usb_c_cable_tester" 4469 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4470 | (reference "R25") (unit 1) 4471 | ) 4472 | ) 4473 | ) 4474 | ) 4475 | 4476 | (symbol (lib_id "Device:R_Small") (at 254 27.94 90) (unit 1) 4477 | (in_bom yes) (on_board yes) (dnp no) 4478 | (uuid 99046d49-0381-40d7-a1f4-915e4f6a1c94) 4479 | (property "Reference" "R2" (at 251.46 25.4 90) 4480 | (effects (font (size 1.27 1.27))) 4481 | ) 4482 | (property "Value" "330" (at 256.54 25.4 90) 4483 | (effects (font (size 1.27 1.27))) 4484 | ) 4485 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 27.94 0) 4486 | (effects (font (size 1.27 1.27)) hide) 4487 | ) 4488 | (property "Datasheet" "~" (at 254 27.94 0) 4489 | (effects (font (size 1.27 1.27)) hide) 4490 | ) 4491 | (property "ALT MPN" "" (at 254 27.94 0) 4492 | (effects (font (size 1.27 1.27)) hide) 4493 | ) 4494 | (property "ALT Manufacturer" "" (at 254 27.94 0) 4495 | (effects (font (size 1.27 1.27)) hide) 4496 | ) 4497 | (property "MPN" "" (at 254 27.94 0) 4498 | (effects (font (size 1.27 1.27)) hide) 4499 | ) 4500 | (property "Manufacturer" "" (at 254 27.94 0) 4501 | (effects (font (size 1.27 1.27)) hide) 4502 | ) 4503 | (pin "1" (uuid ad3410ba-9ef9-45c3-b374-bb6ae0453ce7)) 4504 | (pin "2" (uuid ee0f876c-f337-4bd5-a3e8-d45e0b1340fe)) 4505 | (instances 4506 | (project "usb_c_cable_tester" 4507 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4508 | (reference "R2") (unit 1) 4509 | ) 4510 | ) 4511 | ) 4512 | ) 4513 | 4514 | (symbol (lib_id "Device:R_Small") (at 254 88.9 90) (unit 1) 4515 | (in_bom yes) (on_board yes) (dnp no) 4516 | (uuid 9d7caa71-215b-46c2-9d5e-06a9393b9039) 4517 | (property "Reference" "R14" (at 251.46 86.36 90) 4518 | (effects (font (size 1.27 1.27))) 4519 | ) 4520 | (property "Value" "330" (at 256.54 86.36 90) 4521 | (effects (font (size 1.27 1.27))) 4522 | ) 4523 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 88.9 0) 4524 | (effects (font (size 1.27 1.27)) hide) 4525 | ) 4526 | (property "Datasheet" "~" (at 254 88.9 0) 4527 | (effects (font (size 1.27 1.27)) hide) 4528 | ) 4529 | (property "ALT MPN" "" (at 254 88.9 0) 4530 | (effects (font (size 1.27 1.27)) hide) 4531 | ) 4532 | (property "ALT Manufacturer" "" (at 254 88.9 0) 4533 | (effects (font (size 1.27 1.27)) hide) 4534 | ) 4535 | (property "MPN" "" (at 254 88.9 0) 4536 | (effects (font (size 1.27 1.27)) hide) 4537 | ) 4538 | (property "Manufacturer" "" (at 254 88.9 0) 4539 | (effects (font (size 1.27 1.27)) hide) 4540 | ) 4541 | (pin "1" (uuid 523b9153-b2af-4ed1-a824-f592b7d37a8b)) 4542 | (pin "2" (uuid aeb7f955-22fc-452d-9a1b-3665d0379f54)) 4543 | (instances 4544 | (project "usb_c_cable_tester" 4545 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4546 | (reference "R14") (unit 1) 4547 | ) 4548 | ) 4549 | ) 4550 | ) 4551 | 4552 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 33.02 180) (unit 1) 4553 | (in_bom yes) (on_board yes) (dnp no) 4554 | (uuid a6aded3a-7cb3-4639-acbb-934a2f4a0bcc) 4555 | (property "Reference" "D3" (at 264.16 30.48 0) 4556 | (effects (font (size 1.27 1.27))) 4557 | ) 4558 | (property "Value" "LED" (at 269.24 30.48 0) 4559 | (effects (font (size 1.27 1.27))) 4560 | ) 4561 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 33.02 90) 4562 | (effects (font (size 1.27 1.27)) hide) 4563 | ) 4564 | (property "Datasheet" "~" (at 266.7 33.02 90) 4565 | (effects (font (size 1.27 1.27)) hide) 4566 | ) 4567 | (property "ALT MPN" "" (at 266.7 33.02 0) 4568 | (effects (font (size 1.27 1.27)) hide) 4569 | ) 4570 | (property "ALT Manufacturer" "" (at 266.7 33.02 0) 4571 | (effects (font (size 1.27 1.27)) hide) 4572 | ) 4573 | (property "MPN" "" (at 266.7 33.02 0) 4574 | (effects (font (size 1.27 1.27)) hide) 4575 | ) 4576 | (property "Manufacturer" "" (at 266.7 33.02 0) 4577 | (effects (font (size 1.27 1.27)) hide) 4578 | ) 4579 | (pin "1" (uuid 2c4ee2d0-02f3-4125-aa96-b4567e284975)) 4580 | (pin "2" (uuid acdda79d-073a-4353-841a-62f537be703d)) 4581 | (instances 4582 | (project "usb_c_cable_tester" 4583 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4584 | (reference "D3") (unit 1) 4585 | ) 4586 | ) 4587 | ) 4588 | ) 4589 | 4590 | (symbol (lib_id "Connector:USB3_B") (at 109.22 137.16 0) (mirror y) (unit 1) 4591 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 4592 | (uuid b4099b3f-0cf0-4838-ac53-3d8dc116facd) 4593 | (property "Reference" "J4" (at 120.65 136.5249 0) 4594 | (effects (font (size 1.27 1.27)) (justify right)) 4595 | ) 4596 | (property "Value" "USB3_B" (at 120.65 139.0649 0) 4597 | (effects (font (size 1.27 1.27)) (justify right)) 4598 | ) 4599 | (property "Footprint" "snapeda:AMPHENOL_GSB3211311WEU" (at 105.41 134.62 0) 4600 | (effects (font (size 1.27 1.27)) hide) 4601 | ) 4602 | (property "Datasheet" "~" (at 105.41 134.62 0) 4603 | (effects (font (size 1.27 1.27)) hide) 4604 | ) 4605 | (property "ALT MPN" "E8199-030-03" (at 109.22 137.16 0) 4606 | (effects (font (size 1.27 1.27)) hide) 4607 | ) 4608 | (property "ALT Manufacturer" "Pulse Electronics" (at 109.22 137.16 0) 4609 | (effects (font (size 1.27 1.27)) hide) 4610 | ) 4611 | (property "MPN" "GSB3211311WEU" (at 109.22 137.16 0) 4612 | (effects (font (size 1.27 1.27)) hide) 4613 | ) 4614 | (property "Manufacturer" "Amphenol ICC" (at 109.22 137.16 0) 4615 | (effects (font (size 1.27 1.27)) hide) 4616 | ) 4617 | (pin "1" (uuid 7f199aec-0451-4ddc-a11f-71dca1ba7109)) 4618 | (pin "10" (uuid ac43817c-6bb5-4006-9ea9-8ffdc5c92dd1)) 4619 | (pin "2" (uuid 990e9faf-0487-4fbd-868f-d460e7f82cbe)) 4620 | (pin "3" (uuid 856ec71d-2e89-449d-a663-611ebc6d8981)) 4621 | (pin "4" (uuid ea4e7a01-702d-46ae-98f0-f9453175575e)) 4622 | (pin "5" (uuid d024d609-b6ed-4f32-9e1d-f1b08917e3a4)) 4623 | (pin "6" (uuid 39a11f17-727a-4f06-b70a-eb1188732881)) 4624 | (pin "7" (uuid 090e2f78-cc2d-4136-aec0-1085e549ab77)) 4625 | (pin "8" (uuid e46bc6fb-76ec-4de1-ade8-77e1f11e1f1f)) 4626 | (pin "9" (uuid e2f7272d-2c54-4642-9609-4460659a3d5f)) 4627 | (instances 4628 | (project "usb_c_cable_tester" 4629 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4630 | (reference "J4") (unit 1) 4631 | ) 4632 | ) 4633 | ) 4634 | ) 4635 | 4636 | (symbol (lib_id "Connector:USB3_A") (at 167.64 129.54 0) (unit 1) 4637 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 4638 | (uuid b8430f2e-80e1-4828-b349-58736b72500f) 4639 | (property "Reference" "J6" (at 167.64 110.49 0) 4640 | (effects (font (size 1.27 1.27))) 4641 | ) 4642 | (property "Value" "USB3_A" (at 167.64 113.03 0) 4643 | (effects (font (size 1.27 1.27))) 4644 | ) 4645 | (property "Footprint" "snapeda:AMPHENOL_GSB311131HR" (at 171.45 127 0) 4646 | (effects (font (size 1.27 1.27)) hide) 4647 | ) 4648 | (property "Datasheet" "~" (at 171.45 127 0) 4649 | (effects (font (size 1.27 1.27)) hide) 4650 | ) 4651 | (property "ALT MPN" "SS-52000-001" (at 167.64 129.54 0) 4652 | (effects (font (size 1.27 1.27)) hide) 4653 | ) 4654 | (property "ALT Manufacturer" "Stewart Connector" (at 167.64 129.54 0) 4655 | (effects (font (size 1.27 1.27)) hide) 4656 | ) 4657 | (property "MPN" "GSB311131HR" (at 167.64 129.54 0) 4658 | (effects (font (size 1.27 1.27)) hide) 4659 | ) 4660 | (property "Manufacturer" "Amphenol ICC" (at 167.64 129.54 0) 4661 | (effects (font (size 1.27 1.27)) hide) 4662 | ) 4663 | (pin "1" (uuid 0159a3cc-2427-4ecf-9536-413ad70ee83b)) 4664 | (pin "10" (uuid 71841a69-e645-4f39-bc83-600fe0dbd858)) 4665 | (pin "2" (uuid f9be0c78-985d-4c03-91c2-563123b08716)) 4666 | (pin "3" (uuid 273bcd24-3ddc-4e07-9521-17810cb312ce)) 4667 | (pin "4" (uuid db8be821-b6a6-43ff-bd17-5c6c1f70fd5a)) 4668 | (pin "5" (uuid 8989e25f-10b7-4d68-8d0e-ab657869228b)) 4669 | (pin "6" (uuid 91ede8b5-d158-4176-82c9-ac94b58c4680)) 4670 | (pin "7" (uuid 75258332-c742-4720-bbb4-bffb21a3a68f)) 4671 | (pin "8" (uuid 341c086b-ddc6-4f5d-99f6-e7d72f0b61ca)) 4672 | (pin "9" (uuid 001f00f5-abab-47bb-a31b-f5850f45e7ad)) 4673 | (instances 4674 | (project "usb_c_cable_tester" 4675 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4676 | (reference "J6") (unit 1) 4677 | ) 4678 | ) 4679 | ) 4680 | ) 4681 | 4682 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 119.38 180) (unit 1) 4683 | (in_bom yes) (on_board yes) (dnp no) 4684 | (uuid bfb19bb8-9263-4477-a9ff-7bb3076f3196) 4685 | (property "Reference" "D20" (at 264.16 116.84 0) 4686 | (effects (font (size 1.27 1.27))) 4687 | ) 4688 | (property "Value" "LED" (at 269.24 116.84 0) 4689 | (effects (font (size 1.27 1.27))) 4690 | ) 4691 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 119.38 90) 4692 | (effects (font (size 1.27 1.27)) hide) 4693 | ) 4694 | (property "Datasheet" "~" (at 266.7 119.38 90) 4695 | (effects (font (size 1.27 1.27)) hide) 4696 | ) 4697 | (property "ALT MPN" "" (at 266.7 119.38 0) 4698 | (effects (font (size 1.27 1.27)) hide) 4699 | ) 4700 | (property "ALT Manufacturer" "" (at 266.7 119.38 0) 4701 | (effects (font (size 1.27 1.27)) hide) 4702 | ) 4703 | (property "MPN" "" (at 266.7 119.38 0) 4704 | (effects (font (size 1.27 1.27)) hide) 4705 | ) 4706 | (property "Manufacturer" "" (at 266.7 119.38 0) 4707 | (effects (font (size 1.27 1.27)) hide) 4708 | ) 4709 | (pin "1" (uuid c6582150-6124-4a78-a623-7917f01a8425)) 4710 | (pin "2" (uuid cca81731-7e84-41ba-97ac-e3dc78ad98d7)) 4711 | (instances 4712 | (project "usb_c_cable_tester" 4713 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4714 | (reference "D20") (unit 1) 4715 | ) 4716 | ) 4717 | ) 4718 | ) 4719 | 4720 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 139.7 180) (unit 1) 4721 | (in_bom yes) (on_board yes) (dnp no) 4722 | (uuid c3dbf29e-1663-4f74-8e9a-d8c615b3cf29) 4723 | (property "Reference" "D24" (at 264.16 137.16 0) 4724 | (effects (font (size 1.27 1.27))) 4725 | ) 4726 | (property "Value" "LED" (at 269.24 137.16 0) 4727 | (effects (font (size 1.27 1.27))) 4728 | ) 4729 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 139.7 90) 4730 | (effects (font (size 1.27 1.27)) hide) 4731 | ) 4732 | (property "Datasheet" "~" (at 266.7 139.7 90) 4733 | (effects (font (size 1.27 1.27)) hide) 4734 | ) 4735 | (property "ALT MPN" "" (at 266.7 139.7 0) 4736 | (effects (font (size 1.27 1.27)) hide) 4737 | ) 4738 | (property "ALT Manufacturer" "" (at 266.7 139.7 0) 4739 | (effects (font (size 1.27 1.27)) hide) 4740 | ) 4741 | (property "MPN" "" (at 266.7 139.7 0) 4742 | (effects (font (size 1.27 1.27)) hide) 4743 | ) 4744 | (property "Manufacturer" "" (at 266.7 139.7 0) 4745 | (effects (font (size 1.27 1.27)) hide) 4746 | ) 4747 | (pin "1" (uuid 0abd5310-8136-475f-8c31-4938a812173b)) 4748 | (pin "2" (uuid 58b65cf5-9b45-442f-8919-4a218c53cc41)) 4749 | (instances 4750 | (project "usb_c_cable_tester" 4751 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4752 | (reference "D24") (unit 1) 4753 | ) 4754 | ) 4755 | ) 4756 | ) 4757 | 4758 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 27.94 180) (unit 1) 4759 | (in_bom yes) (on_board yes) (dnp no) 4760 | (uuid c85a36db-388a-43c9-8f79-74b8d5a7d9b1) 4761 | (property "Reference" "D2" (at 264.16 25.4 0) 4762 | (effects (font (size 1.27 1.27))) 4763 | ) 4764 | (property "Value" "LED" (at 269.24 25.4 0) 4765 | (effects (font (size 1.27 1.27))) 4766 | ) 4767 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 27.94 90) 4768 | (effects (font (size 1.27 1.27)) hide) 4769 | ) 4770 | (property "Datasheet" "~" (at 266.7 27.94 90) 4771 | (effects (font (size 1.27 1.27)) hide) 4772 | ) 4773 | (property "ALT MPN" "" (at 266.7 27.94 0) 4774 | (effects (font (size 1.27 1.27)) hide) 4775 | ) 4776 | (property "ALT Manufacturer" "" (at 266.7 27.94 0) 4777 | (effects (font (size 1.27 1.27)) hide) 4778 | ) 4779 | (property "MPN" "" (at 266.7 27.94 0) 4780 | (effects (font (size 1.27 1.27)) hide) 4781 | ) 4782 | (property "Manufacturer" "" (at 266.7 27.94 0) 4783 | (effects (font (size 1.27 1.27)) hide) 4784 | ) 4785 | (pin "1" (uuid b3955c7e-0299-4920-9b5a-3783ea655d02)) 4786 | (pin "2" (uuid 2c0994d5-bd98-4734-aa0a-f102a96c7a0c)) 4787 | (instances 4788 | (project "usb_c_cable_tester" 4789 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4790 | (reference "D2") (unit 1) 4791 | ) 4792 | ) 4793 | ) 4794 | ) 4795 | 4796 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 48.26 180) (unit 1) 4797 | (in_bom yes) (on_board yes) (dnp no) 4798 | (uuid d1cb9b3b-9e46-4a76-a70f-1bc61d6b6b2b) 4799 | (property "Reference" "D6" (at 264.16 45.72 0) 4800 | (effects (font (size 1.27 1.27))) 4801 | ) 4802 | (property "Value" "LED" (at 269.24 45.72 0) 4803 | (effects (font (size 1.27 1.27))) 4804 | ) 4805 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 48.26 90) 4806 | (effects (font (size 1.27 1.27)) hide) 4807 | ) 4808 | (property "Datasheet" "~" (at 266.7 48.26 90) 4809 | (effects (font (size 1.27 1.27)) hide) 4810 | ) 4811 | (property "ALT MPN" "" (at 266.7 48.26 0) 4812 | (effects (font (size 1.27 1.27)) hide) 4813 | ) 4814 | (property "ALT Manufacturer" "" (at 266.7 48.26 0) 4815 | (effects (font (size 1.27 1.27)) hide) 4816 | ) 4817 | (property "MPN" "" (at 266.7 48.26 0) 4818 | (effects (font (size 1.27 1.27)) hide) 4819 | ) 4820 | (property "Manufacturer" "" (at 266.7 48.26 0) 4821 | (effects (font (size 1.27 1.27)) hide) 4822 | ) 4823 | (pin "1" (uuid bdc6a444-e439-41d8-a0e2-8c9a3e43294e)) 4824 | (pin "2" (uuid 25143af7-9190-4874-bdfb-ade5248741ea)) 4825 | (instances 4826 | (project "usb_c_cable_tester" 4827 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4828 | (reference "D6") (unit 1) 4829 | ) 4830 | ) 4831 | ) 4832 | ) 4833 | 4834 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 144.78 180) (unit 1) 4835 | (in_bom yes) (on_board yes) (dnp no) 4836 | (uuid d5db0388-aeaf-4171-9b55-e7911f3685e8) 4837 | (property "Reference" "D25" (at 264.16 142.24 0) 4838 | (effects (font (size 1.27 1.27))) 4839 | ) 4840 | (property "Value" "LED" (at 269.24 142.24 0) 4841 | (effects (font (size 1.27 1.27))) 4842 | ) 4843 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 144.78 90) 4844 | (effects (font (size 1.27 1.27)) hide) 4845 | ) 4846 | (property "Datasheet" "~" (at 266.7 144.78 90) 4847 | (effects (font (size 1.27 1.27)) hide) 4848 | ) 4849 | (property "ALT MPN" "" (at 266.7 144.78 0) 4850 | (effects (font (size 1.27 1.27)) hide) 4851 | ) 4852 | (property "ALT Manufacturer" "" (at 266.7 144.78 0) 4853 | (effects (font (size 1.27 1.27)) hide) 4854 | ) 4855 | (property "MPN" "" (at 266.7 144.78 0) 4856 | (effects (font (size 1.27 1.27)) hide) 4857 | ) 4858 | (property "Manufacturer" "" (at 266.7 144.78 0) 4859 | (effects (font (size 1.27 1.27)) hide) 4860 | ) 4861 | (pin "1" (uuid d638fdaa-40f9-437d-a6d5-68758f2754a2)) 4862 | (pin "2" (uuid 5d0c620b-831f-4a70-9de7-2072b23e80d9)) 4863 | (instances 4864 | (project "usb_c_cable_tester" 4865 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4866 | (reference "D25") (unit 1) 4867 | ) 4868 | ) 4869 | ) 4870 | ) 4871 | 4872 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 134.62 180) (unit 1) 4873 | (in_bom yes) (on_board yes) (dnp no) 4874 | (uuid d6481ad3-f66b-4198-93ad-3ecd626d3473) 4875 | (property "Reference" "D23" (at 264.16 132.08 0) 4876 | (effects (font (size 1.27 1.27))) 4877 | ) 4878 | (property "Value" "LED" (at 269.24 132.08 0) 4879 | (effects (font (size 1.27 1.27))) 4880 | ) 4881 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 134.62 90) 4882 | (effects (font (size 1.27 1.27)) hide) 4883 | ) 4884 | (property "Datasheet" "~" (at 266.7 134.62 90) 4885 | (effects (font (size 1.27 1.27)) hide) 4886 | ) 4887 | (property "ALT MPN" "" (at 266.7 134.62 0) 4888 | (effects (font (size 1.27 1.27)) hide) 4889 | ) 4890 | (property "ALT Manufacturer" "" (at 266.7 134.62 0) 4891 | (effects (font (size 1.27 1.27)) hide) 4892 | ) 4893 | (property "MPN" "" (at 266.7 134.62 0) 4894 | (effects (font (size 1.27 1.27)) hide) 4895 | ) 4896 | (property "Manufacturer" "" (at 266.7 134.62 0) 4897 | (effects (font (size 1.27 1.27)) hide) 4898 | ) 4899 | (pin "1" (uuid db31ef23-a9a7-483e-a457-2a5c84bafaba)) 4900 | (pin "2" (uuid 0ff3de62-6fbd-4ad7-ad15-3f776e5a6cce)) 4901 | (instances 4902 | (project "usb_c_cable_tester" 4903 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4904 | (reference "D23") (unit 1) 4905 | ) 4906 | ) 4907 | ) 4908 | ) 4909 | 4910 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 88.9 180) (unit 1) 4911 | (in_bom yes) (on_board yes) (dnp no) 4912 | (uuid dec1520a-d29e-404a-819f-87e37c065e6e) 4913 | (property "Reference" "D14" (at 264.16 86.36 0) 4914 | (effects (font (size 1.27 1.27))) 4915 | ) 4916 | (property "Value" "LED" (at 269.24 86.36 0) 4917 | (effects (font (size 1.27 1.27))) 4918 | ) 4919 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 88.9 90) 4920 | (effects (font (size 1.27 1.27)) hide) 4921 | ) 4922 | (property "Datasheet" "~" (at 266.7 88.9 90) 4923 | (effects (font (size 1.27 1.27)) hide) 4924 | ) 4925 | (property "ALT MPN" "" (at 266.7 88.9 0) 4926 | (effects (font (size 1.27 1.27)) hide) 4927 | ) 4928 | (property "ALT Manufacturer" "" (at 266.7 88.9 0) 4929 | (effects (font (size 1.27 1.27)) hide) 4930 | ) 4931 | (property "MPN" "" (at 266.7 88.9 0) 4932 | (effects (font (size 1.27 1.27)) hide) 4933 | ) 4934 | (property "Manufacturer" "" (at 266.7 88.9 0) 4935 | (effects (font (size 1.27 1.27)) hide) 4936 | ) 4937 | (pin "1" (uuid 75ba037f-78dc-4f7e-afd4-444206312183)) 4938 | (pin "2" (uuid e4bd51f9-8ca7-425e-a021-299fce3315c2)) 4939 | (instances 4940 | (project "usb_c_cable_tester" 4941 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4942 | (reference "D14") (unit 1) 4943 | ) 4944 | ) 4945 | ) 4946 | ) 4947 | 4948 | (symbol (lib_id "Device:R_Small") (at 254 134.62 90) (unit 1) 4949 | (in_bom yes) (on_board yes) (dnp no) 4950 | (uuid df49efc1-817f-4147-99c0-389352938b3c) 4951 | (property "Reference" "R23" (at 251.46 132.08 90) 4952 | (effects (font (size 1.27 1.27))) 4953 | ) 4954 | (property "Value" "330" (at 256.54 132.08 90) 4955 | (effects (font (size 1.27 1.27))) 4956 | ) 4957 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 134.62 0) 4958 | (effects (font (size 1.27 1.27)) hide) 4959 | ) 4960 | (property "Datasheet" "~" (at 254 134.62 0) 4961 | (effects (font (size 1.27 1.27)) hide) 4962 | ) 4963 | (property "ALT MPN" "" (at 254 134.62 0) 4964 | (effects (font (size 1.27 1.27)) hide) 4965 | ) 4966 | (property "ALT Manufacturer" "" (at 254 134.62 0) 4967 | (effects (font (size 1.27 1.27)) hide) 4968 | ) 4969 | (property "MPN" "" (at 254 134.62 0) 4970 | (effects (font (size 1.27 1.27)) hide) 4971 | ) 4972 | (property "Manufacturer" "" (at 254 134.62 0) 4973 | (effects (font (size 1.27 1.27)) hide) 4974 | ) 4975 | (pin "1" (uuid 1272485c-b608-4cda-b914-197a1d399c23)) 4976 | (pin "2" (uuid 4d20f7f9-a38e-42e3-88d8-596c368ea007)) 4977 | (instances 4978 | (project "usb_c_cable_tester" 4979 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 4980 | (reference "R23") (unit 1) 4981 | ) 4982 | ) 4983 | ) 4984 | ) 4985 | 4986 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 83.82 180) (unit 1) 4987 | (in_bom yes) (on_board yes) (dnp no) 4988 | (uuid eab886bf-ac18-4dab-9aac-7da4f212e2e5) 4989 | (property "Reference" "D13" (at 264.16 81.28 0) 4990 | (effects (font (size 1.27 1.27))) 4991 | ) 4992 | (property "Value" "LED" (at 269.24 81.28 0) 4993 | (effects (font (size 1.27 1.27))) 4994 | ) 4995 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 83.82 90) 4996 | (effects (font (size 1.27 1.27)) hide) 4997 | ) 4998 | (property "Datasheet" "~" (at 266.7 83.82 90) 4999 | (effects (font (size 1.27 1.27)) hide) 5000 | ) 5001 | (property "ALT MPN" "" (at 266.7 83.82 0) 5002 | (effects (font (size 1.27 1.27)) hide) 5003 | ) 5004 | (property "ALT Manufacturer" "" (at 266.7 83.82 0) 5005 | (effects (font (size 1.27 1.27)) hide) 5006 | ) 5007 | (property "MPN" "" (at 266.7 83.82 0) 5008 | (effects (font (size 1.27 1.27)) hide) 5009 | ) 5010 | (property "Manufacturer" "" (at 266.7 83.82 0) 5011 | (effects (font (size 1.27 1.27)) hide) 5012 | ) 5013 | (pin "1" (uuid 51217c51-9781-458b-bb6f-ad8cf0e82188)) 5014 | (pin "2" (uuid 6045cd84-ea90-4d57-9f8f-fd28bcaf8ae6)) 5015 | (instances 5016 | (project "usb_c_cable_tester" 5017 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5018 | (reference "D13") (unit 1) 5019 | ) 5020 | ) 5021 | ) 5022 | ) 5023 | 5024 | (symbol (lib_name "USB_C_Receptacle_2") (lib_id "Connector:USB_C_Receptacle") (at 172.72 48.26 0) (unit 1) 5025 | (in_bom yes) (on_board yes) (dnp no) 5026 | (uuid eaeeaeca-220f-4ee1-a929-865eca6376f5) 5027 | (property "Reference" "J2" (at 172.72 15.24 0) 5028 | (effects (font (size 1.27 1.27)) (justify right)) 5029 | ) 5030 | (property "Value" "USB_C_Receptacle" (at 180.34 17.78 0) 5031 | (effects (font (size 1.27 1.27)) (justify right)) 5032 | ) 5033 | (property "Footprint" "snapeda:BELFUSE_SS-52400-003" (at 165.1 96.52 0) 5034 | (effects (font (size 1.27 1.27)) hide) 5035 | ) 5036 | (property "Datasheet" "" (at 170.18 99.06 0) 5037 | (effects (font (size 1.27 1.27)) hide) 5038 | ) 5039 | (property "ALT MPN" "" (at 172.72 48.26 0) 5040 | (effects (font (size 1.27 1.27)) hide) 5041 | ) 5042 | (property "ALT Manufacturer" "" (at 172.72 48.26 0) 5043 | (effects (font (size 1.27 1.27)) hide) 5044 | ) 5045 | (property "MPN" "SS-52400-003" (at 172.72 48.26 0) 5046 | (effects (font (size 1.27 1.27)) hide) 5047 | ) 5048 | (property "Manufacturer" "Stewart Connector" (at 172.72 48.26 0) 5049 | (effects (font (size 1.27 1.27)) hide) 5050 | ) 5051 | (pin "A1" (uuid 3a65dc8c-de21-4797-993d-88c91843640a)) 5052 | (pin "A10" (uuid 3a6dc1d4-e102-4c68-a387-5ea11414d8a1)) 5053 | (pin "A11" (uuid 4a72ef73-4e7f-47a0-aa68-24d73643876f)) 5054 | (pin "A12" (uuid 5ba929c6-c21a-4ec1-bb8c-c511e44dfe13)) 5055 | (pin "A2" (uuid 2b03c7d8-a62c-48e5-a520-1e40f61ceb9a)) 5056 | (pin "A3" (uuid 5cb5ad85-bd0a-4382-8198-c1dcfd62c21f)) 5057 | (pin "A4" (uuid 05aa209c-0061-4492-9d16-57bc9f7f6f25)) 5058 | (pin "A5" (uuid 74711bf3-0031-4743-be26-99a9acfa2650)) 5059 | (pin "A6" (uuid 326f5119-3288-4df6-ba40-e4f95ac05032)) 5060 | (pin "A7" (uuid e6cf0c2e-7f71-4639-99cd-f31b5e69edaf)) 5061 | (pin "A8" (uuid 96ce748a-7bdc-4bc4-bd54-e9e5764de97f)) 5062 | (pin "A9" (uuid 4e88c8b1-5488-4efa-b24e-349a3c1988f5)) 5063 | (pin "B1" (uuid c077729b-3213-4421-b0af-8b506bdec9e3)) 5064 | (pin "B10" (uuid f938adfe-bc5e-4b5b-8e0d-b83b98175b77)) 5065 | (pin "B11" (uuid 1fa4cb37-acdb-43ee-a2cc-0eca0700a0b0)) 5066 | (pin "B12" (uuid e342e3f1-ea58-444a-b219-9d8d1427d54f)) 5067 | (pin "B2" (uuid 7a943102-bf65-497b-9bba-d762bcd5e376)) 5068 | (pin "B3" (uuid d77b3c3f-c4d8-4a6e-a0f2-a230e3ac4389)) 5069 | (pin "B4" (uuid 1b38aa1b-76b4-4641-9d49-64ed9abbe602)) 5070 | (pin "B5" (uuid 636ac63d-a0af-4b42-ae98-0ec47d0ea0c6)) 5071 | (pin "B6" (uuid 55017cfe-35f3-42a7-8f5d-8caa0a7f6229)) 5072 | (pin "B7" (uuid 665f79cb-d86c-4295-a717-de5703162fed)) 5073 | (pin "B8" (uuid 81ab0e69-8af1-49c9-87a8-2097687b4a5c)) 5074 | (pin "B9" (uuid 9a85c801-ca9c-4602-b6dd-c681bb2a1a15)) 5075 | (pin "S1" (uuid ffffac69-be48-4885-945d-d51f14204c10)) 5076 | (instances 5077 | (project "usb_c_cable_tester" 5078 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5079 | (reference "J2") (unit 1) 5080 | ) 5081 | ) 5082 | ) 5083 | ) 5084 | 5085 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 129.54 180) (unit 1) 5086 | (in_bom yes) (on_board yes) (dnp no) 5087 | (uuid ecd7726a-889d-4eb3-af76-ca8908c0a832) 5088 | (property "Reference" "D22" (at 264.16 127 0) 5089 | (effects (font (size 1.27 1.27))) 5090 | ) 5091 | (property "Value" "LED" (at 269.24 127 0) 5092 | (effects (font (size 1.27 1.27))) 5093 | ) 5094 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 129.54 90) 5095 | (effects (font (size 1.27 1.27)) hide) 5096 | ) 5097 | (property "Datasheet" "~" (at 266.7 129.54 90) 5098 | (effects (font (size 1.27 1.27)) hide) 5099 | ) 5100 | (property "ALT MPN" "" (at 266.7 129.54 0) 5101 | (effects (font (size 1.27 1.27)) hide) 5102 | ) 5103 | (property "ALT Manufacturer" "" (at 266.7 129.54 0) 5104 | (effects (font (size 1.27 1.27)) hide) 5105 | ) 5106 | (property "MPN" "" (at 266.7 129.54 0) 5107 | (effects (font (size 1.27 1.27)) hide) 5108 | ) 5109 | (property "Manufacturer" "" (at 266.7 129.54 0) 5110 | (effects (font (size 1.27 1.27)) hide) 5111 | ) 5112 | (pin "1" (uuid 108f1ce1-fd00-426f-a10e-97faf91997e8)) 5113 | (pin "2" (uuid f7ed9d34-ee76-471a-9c21-73d1cf7af881)) 5114 | (instances 5115 | (project "usb_c_cable_tester" 5116 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5117 | (reference "D22") (unit 1) 5118 | ) 5119 | ) 5120 | ) 5121 | ) 5122 | 5123 | (symbol (lib_id "Device:LED_Small_Filled") (at 266.7 58.42 180) (unit 1) 5124 | (in_bom yes) (on_board yes) (dnp no) 5125 | (uuid ed5b6243-bd82-4f88-b3d8-70e20a7160aa) 5126 | (property "Reference" "D8" (at 264.16 55.88 0) 5127 | (effects (font (size 1.27 1.27))) 5128 | ) 5129 | (property "Value" "LED" (at 269.24 55.88 0) 5130 | (effects (font (size 1.27 1.27))) 5131 | ) 5132 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 266.7 58.42 90) 5133 | (effects (font (size 1.27 1.27)) hide) 5134 | ) 5135 | (property "Datasheet" "~" (at 266.7 58.42 90) 5136 | (effects (font (size 1.27 1.27)) hide) 5137 | ) 5138 | (property "ALT MPN" "" (at 266.7 58.42 0) 5139 | (effects (font (size 1.27 1.27)) hide) 5140 | ) 5141 | (property "ALT Manufacturer" "" (at 266.7 58.42 0) 5142 | (effects (font (size 1.27 1.27)) hide) 5143 | ) 5144 | (property "MPN" "" (at 266.7 58.42 0) 5145 | (effects (font (size 1.27 1.27)) hide) 5146 | ) 5147 | (property "Manufacturer" "" (at 266.7 58.42 0) 5148 | (effects (font (size 1.27 1.27)) hide) 5149 | ) 5150 | (pin "1" (uuid 198b57b9-3713-4f30-9a74-21c8142de9ee)) 5151 | (pin "2" (uuid d608e8f1-36b3-4e94-8162-5fbf221d31d4)) 5152 | (instances 5153 | (project "usb_c_cable_tester" 5154 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5155 | (reference "D8") (unit 1) 5156 | ) 5157 | ) 5158 | ) 5159 | ) 5160 | 5161 | (symbol (lib_id "Device:R_Small") (at 254 38.1 90) (unit 1) 5162 | (in_bom yes) (on_board yes) (dnp no) 5163 | (uuid ee52d01b-1887-491a-9c6e-712bf9c95c07) 5164 | (property "Reference" "R4" (at 251.46 35.56 90) 5165 | (effects (font (size 1.27 1.27))) 5166 | ) 5167 | (property "Value" "330" (at 256.54 35.56 90) 5168 | (effects (font (size 1.27 1.27))) 5169 | ) 5170 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 38.1 0) 5171 | (effects (font (size 1.27 1.27)) hide) 5172 | ) 5173 | (property "Datasheet" "~" (at 254 38.1 0) 5174 | (effects (font (size 1.27 1.27)) hide) 5175 | ) 5176 | (property "ALT MPN" "" (at 254 38.1 0) 5177 | (effects (font (size 1.27 1.27)) hide) 5178 | ) 5179 | (property "ALT Manufacturer" "" (at 254 38.1 0) 5180 | (effects (font (size 1.27 1.27)) hide) 5181 | ) 5182 | (property "MPN" "" (at 254 38.1 0) 5183 | (effects (font (size 1.27 1.27)) hide) 5184 | ) 5185 | (property "Manufacturer" "" (at 254 38.1 0) 5186 | (effects (font (size 1.27 1.27)) hide) 5187 | ) 5188 | (pin "1" (uuid 999b7a52-2395-458c-a78b-58a5c7716454)) 5189 | (pin "2" (uuid 170929f0-05f7-479a-b1e3-185e5414c4d7)) 5190 | (instances 5191 | (project "usb_c_cable_tester" 5192 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5193 | (reference "R4") (unit 1) 5194 | ) 5195 | ) 5196 | ) 5197 | ) 5198 | 5199 | (symbol (lib_id "Connector:USB_B_Micro") (at 114.3 104.14 0) (mirror y) (unit 1) 5200 | (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) 5201 | (uuid f1c9240c-5cf2-4e92-92d8-8c0a77aa420b) 5202 | (property "Reference" "J3" (at 120.65 102.8699 0) 5203 | (effects (font (size 1.27 1.27)) (justify right)) 5204 | ) 5205 | (property "Value" "USB_B_Micro" (at 120.65 105.4099 0) 5206 | (effects (font (size 1.27 1.27)) (justify right)) 5207 | ) 5208 | (property "Footprint" "snapeda:AMPHENOL_10118194-0001LF_MOD" (at 110.49 105.41 0) 5209 | (effects (font (size 1.27 1.27)) hide) 5210 | ) 5211 | (property "Datasheet" "~" (at 110.49 105.41 0) 5212 | (effects (font (size 1.27 1.27)) hide) 5213 | ) 5214 | (property "ALT MPN" "" (at 114.3 104.14 0) 5215 | (effects (font (size 1.27 1.27)) hide) 5216 | ) 5217 | (property "ALT Manufacturer" "" (at 114.3 104.14 0) 5218 | (effects (font (size 1.27 1.27)) hide) 5219 | ) 5220 | (property "MPN" "10118194-0001LF" (at 114.3 104.14 0) 5221 | (effects (font (size 1.27 1.27)) hide) 5222 | ) 5223 | (property "Manufacturer" "Amphenol ICC" (at 114.3 104.14 0) 5224 | (effects (font (size 1.27 1.27)) hide) 5225 | ) 5226 | (pin "1" (uuid 506a139d-8d2b-49a4-a60b-f1d959c70769)) 5227 | (pin "2" (uuid a0a8ab37-5aab-4bf4-8b7e-a99130cb344c)) 5228 | (pin "3" (uuid 2f442bc5-87ca-4fa1-91ba-dade02fc89d9)) 5229 | (pin "4" (uuid 53e891bf-ce7f-48ae-bf2a-6f69ad8c3054)) 5230 | (pin "5" (uuid 6fec3f80-6f6e-4c16-8d39-bdc1e05d57d0)) 5231 | (pin "6" (uuid 13d5ee6c-437c-4c31-b196-564e8fbf9426)) 5232 | (instances 5233 | (project "usb_c_cable_tester" 5234 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5235 | (reference "J3") (unit 1) 5236 | ) 5237 | ) 5238 | ) 5239 | ) 5240 | 5241 | (symbol (lib_id "Device:R_Small") (at 254 104.14 90) (unit 1) 5242 | (in_bom yes) (on_board yes) (dnp no) 5243 | (uuid f5390005-cc75-49a1-b515-76b933ab83f9) 5244 | (property "Reference" "R17" (at 251.46 101.6 90) 5245 | (effects (font (size 1.27 1.27))) 5246 | ) 5247 | (property "Value" "330" (at 256.54 101.6 90) 5248 | (effects (font (size 1.27 1.27))) 5249 | ) 5250 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 254 104.14 0) 5251 | (effects (font (size 1.27 1.27)) hide) 5252 | ) 5253 | (property "Datasheet" "~" (at 254 104.14 0) 5254 | (effects (font (size 1.27 1.27)) hide) 5255 | ) 5256 | (property "ALT MPN" "" (at 254 104.14 0) 5257 | (effects (font (size 1.27 1.27)) hide) 5258 | ) 5259 | (property "ALT Manufacturer" "" (at 254 104.14 0) 5260 | (effects (font (size 1.27 1.27)) hide) 5261 | ) 5262 | (property "MPN" "" (at 254 104.14 0) 5263 | (effects (font (size 1.27 1.27)) hide) 5264 | ) 5265 | (property "Manufacturer" "" (at 254 104.14 0) 5266 | (effects (font (size 1.27 1.27)) hide) 5267 | ) 5268 | (pin "1" (uuid cffc5325-c4ff-4145-90e1-16fa0c7decab)) 5269 | (pin "2" (uuid 032f5878-d61d-4e65-986e-528899e6fe2f)) 5270 | (instances 5271 | (project "usb_c_cable_tester" 5272 | (path "/b34019fd-8cd0-4bd2-b342-eb5b70c9786d" 5273 | (reference "R17") (unit 1) 5274 | ) 5275 | ) 5276 | ) 5277 | ) 5278 | 5279 | (sheet_instances 5280 | (path "/" (page "1")) 5281 | ) 5282 | ) 5283 | --------------------------------------------------------------------------------