-
Notifications
You must be signed in to change notification settings - Fork 0
/
speeduino_ntv650.ses
1106 lines (1106 loc) · 70.8 KB
/
speeduino_ntv650.ses
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(session "C:\temp\speeduinoNTV650\speeduino_ntv650.ses"
(base_design "..\..\speeduinoNTV650\speeduino_ntv650.dsn")
(placement
(resolution mm 100000)
(component "Resistor_SMD:R_2512_6332Metric_Pad1.52x3.35mm_HandSolder"
(place "R29" 14376000 -5859000 front 270.00)
(place "R30" 13736000 -5856000 front 270.00)
)
(component "Capacitor_Tantalum_SMD:CP_EIA-6032-15_Kemet-U"
(place "C19" 11965000 -7987000 front 180.00)
)
(component "Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
(place "C21" 11843000 -7490000 front 0.00)
(place "C20" 12528000 -7500000 front 180.00)
(place "C18" 16061200 -8676000 front 90.00)
(place "C17" 15607500 -12743000 front 180.00)
(place "C16" 16157800 -9281000 front 90.00)
(place "C15" 17446000 -12169000 front 0.00)
(place "C14" 17462800 -12843000 front 0.00)
(place "C13" 17725800 -8676000 front 270.00)
(place "C12" 15164200 -6248000 front 180.00)
(place "C11" 15607500 -13208000 front 180.00)
(place "C10" 18139000 -9281000 front 90.00)
(place "C9" 15607500 -14131000 front 0.00)
(place "C8" 18106800 -11830500 front 180.00)
(place "C7" 17309700 -8676000 front 270.00)
(place "C6" 15607500 -14623000 front 0.00)
(place "C5" 17645200 -9281000 front 90.00)
(place "C4" 15965600 -6248000 front 0.00)
(place "C3" 16767000 -6248000 front 180.00)
(place "C2" 13915000 -14172300 front 0.00)
(place "C1" 16651600 -9281000 front 270.00)
(place "R32" 13925000 -14639000 front 180.00)
(place "R31" 13925000 -12766300 front 0.00)
(place "R28" 12280000 -12264000 front 0.00)
(place "R27" 12280000 -12758000 front 0.00)
(place "R26" 15661000 -9271000 front 270.00)
(place "R25" 17148400 -9271000 front 90.00)
(place "R24" 18106800 -12336800 front 180.00)
(place "R23" 18106800 -12843000 front 180.00)
(place "R22" 13925000 -11827000 front 0.00)
(place "R21" 13925000 -12296700 front 0.00)
(place "R19" 13925000 -13236000 front 180.00)
(place "R18" 13925000 -13705700 front 0.00)
(place "R17" 12280000 -11770000 front 0.00)
(place "R16" 15590000 -12268000 front 0.00)
(place "R15" 15645000 -8676000 front 90.00)
(place "R14" 17418200 -11495000 front 0.00)
(place "R13" 18126000 -11324200 front 0.00)
(place "R12" 18126000 -10818000 front 180.00)
(place "R11" 18142000 -8676000 front 270.00)
(place "R10" 15036000 -5713250 front 90.00)
(place "R9" 17426000 -10821000 front 180.00)
(place "R8" 15617500 -13662000 front 0.00)
(place "R7" 15408800 -5713250 front 90.00)
(place "R6" 16154400 -5713250 front 270.00)
(place "R5" 15781600 -5713250 front 270.00)
(place "R4" 16527200 -5713250 front 270.00)
(place "R3" 16900000 -5713250 front 270.00)
(place "R2" 16477300 -8676000 front 270.00)
(place "R1" 16893500 -8676000 front 270.00)
(place "R20" 12280000 -11276000 front 0.00)
)
(component "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder"
(place "D4" 11635000 -12259000 front 0.00)
(place "D3" 11635000 -12753000 front 0.00)
(place "D2" 11635000 -11271000 front 0.00)
(place "D1" 11635000 -11765000 front 0.00)
)
(component "Diode_THT:D_DO-201_P3.81mm_Vertical_AnodeUp"
(place "D6" 11705000 -6903000 front 0.00)
)
(component "Varistors:RV_Disc_D12_W3.9_P7.5"
(place "RV1" 12266000 -5407000 front 180.00)
)
(component "Mounting_Holes:MountingHole_3mm_Pad"
(place "J6" 17907000 -10054000 front 0.00)
(place "J5" 11907000 -10054000 front 0.00)
(place "J4" 17907000 -14004000 front 0.00)
(place "J3" 17907000 -6104000 front 0.00)
(place "J2" 11907000 -6104000 front 0.00)
(place "J1" 11907000 -14004000 front 0.00)
)
(component "ntv650_ecu:DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm"
(place "J7" 13242000 -4761000 front 180.00)
)
(component "Housings_DIP:DIP-8_W7.62mm"
(place "IC2" 14984000 -9351000 front 180.00)
)
(component "Housings_SSOP:QSOP-16_3.9x4.9mm_Pitch0.635mm"
(place "P1" 16704000 -7436000 front 0.00)
)
(component "Diodes_ThroughHole:D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp"
(place "D5" 12969000 -6586000 front 270.00)
)
(component "ntv650_ecu:ArduinoMegaProMini"
(place "ARD1" 14276500 -10918500 front 0.00)
)
(component "TO_SOT_Packages_THT:TO-220-3_Vertical"
(place "U1" 12896000 -5484000 front 270.00)
(place "Q3" 13295000 -8727000 front 270.00)
(place "Q2" 12523000 -8727000 front 270.00)
(place "Q1" 11747000 -8727000 front 270.00)
)
(component "Housings_SOIC:SOIC-8-1EP_3.9x4.9mm_Pitch1.27mm"
(place "IC1" 14930200 -11335800 front 0.00)
)
(component "ntv650_ecu:A4988 Stepper Motor Driver Carrier"
(place "A1" 13631000 -8102000 front 90.00)
)
)
(routes
(resolution mm 100000)
(library_out
(padstack "Via[0-1]_1000:800_um"
(shape (circ signal 100000 0 0))
)
(padstack "Via[0-1]_800:600_um"
(shape (circ signal 80000 0 0))
)
(padstack "Via[0-1]_1200:1000_um"
(shape (circ signal 120000 0 0))
)
)
(network_out
(net "5V"
(wire (path "F.Cu" 50000 17112930 -7377950 17119950 -7405210) )
(wire (path "F.Cu" 50000 17112930 -7377950 17139470 -7387330) ))
(net "GND"
(wire (path "F.Cu" 50000 16572270 -7320420 16604870 -7317620) )
(wire (path "F.Cu" 50000 16572270 -7320420 16591430 -7293900) ))
(net "GND"
(wire (path "F.Cu" 50000 16552940 -7210060 16584310 -7219360) )
(wire (path "F.Cu" 50000 16552940 -7210060 16580470 -7192360) ))
(net "GND"
(wire (path "F.Cu" 50000 16837220 -7409250 16805820 -7400020) )
(wire (path "F.Cu" 50000 16837220 -7409250 16809740 -7427020) ))
(net "GND"
(wire (path "F.Cu" 50000 16824520 -7492690 16806200 -7465570) )
(wire (path "F.Cu" 50000 16824520 -7492690 16792020 -7488870) ))
(net "GND"
(wire (path "F.Cu" 50000 16552980 -7662140 16580380 -7680030) )
(wire (path "F.Cu" 50000 16552980 -7662140 16584420 -7653070) ))
(net "GND"
(wire (path "F.Cu" 50000 16572420 -7552170 16591300 -7578900) )
(wire (path "F.Cu" 50000 16572420 -7552170 16605000 -7555320) ))
(net "STEPDIR-CPU-D16"
(wire (path "B.Cu" 60000 13758000 -7975000 13934890 -8138490 14349420 -8348880 14350440 -8349490
14461510 -8460560 14462120 -8461580 14481730 -8508870 14482020 -8510020
14482020 -9272020 14482020 -9429980 14481730 -9431130 13411710 -13516140
13408050 -13524960 13260500 -13712500))
)
(net "STEP-CPU-D17"
(wire (path "B.Cu" 60000 14012000 -7975000 13835110 -7811510 13819380 -7804990 13696620 -7804990
13680890 -7811510 13594510 -7897890 13587990 -7913620 13587990 -8036380
13594510 -8052110 13680890 -8138490 14290610 -8438220 14372780 -8520390
14377010 -8530610 14377010 -9292610 14377010 -9409390 14372780 -9419610
14290610 -9501780 12880420 -10428010 12770010 -10538420 12769780 -10538790
12750390 -10585570 12750280 -10585990 12750280 -12363990 12750280 -12521010
12855290 -13516140 12858950 -13524960 13006500 -13712500))
)
(net "5V"
(wire (path "F.Cu" 80000 15036000 -5862000 14950840 -5805180 14948820 -5803150 14866760 -5658510
14865830 -5656520 14864910 -5654540 14864340 -5652430 14863780 -5650320
14863580 -5648140 14863390 -5645960 14863390 -5575540 14863390 -5483040
14863580 -5480860 14863780 -5478680 14864340 -5476570 14864910 -5474460
14865830 -5472470 14866760 -5470490 14868010 -5468700 14869270 -5466910
14870810 -5465360 14920610 -5415560 14922160 -5414020 15735000 -4761000))
(wire (path "F.Cu" 60000 15200200 -11145300 15277700 -11145300 15290130 -11145300 15366010 -11158860))
(wire (path "F.Cu" 80000 13006500 -10664500 13011880 -10174450))
(wire (path "F.Cu" 80000 16477300 -8527250 16394320 -8587840 16315480 -8667540 16226920 -8756100
16208350 -8763800 16144540 -8763800 16144170 -8764160 16061200 -8824750))
(wire (path "F.Cu" 80000 14520000 -7975000 14602030 -8057770 14691230 -8146970 14710640 -8155010
15073570 -8300710 15124950 -8322010 15131040 -8325660 15247340 -8441960
15250990 -8448050 15378520 -8670490 15470510 -8762480 15493580 -8772030
15558350 -8772030 15645000 -8824750))
(wire (path "F.Cu" 80000 17309700 -8527250 17262100 -8527250 17222100 -8527250 16981100 -8527250
16941100 -8527250 16893500 -8527250))
(wire (path "F.Cu" 80000 16061200 -8824750 16013600 -8824750 15973600 -8824750 15732600 -8824750
15692600 -8824750 15645000 -8824750))
(wire (path "F.Cu" 80000 16893500 -8527250 16845900 -8527250 16805900 -8527250 16564900 -8527250
16524900 -8527250 16477300 -8527250))
(wire (path "F.Cu" 80000 15282000 -6705000 15199970 -6622230 15110770 -6533030 14921440 -6417240
14917860 -6414730 14868060 -6364930 14864970 -6361840 14863710 -6360050
14862460 -6358260 14861530 -6356270 14860610 -6354290 14860040 -6352180
14859480 -6350070 14859280 -6347890 14859090 -6345710 14859090 -6275290
14859090 -6150290 14859280 -6148110 14859480 -6145930 14860040 -6143820
14860610 -6141710 14861530 -6139720 14862460 -6137740 14962860 -5930980
14962930 -5930900 15036000 -5862000))
(wire (path "F.Cu" 80000 17134470 -7401470 17245020 -8454770 17245020 -8456090 17309700 -8527250))
(wire (path "F.Cu" 80000 14520000 -7975000 15282000 -6705000))
(wire (path "F.Cu" 80000 12896000 -5992000 11983400 -6701360 11851570 -6813000 11835000 -6813000
11795000 -6813000 11705000 -6903000))
(wire (path "F.Cu" 80000 11705000 -6903000 11699620 -6993000 11699620 -7033000 11699620 -7402400
11699620 -7442400 11694250 -7490000))
(wire (path "F.Cu" 80000 14222000 -8843000 14062750 -9022720 14056990 -9036620 14056990 -9290620
14056990 -9411380 14162660 -11244050 14170630 -11275800 14178840 -11303080
14206990 -11370980 14222940 -11397590 14373200 -11576860 14383070 -11592580
14386680 -11598610 14408200 -11640770 14412010 -11644680 14416120 -11651530
14437680 -11703510 14457200 -11762060 15178900 -14271410 15191510 -14301850
15192430 -14303830 15193360 -14305820 15194610 -14307610 15195870 -14309400
15406030 -14536050 15406030 -14536350 15458750 -14623000))
(wire (path "F.Cu" 50000 16969430 -7340750 17049430 -7340750 17075730 -7340750 17112930 -7377950
17134470 -7401470))
(wire (path "B.Cu" 80000 14266000 -7975000 14183970 -7892230 14094770 -7803030 13896690 -7712490
13846000 -7691470 13840070 -7689980 13675930 -7689980 13670000 -7691470
13619310 -7712490 13614060 -7715630 13498630 -7831060 13495490 -7836310
13474470 -7887000 13472980 -7892930 13472980 -8057070 13474470 -8063000
13495490 -8113690 13900040 -8835120))
(wire (path "B.Cu" 80000 13900040 -8835120 13157030 -10065120 13083800 -10138350 13011880 -10174450))
(wire (path "B.Cu" 80000 13006500 -10664500 13260500 -10664500))
(wire (path "B.Cu" 80000 14266000 -7975000 14520000 -7975000))
(wire (path "B.Cu" 80000 15366010 -11158860 15552330 -11006000 15559840 -11001490 15621240 -10970820
15634760 -10962720 15758720 -10838760 15766820 -10825240 15790590 -10767890
15794430 -10752610 16113720 -9043070 16113720 -8896450 16053480 -8513850
16037830 -8476060 15707970 -7892230 15618770 -7803030 15599360 -7794990
14837360 -7794990 14710640 -7794990 14691230 -7803030 14602030 -7892230
14520000 -7975000))
(wire (path "B.Cu" 80000 14222000 -8843000 13900040 -8835120))
(wire (path "B.Cu" 80000 11705000 -6903000 11615000 -6993000 11615000 -7033000 11615000 -7049570
11466980 -8899550 11466980 -9153550 11466980 -9316450 11468230 -9321420
11488970 -9371440 11491610 -9375840 11606160 -9490390 11610560 -9493030
12090770 -9701940 13011880 -10174450))
(via "Via[0-1]_800:600_um" 15366010 -11158860 (net "5V"))
(via "Via[0-1]_800:600_um" 13011880 -10174450 (net "5V"))
)
(net "STEPEN-CPU-D24"
(wire (path "B.Cu" 60000 15536000 -7975000 15938470 -8539520 15998710 -8922120 15998710 -9017400
15691850 -10738080 15675990 -10776360 15572360 -10879990 15513490 -10909400
15488590 -10924330 15318370 -11043850 15251000 -11111220 13408050 -14540960
13260500 -14728500))
)
(net "12V"
(wire (path "F.Cu" 80000 12428750 -11276000 12430260 -11228400 12430260 -11188400 12430260 -10549280
12471840 -10062100 12491980 -9900990 12492620 -9896980 12505380 -9846310
12700700 -9247300 12732800 -9169850 12755870 -9131380 12771060 -9116110
12772770 -9113280 12792980 -9064520 12793790 -9061310 12823020 -8886330
12829970 -8543810 12872940 -7835270 12969000 -7094000))
(wire (path "F.Cu" 80000 13657500 -4477000 13519000 -4761000))
(wire (path "F.Cu" 80000 13519000 -4761000 13407010 -4876210 13357210 -4926010 12712810 -5018970
12689670 -5024780 12626730 -5050870 12606270 -5063140 12475140 -5194270
12266000 -5407000))
(wire (path "F.Cu" 80000 12428750 -11276000 12428750 -11323600 12428750 -11363600 12428750 -11682400
12428750 -11722400 12428750 -11770000))
(wire (path "F.Cu" 80000 17977250 -10818000 17916660 -10735020 17915760 -10734130 17578940 -10512790))
(wire (path "B.Cu" 80000 12969000 -7094000 12773990 -6731210 12598190 -6084720 12595980 -6075920
12554390 -5461100 12553200 -5458230 12476660 -5381690 12473790 -5380500
12364970 -5380500 12266000 -5407000))
(wire (path "B.Cu" 80000 12969000 -7094000 13746880 -6870010))
(wire (path "B.Cu" 80000 17578940 -10512790 17460880 -10285120 17428310 -10206520 17416980 -10161400
17416980 -9946600 17608300 -8855310 17608300 -8751750 17535070 -8678520
16186860 -8010940 16070680 -7895950 15683710 -7694580 13746880 -6870010))
(wire (path "B.Cu" 80000 13758000 -6705000 13746880 -6870010))
(via "Via[0-1]_800:600_um" 17578940 -10512790 (net "12V"))
)
(net "GND"
(wire (path "F.Cu" 50000 16438570 -7340750 16518570 -7340750 16536380 -7340750 16603590 -7302680))
(wire (path "F.Cu" 80000 15661000 -9122250 15573590 -9073820 15572890 -9073820 14984000 -8843000))
(wire (path "F.Cu" 80000 13766250 -14172300 13705660 -14255270 13705300 -14255640 13621410 -14532710
13620840 -14534820 13620280 -14536930 13620080 -14539110 13619890 -14541290
13619890 -14666290 13619890 -14736710 13620080 -14738890 13620280 -14741070
13620840 -14743180 13621410 -14745290 13622330 -14747270 13623260 -14749260
13624510 -14751050 13625770 -14752840 13628860 -14755930 13678660 -14805730
13682240 -14808240 13686210 -14810090 13690430 -14811220 15278370 -15168000))
(wire (path "F.Cu" 80000 11718750 -7987000 11811840 -8099970 11812740 -8100860 12648210 -8551990
12698010 -8601790 12698010 -8781790 12698010 -8852210 12683400 -9040460
12678350 -9052670 12670820 -9060270 12523000 -9235000))
(wire (path "F.Cu" 50000 16438570 -7213750 16518570 -7213750 16527060 -7213750 16588580 -7204980))
(wire (path "F.Cu" 80000 16603590 -7302680 16801590 -7414420))
(wire (path "F.Cu" 80000 16793770 -7473970 16754910 -7475200 16603550 -7570250))
(wire (path "F.Cu" 80000 15756250 -14623000 15703530 -14709640 15703530 -14709950 15278370 -15168000))
(wire (path "F.Cu" 50000 16969430 -7404250 16889430 -7404250 16871620 -7404250 16801590 -7414420))
(wire (path "F.Cu" 80000 13006500 -10918500 12850470 -10736630 12845290 -10724130 12845290 -10604870
12886870 -10122670 12907010 -9961560 13060970 -9351440 13125640 -9286770
13295000 -9235000))
(wire (path "F.Cu" 60000 14660200 -11526300 14612700 -11526300 14612700 -11556300 14612700 -11568730
14596110 -11626310))
(wire (path "F.Cu" 80000 15756250 -14623000 15699430 -14537840 15699370 -14537770 15610040 -14328280))
(wire (path "F.Cu" 50000 16969430 -7531250 16889430 -7531250 16871620 -7531250 16845850 -7505670
16793770 -7473970))
(wire (path "F.Cu" 80000 17958050 -11830500 17894120 -11910670 17893480 -11911300 17661840 -12091800
17661470 -12092160 17594750 -12169000))
(wire (path "F.Cu" 50000 16438570 -7658250 16518570 -7658250 16527060 -7658250 16588580 -7667480))
(wire (path "F.Cu" 80000 11637780 -12481530 11547200 -12342340 11546840 -12341970 11486250 -12259000))
(wire (path "F.Cu" 80000 11486250 -12753000 11543060 -12667840 11637780 -12481530))
(wire (path "F.Cu" 80000 18139000 -9132250 18091400 -9132250 18051400 -9132250 17732800 -9132250
17692800 -9132250 17645200 -9132250))
(wire (path "F.Cu" 80000 17645200 -9132250 17709880 -9061090 17715960 -8896100 17715960 -8856100
17725800 -8824750))
(wire (path "F.Cu" 80000 14073750 -13705700 14134340 -13622720 14134770 -13622280 14228590 -13342290
14229720 -13338070 14230110 -13333710 14230110 -13263290 14230110 -13138290
14229720 -13133930 14228590 -13129710 14134700 -12849640 14134340 -12849270
14073750 -12766300))
(wire (path "F.Cu" 80000 17725800 -8824750 17640640 -8881560 17640570 -8881630 17532000 -8921130
17434580 -8921130 17394850 -8881560 17309700 -8824750))
(wire (path "F.Cu" 80000 17148400 -9122250 17100800 -9127250 17060800 -9127250 16739200 -9127250
16699200 -9127250 16651600 -9132250))
(wire (path "F.Cu" 80000 15661000 -9122250 15708600 -9127250 15748600 -9127250 16070200 -9127250
16110200 -9127250 16157800 -9132250))
(wire (path "F.Cu" 80000 16651600 -9132250 16604000 -9132250 16564000 -9132250 16245400 -9132250
16205400 -9132250 16157800 -9132250))
(wire (path "F.Cu" 80000 15756250 -14131000 15695660 -14213970 15610040 -14328280))
(wire (path "F.Cu" 80000 13006500 -10918500 12856790 -11104600 12852750 -11114360 12852750 -11922930
12852550 -11943230 12847390 -11963770 12822070 -12024860 12811180 -12043020
12581740 -12374260 12579230 -12377840 12529430 -12427640 12526340 -12430730
12522760 -12433240 12518790 -12435090 12514570 -12436220 12510210 -12436610
11637780 -12481530))
(wire (path "F.Cu" 80000 15458750 -13208000 15458750 -13160400 15458750 -13120400 15458750 -12830600
15458750 -12790600 15458750 -12743000))
(wire (path "F.Cu" 80000 12086000 -6903000 12040180 -7402590 11991750 -7490000))
(wire (path "F.Cu" 80000 17977250 -11324200 17920430 -11409350 17920360 -11409430 17890440 -11445030
17890440 -11548590 17951810 -11726330 17951810 -11742900 17951810 -11782900
17958050 -11830500))
(wire (path "F.Cu" 80000 12549000 -4731000 13162000 -4731000 13202000 -4731000 13242000 -4761000))
(wire (path "F.Cu" 80000 14596110 -11626310 15397810 -12659660 15398160 -12660020 15458750 -12743000))
(wire (path "F.Cu" 80000 16061200 -8527250 16134260 -8458340 16317990 -8195900 16453010 -7997030
16588580 -7707750 16588580 -7667480))
(wire (path "F.Cu" 80000 13380500 -4477000 13282000 -4664430 13282000 -4681000 13282000 -4721000
13242000 -4761000))
(wire (path "F.Cu" 80000 17611550 -12843000 17605310 -12795400 17605310 -12755400 17605310 -12738830
17600990 -12273170 17600990 -12256600 17600990 -12216600 17594750 -12169000))
(wire (path "F.Cu" 80000 11516000 -5267000 12100370 -5694170 12111530 -5700860 12282940 -5773540
12332960 -5794280 12337930 -5795530 12500830 -5795530 12896000 -5738000))
(wire (path "F.Cu" 80000 14012000 -6705000 13957000 -6760000 13957000 -6800000 13957000 -6816570
13577990 -7911640 13577990 -8038360 13586030 -8057770 13675230 -8146970
13694640 -8155010 14307160 -8278980 14317870 -8281670 14371960 -8304100
14381430 -8309780 14645690 -8538030))
(wire (path "F.Cu" 80000 11718750 -7987000 11808060 -7871840 11808130 -7871770 11934860 -7575230
11934930 -7575150 11991750 -7490000))
(wire (path "F.Cu" 80000 12379250 -7500000 12347900 -7495000 12307900 -7495000 12063100 -7495000
12023100 -7495000 11991750 -7490000))
(wire (path "F.Cu" 80000 15015450 -6248000 15076040 -6330970 15076940 -6331860 15457570 -6570000
15481000 -6593430 15481000 -6610000 15481000 -6650000 15536000 -6705000))
(wire (path "F.Cu" 50000 16438570 -7531250 16518570 -7531250 16536380 -7531250 16603550 -7570250))
(wire (path "F.Cu" 80000 14645690 -8538030 14283290 -10604870 14283290 -10724130 14287670 -11228600
14294150 -11257800 14295810 -11264410 14317030 -11315580 14320530 -11321420
14463830 -11506130 14512690 -11585300 14553700 -11626310 14596110 -11626310))
(wire (path "F.Cu" 80000 16588580 -7667480 16603580 -7650460 16603550 -7570250))
(wire (path "F.Cu" 80000 16237690 -6564370 16588580 -7164250 16588580 -7204980))
(wire (path "F.Cu" 80000 14984000 -8843000 15143250 -8663280 15149010 -8649380 15149010 -8528620
15143250 -8514720 15058280 -8429750 15044380 -8423990 14923620 -8423990
14645690 -8538030))
(wire (path "F.Cu" 80000 17148400 -9122250 17217370 -9051850 17217370 -9051550 17245020 -8896610
17245020 -8895900 17309700 -8824750))
(wire (path "F.Cu" 80000 17259000 -4731000 17057010 -4457910 16949300 -4348220 16877570 -4276490
16776130 -4276490 16090120 -4311990 16076220 -4317750 15873500 -4477000))
(wire (path "F.Cu" 80000 14073750 -12766300 14073750 -12718700 14073750 -12678700 14073750 -12384300
14073750 -12344300 14073750 -12296700))
(wire (path "F.Cu" 80000 14073750 -12296700 14134340 -12213720 14134770 -12213280 14228590 -11933290
14229720 -11929070 14230110 -11924710 14230110 -11854290 14230110 -11759290
14207480 -11706790 14206800 -11705640 14047710 -11541590 14038320 -11528650
14007450 -11477120 14003100 -11468570 13991330 -11443990 13953530 -11352790
13950280 -11342810 13295000 -9235000))
(wire (path "F.Cu" 80000 16603590 -7302680 16603580 -7222140 16588580 -7204980))
(wire (path "F.Cu" 80000 16801590 -7414420 16793770 -7473970))
(wire (path "F.Cu" 80000 15458750 -13208000 15398160 -13290970 15397800 -13291340 15313910 -13555710
15313340 -13557820 15312780 -13559930 15312580 -13562110 15312390 -13564290
15302390 -14033290 15302390 -14158290 15302390 -14228710 15302580 -14230890
15302780 -14233070 15303340 -14235180 15303910 -14237290 15304830 -14239270
15305760 -14241260 15307010 -14243050 15308270 -14244840 15311360 -14247930
15361160 -14297730 15364740 -14300240 15368710 -14302090 15372930 -14303220
15610040 -14328280))
(wire (path "F.Cu" 80000 15278370 -15168000 15385290 -15550130 15390470 -15562630 15474370 -15646530
15486870 -15651710 16502870 -15651710 16622130 -15651710 16634630 -15646530
16718530 -15562630 17554940 -13820230 17568210 -13798080 18106800 -12958310
18106800 -12729870 18108160 -12726070 18157960 -12676270 18353140 -12503530
18356230 -12500440 18406030 -12450640 18408540 -12447060 18410390 -12443090
18411520 -12438870 18411910 -12434510 18411910 -12364090 18411910 -12239090
18411520 -12234730 18410390 -12230510 18408540 -12226540 18406030 -12222960
18402940 -12219870 18353140 -12170070 18019540 -11914360 18018640 -11913470
17958050 -11830500))
(wire (path "B.Cu" 80000 12523000 -9235000 11747000 -9235000))
(wire (path "B.Cu" 80000 13295000 -9235000 13296380 -9345390 13296380 -9448950 13223150 -9522180
13119590 -9522180 12523000 -9235000))
(wire (path "B.Cu" 80000 15536000 -6705000 15481000 -6760000 15481000 -6800000 15481000 -6816570
15457570 -6840000 15342380 -6870010 15091360 -6885010 14964640 -6885010
14456640 -6885010 14205620 -6870010 14090430 -6840000 14067000 -6816570
14067000 -6800000 14067000 -6760000 14012000 -6705000))
(wire (path "B.Cu" 80000 12086000 -6903000 11568210 -6309920 11554940 -6287770 11528280 -6223470
11521990 -6198430 11516000 -5267000))
(wire (path "B.Cu" 80000 15536000 -6705000 15591000 -6650000 15631000 -6650000 15647570 -6650000
15958170 -6564930 16237690 -6564370))
(wire (path "B.Cu" 80000 17259000 -4731000 16237690 -6564370))
(wire (path "B.Cu" 80000 13006500 -10918500 13260500 -10918500))
(wire (path "B.Cu" 80000 11516000 -5267000 12549000 -4731000))
(wire (path "B.Cu" 80000 14012000 -6705000 13957000 -6650000 13957000 -6610000 13957000 -6593430
13933570 -6570000 12896000 -5738000))
(wire (path "B.Cu" 80000 15873500 -4477000 15596500 -4477000))
(via "Via[0-1]_800:600_um" 16237690 -6564370 (net "GND"))
)
(net "STEP-2B-OUT"
(wire (path "B.Cu" 60000 14266000 -6705000 14051290 -5189100 13978060 -5115870 13098630 -5021020
13079220 -5012980 12990020 -4923780 12981980 -4904370 12981980 -4777630
12981980 -4617630 12990020 -4598220 13079220 -4509020 13311890 -4326220
13322110 -4321990 13438890 -4321990 14269890 -4321990 14280110 -4326220
14488500 -4477000))
)
(net "STEP-2A-OUT"
(wire (path "F.Cu" 60000 14520000 -6705000 14618220 -6244430 14618610 -6240070 14627000 -4761000))
)
(net "STEP-1A-OUT"
(wire (path "F.Cu" 60000 14774000 -6705000 14744270 -6380030 14744080 -6377850 14744080 -6243150
14744080 -6118150 14748380 -5450900 14748570 -5448720 14748770 -5446540
14904000 -4761000))
)
(net "STEP-1B-OUT"
(wire (path "B.Cu" 60000 15028000 -6705000 14140650 -5129780 14037380 -5026510 13999590 -5010860
13130930 -4916010 13086990 -4872070 13086990 -4809930 13086990 -4649930
13130930 -4605990 13193070 -4605990 13233070 -4605990 13309690 -4614150
13324700 -4619000 13436300 -4619000 13461760 -4611770 13576240 -4611770
13584340 -4615120 13592160 -4622880 13600260 -4626230 13714740 -4626230
13722840 -4622880 13730660 -4615120 13738760 -4611770 13853240 -4611770
13861340 -4615120 13869160 -4622880 13877260 -4626230 13991740 -4626230
13999840 -4622880 14007660 -4615120 14015760 -4611770 14130240 -4611770
14138340 -4615120 14146160 -4622880 14154260 -4626230 14268740 -4626230
14276840 -4622880 14284660 -4615120 14292760 -4611770 14407240 -4611770
14415340 -4615120 14423160 -4622880 14431260 -4626230 14545740 -4626230
14553840 -4622880 14561660 -4615120 14765500 -4477000))
)
(net "IGN1-CPU-D40"
(wire (path "F.Cu" 60000 16562500 -14727500 16710050 -14539960 17845910 -13007500 17896960 -12926490
17897030 -12926410 17897460 -12925970 17958050 -12843000))
)
(net "IGN2-CPU-D38"
(wire (path "F.Cu" 60000 16562500 -14473500 16710050 -14285960 17752030 -12952700 17754540 -12949120
17756390 -12945150 17897100 -12420140 17897460 -12419770 17958050 -12336800))
)
(net "ADC-Clamp1"
(wire (path "F.Cu" 60000 14660200 -11145300 14737700 -11145300 14750130 -11145300 15091630 -11040290
15153770 -11040290 15332110 -11040290 15413650 -11043850 16215660 -11195940))
(wire (path "F.Cu" 60000 15468750 -13662000 15525560 -13576840 15525630 -13576770 15603590 -13310150
15604720 -13305930 15605110 -13301570 15609890 -13114430 15610080 -13112250
15610280 -13110070 15610840 -13107960 15611410 -13105850 15612330 -13103860
15613260 -13101880 15614510 -13100090 15615770 -13098300 15617310 -13096750
15661250 -13052810 15662800 -13051270 15849700 -12899730 15852790 -12896640
15896730 -12852700 15899240 -12849120 15901090 -12845150 15902220 -12840930
15902610 -12836570 15947270 -12096010 15965220 -11844230 15983070 -11754640
15991100 -11593430 15994140 -11581310 16016990 -11526210 16154830 -11256880
16215660 -11195940))
(wire (path "F.Cu" 60000 15468750 -13662000 15463750 -13719600 15463750 -13749600 15463750 -14043400
15463750 -14073400 15458750 -14131000))
(wire (path "B.Cu" 60000 16562500 -12695500 16710050 -12507960 16713710 -12499140 16818720 -12012010
16818720 -11854990 16818720 -11600990 16818610 -11600570 16799220 -11553790
16798990 -11553420 16688580 -11443010 16392870 -11236960 16215660 -11195940))
(via "Via[0-1]_800:600_um" 16215660 -11195940 (net "ADC-Clamp1"))
)
(net "ADC-Clamp4"
(wire (path "F.Cu" 60000 17269450 -11495000 17283350 -11552600 17283350 -11582600 17283350 -12081400
17283350 -12111400 17297250 -12169000))
(wire (path "F.Cu" 60000 15200200 -11526300 15277700 -11526300 15290130 -11526300 15716860 -11481680))
(wire (path "F.Cu" 60000 16562500 -12187500 17225900 -12187500 17255900 -12187500 17297250 -12169000))
(wire (path "B.Cu" 60000 15716860 -11481680 16235770 -11452410 16381230 -11452410 16620140 -11528290
16628960 -11531950 16710050 -11613040 16713710 -11621860 16713710 -11875860
16713710 -11991140 16710050 -11999960 16562500 -12187500))
(via "Via[0-1]_800:600_um" 15716860 -11481680 (net "ADC-Clamp4"))
)
(net "ADC-Clamp3"
(wire (path "F.Cu" 60000 17574750 -10821000 17522030 -10907640 17522030 -10907950 17512100 -10970450
17504060 -10989860 17414860 -11079060 16719170 -11447820))
(wire (path "F.Cu" 60000 14660200 -11272300 14582700 -11272300 14570270 -11272300 14552700 -11254730
14507690 -11206370 14507690 -11144230 14507690 -11084230 14551630 -11040290
15059330 -10935280 15186070 -10935280 15353000 -10935280 15437330 -10938840
16263300 -11080930 16330670 -11148300 16334460 -11227580))
(wire (path "F.Cu" 60000 16334460 -11227580 16392870 -11236960 16719170 -11447820))
(wire (path "F.Cu" 60000 16562500 -11933500 16710050 -11745960 16713710 -11737140 16719170 -11447820))
(wire (path "F.Cu" 60000 15756250 -13208000 15820170 -13127820 15821170 -13126810 15993700 -12904410
15996210 -12900830 15998060 -12896860 16006100 -12877450 16007230 -12873230
16007620 -12868870 16064240 -11857360 16076140 -11770650 16081500 -11606790
16096690 -11570110 16244350 -11310180 16303440 -11251090 16334460 -11227580))
)
(net "ADC-Clamp6"
(wire (path "F.Cu" 60000 18142000 -8527250 18084400 -8527250 18054400 -8527250 17813400 -8527250
17783400 -8527250 17725800 -8527250))
(wire (path "F.Cu" 60000 17725800 -8527250 17642820 -8587840 17641930 -8588740 17483290 -8803530))
(wire (path "F.Cu" 60000 15200200 -11272300 15277700 -11272300 15290130 -11272300 15318370 -11273870
15704600 -11276050))
(wire (path "B.Cu" 60000 16562500 -11679500 16366710 -11544300 16363240 -11542860 16253760 -11542860
15759600 -11584870 15674120 -11584870 15613670 -11524420 15613670 -11438940
15704600 -11276050))
(wire (path "B.Cu" 60000 17483290 -8803530 17296360 -9710270 17228990 -9777640 16490130 -10409750
16422760 -10477120 16191370 -10730880 15991970 -11009330 15983700 -11020730
15816730 -11187700 15704600 -11276050))
(via "Via[0-1]_800:600_um" 17483290 -8803530 (net "ADC-Clamp6"))
(via "Via[0-1]_800:600_um" 15704600 -11276050 (net "ADC-Clamp6"))
)
(net "ADC-Clamp2"
(wire (path "F.Cu" 60000 15200200 -11399300 15277700 -11399300 15290130 -11399300 15675270 -11381280
15758450 -11381280 15817260 -11440090 15817260 -11523270 15786910 -11688060))
(wire (path "F.Cu" 60000 15441250 -12268000 15498060 -12353150 15498130 -12353230 15699370 -12657770
15699430 -12657840 15756250 -12743000))
(wire (path "F.Cu" 60000 15441250 -12268000 15493970 -12181350 15493970 -12181050 15786910 -11688060))
(wire (path "B.Cu" 60000 16308500 -11679500 15786910 -11688060))
(via "Via[0-1]_800:600_um" 15786910 -11688060 (net "ADC-Clamp2"))
)
(net "MAP-CPU-A3"
(wire (path "F.Cu" 60000 15408800 -5862000 15491770 -5801410 15492140 -5801050 15554330 -5801050
15572250 -5793630 15671900 -5721520 15673690 -5720260 15675480 -5719010
15677460 -5718080 15679450 -5717160 15681560 -5716590 15683670 -5716030
15685850 -5715830 15688030 -5715640 15750170 -5715640 16993570 -5715640
16995750 -5715830 16997930 -5716030 17000040 -5716590 17002150 -5717160
17004130 -5718080 17006120 -5719010 17007910 -5720260 17009700 -5721520
17053640 -5765460 17056730 -5768550 17059240 -5772130 18301240 -8437380
18303090 -8441350 18304220 -8445570 18353230 -8636340 18353230 -8731620
18301220 -9213930 18300090 -9218150 18298240 -9222120 18295730 -9225700
18251790 -9269640 18248700 -9272730 18245120 -9275240 18241150 -9277090
18236930 -9278220 18232570 -9278610 18045430 -9283390 18043250 -9283580
18041070 -9283780 17723220 -9355950 17722480 -9356660 17719400 -9359710
17718260 -9360840 17645200 -9429750))
(wire (path "F.Cu" 60000 17181350 -9662630 17564380 -9494300 17565020 -9493670 17645200 -9429750))
(wire (path "B.Cu" 60000 16308500 -11933500 15739270 -11803070 15611420 -11687570 15510970 -11587120
15496840 -11553000 15496840 -11410360 15510970 -11376240 15601780 -11233460
15662010 -11173230 15709980 -11145170 15754250 -11118650 15756440 -11117060
15913060 -10960440 15914650 -10958250 16107970 -10665780 16331880 -10419320
16432330 -10318870 17181350 -9662630))
(via "Via[0-1]_800:600_um" 17181350 -9662630 (net "MAP-CPU-A3"))
)
(net "ADC-Clamp5"
(wire (path "F.Cu" 60000 16651600 -9429750 16739000 -9381320 16740100 -9381320 16809700 -9388680))
(wire (path "F.Cu" 60000 14660200 -11399300 14582700 -11399300 14570270 -11399300 14526770 -11374090
14450910 -11298230 14413670 -11256110 14406160 -11237970 14402680 -11208670
14402680 -11081930 14402680 -11051930 14410720 -11032520 14499920 -10943320
14519330 -10935280 15040630 -10830270 15204770 -10830270 15367180 -10830270
15453020 -10833830 16286980 -10975920 16434880 -11014630 16530160 -11014630
16597530 -10947260 16652780 -10572400 16652780 -9501100 16652780 -9471100
16651600 -9429750))
(wire (path "F.Cu" 60000 16817670 -8966900 16828820 -8896610 16828820 -8895900 16893500 -8824750))
(wire (path "F.Cu" 60000 16255160 -7409480 16204340 -7460330 16199490 -7472050 16178550 -7532040
16018900 -8020960))
(wire (path "F.Cu" 50000 16438570 -7404250 16358570 -7404250 16314460 -7404250 16255160 -7409480))
(wire (path "B.Cu" 60000 16018900 -8020960 16817670 -8966900))
(wire (path "B.Cu" 60000 13006500 -13966500 12858950 -14154040 12855290 -14162860 12855290 -15432860
12855290 -15548140 12858950 -15556960 12940040 -15638050 12948860 -15641710
13202860 -15641710 13318140 -15641710 13326960 -15638050 13408050 -15556960
15418520 -11324950 15425710 -11312940 15519380 -11184420 15612970 -11090830
15667490 -11062690 15698350 -11044190 15840190 -10902350 16023380 -10602580
16809700 -9388680))
(wire (path "B.Cu" 60000 16809700 -9388680 16817670 -8966900))
(via "Via[0-1]_800:600_um" 16018900 -8020960 (net "ADC-Clamp5"))
(via "Via[0-1]_800:600_um" 16817670 -8966900 (net "ADC-Clamp5"))
(via "Via[0-1]_800:600_um" 16809700 -9388680 (net "ADC-Clamp5"))
)
(net "INJ2-CPU-D9"
(wire (path "F.Cu" 60000 13776250 -12296700 13833060 -12211540 14016860 -11912230 14016930 -11912150
14073750 -11827000))
(wire (path "F.Cu" 60000 13729490 -11193890 13934790 -11584330 14021030 -11740050 14021030 -11740350
14073750 -11827000))
(wire (path "B.Cu" 60000 13006500 -12696500 12858950 -12508960 12855290 -12500140 12855290 -12384860
12855290 -10606860 12858950 -10598040 12940040 -10516950 12948860 -10513290
13064140 -10513290 13318140 -10513290 13326960 -10516950 13408050 -10598040
13729490 -11193890))
(via "Via[0-1]_800:600_um" 13729490 -11193890 (net "INJ2-CPU-D9"))
)
(net "TACH2-CPU-D18"
(wire (path "F.Cu" 60000 16283560 -7575540 16283560 -7709820 16353650 -7838290 16353650 -7933570
16224790 -8126400 16124340 -8226850 15951500 -8386770 15949950 -8388310
15906010 -8432250 15904470 -8433800 15903210 -8435590 15901960 -8437380
15823460 -8587160))
(wire (path "F.Cu" 60000 16477300 -8824750 16390650 -8877470 16390350 -8877470 16163350 -8969590
16159130 -8970720 16154770 -8971110 16092630 -8971110 15967630 -8971110
15883700 -8969760))
(wire (path "F.Cu" 60000 13260500 -13966500 13843570 -14009690 13845750 -14009880 13847930 -14010080
13850040 -14010640 13852150 -14011210 13854130 -14012130 13856120 -14013060
13857910 -14014310 13991270 -14107620 13992590 -14107620 14063750 -14172300))
(wire (path "F.Cu" 50000 16438570 -7467750 16358570 -7467750 16332270 -7467750 16295070 -7504950
16288560 -7522750 16283560 -7575540))
(wire (path "B.Cu" 60000 13260500 -13966500 13408050 -13778960 15160120 -11053420 15260570 -10952970
15519920 -10801520 15597520 -10723920 15599280 -10719660 15883700 -8969760))
(wire (path "B.Cu" 60000 15823460 -8587160 15883700 -8969760))
(via "Via[0-1]_800:600_um" 15823460 -8587160 (net "TACH2-CPU-D18"))
(via "Via[0-1]_800:600_um" 15883700 -8969760 (net "TACH2-CPU-D18"))
)
(net "INJ1-CPU-D8"
(wire (path "F.Cu" 60000 13260500 -12696500 13708630 -13158260 13709520 -13159160 13776250 -13236000))
(wire (path "F.Cu" 60000 13776250 -13705700 13776250 -13648100 13776250 -13618100 13776250 -13323600
13776250 -13293600 13776250 -13236000))
)
(net "IDLE-CPU-D6"
(wire (path "F.Cu" 60000 13260500 -12442500 13709160 -12689110 13709520 -12689460 13776250 -12766300))
(wire (path "F.Cu" 60000 13776250 -12766300 13833060 -12851450 13833130 -12851530 13834930 -12913900
13921090 -13133850 13922220 -13138070 13922610 -13142430 13927390 -13799270
13927580 -13801450 13927780 -13803630 13928340 -13805740 13928910 -13807850
13929830 -13809830 13930760 -13811820 13932010 -13813610 13933270 -13815400
13936360 -13818490 13980300 -13862430 14157200 -14015570 14201140 -14059510
14204230 -14062600 14206740 -14066180 14208590 -14070150 14209720 -14074370
14210110 -14078730 14210110 -14203730 14210110 -14265870 14209720 -14270230
14208590 -14274450 14206740 -14278420 14204230 -14282000 14160290 -14325940
14157200 -14329030 14153620 -14331540 13830700 -14544260 13829560 -14545390
13828430 -14546520 13824680 -14550270 13824680 -14551590 13776250 -14639000))
)
(net "Net-(C3-Pad2)"
(wire (path "F.Cu" 60000 16814420 -7223570 16666680 -6336110 16666680 -6335400 16618250 -6248000))
(wire (path "F.Cu" 60000 16527200 -5862000 16591880 -5933150 16602000 -6147970 16602000 -6160400
16602000 -6190400 16618250 -6248000))
(wire (path "F.Cu" 50000 16969430 -7277250 16889430 -7277250 16863130 -7277250 16825930 -7240050
16814420 -7223570))
)
(net "Net-(C3-Pad1)"
(wire (path "F.Cu" 50000 16969430 -7213750 16932000 -7218250 16932000 -7193250 16932000 -6335600
16932000 -6310600 16915750 -6248000))
(wire (path "F.Cu" 60000 16900000 -5862000 16964680 -5933150 16964680 -5934250 16964180 -6160590
16915750 -6248000))
)
(net "O2_sens"
(wire (path "F.Cu" 60000 18255550 -11830500 18198730 -11745340 18015450 -11496810))
(wire (path "F.Cu" 60000 15766250 -13662000 15830170 -13581820 15830800 -13581180 16109620 -12902080
16110750 -12897860 16112240 -12891930 16112630 -12887570 16163270 -11877050
16169220 -11782150 16171900 -11624770 16173330 -11621320 16345230 -11351970))
(wire (path "B.Cu" 60000 15458000 -4761000 15666390 -4911780 16256030 -5233510 16351310 -5233510
16418680 -5166140 16812430 -4727710 16948000 -4546770 17074770 -4420000
17091000 -4410270 17150540 -4385590 17168900 -4380980 17349100 -4380980
17367460 -4385590 17427000 -4410270 17443230 -4420000 17570000 -4546770
17579730 -4563000 17604410 -4622540 17609020 -4640900 17609020 -4821100
17426980 -5997830 17426980 -6210170 18282010 -9960810 18282010 -10147190
18015450 -11496810))
(wire (path "B.Cu" 60000 16345230 -11351970 16173170 -11298520 16113080 -11238430 16113080 -11153450
16124980 -11141300 16367510 -10851980 16434880 -10784610 16530160 -10784610
18015450 -11496810))
(via "Via[0-1]_800:600_um" 16345230 -11351970 (net "O2_sens"))
(via "Via[0-1]_800:600_um" 18015450 -11496810 (net "O2_sens"))
)
(net "TPS_sens"
(wire (path "F.Cu" 60000 17277250 -10821000 17325680 -10733590 17325680 -10732470 17358920 -10441470
17537800 -9937680 17563890 -9874740 17576160 -9854280 17707280 -9723160
18061260 -9497360 18062160 -9496470 18139000 -9429750))
(wire (path "F.Cu" 60000 15319500 -4477000 15527890 -4326220 15538110 -4321990 16069050 -4196980
16752570 -4164040 16901130 -4164040 16940720 -4180440 17396730 -4479580
17510420 -4593270 17512540 -4596820 17533000 -4646150 17534010 -4650170
17534010 -4811830 17531990 -6010810 17531990 -6197190 17537800 -6220320
18408100 -8409050 18409230 -8413270 18458240 -8612660 18458240 -8755300
18406230 -9246230 18405100 -9250450 18397060 -9269860 18395210 -9273830
18306010 -9363030 18286600 -9371070 18224150 -9372930 18139000 -9429750))
)
(net "ITS_sens"
(wire (path "F.Cu" 60000 15257720 -5741460 15300890 -5720260 15308760 -5716590 15310870 -5716030
15313050 -5715830 15315230 -5715640 15502370 -5710860 15506730 -5710470
15510950 -5709340 15514920 -5707490 15518500 -5704980 15521590 -5701890
15565530 -5657950 15568040 -5654370 15569890 -5650400 15620510 -5478600
15621430 -5476610 15622360 -5474630 15623610 -5472840 15624870 -5471050
15626410 -5469500 15670350 -5425560 15671900 -5424020 16204850 -4922520
16234670 -4910170 16346230 -4910170 16622320 -4905600 16628720 -4902950
16707950 -4823720 16710600 -4817320 16710600 -4704680 16707950 -4698280
16697420 -4680070))
(wire (path "F.Cu" 60000 18142000 -8824750 18210970 -8754350 18210970 -8754150 18238220 -8683980))
(wire (path "F.Cu" 60000 15036000 -5564500 15118970 -5625090 15257720 -5741460))
(wire (path "F.Cu" 60000 15257720 -5741460 15246580 -5780320 15246380 -5782500 15246190 -5784680
15246190 -5877180 15246190 -5939320 15260230 -6161050 15260230 -6161350
15312950 -6248000))
(wire (path "B.Cu" 60000 18238220 -8683980 17537800 -6220320 17531990 -6197190 17531990 -6010810
17744030 -4837790 17744030 -4624210 17732940 -4580050 17700650 -4502130
17677230 -4463070 17526930 -4312770 17487870 -4289350 17409950 -4257060
17365790 -4245970 17152210 -4245970 17108050 -4257060 17030130 -4289350
16936370 -4338350))
(wire (path "B.Cu" 60000 16936370 -4338350 16874490 -4283930 16779210 -4283930 15261110 -4321990
15250890 -4326220 15042500 -4477000))
(wire (path "B.Cu" 60000 16936370 -4338350 16926860 -4440370 16876510 -4490970 16697420 -4680070))
(via "Via[0-1]_800:600_um" 18238220 -8683980 (net "ITS_sens"))
(via "Via[0-1]_800:600_um" 16697420 -4680070 (net "ITS_sens"))
)
(net "CLT_sens"
(wire (path "F.Cu" 60000 16157800 -9429750 16222480 -9500900 16222480 -9502230 16537770 -10524760))
(wire (path "F.Cu" 60000 15645000 -8527250 15718060 -8458340 15719200 -8457210 16066540 -8135970
16133910 -8068600 16238640 -7885930))
(wire (path "F.Cu" 60000 15738750 -12268000 15795560 -12182840 15866190 -11831990 15889990 -11730760
15900710 -11582260 15908090 -11552860 15983430 -11290070))
(wire (path "B.Cu" 60000 16537770 -10524760 17531300 -10627800 17626580 -10627800 17693950 -10560430
17693950 -10465150 17563890 -10233260 17537800 -10170320 17531990 -10147190
17531990 -9960810 17723310 -8878830 17723310 -8728230 17706130 -8686760
16875330 -7758720))
(wire (path "B.Cu" 60000 16238640 -7885930 16875330 -7758720))
(wire (path "B.Cu" 60000 15983430 -11290070 16020510 -11129560 16030850 -11104590 16054340 -11081020
16276630 -10794180 16537770 -10524760))
(wire (path "B.Cu" 60000 15181000 -4761000 15389390 -4911780 16198230 -5324390 16232350 -5338520
16374990 -5338520 16409110 -5324390 16509560 -5223940 16903310 -4785510
17019500 -4602570 17130570 -4491500 17131580 -4490890 17178880 -4471280
17180020 -4470990 17337980 -4470990 17339120 -4471280 17386420 -4490890
17387430 -4491500 17498500 -4602570 17499110 -4603580 17518720 -4650880
17519010 -4652020 17519010 -4809980 16921700 -7647850 16875330 -7758720))
(via "Via[0-1]_800:600_um" 15983430 -11290070 (net "CLT_sens"))
(via "Via[0-1]_800:600_um" 16238640 -7885930 (net "CLT_sens"))
(via "Via[0-1]_800:600_um" 16537770 -10524760 (net "CLT_sens"))
)
(net "+12V"
(wire (path "F.Cu" 80000 12969000 -6586000 12899000 -6656000 12899000 -6696000 12899000 -6712570
12773990 -7027650 12729470 -7413350 12676750 -7500000))
(wire (path "F.Cu" 80000 12676750 -7500000 12624030 -7586640 12624030 -7586950 12622790 -7588190
12314450 -7888030 12314140 -7888030 12211250 -7987000))
(wire (path "B.Cu" 80000 12896000 -5484000 12846000 -5534000 12806000 -5534000 12789430 -5534000
12766000 -5557430 12720990 -5675630 12720990 -5929630 12720990 -6054370
12728270 -6071940 12899000 -6459430 12899000 -6476000 12899000 -6516000
12969000 -6586000))
)
(net "Net-(D1-Pad2)"
(wire (path "F.Cu" 60000 11783750 -11765000 11825100 -11767500 11855100 -11767500 12059900 -11767500
12089900 -11767500 12131250 -11770000))
)
(net "inj-1-out"
(wire (path "F.Cu" 100000 14350000 -4761000 13926280 -5240880))
(wire (path "F.Cu" 100000 11747000 -8981000 11661390 -9058790 11570790 -9149390 11561990 -9170640
11380380 -9886980 11367620 -9937640 11366980 -9941660 11319890 -11169150
11319890 -11294150 11319890 -11372850 11320080 -11375030 11320280 -11377210
11320840 -11379320 11321410 -11381430 11437820 -11676270 11437820 -11677590
11486250 -11765000))
(wire (path "B.Cu" 100000 13926280 -5240880 12330360 -5221990 12201640 -5221990 12180390 -5230790
12089790 -5321390 12080990 -5342640 12080990 -5471360 12089790 -5492610
12268020 -5915720 12295240 -5981380 12302010 -6008340 12311010 -6830680
12311010 -6975320 11932010 -8856350 11876350 -8912010 11747000 -8981000))
(via "Via[0-1]_800:600_um" 13926280 -5240880 (net "inj-1-out"))
)
(net "Net-(D3-Pad2)"
(wire (path "F.Cu" 60000 11783750 -12753000 11854900 -12688320 11856000 -12688320 12059390 -12693320
12060090 -12693320 12131250 -12758000))
)
(net "inj-2-out"
(wire (path "F.Cu" 100000 14211500 -4477000 14014440 -4309270 13799790 -4207340 13748010 -4185870
13740550 -4184000 13463550 -4184000 13297450 -4184000 12447780 -4290980
12412210 -4299910 12340420 -4329670 12308980 -4348520 12166520 -4490980
12147670 -4522420 12068150 -4755260 12053150 -4800260 11989970 -4888450
11878140 -4955270 11451640 -5081990 11430390 -5090790 11339790 -5181390
11330990 -5202640 11330990 -5331360 11519890 -8118850 11520080 -8121030
11520280 -8123210 11520840 -8125320 11521410 -8127430 11522330 -8129410
11523260 -8131400 11524510 -8133190 11525770 -8134980 11932010 -8597650
12126130 -8970540))
(wire (path "F.Cu" 100000 12126130 -8970540 12523000 -8981000))
(wire (path "F.Cu" 100000 12126130 -8970540 11923210 -9320610 11560270 -9841880 11545980 -9865720
11518760 -9931380 11511990 -9958340 11486250 -11163530 11486250 -11183400
11486250 -11271000))
)
(net "Net-(IC2-Pad2)"
(wire (path "F.Cu" 60000 14984000 -9097000 15558850 -9267090 15563070 -9268220 15567430 -9268610
16064230 -9278610 16683030 -9278610 16745170 -9278610 16749530 -9278220
16753750 -9277090 16762060 -9273670 16857340 -9273670 17059670 -9371320
17060990 -9371320 17148400 -9419750))
(wire (path "F.Cu" 60000 18255550 -12843000 18316140 -12760020 18316490 -12759660 18509950 -12509540
18512460 -12505960 18514310 -12501990 18525400 -12475230 18526530 -12471010
18526920 -12466650 18526920 -12331950 18526920 -12206950 18421110 -10724430
18420720 -10720070 18419590 -10715850 18417740 -10711880 18415230 -10708300
18412140 -10705210 18368200 -10661270 18366410 -10660010 18364620 -10658760
18362630 -10657830 18360650 -10656910 17626580 -10397780 17531300 -10397780
17463930 -10465150 17429080 -10727720 17423610 -10914570 17423220 -10918930
17422090 -10923150 17420240 -10927120 17417730 -10930700 17373790 -10974640
17370700 -10977730 17367120 -10980240 17363150 -10982090 17358930 -10983220
17354570 -10983610 17292430 -10983610 17199930 -10983610 17195570 -10983220
17191350 -10982090 17187380 -10980240 17183800 -10977730 17139860 -10933790
17136770 -10930700 17135510 -10928910 17134260 -10927120 17133330 -10925130
17132410 -10923150 17131840 -10921040 17131280 -10918930 17131080 -10916750
17130890 -10914570 17066340 -9710270 17066340 -9614990 17115900 -9503530
17115900 -9491100 17115900 -9461100 17148400 -9419750))
)
(net "Net-(IC2-Pad4)"
(wire (path "F.Cu" 60000 15661000 -9419750 15596320 -9490900 15596320 -9491920 15565480 -9547150))
(wire (path "F.Cu" 60000 14984000 -8589000 14833220 -8774390 14828990 -8784610 14828990 -9399930
14828990 -9462070 14872930 -9506010 15565480 -9547150))
(wire (path "F.Cu" 60000 16482520 -10899620 15565480 -9547150))
(wire (path "F.Cu" 60000 18255550 -12336800 18191620 -12256620 18190980 -12255990 18023700 -12124160))
(wire (path "B.Cu" 60000 18023700 -12124160 16482520 -10899620))
(via "Via[0-1]_800:600_um" 18023700 -12124160 (net "Net-(IC2-Pad4)"))
(via "Via[0-1]_800:600_um" 16482520 -10899620 (net "Net-(IC2-Pad4)"))
)
(net "Net-(IC2-Pad5)"
(wire (path "F.Cu" 100000 14222000 -8589000 13614920 -8425140 13540400 -8394260 13505570 -8373380
13359620 -8227430 13338740 -8192600 13307860 -8118080 13297970 -8078700
13297970 -7871300 13464030 -7202020 13464030 -6985980 13439400 -6791220
13439400 -6618780 13442500 -6606430 13582860 -6228730 13582930 -6228650
13736000 -6154750))
)
(net "Net-(IC2-Pad7)"
(wire (path "F.Cu" 100000 14222000 -9097000 14389730 -8922940 14397010 -8905370 14397010 -8780630
14397010 -8526630 14389730 -8509060 14301940 -8421270 14284370 -8413990
13672230 -8290020 13660560 -8287090 13605780 -8264380 13595470 -8258200
13474800 -8137530 13468620 -8127220 13445910 -8072440 13442980 -8060770
13442980 -7889230 13606450 -7230470 13609040 -7214280 13609040 -6973720
13606450 -6957530 13576200 -6768720 13576200 -6641280 13584510 -6621210
13674210 -6531510 14215180 -6227300 14215820 -6226670 14376000 -6157750))
)
(net "ign-2-out"
(wire (path "F.Cu" 100000 13382680 -5633560 13567890 -5610680 13568590 -5610680 13736000 -5557250))
(wire (path "F.Cu" 100000 13934500 -4477000 13729790 -4320720 13717180 -4315500 13597820 -4315500
13588650 -4315620 13449350 -4315620 13440180 -4315500 13320820 -4315500
13259270 -4329060 12465700 -4435990 12457860 -4437960 12405800 -4459540
12398870 -4463700 12281700 -4580870 12277540 -4587800 12255960 -4639860
12253990 -4647700 12080990 -5342640 12080990 -5471360 12089790 -5492610
12180390 -5583210 12356430 -5657810 12362980 -5660520 12475780 -5660520
12482330 -5657810 12561680 -5578460 12710990 -5354650 12766650 -5298990
12845350 -5298990 13025350 -5298990 13382680 -5633560))
(wire (path "F.Cu" 100000 12428750 -12758000 12376030 -12844640 12376030 -12844950 12374790 -12846190
12225430 -12939090 12221210 -12940220 12216850 -12940610 12138150 -12940610
12045650 -12940610 11400650 -12935610 11396290 -12935220 11392070 -12934090
11388100 -12932240 11384520 -12929730 11328860 -12874070 11325770 -12870980
11324510 -12869190 11323260 -12867400 11322330 -12865410 11321410 -12863430
11320840 -12861320 11320280 -12859210 11320080 -12857030 11319890 -12854850
11319890 -12776150 11319890 -12157150 11320080 -12154970 11320280 -12152790
11320840 -12150680 11321410 -12148570 11322330 -12146580 11323260 -12144600
11324510 -12142810 11325770 -12141020 11327310 -12139470 11382970 -12083810
11384520 -12082270 11386310 -12081010 11388100 -12079760 11390080 -12078830
11392070 -12077910 11394180 -12077340 11396290 -12076780 12518710 -11952220
12522930 -11951090 12526900 -11949240 12530480 -11946730 12586140 -11891070
12587550 -11889470 12587650 -11868760 12587650 -11796240 12587650 -11156480
12565270 -10765870 12565270 -10563130 12606850 -10077550 12626990 -9916440
12634240 -9887570 12804940 -9322470 12815320 -9285200 12840640 -9224140
12851500 -9206020 12866700 -9190750 12880600 -9167560 12907610 -9102420
12953660 -8923890 12958030 -8906480 12964980 -8561700 13007950 -7845980
13012670 -7816420 13174010 -7162340 13174010 -7025660 13165800 -6821490
13165800 -6588510 13167460 -6578150 13382680 -5633560))
)
(net "ign-1-out"
(wire (path "F.Cu" 100000 14073000 -4761000 13783980 -5177930 13781270 -5184480 13781270 -5297280
13783980 -5303830 13863330 -5383180 13869880 -5385890 13917850 -5385890
13920030 -5386080 13922210 -5386280 13924320 -5386840 13926430 -5387410
14212660 -5494310 14213020 -5494660 14376000 -5560250))
(wire (path "F.Cu" 100000 12428750 -12264000 12492670 -12183820 12708660 -11967380 12725200 -11927440
12725200 -11904830 12725200 -11760170 12725200 -11115610 12710280 -10747950
12710280 -10581050 12751860 -10095470 12772000 -9934360 12772290 -9933210
12930290 -9363920 12940580 -9323700 12956350 -9285630 12969840 -9272070
12970900 -9270620 12997110 -9226850 12997600 -9225890 13031570 -9143930
13091710 -8969530 13103040 -8924410 13109990 -8597650 13152960 -7857490
13154870 -7845570 13319020 -7184100 13319020 -7003900 13302600 -6808130
13302600 -6601870 13312270 -6563370 13474910 -6055570 13475830 -6053580
13476760 -6051600 13478010 -6049810 13479270 -6048020 13480810 -6046470
13536470 -5990810 13538020 -5989270 13539810 -5988010 13541600 -5986760
14221720 -5641230 14222630 -5640340 14223530 -5639450 14225790 -5637190
14227030 -5635950 14227030 -5635640 14376000 -5560250))
)
(net "idle-out"
(wire (path "F.Cu" 100000 12419380 -5515510 12442210 -5492610 12583160 -5277230 12689230 -5171160
12730700 -5153980 13393320 -5061020 13427440 -5046890 13598940 -4928730
13796000 -4761000))
(wire (path "B.Cu" 100000 13295000 -8981000 13165650 -8912010 13109990 -8856350 12460970 -6092610
12419380 -5515510))
(via "Via[0-1]_800:600_um" 12419380 -5515510 (net "idle-out"))
)
(net "MAP"
(wire (path "F.Cu" 60000 16012000 -4761000 15477770 -5493800 15477770 -5494100 15408800 -5564500))
)
(net "VR2-"
(wire (path "F.Cu" 60000 16150500 -4477000 16354340 -4615120 16362160 -4622880 16370260 -4626230
16484740 -4626230 16492840 -4622880 16500660 -4615120 16508760 -4611770
16655990 -4580060 16738850 -4580060 16797430 -4638640 16805200 -4685860
16805200 -4836140 16788150 -4877300 16682300 -4983150 16641140 -5000200
16365950 -5009330 16258450 -5009330 16194500 -5073280 15850570 -5493800
15850570 -5494100 15781600 -5564500))
)
(net "VR2+"
(wire (path "F.Cu" 60000 16303670 -5118500 16223370 -5494100 16154400 -5564500))
(wire (path "B.Cu" 60000 16289000 -4761000 16303670 -5118500))
(via "Via[0-1]_800:600_um" 16303670 -5118500 (net "VR2+"))
)
(net "VR1-"
(wire (path "F.Cu" 60000 16427500 -4477000 16762780 -4490050 16785860 -4499610 16877880 -4591630
16887440 -4614710 16899800 -4672900 16899800 -4849100 16895970 -4864350
16872200 -4921680 16596170 -5493800 16596170 -5494100 16527200 -5564500))
)
(net "VR1+"
(wire (path "F.Cu" 60000 16826850 -4398940 16960770 -4533030 16964420 -4539120 16985720 -4590500
16987450 -4597380 16994400 -4661210 16994400 -4860790 16964680 -5492220
16964680 -5493340 16900000 -5564500))
(wire (path "B.Cu" 60000 16566000 -4761000 16582410 -4632430 16649780 -4565060 16826850 -4398940))
(via "Via[0-1]_800:600_um" 16826850 -4398940 (net "VR1+"))
)
(net "Net-(Q1-Pad1)"
(wire (path "F.Cu" 60000 13032020 -10013340 13126890 -10126810 13408050 -10598040 13411710 -10606860
13630280 -12394630 13630840 -12396740 13631410 -12398850 13632330 -12400830
13633260 -12402820 13634510 -12404610 13635770 -12406400 13638860 -12409490
13682800 -12453430 13869700 -12609570 13913640 -12653510 13916730 -12656600
13919240 -12660180 13921090 -12664150 13922220 -12668370 13922610 -12672730
13927390 -12859870 13927580 -12862050 13927780 -12864230 13928340 -12866340
13928910 -12868450 14015070 -13088400 14021030 -13149050 14021030 -13149350
14073750 -13236000))
(wire (path "B.Cu" 60000 11747000 -8727000 11687000 -8787000 11657000 -8787000 11644570 -8787000
11627000 -8804570 11581990 -8920620 11581990 -9174620 11581990 -9295380
11587750 -9309280 11672720 -9394250 12142630 -9598930 13032020 -10013340))
(via "Via[0-1]_800:600_um" 13032020 -10013340 (net "Net-(Q1-Pad1)"))
)
(net "Net-(Q2-Pad1)"
(wire (path "F.Cu" 60000 13171370 -9397170 13516610 -10585570 13516720 -10585990 13614480 -11241530
13723530 -11740050 13723530 -11740350 13776250 -11827000))
(wire (path "B.Cu" 60000 12523000 -8727000 12583000 -8787000 12613000 -8787000 12625430 -8787000
12643000 -8804570 13171370 -9397170))
(via "Via[0-1]_800:600_um" 13171370 -9397170 (net "Net-(Q2-Pad1)"))
)
(net "Net-(Q3-Pad1)"
(wire (path "F.Cu" 60000 13295000 -8727000 13355000 -8787000 13385000 -8787000 13397430 -8787000
13415000 -8804570 13460010 -8920620 14048200 -11260660 14060860 -11310950
14061500 -11312900 14071630 -11339160 14105680 -11421310 14106250 -11422440
14132570 -11466390 14133820 -11468110 14298880 -11652010 14325470 -11706110
14335020 -11729160 14345120 -11792150 14345120 -13231150 14345120 -13365850
14315120 -14298170 14314730 -14302530 14313600 -14306750 14305560 -14326160
14303710 -14330130 14301200 -14333710 14122180 -14550270 14122180 -14551590
14073750 -14639000))
)
(net "Net-(A1-Pad10)"
)
(net "Net-(A1-Pad11)"
)
(net "Net-(A1-Pad12)"
)
(net "Net-(ARD1-Pad78)"
)
(net "Net-(ARD1-Pad77)"
)
(net "Net-(ARD1-Pad0)"
)
(net "Net-(ARD1-Pad79)"
)
(net "Net-(ARD1-Pad76)"
)
(net "Net-(ARD1-Pad1)"
)
(net "Net-(ARD1-Pad2)"
)
(net "Net-(ARD1-Pad4)"
)
(net "Net-(ARD1-Pad10)"
)
(net "Net-(ARD1-Pad12)"
)
(net "Net-(ARD1-Pad14)"
)
(net "Net-(ARD1-Pad20)"
)
(net "Net-(ARD1-Pad22)"
)
(net "Net-(ARD1-Pad26)"
)
(net "Net-(ARD1-Pad28)"
)
(net "Net-(ARD1-Pad30)"
)
(net "Net-(ARD1-Pad3)"
)
(net "Net-(ARD1-Pad5)"
)
(net "Net-(ARD1-Pad7)"
)
(net "Net-(ARD1-Pad11)"
)
(net "Net-(ARD1-Pad13)"
)
(net "Net-(ARD1-Pad15)"
)
(net "Net-(ARD1-Pad21)"
)
(net "Net-(ARD1-Pad23)"
)
(net "Net-(ARD1-Pad25)"
)
(net "Net-(ARD1-Pad27)"
)
(net "Net-(ARD1-Pad29)"
)
(net "Net-(ARD1-Pad31)"
)
(net "Net-(ARD1-Pad73)"
)
(net "Net-(ARD1-Pad74)"
)
(net "Net-(ARD1-Pad75)"
)
(net "Net-(ARD1-Pad72)"
)
(net "Net-(ARD1-Pad71)"
)
(net "Net-(ARD1-Pad70)"
)
(net "Net-(ARD1-Pad53)"
)
(net "Net-(ARD1-Pad51)"
)
(net "Net-(ARD1-Pad49)"
)
(net "Net-(ARD1-Pad45)"
)
(net "Net-(ARD1-Pad44)"
)
(net "Net-(ARD1-Pad52)"
)
(net "Net-(ARD1-Pad50)"
)
(net "Net-(ARD1-Pad48)"
)
(net "Net-(ARD1-Pad47)"
)
(net "Net-(ARD1-Pad46)"
)
(net "Net-(ARD1-Pad43)"
)
(net "Net-(ARD1-Pad41)"
)
(net "Net-(ARD1-Pad39)"
)
(net "Net-(ARD1-Pad37)"
)
(net "Net-(ARD1-Pad35)"
)
(net "Net-(ARD1-Pad33)"
)
(net "Net-(ARD1-Pad69)"
)
(net "Net-(ARD1-Pad67)"
)
(net "Net-(ARD1-Pad65)"