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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
<svg width="3084pt" height="4794pt"
viewBox="0.00 0.00 3084.00 4794.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4790)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-4790 3080,-4790 3080,4 -4,4"/>
<!-- ECUM -->
<g id="node1" class="node">
<title>ECUM</title>
<polygon fill="#ffffff" stroke="black" points="236,-1930.5 0,-1930.5 0,-1546 236,-1546 236,-1930.5"/>
<polygon fill="none" stroke="black" points="0,-1906 0,-1930.5 236,-1930.5 236,-1906 0,-1906"/>
<text text-anchor="start" x="97.38" y="-1913.2" font-family="arial" font-size="14.00">ECUM</text>
<polygon fill="none" stroke="black" points="0,-1881.5 0,-1906 157.38,-1906 157.38,-1881.5 0,-1881.5"/>
<text text-anchor="start" x="23.56" y="-1888.7" font-family="arial" font-size="14.00">Delphi 15336209</text>
<polygon fill="none" stroke="black" points="157.38,-1881.5 157.38,-1906 236,-1906 236,-1881.5 157.38,-1881.5"/>
<text text-anchor="start" x="180.94" y="-1888.7" font-family="arial" font-size="14.00">7-pin</text>
<polygon fill="none" stroke="black" points="0,-1857.5 0,-1881.5 158.5,-1881.5 158.5,-1857.5 0,-1857.5"/>
<text text-anchor="start" x="56.38" y="-1864.2" font-family="arial" font-size="14.00">Ignition</text>
<polygon fill="none" stroke="black" points="158.5,-1857.5 158.5,-1881.5 236,-1881.5 236,-1857.5 158.5,-1857.5"/>
<text text-anchor="start" x="193.12" y="-1864.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-1833.5 0,-1857.5 158.5,-1857.5 158.5,-1833.5 0,-1833.5"/>
<text text-anchor="start" x="63.5" y="-1840.2" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="158.5,-1833.5 158.5,-1857.5 236,-1857.5 236,-1833.5 158.5,-1833.5"/>
<text text-anchor="start" x="193.12" y="-1840.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-1809.5 0,-1833.5 158.5,-1833.5 158.5,-1809.5 0,-1809.5"/>
<text text-anchor="start" x="44" y="-1816.2" font-family="arial" font-size="14.00">Extra Out 1</text>
<polygon fill="none" stroke="black" points="158.5,-1809.5 158.5,-1833.5 236,-1833.5 236,-1809.5 158.5,-1809.5"/>
<text text-anchor="start" x="193.12" y="-1816.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-1785.5 0,-1809.5 158.5,-1809.5 158.5,-1785.5 0,-1785.5"/>
<text text-anchor="start" x="44" y="-1792.2" font-family="arial" font-size="14.00">Extra Out 2</text>
<polygon fill="none" stroke="black" points="158.5,-1785.5 158.5,-1809.5 236,-1809.5 236,-1785.5 158.5,-1785.5"/>
<text text-anchor="start" x="193.12" y="-1792.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-1761.5 0,-1785.5 158.5,-1785.5 158.5,-1761.5 0,-1761.5"/>
<text text-anchor="start" x="34.62" y="-1768.2" font-family="arial" font-size="14.00">Starter/Exciter</text>
<polygon fill="none" stroke="black" points="158.5,-1761.5 158.5,-1785.5 236,-1785.5 236,-1761.5 158.5,-1761.5"/>
<text text-anchor="start" x="193.12" y="-1768.2" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-1737.5 0,-1761.5 158.5,-1761.5 158.5,-1737.5 0,-1737.5"/>
<text text-anchor="start" x="49.25" y="-1744.2" font-family="arial" font-size="14.00">12V ECU</text>
<polygon fill="none" stroke="black" points="158.5,-1737.5 158.5,-1761.5 236,-1761.5 236,-1737.5 158.5,-1737.5"/>
<text text-anchor="start" x="193.12" y="-1744.2" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-1713.5 0,-1737.5 158.5,-1737.5 158.5,-1713.5 0,-1713.5"/>
<text text-anchor="start" x="45.5" y="-1720.2" font-family="arial" font-size="14.00">12V Servo</text>
<polygon fill="none" stroke="black" points="158.5,-1713.5 158.5,-1737.5 236,-1737.5 236,-1713.5 158.5,-1713.5"/>
<text text-anchor="start" x="193.12" y="-1720.2" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,-1570.5 0,-1713.5 236,-1713.5 236,-1570.5 0,-1570.5"/>
<image xlink:href="images\ECU3.png" width="228px" height="135px" preserveAspectRatio="xMinYMin meet" x="4" y="-1709.5"/>
<polygon fill="none" stroke="black" points="0,-1546 0,-1570.5 236,-1570.5 236,-1546 0,-1546"/>
<text text-anchor="start" x="80.88" y="-1553.2" font-family="arial" font-size="14.00">ECU 12 Pin</text>
</g>
<!-- W1 -->
<g id="node25" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="727.5,-2169 382.5,-2169 382.5,-2029.5 727.5,-2029.5 727.5,-2169"/>
<polygon fill="none" stroke="black" points="382.5,-2144.5 382.5,-2169 727.5,-2169 727.5,-2144.5 382.5,-2144.5"/>
<text text-anchor="start" x="543.75" y="-2151.7" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="382.5,-2120 382.5,-2144.5 464,-2144.5 464,-2120 382.5,-2120"/>
<text text-anchor="start" x="415.75" y="-2127.2" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="464,-2120 464,-2144.5 586,-2144.5 586,-2120 464,-2120"/>
<text text-anchor="start" x="497.25" y="-2127.2" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="586,-2120 586,-2144.5 727.5,-2144.5 727.5,-2120 586,-2120"/>
<text text-anchor="start" x="619.25" y="-2127.2" font-family="arial" font-size="14.00">50.0 Inches</text>
<text text-anchor="start" x="433.62" y="-2104.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="384.12" y="-2084.7" font-family="arial" font-size="14.00">ECUM:1:Ignition</text>
<text text-anchor="start" x="490.12" y="-2084.7" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="548.5" y="-2084.7" font-family="arial" font-size="14.00">Coil Pack 1:E:Switched 12V</text>
<polygon fill="#000000" stroke="none" points="382.5,-2078 382.5,-2080 727.5,-2080 727.5,-2078 382.5,-2078"/>
<polygon fill="#ff0000" stroke="none" points="382.5,-2076 382.5,-2078 727.5,-2078 727.5,-2076 382.5,-2076"/>
<polygon fill="#000000" stroke="none" points="382.5,-2074 382.5,-2076 727.5,-2076 727.5,-2074 382.5,-2074"/>
<text text-anchor="start" x="433.62" y="-2058.7" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="382.5,-2029.5 382.5,-2054 727.5,-2054 727.5,-2029.5 382.5,-2029.5"/>
<text text-anchor="start" x="416.25" y="-2036.7" font-family="arial" font-size="14.00">12 Inch difference between outermost coils.</text>
</g>
<!-- ECUM--W1 -->
<g id="edge1" class="edge">
<title>ECUM:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.39,-1867.59C350.5,-1834.22 270.73,-2041.72 382.11,-2075.09"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1869.5C348.64,-1833.5 268.86,-2041 381.5,-2077"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.61,-1871.41C346.77,-1832.78 267,-2040.28 380.89,-2078.91"/>
</g>
<!-- ECUM--W1 -->
<g id="edge3" class="edge">
<title>ECUM:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.79,-1867.51C350.5,-1858.22 270.73,-2065.72 381.71,-2075.01"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1869.5C348.64,-1857.5 268.86,-2065 381.5,-2077"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.21,-1871.49C346.77,-1856.78 267,-2064.28 381.29,-2078.99"/>
</g>
<!-- ECUM--W1 -->
<g id="edge5" class="edge">
<title>ECUM:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.21,-1867.51C350.5,-1882.22 270.73,-2089.72 381.29,-2075.01"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1869.5C348.64,-1881.5 268.86,-2089 381.5,-2077"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.79,-1871.49C346.77,-1880.78 267,-2088.28 381.71,-2078.99"/>
</g>
<!-- ECUM--W1 -->
<g id="edge7" class="edge">
<title>ECUM:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.61,-1867.59C350.5,-1906.22 270.73,-2113.72 380.89,-2075.09"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1869.5C348.64,-1905.5 268.86,-2113 381.5,-2077"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.39,-1871.41C346.77,-1904.78 267,-2112.28 382.11,-2078.91"/>
</g>
<!-- W2 -->
<g id="node26" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="712.5,-1526.75 397.5,-1526.75 397.5,-1411.75 712.5,-1411.75 712.5,-1526.75"/>
<polygon fill="none" stroke="black" points="397.5,-1502.25 397.5,-1526.75 712.5,-1526.75 712.5,-1502.25 397.5,-1502.25"/>
<text text-anchor="start" x="543.75" y="-1509.45" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="397.5,-1477.75 397.5,-1502.25 469,-1502.25 469,-1477.75 397.5,-1477.75"/>
<text text-anchor="start" x="425.75" y="-1484.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="469,-1477.75 469,-1502.25 581,-1502.25 581,-1477.75 469,-1477.75"/>
<text text-anchor="start" x="497.25" y="-1484.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="581,-1477.75 581,-1502.25 712.5,-1502.25 712.5,-1477.75 581,-1477.75"/>
<text text-anchor="start" x="609.25" y="-1484.95" font-family="arial" font-size="14.00">40.0 Inches</text>
<text text-anchor="start" x="456.12" y="-1462.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="399.5" y="-1442.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
<text text-anchor="start" x="520.12" y="-1442.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="578.12" y="-1442.45" font-family="arial" font-size="14.00">Fuel Injector 2:1:12V</text>
<polygon fill="#000000" stroke="none" points="397.5,-1435.75 397.5,-1437.75 712.5,-1437.75 712.5,-1435.75 397.5,-1435.75"/>
<polygon fill="#ff0000" stroke="none" points="397.5,-1433.75 397.5,-1435.75 712.5,-1435.75 712.5,-1433.75 397.5,-1433.75"/>
<polygon fill="#000000" stroke="none" points="397.5,-1431.75 397.5,-1433.75 712.5,-1433.75 712.5,-1431.75 397.5,-1431.75"/>
<text text-anchor="start" x="456.12" y="-1416.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM--W2 -->
<g id="edge9" class="edge">
<title>ECUM:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.85,-1747.51C391.23,-1738.38 237.68,-1423.63 396.65,-1432.76"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1749.5C393.03,-1737.5 239.47,-1422.75 396.5,-1434.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.15,-1751.49C394.82,-1736.62 241.27,-1421.87 396.35,-1436.74"/>
</g>
<!-- ECUM--W2 -->
<g id="edge11" class="edge">
<title>ECUM:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236.15,-1747.51C391.23,-1762.38 237.68,-1447.63 396.35,-1432.76"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1749.5C393.03,-1761.5 239.47,-1446.75 396.5,-1434.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M235.85,-1751.49C394.82,-1760.62 241.27,-1445.87 396.65,-1436.74"/>
</g>
<!-- W3 -->
<g id="node27" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="730,-1951.75 380,-1951.75 380,-1784.75 730,-1784.75 730,-1951.75"/>
<polygon fill="none" stroke="black" points="380,-1927.25 380,-1951.75 730,-1951.75 730,-1927.25 380,-1927.25"/>
<text text-anchor="start" x="543.75" y="-1934.45" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="380,-1902.75 380,-1927.25 463.17,-1927.25 463.17,-1902.75 380,-1902.75"/>
<text text-anchor="start" x="414.08" y="-1909.95" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="463.17,-1902.75 463.17,-1927.25 586.83,-1927.25 586.83,-1902.75 463.17,-1902.75"/>
<text text-anchor="start" x="497.25" y="-1909.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="586.83,-1902.75 586.83,-1927.25 730,-1927.25 730,-1902.75 586.83,-1902.75"/>
<text text-anchor="start" x="620.92" y="-1909.95" font-family="arial" font-size="14.00">16.5 Inches</text>
<text text-anchor="start" x="443.62" y="-1887.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="381.75" y="-1867.45" font-family="arial" font-size="14.00">ECUM:3:Extra Out 1</text>
<text text-anchor="start" x="512.62" y="-1867.45" font-family="arial" font-size="14.00">     GN    </text>
<text text-anchor="start" x="572.62" y="-1867.45" font-family="arial" font-size="14.00">ECU1:B4:Extra Output 1</text>
<polygon fill="#000000" stroke="none" points="380,-1860.75 380,-1862.75 730,-1862.75 730,-1860.75 380,-1860.75"/>
<polygon fill="#00ff00" stroke="none" points="380,-1858.75 380,-1860.75 730,-1860.75 730,-1858.75 380,-1858.75"/>
<polygon fill="#000000" stroke="none" points="380,-1856.75 380,-1858.75 730,-1858.75 730,-1856.75 380,-1856.75"/>
<text text-anchor="start" x="381.75" y="-1841.45" font-family="arial" font-size="14.00">ECUM:4:Extra Out 2</text>
<text text-anchor="start" x="512.62" y="-1841.45" font-family="arial" font-size="14.00">     GN    </text>
<text text-anchor="start" x="572.25" y="-1841.45" font-family="arial" font-size="14.00">ECU1:C4:Extra Output 2</text>
<polygon fill="#000000" stroke="none" points="380,-1834.75 380,-1836.75 730,-1836.75 730,-1834.75 380,-1834.75"/>
<polygon fill="#00ff00" stroke="none" points="380,-1832.75 380,-1834.75 730,-1834.75 730,-1832.75 380,-1832.75"/>
<polygon fill="#000000" stroke="none" points="380,-1830.75 380,-1832.75 730,-1832.75 730,-1830.75 380,-1830.75"/>
<text text-anchor="start" x="401.25" y="-1815.45" font-family="arial" font-size="14.00">ECUM:2:GND</text>
<text text-anchor="start" x="513.38" y="-1815.45" font-family="arial" font-size="14.00">     BN    </text>
<text text-anchor="start" x="570.75" y="-1815.45" font-family="arial" font-size="14.00">ECU1:L4:Engine Ground</text>
<polygon fill="#000000" stroke="none" points="380,-1808.75 380,-1810.75 730,-1810.75 730,-1808.75 380,-1808.75"/>
<polygon fill="#895956" stroke="none" points="380,-1806.75 380,-1808.75 730,-1808.75 730,-1806.75 380,-1806.75"/>
<polygon fill="#000000" stroke="none" points="380,-1804.75 380,-1806.75 730,-1806.75 730,-1804.75 380,-1804.75"/>
<text text-anchor="start" x="443.62" y="-1789.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM--W3 -->
<g id="edge13" class="edge">
<title>ECUM:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1819.5C304.13,-1820.92 315.7,-1859.17 380,-1857.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1821.5C302.22,-1821.5 313.78,-1859.75 380,-1859.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1823.5C300.3,-1822.08 311.87,-1860.33 380,-1861.75"/>
</g>
<!-- ECUM--W3 -->
<g id="edge15" class="edge">
<title>ECUM:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1795.5C303.9,-1796.87 315.9,-1833.12 380,-1831.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M236,-1797.5C302,-1797.5 314,-1833.75 380,-1833.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1799.5C300.1,-1798.13 312.1,-1834.38 380,-1835.75"/>
</g>
<!-- ECUM--W3 -->
<g id="edge17" class="edge">
<title>ECUM:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1843.5C300.25,-1844.91 311.93,-1807.16 380,-1805.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M236,-1845.5C302.16,-1845.5 313.84,-1807.75 380,-1807.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1847.5C304.07,-1846.09 315.75,-1808.34 380,-1809.75"/>
</g>
<!-- W11 -->
<g id="node35" class="node">
<title>W11</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-724 398.5,-724 398.5,-584.5 711.5,-584.5 711.5,-724"/>
<polygon fill="none" stroke="black" points="398.5,-699.5 398.5,-724 711.5,-724 711.5,-699.5 398.5,-699.5"/>
<text text-anchor="start" x="539.62" y="-706.7" font-family="arial" font-size="14.00">W11</text>
<polygon fill="none" stroke="black" points="398.5,-675 398.5,-699.5 469.33,-699.5 469.33,-675 398.5,-675"/>
<text text-anchor="start" x="426.42" y="-682.2" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="469.33,-675 469.33,-699.5 580.67,-699.5 580.67,-675 469.33,-675"/>
<text text-anchor="start" x="497.25" y="-682.2" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="580.67,-675 580.67,-699.5 711.5,-699.5 711.5,-675 580.67,-675"/>
<text text-anchor="start" x="608.58" y="-682.2" font-family="arial" font-size="14.00">20.0 Inches</text>
<text text-anchor="start" x="460.62" y="-659.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="400.25" y="-639.7" font-family="arial" font-size="14.00">ECUM:8:12V Servo</text>
<text text-anchor="start" x="528.12" y="-639.7" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="586.12" y="-639.7" font-family="arial" font-size="14.00">Servo Power:1:12V</text>
<polygon fill="#000000" stroke="none" points="398.5,-633 398.5,-635 711.5,-635 711.5,-633 398.5,-633"/>
<polygon fill="#ff0000" stroke="none" points="398.5,-631 398.5,-633 711.5,-633 711.5,-631 398.5,-631"/>
<polygon fill="#000000" stroke="none" points="398.5,-629 398.5,-631 711.5,-631 711.5,-629 398.5,-629"/>
<text text-anchor="start" x="460.62" y="-613.7" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="398.5,-584.5 398.5,-609 711.5,-609 711.5,-584.5 398.5,-584.5"/>
<text text-anchor="start" x="468" y="-591.7" font-family="arial" font-size="14.00">Servo Wire is Long Enough</text>
</g>
<!-- ECUM--W11 -->
<g id="edge48" class="edge">
<title>ECUM:e--W11:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1723.5C479.72,-1726.08 149.95,-632.58 397.5,-630"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1725.5C481.64,-1725.5 151.86,-632 397.5,-632"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1727.5C483.55,-1724.92 153.78,-631.42 397.5,-634"/>
</g>
<!-- W15 -->
<g id="node39" class="node">
<title>W15</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="709,-1760.75 401,-1760.75 401,-1645.75 709,-1645.75 709,-1760.75"/>
<polygon fill="none" stroke="black" points="401,-1736.25 401,-1760.75 709,-1760.75 709,-1736.25 401,-1736.25"/>
<text text-anchor="start" x="539.62" y="-1743.45" font-family="arial" font-size="14.00">W15</text>
<polygon fill="none" stroke="black" points="401,-1711.75 401,-1736.25 470.17,-1736.25 470.17,-1711.75 401,-1711.75"/>
<text text-anchor="start" x="428.08" y="-1718.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="470.17,-1711.75 470.17,-1736.25 579.83,-1736.25 579.83,-1711.75 470.17,-1711.75"/>
<text text-anchor="start" x="497.25" y="-1718.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="579.83,-1711.75 579.83,-1736.25 709,-1736.25 709,-1711.75 579.83,-1711.75"/>
<text text-anchor="start" x="606.92" y="-1718.95" font-family="arial" font-size="14.00">16.5 Inches</text>
<text text-anchor="start" x="459.62" y="-1696.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="403" y="-1676.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
<text text-anchor="start" x="523.62" y="-1676.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="581.88" y="-1676.45" font-family="arial" font-size="14.00">ECU1:M4:ECU 12V</text>
<polygon fill="#000000" stroke="none" points="401,-1669.75 401,-1671.75 709,-1671.75 709,-1669.75 401,-1669.75"/>
<polygon fill="#ff0000" stroke="none" points="401,-1667.75 401,-1669.75 709,-1669.75 709,-1667.75 401,-1667.75"/>
<polygon fill="#000000" stroke="none" points="401,-1665.75 401,-1667.75 709,-1667.75 709,-1665.75 401,-1665.75"/>
<text text-anchor="start" x="459.62" y="-1650.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM--W15 -->
<g id="edge56" class="edge">
<title>ECUM:e--W15:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1747.5C315.25,-1749.46 316.76,-1668.71 400,-1666.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1749.5C317.25,-1749.5 318.75,-1668.75 400,-1668.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1751.5C319.24,-1749.54 320.75,-1668.79 400,-1670.75"/>
</g>
<!-- W21 -->
<g id="node43" class="node">
<title>W21</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="681,-1212.75 429,-1212.75 429,-1097.75 681,-1097.75 681,-1212.75"/>
<polygon fill="none" stroke="black" points="429,-1188.25 429,-1212.75 681,-1212.75 681,-1188.25 429,-1188.25"/>
<text text-anchor="start" x="539.62" y="-1195.45" font-family="arial" font-size="14.00">W21</text>
<polygon fill="none" stroke="black" points="429,-1163.75 429,-1188.25 479.5,-1188.25 479.5,-1163.75 429,-1163.75"/>
<text text-anchor="start" x="446.75" y="-1170.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="479.5,-1163.75 479.5,-1188.25 570.5,-1188.25 570.5,-1163.75 479.5,-1163.75"/>
<text text-anchor="start" x="497.25" y="-1170.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="570.5,-1163.75 570.5,-1188.25 681,-1188.25 681,-1163.75 570.5,-1163.75"/>
<text text-anchor="start" x="588.25" y="-1170.95" font-family="arial" font-size="14.00">21.0 Inches</text>
<text text-anchor="start" x="487.62" y="-1148.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="431" y="-1128.45" font-family="arial" font-size="14.00">ECUM:7:12V ECU</text>
<text text-anchor="start" x="551.62" y="-1128.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="609.62" y="-1128.45" font-family="arial" font-size="14.00">LSU:3:12V</text>
<polygon fill="#000000" stroke="none" points="429,-1121.75 429,-1123.75 681,-1123.75 681,-1121.75 429,-1121.75"/>
<polygon fill="#ff0000" stroke="none" points="429,-1119.75 429,-1121.75 681,-1121.75 681,-1119.75 429,-1119.75"/>
<polygon fill="#000000" stroke="none" points="429,-1117.75 429,-1119.75 681,-1119.75 681,-1117.75 429,-1117.75"/>
<text text-anchor="start" x="487.62" y="-1102.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUM--W21 -->
<g id="edge64" class="edge">
<title>ECUM:e--W21:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1747.5C526.49,-1750.56 134.12,-1121.81 428,-1118.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M236,-1749.5C528.18,-1749.5 135.82,-1120.75 428,-1120.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M236,-1751.5C529.88,-1748.44 137.51,-1119.69 428,-1122.75"/>
</g>
<!-- ECUF -->
<g id="node2" class="node">
<title>ECUF</title>
<polygon fill="#ffffff" stroke="black" points="1188,-4192 961,-4192 961,-3810.5 1188,-3810.5 1188,-4192"/>
<polygon fill="none" stroke="black" points="961,-4167.5 961,-4192 1188,-4192 1188,-4167.5 961,-4167.5"/>
<text text-anchor="start" x="1055" y="-4174.7" font-family="arial" font-size="14.00">ECUF</text>
<polygon fill="none" stroke="black" points="961,-4143 961,-4167.5 1113.88,-4167.5 1113.88,-4143 961,-4143"/>
<text text-anchor="start" x="982.31" y="-4150.2" font-family="arial" font-size="14.00">Delphi 15336205</text>
<polygon fill="none" stroke="black" points="1113.88,-4143 1113.88,-4167.5 1188,-4167.5 1188,-4143 1113.88,-4143"/>
<text text-anchor="start" x="1135.19" y="-4150.2" font-family="arial" font-size="14.00">7-pin</text>
<polygon fill="none" stroke="black" points="961,-4119 961,-4143 1111,-4143 1111,-4119 961,-4119"/>
<text text-anchor="start" x="991.38" y="-4125.7" font-family="arial" font-size="14.00">Starter/Exciter</text>
<polygon fill="none" stroke="black" points="1111,-4119 1111,-4143 1188,-4143 1188,-4119 1111,-4119"/>
<text text-anchor="start" x="1145.38" y="-4125.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="961,-4095 961,-4119 1111,-4119 1111,-4095 961,-4095"/>
<text text-anchor="start" x="1000.75" y="-4101.7" font-family="arial" font-size="14.00">Extra Out 2</text>
<polygon fill="none" stroke="black" points="1111,-4095 1111,-4119 1188,-4119 1188,-4095 1111,-4095"/>
<text text-anchor="start" x="1145.38" y="-4101.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="961,-4071 961,-4095 1111,-4095 1111,-4071 961,-4071"/>
<text text-anchor="start" x="1000.75" y="-4077.7" font-family="arial" font-size="14.00">Extra Out 1</text>
<polygon fill="none" stroke="black" points="1111,-4071 1111,-4095 1188,-4095 1188,-4071 1111,-4071"/>
<text text-anchor="start" x="1145.38" y="-4077.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="961,-4047 961,-4071 1111,-4071 1111,-4047 961,-4047"/>
<text text-anchor="start" x="1020.25" y="-4053.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1111,-4047 1111,-4071 1188,-4071 1188,-4047 1111,-4047"/>
<text text-anchor="start" x="1145.38" y="-4053.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="961,-4023 961,-4047 1111,-4047 1111,-4023 961,-4023"/>
<text text-anchor="start" x="1013.12" y="-4029.7" font-family="arial" font-size="14.00">Ignition</text>
<polygon fill="none" stroke="black" points="1111,-4023 1111,-4047 1188,-4047 1188,-4023 1111,-4023"/>
<text text-anchor="start" x="1145.38" y="-4029.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="961,-3999 961,-4023 1111,-4023 1111,-3999 961,-3999"/>
<text text-anchor="start" x="1002.25" y="-4005.7" font-family="arial" font-size="14.00">12V Servo</text>
<polygon fill="none" stroke="black" points="1111,-3999 1111,-4023 1188,-4023 1188,-3999 1111,-3999"/>
<text text-anchor="start" x="1141.25" y="-4005.7" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="961,-3975 961,-3999 1111,-3999 1111,-3975 961,-3975"/>
<text text-anchor="start" x="1006" y="-3981.7" font-family="arial" font-size="14.00">12V ECU</text>
<polygon fill="none" stroke="black" points="1111,-3975 1111,-3999 1188,-3999 1188,-3975 1111,-3975"/>
<text text-anchor="start" x="1141.25" y="-3981.7" font-family="arial" font-size="14.00">12</text>
<polygon fill="none" stroke="black" points="961,-3835 961,-3975 1188,-3975 1188,-3835 961,-3835"/>
<image xlink:href="images\ECU4.png" width="219px" height="132px" preserveAspectRatio="xMinYMin meet" x="965" y="-3971"/>
<polygon fill="none" stroke="black" points="961,-3810.5 961,-3835 1188,-3835 1188,-3810.5 961,-3810.5"/>
<text text-anchor="start" x="965" y="-3817.7" font-family="arial" font-size="14.00">ECU 12 Pin Connector to Fusebox</text>
</g>
<!-- W4 -->
<g id="node28" class="node">
<title>W4</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1753,-4006.75 1456,-4006.75 1456,-3865.75 1753,-3865.75 1753,-4006.75"/>
<polygon fill="none" stroke="black" points="1456,-3982.25 1456,-4006.75 1753,-4006.75 1753,-3982.25 1456,-3982.25"/>
<text text-anchor="start" x="1593.25" y="-3989.45" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="1456,-3957.75 1456,-3982.25 1521.5,-3982.25 1521.5,-3957.75 1456,-3957.75"/>
<text text-anchor="start" x="1481.25" y="-3964.95" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="1521.5,-3957.75 1521.5,-3982.25 1627.5,-3982.25 1627.5,-3957.75 1521.5,-3957.75"/>
<text text-anchor="start" x="1546.75" y="-3964.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="1627.5,-3957.75 1627.5,-3982.25 1753,-3982.25 1753,-3957.75 1627.5,-3957.75"/>
<text text-anchor="start" x="1652.75" y="-3964.95" font-family="arial" font-size="14.00">10.0 Inches</text>
<text text-anchor="start" x="1517.62" y="-3942.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1458" y="-3922.45" font-family="arial" font-size="14.00">ECUF:12:12V ECU</text>
<text text-anchor="start" x="1584.62" y="-3922.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="1642.62" y="-3922.45" font-family="arial" font-size="14.00">Fuse Block:2:F1-</text>
<polygon fill="#000000" stroke="none" points="1456,-3915.75 1456,-3917.75 1753,-3917.75 1753,-3915.75 1456,-3915.75"/>
<polygon fill="#ff0000" stroke="none" points="1456,-3913.75 1456,-3915.75 1753,-3915.75 1753,-3913.75 1456,-3913.75"/>
<polygon fill="#000000" stroke="none" points="1456,-3911.75 1456,-3913.75 1753,-3913.75 1753,-3911.75 1456,-3911.75"/>
<text text-anchor="start" x="1469.25" y="-3896.45" font-family="arial" font-size="14.00">ECUF:6:Ignition</text>
<text text-anchor="start" x="1584.62" y="-3896.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="1642.62" y="-3896.45" font-family="arial" font-size="14.00">Fuse Block:4:F2-</text>
<polygon fill="#000000" stroke="none" points="1456,-3889.75 1456,-3891.75 1753,-3891.75 1753,-3889.75 1456,-3889.75"/>
<polygon fill="#ff0000" stroke="none" points="1456,-3887.75 1456,-3889.75 1753,-3889.75 1753,-3887.75 1456,-3887.75"/>
<polygon fill="#000000" stroke="none" points="1456,-3885.75 1456,-3887.75 1753,-3887.75 1753,-3885.75 1456,-3885.75"/>
<text text-anchor="start" x="1517.62" y="-3870.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF--W4 -->
<g id="edge20" class="edge">
<title>ECUF:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3985C1309.58,-3986.44 1330.57,-3914.19 1455,-3912.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-3987C1311.51,-3987 1332.49,-3914.75 1455,-3914.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3989C1313.43,-3987.56 1334.42,-3915.31 1455,-3916.75"/>
</g>
<!-- ECUF--W4 -->
<g id="edge22" class="edge">
<title>ECUF:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4033C1321.91,-4035.05 1318.09,-3888.8 1455,-3886.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4035C1323.91,-4035 1320.09,-3888.75 1455,-3888.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4037C1325.91,-4034.95 1322.09,-3888.7 1455,-3890.75"/>
</g>
<!-- W7 -->
<g id="node30" class="node">
<title>W7</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1756.5,-3256.75 1452.5,-3256.75 1452.5,-3141.75 1756.5,-3141.75 1756.5,-3256.75"/>
<polygon fill="none" stroke="black" points="1452.5,-3232.25 1452.5,-3256.75 1756.5,-3256.75 1756.5,-3232.25 1452.5,-3232.25"/>
<text text-anchor="start" x="1593.25" y="-3239.45" font-family="arial" font-size="14.00">W7</text>
<polygon fill="none" stroke="black" points="1452.5,-3207.75 1452.5,-3232.25 1520.33,-3232.25 1520.33,-3207.75 1452.5,-3207.75"/>
<text text-anchor="start" x="1478.92" y="-3214.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1520.33,-3207.75 1520.33,-3232.25 1628.67,-3232.25 1628.67,-3207.75 1520.33,-3207.75"/>
<text text-anchor="start" x="1546.75" y="-3214.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1628.67,-3207.75 1628.67,-3232.25 1756.5,-3232.25 1756.5,-3207.75 1628.67,-3207.75"/>
<text text-anchor="start" x="1655.08" y="-3214.95" font-family="arial" font-size="14.00">10.0 Inches</text>
<text text-anchor="start" x="1517.62" y="-3192.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1454.25" y="-3172.45" font-family="arial" font-size="14.00">ECUF:11:12V Servo</text>
<text text-anchor="start" x="1588.12" y="-3172.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="1646.12" y="-3172.45" font-family="arial" font-size="14.00">Fuse Block:6:F3-</text>
<polygon fill="#000000" stroke="none" points="1452.5,-3165.75 1452.5,-3167.75 1756.5,-3167.75 1756.5,-3165.75 1452.5,-3165.75"/>
<polygon fill="#ff0000" stroke="none" points="1452.5,-3163.75 1452.5,-3165.75 1756.5,-3165.75 1756.5,-3163.75 1452.5,-3163.75"/>
<polygon fill="#000000" stroke="none" points="1452.5,-3161.75 1452.5,-3163.75 1756.5,-3163.75 1756.5,-3161.75 1452.5,-3161.75"/>
<text text-anchor="start" x="1517.62" y="-3146.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF--W7 -->
<g id="edge28" class="edge">
<title>ECUF:e--W7:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4009C1581.09,-4012.05 1056.01,-3165.8 1451.5,-3162.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1189,-4011C1582.79,-4011 1057.71,-3164.75 1451.5,-3164.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4013C1584.49,-4009.95 1059.41,-3163.7 1451.5,-3166.75"/>
</g>
<!-- W16 -->
<g id="node40" class="node">
<title>W16</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1760.5,-4381.75 1448.5,-4381.75 1448.5,-4266.75 1760.5,-4266.75 1760.5,-4381.75"/>
<polygon fill="none" stroke="black" points="1448.5,-4357.25 1448.5,-4381.75 1760.5,-4381.75 1760.5,-4357.25 1448.5,-4357.25"/>
<text text-anchor="start" x="1589.12" y="-4364.45" font-family="arial" font-size="14.00">W16</text>
<polygon fill="none" stroke="black" points="1448.5,-4332.75 1448.5,-4357.25 1519,-4357.25 1519,-4332.75 1448.5,-4332.75"/>
<text text-anchor="start" x="1476.25" y="-4339.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1519,-4332.75 1519,-4357.25 1630,-4357.25 1630,-4332.75 1519,-4332.75"/>
<text text-anchor="start" x="1546.75" y="-4339.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="1630,-4332.75 1630,-4357.25 1760.5,-4357.25 1760.5,-4332.75 1630,-4332.75"/>
<text text-anchor="start" x="1657.75" y="-4339.95" font-family="arial" font-size="14.00">27.0 Inches</text>
<text text-anchor="start" x="1511.12" y="-4317.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1450.38" y="-4297.45" font-family="arial" font-size="14.00">ECUF:4:Extra Out 1</text>
<text text-anchor="start" x="1579.12" y="-4297.45" font-family="arial" font-size="14.00">     GN    </text>
<text text-anchor="start" x="1637.25" y="-4297.45" font-family="arial" font-size="14.00">MAF Sensor:4:12V</text>
<polygon fill="#000000" stroke="none" points="1448.5,-4290.75 1448.5,-4292.75 1760.5,-4292.75 1760.5,-4290.75 1448.5,-4290.75"/>
<polygon fill="#00ff00" stroke="none" points="1448.5,-4288.75 1448.5,-4290.75 1760.5,-4290.75 1760.5,-4288.75 1448.5,-4288.75"/>
<polygon fill="#000000" stroke="none" points="1448.5,-4286.75 1448.5,-4288.75 1760.5,-4288.75 1760.5,-4286.75 1448.5,-4286.75"/>
<text text-anchor="start" x="1511.12" y="-4271.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF--W16 -->
<g id="edge58" class="edge">
<title>ECUF:e--W16:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4081C1338.09,-4083.34 1302.36,-4290.09 1447.5,-4287.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4083C1336.12,-4083 1300.38,-4289.75 1447.5,-4289.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4085C1334.14,-4082.66 1298.41,-4289.41 1447.5,-4291.75"/>
</g>
<!-- W17 -->
<g id="node41" class="node">
<title>W17</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1776.5,-4583 1432.5,-4583 1432.5,-4443.5 1776.5,-4443.5 1776.5,-4583"/>
<polygon fill="none" stroke="black" points="1432.5,-4558.5 1432.5,-4583 1776.5,-4583 1776.5,-4558.5 1432.5,-4558.5"/>
<text text-anchor="start" x="1589.12" y="-4565.7" font-family="arial" font-size="14.00">W17</text>
<polygon fill="none" stroke="black" points="1432.5,-4534 1432.5,-4558.5 1513.67,-4558.5 1513.67,-4534 1432.5,-4534"/>
<text text-anchor="start" x="1465.58" y="-4541.2" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1513.67,-4534 1513.67,-4558.5 1635.33,-4558.5 1635.33,-4534 1513.67,-4534"/>
<text text-anchor="start" x="1546.75" y="-4541.2" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1635.33,-4534 1635.33,-4558.5 1776.5,-4558.5 1776.5,-4534 1635.33,-4534"/>
<text text-anchor="start" x="1668.42" y="-4541.2" font-family="arial" font-size="14.00">37.0 Inches</text>
<text text-anchor="start" x="1500.62" y="-4518.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1439.88" y="-4498.7" font-family="arial" font-size="14.00">ECUF:3:Extra Out 2</text>
<text text-anchor="start" x="1579.62" y="-4498.7" font-family="arial" font-size="14.00">     GN    </text>
<text text-anchor="start" x="1649" y="-4498.7" font-family="arial" font-size="14.00">Tachometer:A:12V</text>
<polygon fill="#000000" stroke="none" points="1432.5,-4492 1432.5,-4494 1776.5,-4494 1776.5,-4492 1432.5,-4492"/>
<polygon fill="#00ff00" stroke="none" points="1432.5,-4490 1432.5,-4492 1776.5,-4492 1776.5,-4490 1432.5,-4490"/>
<polygon fill="#000000" stroke="none" points="1432.5,-4488 1432.5,-4490 1776.5,-4490 1776.5,-4488 1432.5,-4488"/>
<text text-anchor="start" x="1500.62" y="-4472.7" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="1432.5,-4443.5 1432.5,-4468 1776.5,-4468 1776.5,-4443.5 1432.5,-4443.5"/>
<text text-anchor="start" x="1436.5" y="-4450.7" font-family="arial" font-size="14.00">Pre-attached wire is of sufficient length to reach ECU.</text>
</g>
<!-- ECUF--W17 -->
<g id="edge60" class="edge">
<title>ECUF:e--W17:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4105C1392.69,-4107.77 1231.49,-4491.77 1431.5,-4489"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1189,-4107C1390.85,-4107 1229.65,-4491 1431.5,-4491"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4109C1389.01,-4106.23 1227.81,-4490.23 1431.5,-4493"/>
</g>
<!-- W18 -->
<g id="node42" class="node">
<title>W18</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1740.5,-3395.75 1468.5,-3395.75 1468.5,-3280.75 1740.5,-3280.75 1740.5,-3395.75"/>
<polygon fill="none" stroke="black" points="1468.5,-3371.25 1468.5,-3395.75 1740.5,-3395.75 1740.5,-3371.25 1468.5,-3371.25"/>
<text text-anchor="start" x="1589.12" y="-3378.45" font-family="arial" font-size="14.00">W18</text>
<polygon fill="none" stroke="black" points="1468.5,-3346.75 1468.5,-3371.25 1525.67,-3371.25 1525.67,-3346.75 1468.5,-3346.75"/>
<text text-anchor="start" x="1489.58" y="-3353.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1525.67,-3346.75 1525.67,-3371.25 1623.33,-3371.25 1623.33,-3346.75 1525.67,-3346.75"/>
<text text-anchor="start" x="1546.75" y="-3353.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1623.33,-3346.75 1623.33,-3371.25 1740.5,-3371.25 1740.5,-3346.75 1623.33,-3346.75"/>
<text text-anchor="start" x="1644.42" y="-3353.95" font-family="arial" font-size="14.00">10.0 Inches</text>
<text text-anchor="start" x="1511.62" y="-3331.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1470.38" y="-3311.45" font-family="arial" font-size="14.00">ECUF:5:GND</text>
<text text-anchor="start" x="1560.38" y="-3311.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1617.25" y="-3311.45" font-family="arial" font-size="14.00">Negative Bus Bar:3</text>
<polygon fill="#000000" stroke="none" points="1468.5,-3304.75 1468.5,-3306.75 1740.5,-3306.75 1740.5,-3304.75 1468.5,-3304.75"/>
<polygon fill="#000000" stroke="none" points="1468.5,-3302.75 1468.5,-3304.75 1740.5,-3304.75 1740.5,-3302.75 1468.5,-3302.75"/>
<polygon fill="#000000" stroke="none" points="1468.5,-3300.75 1468.5,-3302.75 1740.5,-3302.75 1740.5,-3300.75 1468.5,-3300.75"/>
<text text-anchor="start" x="1511.62" y="-3285.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- ECUF--W18 -->
<g id="edge62" class="edge">
<title>ECUF:e--W18:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4057C1545.03,-4060 1108.01,-3304.75 1467.5,-3301.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4059C1546.76,-4059 1109.74,-3303.75 1467.5,-3303.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-4061C1548.49,-4058 1111.47,-3302.75 1467.5,-3305.75"/>
</g>
<!-- ECU1 -->
<g id="node3" class="node">
<title>ECU1</title>
<polygon fill="#ffffff" stroke="black" points="1275,-1919.5 874,-1919.5 874,-1475 1275,-1475 1275,-1919.5"/>
<polygon fill="none" stroke="black" points="874,-1895 874,-1919.5 1275,-1919.5 1275,-1895 874,-1895"/>
<text text-anchor="start" x="1055.38" y="-1902.2" font-family="arial" font-size="14.00">ECU1</text>
<polygon fill="none" stroke="black" points="874,-1870.5 874,-1895 1116.5,-1895 1116.5,-1870.5 874,-1870.5"/>
<text text-anchor="start" x="937.5" y="-1877.7" font-family="arial" font-size="14.00">Molex 643203311</text>
<polygon fill="none" stroke="black" points="1116.5,-1870.5 1116.5,-1895 1275,-1895 1275,-1870.5 1116.5,-1870.5"/>
<text text-anchor="start" x="1180" y="-1877.7" font-family="arial" font-size="14.00">4-pin</text>
<polygon fill="none" stroke="black" points="874,-1846.5 874,-1870.5 1036.5,-1870.5 1036.5,-1846.5 874,-1846.5"/>
<text text-anchor="start" x="946.25" y="-1853.2" font-family="arial" font-size="14.00">B4</text>
<polygon fill="none" stroke="black" points="1036.5,-1846.5 1036.5,-1870.5 1275,-1870.5 1275,-1846.5 1036.5,-1846.5"/>
<text text-anchor="start" x="1110.75" y="-1853.2" font-family="arial" font-size="14.00">Extra Output 1</text>
<polygon fill="none" stroke="black" points="874,-1822.5 874,-1846.5 1036.5,-1846.5 1036.5,-1822.5 874,-1822.5"/>
<text text-anchor="start" x="945.88" y="-1829.2" font-family="arial" font-size="14.00">C4</text>
<polygon fill="none" stroke="black" points="1036.5,-1822.5 1036.5,-1846.5 1275,-1846.5 1275,-1822.5 1036.5,-1822.5"/>
<text text-anchor="start" x="1110.75" y="-1829.2" font-family="arial" font-size="14.00">Extra Output 2</text>
<polygon fill="none" stroke="black" points="874,-1798.5 874,-1822.5 1036.5,-1822.5 1036.5,-1798.5 874,-1798.5"/>
<text text-anchor="start" x="947" y="-1805.2" font-family="arial" font-size="14.00">L4</text>
<polygon fill="none" stroke="black" points="1036.5,-1798.5 1036.5,-1822.5 1275,-1822.5 1275,-1798.5 1036.5,-1798.5"/>
<text text-anchor="start" x="1108.12" y="-1805.2" font-family="arial" font-size="14.00">Engine Ground</text>
<polygon fill="none" stroke="black" points="874,-1774.5 874,-1798.5 1036.5,-1798.5 1036.5,-1774.5 874,-1774.5"/>
<text text-anchor="start" x="945.5" y="-1781.2" font-family="arial" font-size="14.00">M4</text>
<polygon fill="none" stroke="black" points="1036.5,-1774.5 1036.5,-1798.5 1275,-1798.5 1275,-1774.5 1036.5,-1774.5"/>
<text text-anchor="start" x="1125.75" y="-1781.2" font-family="arial" font-size="14.00">ECU 12V</text>
<polyline fill="none" stroke="black" points="1275,-1499.5 1275,-1774.5 874,-1774.5 874,-1499.5"/>
<image xlink:href="images\ECU1.png" width="393px" height="267px" preserveAspectRatio="xMinYMin meet" x="878" y="-1770.5"/>
<polyline fill="none" stroke="black" points="874,-1499.5 874,-1475 1275,-1475 1275,-1499.5"/>
<text text-anchor="start" x="1002.5" y="-1482.2" font-family="arial" font-size="14.00">Connector 643201311</text>
</g>
<!-- Coil Pack 1 -->
<g id="node4" class="node">
<title>Coil Pack 1</title>
<polygon fill="#ffffff" stroke="black" points="1188,-3395.75 961,-3395.75 961,-3050.75 1188,-3050.75 1188,-3395.75"/>
<polygon fill="none" stroke="black" points="961,-3371.25 961,-3395.75 1188,-3395.75 1188,-3371.25 961,-3371.25"/>
<text text-anchor="start" x="1038.5" y="-3378.45" font-family="arial" font-size="14.00">Coil Pack 1</text>
<polygon fill="none" stroke="black" points="961,-3346.75 961,-3371.25 1113.88,-3371.25 1113.88,-3346.75 961,-3346.75"/>
<text text-anchor="start" x="982.31" y="-3353.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
<polygon fill="none" stroke="black" points="1113.88,-3346.75 1113.88,-3371.25 1188,-3371.25 1188,-3346.75 1113.88,-3346.75"/>
<text text-anchor="start" x="1135.19" y="-3353.95" font-family="arial" font-size="14.00">5-pin</text>
<polygon fill="none" stroke="black" points="961,-3322.75 961,-3346.75 1008,-3346.75 1008,-3322.75 961,-3322.75"/>
<text text-anchor="start" x="979.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="1008,-3322.75 1008,-3346.75 1141,-3346.75 1141,-3322.75 1008,-3322.75"/>
<text text-anchor="start" x="1047.12" y="-3329.45" font-family="arial" font-size="14.00">ECU Sig</text>
<polygon fill="none" stroke="black" points="1141,-3322.75 1141,-3346.75 1188,-3346.75 1188,-3322.75 1141,-3322.75"/>
<text text-anchor="start" x="1159.62" y="-3329.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="961,-3298.75 961,-3322.75 1008,-3322.75 1008,-3298.75 961,-3298.75"/>
<text text-anchor="start" x="979.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="1008,-3298.75 1008,-3322.75 1141,-3322.75 1141,-3298.75 1008,-3298.75"/>
<text text-anchor="start" x="1026.12" y="-3305.45" font-family="arial" font-size="14.00">Sensor Ground</text>
<polygon fill="none" stroke="black" points="1141,-3298.75 1141,-3322.75 1188,-3322.75 1188,-3298.75 1141,-3298.75"/>
<text text-anchor="start" x="1159.62" y="-3305.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="961,-3274.75 961,-3298.75 1008,-3298.75 1008,-3274.75 961,-3274.75"/>
<text text-anchor="start" x="979.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="1008,-3274.75 1008,-3298.75 1141,-3298.75 1141,-3274.75 1008,-3274.75"/>
<text text-anchor="start" x="1032.12" y="-3281.45" font-family="arial" font-size="14.00">Head Ground</text>
<polygon fill="none" stroke="black" points="1141,-3274.75 1141,-3298.75 1188,-3298.75 1188,-3274.75 1141,-3274.75"/>
<text text-anchor="start" x="1159.25" y="-3281.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="961,-3250.75 961,-3274.75 1008,-3274.75 1008,-3250.75 961,-3250.75"/>
<text text-anchor="start" x="979.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="1008,-3250.75 1008,-3274.75 1141,-3274.75 1141,-3250.75 1008,-3250.75"/>
<text text-anchor="start" x="1026.88" y="-3257.45" font-family="arial" font-size="14.00">Battery Ground</text>
<polygon fill="none" stroke="black" points="1141,-3250.75 1141,-3274.75 1188,-3274.75 1188,-3250.75 1141,-3250.75"/>
<text text-anchor="start" x="1159.25" y="-3257.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="961,-3226.75 961,-3250.75 1008,-3250.75 1008,-3226.75 961,-3226.75"/>
<text text-anchor="start" x="979.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="1008,-3226.75 1008,-3250.75 1141,-3250.75 1141,-3226.75 1008,-3226.75"/>
<text text-anchor="start" x="1030.62" y="-3233.45" font-family="arial" font-size="14.00">Switched 12V</text>
<polygon fill="none" stroke="black" points="1141,-3226.75 1141,-3250.75 1188,-3250.75 1188,-3226.75 1141,-3226.75"/>
<text text-anchor="start" x="1159.62" y="-3233.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="961,-3050.75 961,-3226.75 1188,-3226.75 1188,-3050.75 961,-3050.75"/>
<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-3222.75"/>
</g>
<!-- W10 -->
<g id="node32" class="node">
<title>W10</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-3076.75 1484.5,-3076.75 1484.5,-2935.75 1724.5,-2935.75 1724.5,-3076.75"/>
<polygon fill="none" stroke="black" points="1484.5,-3052.25 1484.5,-3076.75 1724.5,-3076.75 1724.5,-3052.25 1484.5,-3052.25"/>
<text text-anchor="start" x="1589.12" y="-3059.45" font-family="arial" font-size="14.00">W10</text>
<polygon fill="none" stroke="black" points="1484.5,-3027.75 1484.5,-3052.25 1531,-3052.25 1531,-3027.75 1484.5,-3027.75"/>
<text text-anchor="start" x="1500.25" y="-3034.95" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="1531,-3027.75 1531,-3052.25 1618,-3052.25 1618,-3027.75 1531,-3027.75"/>
<text text-anchor="start" x="1546.75" y="-3034.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1618,-3027.75 1618,-3052.25 1724.5,-3052.25 1724.5,-3027.75 1618,-3027.75"/>
<text text-anchor="start" x="1633.75" y="-3034.95" font-family="arial" font-size="14.00">10.0 Inches</text>
<text text-anchor="start" x="1571.62" y="-3012.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1486.12" y="-2992.45" font-family="arial" font-size="14.00">Coil Pack 1:C:Head Ground</text>
<text text-anchor="start" x="1664.5" y="-2992.45" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="1484.5,-2985.75 1484.5,-2987.75 1724.5,-2987.75 1724.5,-2985.75 1484.5,-2985.75"/>
<polygon fill="#999999" stroke="none" points="1484.5,-2983.75 1484.5,-2985.75 1724.5,-2985.75 1724.5,-2983.75 1484.5,-2983.75"/>
<polygon fill="#000000" stroke="none" points="1484.5,-2981.75 1484.5,-2983.75 1724.5,-2983.75 1724.5,-2981.75 1484.5,-2981.75"/>
<text text-anchor="start" x="1486.12" y="-2966.45" font-family="arial" font-size="14.00">Coil Pack 4:C:Head Ground</text>
<text text-anchor="start" x="1664.5" y="-2966.45" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="1484.5,-2959.75 1484.5,-2961.75 1724.5,-2961.75 1724.5,-2959.75 1484.5,-2959.75"/>
<polygon fill="#999999" stroke="none" points="1484.5,-2957.75 1484.5,-2959.75 1724.5,-2959.75 1724.5,-2957.75 1484.5,-2957.75"/>
<polygon fill="#000000" stroke="none" points="1484.5,-2955.75 1484.5,-2957.75 1724.5,-2957.75 1724.5,-2955.75 1484.5,-2955.75"/>
<text text-anchor="start" x="1571.62" y="-2940.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1--W10 -->
<g id="edge32" class="edge">
<title>Coil Pack 1:e--W10:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3284.75C1374.54,-3287.26 1294.09,-2985.26 1483.5,-2982.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-3286.75C1376.48,-3286.75 1296.02,-2984.75 1483.5,-2984.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3288.75C1378.41,-3286.24 1297.96,-2984.24 1483.5,-2986.75"/>
</g>
<!-- W20 -->
<g id="node34" class="node">
<title>W20</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1790,-2894.75 1419,-2894.75 1419,-2701.75 1790,-2701.75 1790,-2894.75"/>
<polygon fill="none" stroke="black" points="1419,-2870.25 1419,-2894.75 1790,-2894.75 1790,-2870.25 1419,-2870.25"/>
<text text-anchor="start" x="1589.12" y="-2877.45" font-family="arial" font-size="14.00">W20</text>
<polygon fill="none" stroke="black" points="1419,-2845.75 1419,-2870.25 1509.17,-2870.25 1509.17,-2845.75 1419,-2845.75"/>
<text text-anchor="start" x="1456.58" y="-2852.95" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1509.17,-2845.75 1509.17,-2870.25 1639.83,-2870.25 1639.83,-2845.75 1509.17,-2845.75"/>
<text text-anchor="start" x="1546.75" y="-2852.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1639.83,-2845.75 1639.83,-2870.25 1790,-2870.25 1790,-2845.75 1639.83,-2845.75"/>
<text text-anchor="start" x="1677.42" y="-2852.95" font-family="arial" font-size="14.00">60.0 Inches</text>
<text text-anchor="start" x="1511.62" y="-2830.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1420.88" y="-2810.45" font-family="arial" font-size="14.00">Coil Pack 1:D:Battery Ground</text>
<text text-anchor="start" x="1609.88" y="-2810.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1666.75" y="-2810.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
<polygon fill="#000000" stroke="none" points="1419,-2803.75 1419,-2805.75 1790,-2805.75 1790,-2803.75 1419,-2803.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2801.75 1419,-2803.75 1790,-2803.75 1790,-2801.75 1419,-2801.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2799.75 1419,-2801.75 1790,-2801.75 1790,-2799.75 1419,-2799.75"/>
<text text-anchor="start" x="1420.88" y="-2784.45" font-family="arial" font-size="14.00">Coil Pack 2:D:Battery Ground</text>
<text text-anchor="start" x="1609.88" y="-2784.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1666.75" y="-2784.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
<polygon fill="#000000" stroke="none" points="1419,-2777.75 1419,-2779.75 1790,-2779.75 1790,-2777.75 1419,-2777.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2775.75 1419,-2777.75 1790,-2777.75 1790,-2775.75 1419,-2775.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2773.75 1419,-2775.75 1790,-2775.75 1790,-2773.75 1419,-2773.75"/>
<text text-anchor="start" x="1420.88" y="-2758.45" font-family="arial" font-size="14.00">Coil Pack 3:D:Battery Ground</text>
<text text-anchor="start" x="1609.88" y="-2758.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1666.75" y="-2758.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
<polygon fill="#000000" stroke="none" points="1419,-2751.75 1419,-2753.75 1790,-2753.75 1790,-2751.75 1419,-2751.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2749.75 1419,-2751.75 1790,-2751.75 1790,-2749.75 1419,-2749.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2747.75 1419,-2749.75 1790,-2749.75 1790,-2747.75 1419,-2747.75"/>
<text text-anchor="start" x="1420.88" y="-2732.45" font-family="arial" font-size="14.00">Coil Pack 4:D:Battery Ground</text>
<text text-anchor="start" x="1609.88" y="-2732.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1666.75" y="-2732.45" font-family="arial" font-size="14.00">Negative Bus Bar:4</text>
<polygon fill="#000000" stroke="none" points="1419,-2725.75 1419,-2727.75 1790,-2727.75 1790,-2725.75 1419,-2725.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2723.75 1419,-2725.75 1790,-2725.75 1790,-2723.75 1419,-2723.75"/>
<polygon fill="#000000" stroke="none" points="1419,-2721.75 1419,-2723.75 1790,-2723.75 1790,-2721.75 1419,-2721.75"/>
<text text-anchor="start" x="1511.62" y="-2706.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 1--W20 -->
<g id="edge40" class="edge">
<title>Coil Pack 1:e--W20:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3260.75C1415.78,-3263.64 1188.63,-2803.64 1419,-2800.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3262.75C1417.58,-3262.75 1190.42,-2802.75 1419,-2802.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-3264.75C1419.37,-3261.86 1192.22,-2801.86 1419,-2804.75"/>
</g>
<!-- Coil Pack 2 -->
<g id="node5" class="node">
<title>Coil Pack 2</title>
<polygon fill="#ffffff" stroke="black" points="1188,-2288.75 961,-2288.75 961,-1943.75 1188,-1943.75 1188,-2288.75"/>
<polygon fill="none" stroke="black" points="961,-2264.25 961,-2288.75 1188,-2288.75 1188,-2264.25 961,-2264.25"/>
<text text-anchor="start" x="1038.5" y="-2271.45" font-family="arial" font-size="14.00">Coil Pack 2</text>
<polygon fill="none" stroke="black" points="961,-2239.75 961,-2264.25 1113.88,-2264.25 1113.88,-2239.75 961,-2239.75"/>
<text text-anchor="start" x="982.31" y="-2246.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
<polygon fill="none" stroke="black" points="1113.88,-2239.75 1113.88,-2264.25 1188,-2264.25 1188,-2239.75 1113.88,-2239.75"/>
<text text-anchor="start" x="1135.19" y="-2246.95" font-family="arial" font-size="14.00">5-pin</text>
<polygon fill="none" stroke="black" points="961,-2215.75 961,-2239.75 1008,-2239.75 1008,-2215.75 961,-2215.75"/>
<text text-anchor="start" x="979.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="1008,-2215.75 1008,-2239.75 1141,-2239.75 1141,-2215.75 1008,-2215.75"/>
<text text-anchor="start" x="1047.12" y="-2222.45" font-family="arial" font-size="14.00">ECU Sig</text>
<polygon fill="none" stroke="black" points="1141,-2215.75 1141,-2239.75 1188,-2239.75 1188,-2215.75 1141,-2215.75"/>
<text text-anchor="start" x="1159.62" y="-2222.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="961,-2191.75 961,-2215.75 1008,-2215.75 1008,-2191.75 961,-2191.75"/>
<text text-anchor="start" x="979.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="1008,-2191.75 1008,-2215.75 1141,-2215.75 1141,-2191.75 1008,-2191.75"/>
<text text-anchor="start" x="1026.12" y="-2198.45" font-family="arial" font-size="14.00">Sensor Ground</text>
<polygon fill="none" stroke="black" points="1141,-2191.75 1141,-2215.75 1188,-2215.75 1188,-2191.75 1141,-2191.75"/>
<text text-anchor="start" x="1159.62" y="-2198.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="961,-2167.75 961,-2191.75 1008,-2191.75 1008,-2167.75 961,-2167.75"/>
<text text-anchor="start" x="979.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="1008,-2167.75 1008,-2191.75 1141,-2191.75 1141,-2167.75 1008,-2167.75"/>
<text text-anchor="start" x="1032.12" y="-2174.45" font-family="arial" font-size="14.00">Head Ground</text>
<polygon fill="none" stroke="black" points="1141,-2167.75 1141,-2191.75 1188,-2191.75 1188,-2167.75 1141,-2167.75"/>
<text text-anchor="start" x="1159.25" y="-2174.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="961,-2143.75 961,-2167.75 1008,-2167.75 1008,-2143.75 961,-2143.75"/>
<text text-anchor="start" x="979.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="1008,-2143.75 1008,-2167.75 1141,-2167.75 1141,-2143.75 1008,-2143.75"/>
<text text-anchor="start" x="1026.88" y="-2150.45" font-family="arial" font-size="14.00">Battery Ground</text>
<polygon fill="none" stroke="black" points="1141,-2143.75 1141,-2167.75 1188,-2167.75 1188,-2143.75 1141,-2143.75"/>
<text text-anchor="start" x="1159.25" y="-2150.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="961,-2119.75 961,-2143.75 1008,-2143.75 1008,-2119.75 961,-2119.75"/>
<text text-anchor="start" x="979.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="1008,-2119.75 1008,-2143.75 1141,-2143.75 1141,-2119.75 1008,-2119.75"/>
<text text-anchor="start" x="1030.62" y="-2126.45" font-family="arial" font-size="14.00">Switched 12V</text>
<polygon fill="none" stroke="black" points="1141,-2119.75 1141,-2143.75 1188,-2143.75 1188,-2119.75 1141,-2119.75"/>
<text text-anchor="start" x="1159.62" y="-2126.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="961,-1943.75 961,-2119.75 1188,-2119.75 1188,-1943.75 961,-1943.75"/>
<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2115.75"/>
</g>
<!-- W19 -->
<g id="node33" class="node">
<title>W19</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1724.5,-2469.75 1484.5,-2469.75 1484.5,-2328.75 1724.5,-2328.75 1724.5,-2469.75"/>
<polygon fill="none" stroke="black" points="1484.5,-2445.25 1484.5,-2469.75 1724.5,-2469.75 1724.5,-2445.25 1484.5,-2445.25"/>
<text text-anchor="start" x="1589.12" y="-2452.45" font-family="arial" font-size="14.00">W19</text>
<polygon fill="none" stroke="black" points="1484.5,-2420.75 1484.5,-2445.25 1533.75,-2445.25 1533.75,-2420.75 1484.5,-2420.75"/>
<text text-anchor="start" x="1501.62" y="-2427.95" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="1533.75,-2420.75 1533.75,-2445.25 1623.5,-2445.25 1623.5,-2420.75 1533.75,-2420.75"/>
<text text-anchor="start" x="1550.88" y="-2427.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1623.5,-2420.75 1623.5,-2445.25 1724.5,-2445.25 1724.5,-2420.75 1623.5,-2420.75"/>
<text text-anchor="start" x="1640.62" y="-2427.95" font-family="arial" font-size="14.00">6.0 Inches</text>
<text text-anchor="start" x="1571.62" y="-2405.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1486.12" y="-2385.45" font-family="arial" font-size="14.00">Coil Pack 3:C:Head Ground</text>
<text text-anchor="start" x="1664.5" y="-2385.45" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="1484.5,-2378.75 1484.5,-2380.75 1724.5,-2380.75 1724.5,-2378.75 1484.5,-2378.75"/>
<polygon fill="#999999" stroke="none" points="1484.5,-2376.75 1484.5,-2378.75 1724.5,-2378.75 1724.5,-2376.75 1484.5,-2376.75"/>
<polygon fill="#000000" stroke="none" points="1484.5,-2374.75 1484.5,-2376.75 1724.5,-2376.75 1724.5,-2374.75 1484.5,-2374.75"/>
<text text-anchor="start" x="1486.12" y="-2359.45" font-family="arial" font-size="14.00">Coil Pack 2:C:Head Ground</text>
<text text-anchor="start" x="1664.5" y="-2359.45" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="1484.5,-2352.75 1484.5,-2354.75 1724.5,-2354.75 1724.5,-2352.75 1484.5,-2352.75"/>
<polygon fill="#999999" stroke="none" points="1484.5,-2350.75 1484.5,-2352.75 1724.5,-2352.75 1724.5,-2350.75 1484.5,-2350.75"/>
<polygon fill="#000000" stroke="none" points="1484.5,-2348.75 1484.5,-2350.75 1724.5,-2350.75 1724.5,-2348.75 1484.5,-2348.75"/>
<text text-anchor="start" x="1571.62" y="-2333.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Coil Pack 2--W19 -->
<g id="edge38" class="edge">
<title>Coil Pack 2:e--W19:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2177.75C1342.57,-2179.85 1333.92,-2351.85 1483.5,-2349.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2179.75C1340.58,-2179.75 1331.92,-2351.75 1483.5,-2351.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2181.75C1338.58,-2179.65 1329.93,-2351.65 1483.5,-2353.75"/>
</g>
<!-- Coil Pack 2--W20 -->
<g id="edge42" class="edge">
<title>Coil Pack 2:e--W20:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2153.75C1485.05,-2156.75 1126.41,-2777.75 1419,-2774.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2155.75C1483.32,-2155.75 1124.68,-2776.75 1419,-2776.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2157.75C1481.59,-2154.75 1122.95,-2775.75 1419,-2778.75"/>
</g>
<!-- Coil Pack 3 -->
<g id="node6" class="node">
<title>Coil Pack 3</title>
<polygon fill="#ffffff" stroke="black" points="1188,-2657.75 961,-2657.75 961,-2312.75 1188,-2312.75 1188,-2657.75"/>
<polygon fill="none" stroke="black" points="961,-2633.25 961,-2657.75 1188,-2657.75 1188,-2633.25 961,-2633.25"/>
<text text-anchor="start" x="1038.5" y="-2640.45" font-family="arial" font-size="14.00">Coil Pack 3</text>
<polygon fill="none" stroke="black" points="961,-2608.75 961,-2633.25 1113.88,-2633.25 1113.88,-2608.75 961,-2608.75"/>
<text text-anchor="start" x="982.31" y="-2615.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
<polygon fill="none" stroke="black" points="1113.88,-2608.75 1113.88,-2633.25 1188,-2633.25 1188,-2608.75 1113.88,-2608.75"/>
<text text-anchor="start" x="1135.19" y="-2615.95" font-family="arial" font-size="14.00">5-pin</text>
<polygon fill="none" stroke="black" points="961,-2584.75 961,-2608.75 1008,-2608.75 1008,-2584.75 961,-2584.75"/>
<text text-anchor="start" x="979.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="1008,-2584.75 1008,-2608.75 1141,-2608.75 1141,-2584.75 1008,-2584.75"/>
<text text-anchor="start" x="1047.12" y="-2591.45" font-family="arial" font-size="14.00">ECU Sig</text>
<polygon fill="none" stroke="black" points="1141,-2584.75 1141,-2608.75 1188,-2608.75 1188,-2584.75 1141,-2584.75"/>
<text text-anchor="start" x="1159.62" y="-2591.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="961,-2560.75 961,-2584.75 1008,-2584.75 1008,-2560.75 961,-2560.75"/>
<text text-anchor="start" x="979.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="1008,-2560.75 1008,-2584.75 1141,-2584.75 1141,-2560.75 1008,-2560.75"/>
<text text-anchor="start" x="1026.12" y="-2567.45" font-family="arial" font-size="14.00">Sensor Ground</text>
<polygon fill="none" stroke="black" points="1141,-2560.75 1141,-2584.75 1188,-2584.75 1188,-2560.75 1141,-2560.75"/>
<text text-anchor="start" x="1159.62" y="-2567.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="961,-2536.75 961,-2560.75 1008,-2560.75 1008,-2536.75 961,-2536.75"/>
<text text-anchor="start" x="979.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="1008,-2536.75 1008,-2560.75 1141,-2560.75 1141,-2536.75 1008,-2536.75"/>
<text text-anchor="start" x="1032.12" y="-2543.45" font-family="arial" font-size="14.00">Head Ground</text>
<polygon fill="none" stroke="black" points="1141,-2536.75 1141,-2560.75 1188,-2560.75 1188,-2536.75 1141,-2536.75"/>
<text text-anchor="start" x="1159.25" y="-2543.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="961,-2512.75 961,-2536.75 1008,-2536.75 1008,-2512.75 961,-2512.75"/>
<text text-anchor="start" x="979.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="1008,-2512.75 1008,-2536.75 1141,-2536.75 1141,-2512.75 1008,-2512.75"/>
<text text-anchor="start" x="1026.88" y="-2519.45" font-family="arial" font-size="14.00">Battery Ground</text>
<polygon fill="none" stroke="black" points="1141,-2512.75 1141,-2536.75 1188,-2536.75 1188,-2512.75 1141,-2512.75"/>
<text text-anchor="start" x="1159.25" y="-2519.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="961,-2488.75 961,-2512.75 1008,-2512.75 1008,-2488.75 961,-2488.75"/>
<text text-anchor="start" x="979.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="1008,-2488.75 1008,-2512.75 1141,-2512.75 1141,-2488.75 1008,-2488.75"/>
<text text-anchor="start" x="1030.62" y="-2495.45" font-family="arial" font-size="14.00">Switched 12V</text>
<polygon fill="none" stroke="black" points="1141,-2488.75 1141,-2512.75 1188,-2512.75 1188,-2488.75 1141,-2488.75"/>
<text text-anchor="start" x="1159.62" y="-2495.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="961,-2312.75 961,-2488.75 1188,-2488.75 1188,-2312.75 961,-2312.75"/>
<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2484.75"/>
</g>
<!-- Coil Pack 3--W19 -->
<g id="edge36" class="edge">
<title>Coil Pack 3:e--W19:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2546.75C1338.36,-2548.85 1330.15,-2377.85 1483.5,-2375.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2548.75C1340.35,-2548.75 1332.15,-2377.75 1483.5,-2377.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2550.75C1342.35,-2548.65 1334.14,-2377.65 1483.5,-2379.75"/>
</g>
<!-- Coil Pack 3--W20 -->
<g id="edge44" class="edge">
<title>Coil Pack 3:e--W20:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2522.75C1334.25,-2525.24 1277.63,-2751.24 1419,-2748.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2524.75C1332.31,-2524.75 1275.69,-2750.75 1419,-2750.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2526.75C1330.37,-2524.26 1273.75,-2750.26 1419,-2752.75"/>
</g>
<!-- Coil Pack 4 -->
<g id="node7" class="node">
<title>Coil Pack 4</title>
<polygon fill="#ffffff" stroke="black" points="1188,-3026.75 961,-3026.75 961,-2681.75 1188,-2681.75 1188,-3026.75"/>
<polygon fill="none" stroke="black" points="961,-3002.25 961,-3026.75 1188,-3026.75 1188,-3002.25 961,-3002.25"/>
<text text-anchor="start" x="1038.5" y="-3009.45" font-family="arial" font-size="14.00">Coil Pack 4</text>
<polygon fill="none" stroke="black" points="961,-2977.75 961,-3002.25 1113.88,-3002.25 1113.88,-2977.75 961,-2977.75"/>
<text text-anchor="start" x="982.31" y="-2984.95" font-family="arial" font-size="14.00">Delphi 12162825</text>
<polygon fill="none" stroke="black" points="1113.88,-2977.75 1113.88,-3002.25 1188,-3002.25 1188,-2977.75 1113.88,-2977.75"/>
<text text-anchor="start" x="1135.19" y="-2984.95" font-family="arial" font-size="14.00">5-pin</text>
<polygon fill="none" stroke="black" points="961,-2953.75 961,-2977.75 1008,-2977.75 1008,-2953.75 961,-2953.75"/>
<text text-anchor="start" x="979.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="1008,-2953.75 1008,-2977.75 1141,-2977.75 1141,-2953.75 1008,-2953.75"/>
<text text-anchor="start" x="1047.12" y="-2960.45" font-family="arial" font-size="14.00">ECU Sig</text>
<polygon fill="none" stroke="black" points="1141,-2953.75 1141,-2977.75 1188,-2977.75 1188,-2953.75 1141,-2953.75"/>
<text text-anchor="start" x="1159.62" y="-2960.45" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="961,-2929.75 961,-2953.75 1008,-2953.75 1008,-2929.75 961,-2929.75"/>
<text text-anchor="start" x="979.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="1008,-2929.75 1008,-2953.75 1141,-2953.75 1141,-2929.75 1008,-2929.75"/>
<text text-anchor="start" x="1026.12" y="-2936.45" font-family="arial" font-size="14.00">Sensor Ground</text>
<polygon fill="none" stroke="black" points="1141,-2929.75 1141,-2953.75 1188,-2953.75 1188,-2929.75 1141,-2929.75"/>
<text text-anchor="start" x="1159.62" y="-2936.45" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="961,-2905.75 961,-2929.75 1008,-2929.75 1008,-2905.75 961,-2905.75"/>
<text text-anchor="start" x="979.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="1008,-2905.75 1008,-2929.75 1141,-2929.75 1141,-2905.75 1008,-2905.75"/>
<text text-anchor="start" x="1032.12" y="-2912.45" font-family="arial" font-size="14.00">Head Ground</text>
<polygon fill="none" stroke="black" points="1141,-2905.75 1141,-2929.75 1188,-2929.75 1188,-2905.75 1141,-2905.75"/>
<text text-anchor="start" x="1159.25" y="-2912.45" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="961,-2881.75 961,-2905.75 1008,-2905.75 1008,-2881.75 961,-2881.75"/>
<text text-anchor="start" x="979.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="1008,-2881.75 1008,-2905.75 1141,-2905.75 1141,-2881.75 1008,-2881.75"/>
<text text-anchor="start" x="1026.88" y="-2888.45" font-family="arial" font-size="14.00">Battery Ground</text>
<polygon fill="none" stroke="black" points="1141,-2881.75 1141,-2905.75 1188,-2905.75 1188,-2881.75 1141,-2881.75"/>
<text text-anchor="start" x="1159.25" y="-2888.45" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="961,-2857.75 961,-2881.75 1008,-2881.75 1008,-2857.75 961,-2857.75"/>
<text text-anchor="start" x="979.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="1008,-2857.75 1008,-2881.75 1141,-2881.75 1141,-2857.75 1008,-2857.75"/>
<text text-anchor="start" x="1030.62" y="-2864.45" font-family="arial" font-size="14.00">Switched 12V</text>
<polygon fill="none" stroke="black" points="1141,-2857.75 1141,-2881.75 1188,-2881.75 1188,-2857.75 1141,-2857.75"/>
<text text-anchor="start" x="1159.62" y="-2864.45" font-family="arial" font-size="14.00">E</text>
<polygon fill="none" stroke="black" points="961,-2681.75 961,-2857.75 1188,-2857.75 1188,-2681.75 961,-2681.75"/>
<image xlink:href="images\coil.png" width="219px" height="168px" preserveAspectRatio="xMinYMin meet" x="965" y="-2853.75"/>
</g>
<!-- Coil Pack 4--W10 -->
<g id="edge34" class="edge">
<title>Coil Pack 4:e--W10:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2915.75C1322.76,-2916.56 1352.96,-2957.56 1483.5,-2956.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1189,-2917.75C1321.15,-2917.75 1351.35,-2958.75 1483.5,-2958.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2919.75C1319.54,-2918.94 1349.74,-2959.94 1483.5,-2960.75"/>
</g>
<!-- Coil Pack 4--W20 -->
<g id="edge46" class="edge">
<title>Coil Pack 4:e--W20:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2891.75C1313.87,-2894.03 1290.17,-2725.03 1419,-2722.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2893.75C1315.85,-2893.75 1292.15,-2724.75 1419,-2724.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1189,-2895.75C1317.83,-2893.47 1294.13,-2724.47 1419,-2726.75"/>
</g>
<!-- Fuel Injector 1 -->
<g id="node8" class="node">
<title>Fuel Injector 1</title>
<polygon fill="#ffffff" stroke="black" points="1228.5,-1402.25 920.5,-1402.25 920.5,-1072.25 1228.5,-1072.25 1228.5,-1402.25"/>
<polygon fill="none" stroke="black" points="920.5,-1377.75 920.5,-1402.25 1228.5,-1402.25 1228.5,-1377.75 920.5,-1377.75"/>
<text text-anchor="start" x="1029.12" y="-1384.95" font-family="arial" font-size="14.00">Fuel Injector 1</text>
<polygon fill="none" stroke="black" points="920.5,-1353.25 920.5,-1377.75 1102.25,-1377.75 1102.25,-1353.25 920.5,-1353.25"/>
<text text-anchor="start" x="967.88" y="-1360.45" font-family="arial" font-size="14.00">90980-11875</text>
<polygon fill="none" stroke="black" points="1102.25,-1353.25 1102.25,-1377.75 1228.5,-1377.75 1228.5,-1353.25 1102.25,-1353.25"/>
<text text-anchor="start" x="1149.62" y="-1360.45" font-family="arial" font-size="14.00">2-pin</text>
<polygon fill="none" stroke="black" points="920.5,-1329.25 920.5,-1353.25 1051,-1353.25 1051,-1329.25 920.5,-1329.25"/>
<text text-anchor="start" x="981.62" y="-1335.95" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1051,-1329.25 1051,-1353.25 1228.5,-1353.25 1228.5,-1329.25 1051,-1329.25"/>
<text text-anchor="start" x="1126.62" y="-1335.95" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="920.5,-1305.25 920.5,-1329.25 1051,-1329.25 1051,-1305.25 920.5,-1305.25"/>
<text text-anchor="start" x="981.62" y="-1311.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1051,-1305.25 1051,-1329.25 1228.5,-1329.25 1228.5,-1305.25 1051,-1305.25"/>
<text text-anchor="start" x="1112" y="-1311.95" font-family="arial" font-size="14.00">ECU INJ</text>
<polygon fill="none" stroke="black" points="920.5,-1072.25 920.5,-1305.25 1228.5,-1305.25 1228.5,-1072.25 920.5,-1072.25"/>
<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-1301.25"/>
</g>
<!-- Fuel Injector 2 -->
<g id="node9" class="node">
<title>Fuel Injector 2</title>
<polygon fill="#ffffff" stroke="black" points="1228.5,-1048.25 920.5,-1048.25 920.5,-718.25 1228.5,-718.25 1228.5,-1048.25"/>
<polygon fill="none" stroke="black" points="920.5,-1023.75 920.5,-1048.25 1228.5,-1048.25 1228.5,-1023.75 920.5,-1023.75"/>
<text text-anchor="start" x="1029.12" y="-1030.95" font-family="arial" font-size="14.00">Fuel Injector 2</text>
<polygon fill="none" stroke="black" points="920.5,-999.25 920.5,-1023.75 1102.25,-1023.75 1102.25,-999.25 920.5,-999.25"/>
<text text-anchor="start" x="967.88" y="-1006.45" font-family="arial" font-size="14.00">90980-11875</text>
<polygon fill="none" stroke="black" points="1102.25,-999.25 1102.25,-1023.75 1228.5,-1023.75 1228.5,-999.25 1102.25,-999.25"/>
<text text-anchor="start" x="1149.62" y="-1006.45" font-family="arial" font-size="14.00">2-pin</text>
<polygon fill="none" stroke="black" points="920.5,-975.25 920.5,-999.25 1051,-999.25 1051,-975.25 920.5,-975.25"/>
<text text-anchor="start" x="981.62" y="-981.95" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1051,-975.25 1051,-999.25 1228.5,-999.25 1228.5,-975.25 1051,-975.25"/>
<text text-anchor="start" x="1126.62" y="-981.95" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="920.5,-951.25 920.5,-975.25 1051,-975.25 1051,-951.25 920.5,-951.25"/>
<text text-anchor="start" x="981.62" y="-957.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1051,-951.25 1051,-975.25 1228.5,-975.25 1228.5,-951.25 1051,-951.25"/>
<text text-anchor="start" x="1112" y="-957.95" font-family="arial" font-size="14.00">ECU INJ</text>
<polygon fill="none" stroke="black" points="920.5,-718.25 920.5,-951.25 1228.5,-951.25 1228.5,-718.25 920.5,-718.25"/>
<image xlink:href="images\90980-11875.png" width="300px" height="225px" preserveAspectRatio="xMinYMin meet" x="924.5" y="-947.25"/>
</g>
<!-- MAF Sensor -->
<g id="node10" class="node">
<title>MAF Sensor</title>
<polygon fill="#ffffff" stroke="black" points="2342,-4311 2034,-4311 2034,-3999.5 2342,-3999.5 2342,-4311"/>
<polygon fill="none" stroke="black" points="2034,-4286.5 2034,-4311 2342,-4311 2342,-4286.5 2034,-4286.5"/>
<text text-anchor="start" x="2148.25" y="-4293.7" font-family="arial" font-size="14.00">MAF Sensor</text>
<polygon fill="none" stroke="black" points="2034,-4262 2034,-4286.5 2235.62,-4286.5 2235.62,-4262 2034,-4262"/>
<text text-anchor="start" x="2071.44" y="-4269.2" font-family="arial" font-size="14.00">Bosch 1928405138</text>
<polygon fill="none" stroke="black" points="2235.62,-4262 2235.62,-4286.5 2342,-4286.5 2342,-4262 2235.62,-4262"/>
<text text-anchor="start" x="2273.06" y="-4269.2" font-family="arial" font-size="14.00">1-pin</text>
<polygon fill="none" stroke="black" points="2034,-4237.5 2034,-4262 2179,-4262 2179,-4237.5 2034,-4237.5"/>
<text text-anchor="start" x="2102.38" y="-4244.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="2179,-4237.5 2179,-4262 2342,-4262 2342,-4237.5 2179,-4237.5"/>
<text text-anchor="start" x="2247.38" y="-4244.7" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="2034,-3999.5 2034,-4237.5 2342,-4237.5 2342,-3999.5 2034,-3999.5"/>
<image xlink:href="images\MAF.png" width="293.8px" height="226px" preserveAspectRatio="xMinYMin meet" x="2041.1" y="-4231.5"/>
</g>
<!-- LSU -->
<g id="node11" class="node">
<title>LSU</title>
<polygon fill="#ffffff" stroke="black" points="1222,-694 927,-694 927,-448.5 1222,-448.5 1222,-694"/>
<polygon fill="none" stroke="black" points="927,-669.5 927,-694 1222,-694 1222,-669.5 927,-669.5"/>
<text text-anchor="start" x="1060.62" y="-676.7" font-family="arial" font-size="14.00">LSU</text>
<polygon fill="none" stroke="black" points="927,-645 927,-669.5 1115.38,-669.5 1115.38,-645 927,-645"/>
<text text-anchor="start" x="964.56" y="-652.2" font-family="arial" font-size="14.00">D261.205.356-01</text>
<polygon fill="none" stroke="black" points="1115.38,-645 1115.38,-669.5 1222,-669.5 1222,-645 1115.38,-645"/>
<text text-anchor="start" x="1152.94" y="-652.2" font-family="arial" font-size="14.00">1-pin</text>
<polygon fill="none" stroke="black" points="927,-620.5 927,-645 1065.5,-645 1065.5,-620.5 927,-620.5"/>
<text text-anchor="start" x="992.12" y="-627.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1065.5,-620.5 1065.5,-645 1222,-645 1222,-620.5 1065.5,-620.5"/>
<text text-anchor="start" x="1130.62" y="-627.7" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="927,-448.5 927,-620.5 1222,-620.5 1222,-448.5 927,-448.5"/>
<image xlink:href="images\LSU.png" width="287px" height="164px" preserveAspectRatio="xMinYMin meet" x="931" y="-616.5"/>
</g>
<!-- Servo Power -->
<g id="node12" class="node">
<title>Servo Power</title>
<polygon fill="#ffffff" stroke="black" points="1224,-424.5 925,-424.5 925,0 1224,0 1224,-424.5"/>
<polygon fill="none" stroke="black" points="925,-400 925,-424.5 1224,-424.5 1224,-400 925,-400"/>
<text text-anchor="start" x="1033.62" y="-407.2" font-family="arial" font-size="14.00">Servo Power</text>
<polygon fill="none" stroke="black" points="925,-375.5 925,-400 1093.62,-400 1093.62,-375.5 925,-375.5"/>
<text text-anchor="start" x="974.44" y="-382.7" font-family="arial" font-size="14.00">DTM04-2P</text>
<polygon fill="none" stroke="black" points="1093.62,-375.5 1093.62,-400 1224,-400 1224,-375.5 1093.62,-375.5"/>
<text text-anchor="start" x="1143.06" y="-382.7" font-family="arial" font-size="14.00">2-pin</text>
<polygon fill="none" stroke="black" points="925,-351.5 925,-375.5 1017,-375.5 1017,-351.5 925,-351.5"/>
<text text-anchor="start" x="966.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1017,-351.5 1017,-375.5 1132,-375.5 1132,-351.5 1017,-351.5"/>
<text text-anchor="start" x="1061.38" y="-358.2" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="1132,-351.5 1132,-375.5 1224,-375.5 1224,-351.5 1132,-351.5"/>
<text text-anchor="start" x="1173.88" y="-358.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="925,-327.5 925,-351.5 1017,-351.5 1017,-327.5 925,-327.5"/>
<text text-anchor="start" x="966.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1017,-327.5 1017,-351.5 1132,-351.5 1132,-327.5 1017,-327.5"/>
<text text-anchor="start" x="1058.75" y="-334.2" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1132,-327.5 1132,-351.5 1224,-351.5 1224,-327.5 1132,-327.5"/>
<text text-anchor="start" x="1173.88" y="-334.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="925,-24.5 925,-327.5 1224,-327.5 1224,-24.5 925,-24.5"/>
<image xlink:href="images\ServoP.png" width="291px" height="295px" preserveAspectRatio="xMinYMin meet" x="929" y="-323.5"/>
<polygon fill="none" stroke="black" points="925,0 925,-24.5 1224,-24.5 1224,0 925,0"/>
<text text-anchor="start" x="1001" y="-7.2" font-family="arial" font-size="14.00">Crimp mate DTM06-2S</text>
</g>
<!-- W22 -->
<g id="node44" class="node">
<title>W22</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1762,-1901.75 1447,-1901.75 1447,-1786.75 1762,-1786.75 1762,-1901.75"/>
<polygon fill="none" stroke="black" points="1447,-1877.25 1447,-1901.75 1762,-1901.75 1762,-1877.25 1447,-1877.25"/>
<text text-anchor="start" x="1589.12" y="-1884.45" font-family="arial" font-size="14.00">W22</text>
<polygon fill="none" stroke="black" points="1447,-1852.75 1447,-1877.25 1518.5,-1877.25 1518.5,-1852.75 1447,-1852.75"/>
<text text-anchor="start" x="1475.25" y="-1859.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1518.5,-1852.75 1518.5,-1877.25 1630.5,-1877.25 1630.5,-1852.75 1518.5,-1852.75"/>
<text text-anchor="start" x="1546.75" y="-1859.95" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="1630.5,-1852.75 1630.5,-1877.25 1762,-1877.25 1762,-1852.75 1630.5,-1852.75"/>
<text text-anchor="start" x="1658.75" y="-1859.95" font-family="arial" font-size="14.00">20.0 Inches</text>
<text text-anchor="start" x="1511.62" y="-1837.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1449" y="-1817.45" font-family="arial" font-size="14.00">Servo Power:2:GND</text>
<text text-anchor="start" x="1581.88" y="-1817.45" font-family="arial" font-size="14.00">     BK    </text>
<text text-anchor="start" x="1638.75" y="-1817.45" font-family="arial" font-size="14.00">Negative Bus Bar:2</text>
<polygon fill="#000000" stroke="none" points="1447,-1810.75 1447,-1812.75 1762,-1812.75 1762,-1810.75 1447,-1810.75"/>
<polygon fill="#000000" stroke="none" points="1447,-1808.75 1447,-1810.75 1762,-1810.75 1762,-1808.75 1447,-1808.75"/>
<polygon fill="#000000" stroke="none" points="1447,-1806.75 1447,-1808.75 1762,-1808.75 1762,-1806.75 1447,-1806.75"/>
<text text-anchor="start" x="1511.62" y="-1791.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Servo Power--W22 -->
<g id="edge66" class="edge">
<title>Servo Power:e--W22:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-337.5C1557.31,-340.07 1117.52,-1810.32 1446,-1807.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-339.5C1555.39,-339.5 1115.61,-1809.75 1446,-1809.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1225,-341.5C1553.48,-338.93 1113.69,-1809.18 1446,-1811.75"/>
</g>
<!-- Fuse Block -->
<g id="node13" class="node">
<title>Fuse Block</title>
<polygon fill="#ffffff" stroke="black" points="2442,-3861 1934,-3861 1934,-3309.5 2442,-3309.5 2442,-3861"/>
<polygon fill="none" stroke="black" points="1934,-3836.5 1934,-3861 2442,-3861 2442,-3836.5 1934,-3836.5"/>
<text text-anchor="start" x="2152.38" y="-3843.7" font-family="arial" font-size="14.00">Fuse Block</text>
<polygon fill="none" stroke="black" points="1934,-3812 1934,-3836.5 2218.75,-3836.5 2218.75,-3812 1934,-3812"/>
<text text-anchor="start" x="2029.88" y="-3819.2" font-family="arial" font-size="14.00">TE 2319023-1</text>
<polygon fill="none" stroke="black" points="2218.75,-3812 2218.75,-3836.5 2442,-3836.5 2442,-3812 2218.75,-3812"/>
<text text-anchor="start" x="2314.62" y="-3819.2" font-family="arial" font-size="14.00">8-pin</text>
<polygon fill="none" stroke="black" points="1934,-3788 1934,-3812 2179.5,-3812 2179.5,-3788 1934,-3788"/>
<text text-anchor="start" x="2052.62" y="-3794.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="2179.5,-3788 2179.5,-3812 2442,-3812 2442,-3788 2179.5,-3788"/>
<text text-anchor="start" x="2298" y="-3794.7" font-family="arial" font-size="14.00">F1+</text>
<polygon fill="none" stroke="black" points="1934,-3764 1934,-3788 2179.5,-3788 2179.5,-3764 1934,-3764"/>
<text text-anchor="start" x="2052.62" y="-3770.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="2179.5,-3764 2179.5,-3788 2442,-3788 2442,-3764 2179.5,-3764"/>
<text text-anchor="start" x="2299.88" y="-3770.7" font-family="arial" font-size="14.00">F1-</text>
<polygon fill="none" stroke="black" points="1934,-3740 1934,-3764 2179.5,-3764 2179.5,-3740 1934,-3740"/>
<text text-anchor="start" x="2052.62" y="-3746.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="2179.5,-3740 2179.5,-3764 2442,-3764 2442,-3740 2179.5,-3740"/>
<text text-anchor="start" x="2298" y="-3746.7" font-family="arial" font-size="14.00">F2+</text>
<polygon fill="none" stroke="black" points="1934,-3716 1934,-3740 2179.5,-3740 2179.5,-3716 1934,-3716"/>
<text text-anchor="start" x="2052.62" y="-3722.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="2179.5,-3716 2179.5,-3740 2442,-3740 2442,-3716 2179.5,-3716"/>
<text text-anchor="start" x="2299.88" y="-3722.7" font-family="arial" font-size="14.00">F2-</text>
<polygon fill="none" stroke="black" points="1934,-3692 1934,-3716 2179.5,-3716 2179.5,-3692 1934,-3692"/>
<text text-anchor="start" x="2052.62" y="-3698.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="2179.5,-3692 2179.5,-3716 2442,-3716 2442,-3692 2179.5,-3692"/>
<text text-anchor="start" x="2298" y="-3698.7" font-family="arial" font-size="14.00">F3+</text>
<polygon fill="none" stroke="black" points="1934,-3668 1934,-3692 2179.5,-3692 2179.5,-3668 1934,-3668"/>
<text text-anchor="start" x="2052.62" y="-3674.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="2179.5,-3668 2179.5,-3692 2442,-3692 2442,-3668 2179.5,-3668"/>
<text text-anchor="start" x="2299.88" y="-3674.7" font-family="arial" font-size="14.00">F3-</text>
<polygon fill="none" stroke="black" points="1934,-3644 1934,-3668 2179.5,-3668 2179.5,-3644 1934,-3644"/>
<text text-anchor="start" x="2052.62" y="-3650.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="2179.5,-3644 2179.5,-3668 2442,-3668 2442,-3644 2179.5,-3644"/>
<text text-anchor="start" x="2298" y="-3650.7" font-family="arial" font-size="14.00">F4+</text>
<polygon fill="none" stroke="black" points="1934,-3620 1934,-3644 2179.5,-3644 2179.5,-3620 1934,-3620"/>
<text text-anchor="start" x="2052.62" y="-3626.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="2179.5,-3620 2179.5,-3644 2442,-3644 2442,-3620 2179.5,-3620"/>
<text text-anchor="start" x="2299.88" y="-3626.7" font-family="arial" font-size="14.00">F4-</text>
<polygon fill="none" stroke="black" points="1934,-3334 1934,-3620 2442,-3620 2442,-3334 1934,-3334"/>
<image xlink:href="images\FB.png" width="491.88px" height="274px" preserveAspectRatio="xMinYMin meet" x="1942.06" y="-3614"/>
<polygon fill="none" stroke="black" points="1934,-3309.5 1934,-3334 2442,-3334 2442,-3309.5 1934,-3309.5"/>
<text text-anchor="start" x="2113.75" y="-3316.7" font-family="arial" font-size="14.00">F1 15A, F2 15A, F3 5A</text>
</g>
<!-- KillSwitch -->
<g id="node14" class="node">
<title>KillSwitch</title>
<polygon fill="#ffffff" stroke="black" points="1227,-3786.5 922,-3786.5 922,-3470 1227,-3470 1227,-3786.5"/>
<polygon fill="none" stroke="black" points="922,-3762 922,-3786.5 1227,-3786.5 1227,-3762 922,-3762"/>
<text text-anchor="start" x="1044.5" y="-3769.2" font-family="arial" font-size="14.00">KillSwitch</text>
<polygon fill="none" stroke="black" points="922,-3737.5 922,-3762 1105.62,-3762 1105.62,-3737.5 922,-3737.5"/>
<text text-anchor="start" x="966.94" y="-3744.7" font-family="arial" font-size="14.00">MS24658-22D</text>
<polygon fill="none" stroke="black" points="1105.62,-3737.5 1105.62,-3762 1227,-3762 1227,-3737.5 1105.62,-3737.5"/>
<text text-anchor="start" x="1150.56" y="-3744.7" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="922,-3713.5 922,-3737.5 1008,-3737.5 1008,-3713.5 922,-3713.5"/>
<text text-anchor="start" x="960.88" y="-3720.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1008,-3713.5 1008,-3737.5 1141,-3737.5 1141,-3713.5 1008,-3713.5"/>
<text text-anchor="start" x="1064.38" y="-3720.2" font-family="arial" font-size="14.00">NC</text>
<polygon fill="none" stroke="black" points="1141,-3713.5 1141,-3737.5 1227,-3737.5 1227,-3713.5 1141,-3713.5"/>
<text text-anchor="start" x="1179.88" y="-3720.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="922,-3689.5 922,-3713.5 1008,-3713.5 1008,-3689.5 922,-3689.5"/>
<text text-anchor="start" x="960.88" y="-3696.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1008,-3689.5 1008,-3713.5 1141,-3713.5 1141,-3689.5 1008,-3689.5"/>
<text text-anchor="start" x="1046.75" y="-3696.2" font-family="arial" font-size="14.00">common</text>
<polygon fill="none" stroke="black" points="1141,-3689.5 1141,-3713.5 1227,-3713.5 1227,-3689.5 1141,-3689.5"/>
<text text-anchor="start" x="1179.88" y="-3696.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="922,-3665.5 922,-3689.5 1008,-3689.5 1008,-3665.5 922,-3665.5"/>
<text text-anchor="start" x="960.88" y="-3672.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1008,-3665.5 1008,-3689.5 1141,-3689.5 1141,-3665.5 1008,-3665.5"/>
<text text-anchor="start" x="1064.75" y="-3672.2" font-family="arial" font-size="14.00">KS</text>
<polygon fill="none" stroke="black" points="1141,-3665.5 1141,-3689.5 1227,-3689.5 1227,-3665.5 1141,-3665.5"/>
<text text-anchor="start" x="1179.88" y="-3672.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="922,-3494.5 922,-3665.5 1227,-3665.5 1227,-3494.5 922,-3494.5"/>
<image xlink:href="images\kill.png" width="297px" height="163px" preserveAspectRatio="xMinYMin meet" x="926" y="-3661.5"/>
<polygon fill="none" stroke="black" points="922,-3470 922,-3494.5 1227,-3494.5 1227,-3470 922,-3470"/>
<text text-anchor="start" x="960.5" y="-3477.2" font-family="arial" font-size="14.00">Ring Terminal (Inner Diameter.260")</text>
</g>
<!-- W14 -->
<g id="node38" class="node">
<title>W14</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1741,-3804.75 1468,-3804.75 1468,-3689.75 1741,-3689.75 1741,-3804.75"/>
<polygon fill="none" stroke="black" points="1468,-3780.25 1468,-3804.75 1741,-3804.75 1741,-3780.25 1468,-3780.25"/>
<text text-anchor="start" x="1589.12" y="-3787.45" font-family="arial" font-size="14.00">W14</text>
<polygon fill="none" stroke="black" points="1468,-3755.75 1468,-3780.25 1522.75,-3780.25 1522.75,-3755.75 1468,-3755.75"/>
<text text-anchor="start" x="1487.88" y="-3762.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1522.75,-3755.75 1522.75,-3780.25 1618,-3780.25 1618,-3755.75 1522.75,-3755.75"/>
<text text-anchor="start" x="1542.62" y="-3762.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="1618,-3755.75 1618,-3780.25 1741,-3780.25 1741,-3755.75 1618,-3755.75"/>
<text text-anchor="start" x="1637.88" y="-3762.95" font-family="arial" font-size="14.00">170.0 Inches</text>
<text text-anchor="start" x="1515.62" y="-3740.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1469.88" y="-3720.45" font-family="arial" font-size="14.00">KillSwitch:3:KS</text>
<text text-anchor="start" x="1568.62" y="-3720.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="1626.75" y="-3720.45" font-family="arial" font-size="14.00">Fuse Block:3:F2+</text>
<polygon fill="#000000" stroke="none" points="1468,-3713.75 1468,-3715.75 1741,-3715.75 1741,-3713.75 1468,-3713.75"/>
<polygon fill="#ff0000" stroke="none" points="1468,-3711.75 1468,-3713.75 1741,-3713.75 1741,-3711.75 1468,-3711.75"/>
<polygon fill="#000000" stroke="none" points="1468,-3709.75 1468,-3711.75 1741,-3711.75 1741,-3709.75 1468,-3709.75"/>
<text text-anchor="start" x="1515.62" y="-3694.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- KillSwitch--W14 -->
<g id="edge54" class="edge">
<title>KillSwitch:e--W14:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3675.5C1337.02,-3676.37 1361.28,-3711.62 1467,-3710.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1228,-3677.5C1335.37,-3677.5 1359.63,-3712.75 1467,-3712.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1228,-3679.5C1333.72,-3678.63 1357.98,-3713.88 1467,-3714.75"/>
</g>
<!-- Tachometer -->
<g id="node15" class="node">
<title>Tachometer</title>
<polygon fill="#ffffff" stroke="black" points="2342,-4779 2034,-4779 2034,-4335.5 2342,-4335.5 2342,-4779"/>
<polygon fill="none" stroke="black" points="2034,-4754.5 2034,-4779 2342,-4779 2342,-4754.5 2034,-4754.5"/>
<text text-anchor="start" x="2149.75" y="-4761.7" font-family="arial" font-size="14.00">Tachometer</text>
<polygon fill="none" stroke="black" points="2034,-4730 2034,-4754.5 2201.5,-4754.5 2201.5,-4730 2034,-4730"/>
<text text-anchor="start" x="2088.5" y="-4737.2" font-family="arial" font-size="14.00">DT04-3P</text>
<polygon fill="none" stroke="black" points="2201.5,-4730 2201.5,-4754.5 2342,-4754.5 2342,-4730 2201.5,-4730"/>
<text text-anchor="start" x="2256" y="-4737.2" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="2034,-4706 2034,-4730 2129.67,-4730 2129.67,-4706 2034,-4706"/>
<text text-anchor="start" x="2076.96" y="-4712.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="2129.67,-4706 2129.67,-4730 2246.33,-4730 2246.33,-4706 2129.67,-4706"/>
<text text-anchor="start" x="2174.88" y="-4712.7" font-family="arial" font-size="14.00">12V</text>
<polygon fill="none" stroke="black" points="2246.33,-4706 2246.33,-4730 2342,-4730 2342,-4706 2246.33,-4706"/>
<text text-anchor="start" x="2289.29" y="-4712.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="2034,-4682 2034,-4706 2129.67,-4706 2129.67,-4682 2034,-4682"/>
<text text-anchor="start" x="2076.96" y="-4688.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="2129.67,-4682 2129.67,-4706 2246.33,-4706 2246.33,-4682 2129.67,-4682"/>
<text text-anchor="start" x="2172.25" y="-4688.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="2246.33,-4682 2246.33,-4706 2342,-4706 2342,-4682 2246.33,-4682"/>
<text text-anchor="start" x="2289.29" y="-4688.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="2034,-4658 2034,-4682 2129.67,-4682 2129.67,-4658 2034,-4658"/>
<text text-anchor="start" x="2076.58" y="-4664.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="2129.67,-4658 2129.67,-4682 2246.33,-4682 2246.33,-4658 2129.67,-4658"/>
<text text-anchor="start" x="2176.75" y="-4664.7" font-family="arial" font-size="14.00">Out</text>
<polygon fill="none" stroke="black" points="2246.33,-4658 2246.33,-4682 2342,-4682 2342,-4658 2246.33,-4658"/>
<text text-anchor="start" x="2288.92" y="-4664.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="2034,-4360 2034,-4658 2342,-4658 2342,-4360 2034,-4360"/>
<image xlink:href="images\DT04-3P.png" width="295.36px" height="286px" preserveAspectRatio="xMinYMin meet" x="2040.32" y="-4652"/>
<polygon fill="none" stroke="black" points="2034,-4335.5 2034,-4360 2342,-4360 2342,-4335.5 2034,-4335.5"/>
<text text-anchor="start" x="2123.88" y="-4342.7" font-family="arial" font-size="14.00">Mates with DT06-3S</text>
</g>
<!-- W12 -->
<g id="node36" class="node">
<title>W12</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="2844.5,-4786 2586,-4786 2586,-4646.5 2844.5,-4646.5 2844.5,-4786"/>
<polygon fill="none" stroke="black" points="2586,-4761.5 2586,-4786 2844.5,-4786 2844.5,-4761.5 2586,-4761.5"/>
<text text-anchor="start" x="2699.88" y="-4768.7" font-family="arial" font-size="14.00">W12</text>
<polygon fill="none" stroke="black" points="2586,-4737 2586,-4761.5 2638.67,-4761.5 2638.67,-4737 2586,-4737"/>
<text text-anchor="start" x="2604.83" y="-4744.2" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="2638.67,-4737 2638.67,-4761.5 2731.83,-4761.5 2731.83,-4737 2638.67,-4737"/>
<text text-anchor="start" x="2657.5" y="-4744.2" font-family="arial" font-size="14.00">18 AWG</text>
<polygon fill="none" stroke="black" points="2731.83,-4737 2731.83,-4761.5 2844.5,-4761.5 2844.5,-4737 2731.83,-4737"/>
<text text-anchor="start" x="2750.67" y="-4744.2" font-family="arial" font-size="14.00">60.0 Inches</text>
<text text-anchor="start" x="2660.04" y="-4721.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="2599.29" y="-4701.7" font-family="arial" font-size="14.00">Tachometer:B:GND</text>
<text text-anchor="start" x="2751.12" y="-4701.7" font-family="arial" font-size="14.00">     BK    </text>
<polygon fill="#000000" stroke="none" points="2586,-4695 2586,-4697 2844.5,-4697 2844.5,-4695 2586,-4695"/>
<polygon fill="#000000" stroke="none" points="2586,-4693 2586,-4695 2844.5,-4695 2844.5,-4693 2586,-4693"/>
<polygon fill="#000000" stroke="none" points="2586,-4691 2586,-4693 2844.5,-4693 2844.5,-4691 2586,-4691"/>
<text text-anchor="start" x="2660.04" y="-4675.7" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="2586,-4646.5 2586,-4671 2844.5,-4671 2844.5,-4646.5 2586,-4646.5"/>
<text text-anchor="start" x="2590" y="-4653.7" font-family="arial" font-size="14.00">Distance is from ECU to engine ground.</text>
</g>
<!-- Tachometer--W12 -->
<g id="edge50" class="edge">
<title>Tachometer:e--W12:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4692C2451,-4692 2478,-4692 2586,-4692"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4694C2451,-4694 2478,-4694 2586,-4694"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M2343,-4696C2451,-4696 2478,-4696 2586,-4696"/>
</g>
<!-- Positive Bus Bar -->
<g id="node16" class="node">
<title>Positive Bus Bar</title>
<polygon fill="#ffffff" stroke="black" points="213,-3950.75 23,-3950.75 23,-3803.75 213,-3803.75 213,-3950.75"/>
<polygon fill="none" stroke="black" points="23,-3926.25 23,-3950.75 213,-3950.75 213,-3926.25 23,-3926.25"/>
<text text-anchor="start" x="65.88" y="-3933.45" font-family="arial" font-size="14.00">Positive Bus Bar</text>
<polygon fill="none" stroke="black" points="23,-3901.75 23,-3926.25 173.5,-3926.25 173.5,-3901.75 23,-3901.75"/>
<text text-anchor="start" x="27" y="-3908.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
<polygon fill="none" stroke="black" points="173.5,-3901.75 173.5,-3926.25 213,-3926.25 213,-3901.75 173.5,-3901.75"/>
<text text-anchor="start" x="177.5" y="-3908.95" font-family="arial" font-size="14.00">4-pin</text>
<polygon fill="none" stroke="black" points="23,-3877.25 23,-3901.75 213,-3901.75 213,-3877.25 23,-3877.25"/>
<text text-anchor="start" x="113.88" y="-3884.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="23,-3852.75 23,-3877.25 213,-3877.25 213,-3852.75 23,-3852.75"/>
<text text-anchor="start" x="113.88" y="-3859.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="23,-3828.25 23,-3852.75 213,-3852.75 213,-3828.25 23,-3828.25"/>
<text text-anchor="start" x="113.88" y="-3835.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="23,-3803.75 23,-3828.25 213,-3828.25 213,-3803.75 23,-3803.75"/>
<text text-anchor="start" x="113.88" y="-3810.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W6 -->
<g id="node29" class="node">
<title>W6</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="702,-3957.75 408,-3957.75 408,-3816.75 702,-3816.75 702,-3957.75"/>
<polygon fill="none" stroke="black" points="408,-3933.25 408,-3957.75 702,-3957.75 702,-3933.25 408,-3933.25"/>
<text text-anchor="start" x="543.75" y="-3940.45" font-family="arial" font-size="14.00">W6</text>
<polygon fill="none" stroke="black" points="408,-3908.75 408,-3933.25 472.5,-3933.25 472.5,-3908.75 408,-3908.75"/>
<text text-anchor="start" x="432.75" y="-3915.95" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="472.5,-3908.75 472.5,-3933.25 577.5,-3933.25 577.5,-3908.75 472.5,-3908.75"/>
<text text-anchor="start" x="497.25" y="-3915.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="577.5,-3908.75 577.5,-3933.25 702,-3933.25 702,-3908.75 577.5,-3908.75"/>
<text text-anchor="start" x="602.25" y="-3915.95" font-family="arial" font-size="14.00">10.0 Inches</text>
<text text-anchor="start" x="466.12" y="-3893.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="409.88" y="-3873.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
<text text-anchor="start" x="529.62" y="-3873.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="587.75" y="-3873.45" font-family="arial" font-size="14.00">Fuse Block:1:F1+</text>
<polygon fill="#000000" stroke="none" points="408,-3866.75 408,-3868.75 702,-3868.75 702,-3866.75 408,-3866.75"/>
<polygon fill="#ff0000" stroke="none" points="408,-3864.75 408,-3866.75 702,-3866.75 702,-3864.75 408,-3864.75"/>
<polygon fill="#000000" stroke="none" points="408,-3862.75 408,-3864.75 702,-3864.75 702,-3862.75 408,-3862.75"/>
<text text-anchor="start" x="409.88" y="-3847.45" font-family="arial" font-size="14.00">Positive Bus Bar:3</text>
<text text-anchor="start" x="529.62" y="-3847.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="587.75" y="-3847.45" font-family="arial" font-size="14.00">Fuse Block:5:F3+</text>
<polygon fill="#000000" stroke="none" points="408,-3840.75 408,-3842.75 702,-3842.75 702,-3840.75 408,-3840.75"/>
<polygon fill="#ff0000" stroke="none" points="408,-3838.75 408,-3840.75 702,-3840.75 702,-3838.75 408,-3838.75"/>
<polygon fill="#000000" stroke="none" points="408,-3836.75 408,-3838.75 702,-3838.75 702,-3836.75 408,-3836.75"/>
<text text-anchor="start" x="466.12" y="-3821.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar--W6 -->
<g id="edge24" class="edge">
<title>Positive Bus Bar:e--W6:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3838.5C302.08,-3839.26 322.06,-3864.51 407,-3863.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3840.5C300.51,-3840.5 320.49,-3865.75 407,-3865.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3842.5C298.94,-3841.74 318.92,-3866.99 407,-3867.75"/>
</g>
<!-- Positive Bus Bar--W6 -->
<g id="edge26" class="edge">
<title>Positive Bus Bar:e--W6:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3838.5C299.71,-3838.5 321.15,-3837.75 407,-3837.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3840.5C299.78,-3840.5 321.22,-3839.75 407,-3839.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3842.5C299.85,-3842.5 321.29,-3841.75 407,-3841.75"/>
</g>
<!-- W8 -->
<g id="node31" class="node">
<title>W8</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="711.5,-3792.75 398.5,-3792.75 398.5,-3677.75 711.5,-3677.75 711.5,-3792.75"/>
<polygon fill="none" stroke="black" points="398.5,-3768.25 398.5,-3792.75 711.5,-3792.75 711.5,-3768.25 398.5,-3768.25"/>
<text text-anchor="start" x="543.75" y="-3775.45" font-family="arial" font-size="14.00">W8</text>
<polygon fill="none" stroke="black" points="398.5,-3743.75 398.5,-3768.25 466.58,-3768.25 466.58,-3743.75 398.5,-3743.75"/>
<text text-anchor="start" x="425.04" y="-3750.95" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="466.58,-3743.75 466.58,-3768.25 575.17,-3768.25 575.17,-3743.75 466.58,-3743.75"/>
<text text-anchor="start" x="493.12" y="-3750.95" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="575.17,-3743.75 575.17,-3768.25 711.5,-3768.25 711.5,-3743.75 575.17,-3743.75"/>
<text text-anchor="start" x="601.71" y="-3750.95" font-family="arial" font-size="14.00">170.0 Inches</text>
<text text-anchor="start" x="456.62" y="-3728.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="400.38" y="-3708.45" font-family="arial" font-size="14.00">Positive Bus Bar:4</text>
<text text-anchor="start" x="520.12" y="-3708.45" font-family="arial" font-size="14.00">     RD    </text>
<text text-anchor="start" x="578.38" y="-3708.45" font-family="arial" font-size="14.00">KillSwitch:2:common</text>
<polygon fill="#000000" stroke="none" points="398.5,-3701.75 398.5,-3703.75 711.5,-3703.75 711.5,-3701.75 398.5,-3701.75"/>
<polygon fill="#ff0000" stroke="none" points="398.5,-3699.75 398.5,-3701.75 711.5,-3701.75 711.5,-3699.75 398.5,-3699.75"/>
<polygon fill="#000000" stroke="none" points="398.5,-3697.75 398.5,-3699.75 711.5,-3699.75 711.5,-3697.75 398.5,-3697.75"/>
<text text-anchor="start" x="456.62" y="-3682.45" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Positive Bus Bar--W8 -->
<g id="edge30" class="edge">
<title>Positive Bus Bar:e--W8:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3814C308.31,-3816.16 299.2,-3700.91 397.5,-3698.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M214,-3816C310.31,-3816 301.19,-3700.75 397.5,-3700.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M214,-3818C312.3,-3815.84 303.19,-3700.59 397.5,-3702.75"/>
</g>
<!-- Negative Bus Bar -->
<g id="node17" class="node">
<title>Negative Bus Bar</title>
<polygon fill="#ffffff" stroke="black" points="2283,-2897.75 2093,-2897.75 2093,-2750.75 2283,-2750.75 2283,-2897.75"/>
<polygon fill="none" stroke="black" points="2093,-2873.25 2093,-2897.75 2283,-2897.75 2283,-2873.25 2093,-2873.25"/>
<text text-anchor="start" x="2133.25" y="-2880.45" font-family="arial" font-size="14.00">Negative Bus Bar</text>
<polygon fill="none" stroke="black" points="2093,-2848.75 2093,-2873.25 2243.5,-2873.25 2243.5,-2848.75 2093,-2848.75"/>
<text text-anchor="start" x="2097" y="-2855.95" font-family="arial" font-size="14.00">Pike Industries Busbar</text>
<polygon fill="none" stroke="black" points="2243.5,-2848.75 2243.5,-2873.25 2283,-2873.25 2283,-2848.75 2243.5,-2848.75"/>
<text text-anchor="start" x="2247.5" y="-2855.95" font-family="arial" font-size="14.00">4-pin</text>
<polygon fill="none" stroke="black" points="2093,-2824.25 2093,-2848.75 2283,-2848.75 2283,-2824.25 2093,-2824.25"/>
<text text-anchor="start" x="2183.88" y="-2831.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="2093,-2799.75 2093,-2824.25 2283,-2824.25 2283,-2799.75 2093,-2799.75"/>
<text text-anchor="start" x="2183.88" y="-2806.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="2093,-2775.25 2093,-2799.75 2283,-2799.75 2283,-2775.25 2093,-2775.25"/>
<text text-anchor="start" x="2183.88" y="-2782.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="2093,-2750.75 2093,-2775.25 2283,-2775.25 2283,-2750.75 2093,-2750.75"/>
<text text-anchor="start" x="2183.88" y="-2757.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- _Engine GND_1 -->
<g id="node18" class="node">
<title>_Engine GND_1</title>
<polygon fill="#ffffff" stroke="black" points="2231.75,-3000.5 2144.25,-3000.5 2144.25,-2976 2231.75,-2976 2231.75,-3000.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2976 2144.25,-3000.5 2231.75,-3000.5 2231.75,-2976 2144.25,-2976"/>
<polygon fill="none" stroke="black" points="2144.25,-2976 2144.25,-3000.5 2231.75,-3000.5 2231.75,-2976 2144.25,-2976"/>
<text text-anchor="start" x="2148.25" y="-2983.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_2 -->
<g id="node19" class="node">
<title>_Engine GND_2</title>
<polygon fill="#ffffff" stroke="black" points="2231.75,-2951.5 2144.25,-2951.5 2144.25,-2927 2231.75,-2927 2231.75,-2951.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2927 2144.25,-2951.5 2231.75,-2951.5 2231.75,-2927 2144.25,-2927"/>
<polygon fill="none" stroke="black" points="2144.25,-2927 2144.25,-2951.5 2231.75,-2951.5 2231.75,-2927 2144.25,-2927"/>
<text text-anchor="start" x="2148.25" y="-2934.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_3 -->
<g id="node20" class="node">
<title>_Engine GND_3</title>
<polygon fill="#ffffff" stroke="black" points="2231.75,-2401.5 2144.25,-2401.5 2144.25,-2377 2231.75,-2377 2231.75,-2401.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2377 2144.25,-2401.5 2231.75,-2401.5 2231.75,-2377 2144.25,-2377"/>
<polygon fill="none" stroke="black" points="2144.25,-2377 2144.25,-2401.5 2231.75,-2401.5 2231.75,-2377 2144.25,-2377"/>
<text text-anchor="start" x="2148.25" y="-2384.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_4 -->
<g id="node21" class="node">
<title>_Engine GND_4</title>
<polygon fill="#ffffff" stroke="black" points="2231.75,-2352.5 2144.25,-2352.5 2144.25,-2328 2231.75,-2328 2231.75,-2352.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2144.25,-2328 2144.25,-2352.5 2231.75,-2352.5 2231.75,-2328 2144.25,-2328"/>
<polygon fill="none" stroke="black" points="2144.25,-2328 2144.25,-2352.5 2231.75,-2352.5 2231.75,-2328 2144.25,-2328"/>
<text text-anchor="start" x="2148.25" y="-2335.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _Engine GND_5 -->
<g id="node22" class="node">
<title>_Engine GND_5</title>
<polygon fill="#ffffff" stroke="black" points="3076,-4706.5 2988.5,-4706.5 2988.5,-4682 3076,-4682 3076,-4706.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2988.5,-4682 2988.5,-4706.5 3076,-4706.5 3076,-4682 2988.5,-4682"/>
<polygon fill="none" stroke="black" points="2988.5,-4682 2988.5,-4706.5 3076,-4706.5 3076,-4682 2988.5,-4682"/>
<text text-anchor="start" x="2992.5" y="-4689.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- _S_1 -->
<g id="node23" class="node">
<title>_S_1</title>
<polygon fill="#ffffff" stroke="black" points="1097.25,-1450.5 1051.75,-1450.5 1051.75,-1426 1097.25,-1426 1097.25,-1450.5"/>
<polygon fill="none" stroke="black" points="1051.75,-1426 1051.75,-1450.5 1097.25,-1450.5 1097.25,-1426 1051.75,-1426"/>
<text text-anchor="start" x="1055.75" y="-1433.2" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- W13 -->
<g id="node37" class="node">
<title>W13</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1689.25,-1530 1519.75,-1530 1519.75,-1390.5 1689.25,-1390.5 1689.25,-1530"/>
<polygon fill="none" stroke="black" points="1519.75,-1505.5 1519.75,-1530 1689.25,-1530 1689.25,-1505.5 1519.75,-1505.5"/>
<text text-anchor="start" x="1589.12" y="-1512.7" font-family="arial" font-size="14.00">W13</text>
<polygon fill="none" stroke="black" points="1519.75,-1481 1519.75,-1505.5 1542.75,-1505.5 1542.75,-1481 1519.75,-1481"/>
<text text-anchor="start" x="1523.75" y="-1488.2" font-family="arial" font-size="14.00">1x</text>
<polygon fill="none" stroke="black" points="1542.75,-1481 1542.75,-1505.5 1606.25,-1505.5 1606.25,-1481 1542.75,-1481"/>
<text text-anchor="start" x="1546.75" y="-1488.2" font-family="arial" font-size="14.00">14 AWG</text>
<polygon fill="none" stroke="black" points="1606.25,-1481 1606.25,-1505.5 1689.25,-1505.5 1689.25,-1481 1606.25,-1481"/>
<text text-anchor="start" x="1610.25" y="-1488.2" font-family="arial" font-size="14.00">50.0 Inches</text>
<text text-anchor="start" x="1538.29" y="-1465.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1579.38" y="-1445.7" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="1519.75,-1439 1519.75,-1441 1689.25,-1441 1689.25,-1439 1519.75,-1439"/>
<polygon fill="#895956" stroke="none" points="1519.75,-1437 1519.75,-1439 1689.25,-1439 1689.25,-1437 1519.75,-1437"/>
<polygon fill="#000000" stroke="none" points="1519.75,-1435 1519.75,-1437 1689.25,-1437 1689.25,-1435 1519.75,-1435"/>
<text text-anchor="start" x="1538.29" y="-1419.7" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="1519.75,-1390.5 1519.75,-1415 1689.25,-1415 1689.25,-1390.5 1519.75,-1390.5"/>
<text text-anchor="start" x="1528" y="-1397.7" font-family="arial" font-size="14.00">Ring Terminal On Block.</text>
</g>
<!-- _S_1--W13 -->
<g id="edge52" class="edge">
<title>_S_1:e--W13:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1436.25C1285.13,-1436.25 1331.85,-1436 1518.75,-1436"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1098.25,-1438.25C1285.14,-1438.25 1331.86,-1438 1518.75,-1438"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1098.25,-1440.25C1285.15,-1440.25 1331.87,-1440 1518.75,-1440"/>
</g>
<!-- _Engine GND_6 -->
<g id="node24" class="node">
<title>_Engine GND_6</title>
<polygon fill="#ffffff" stroke="black" points="2231.75,-1450.5 2144.25,-1450.5 2144.25,-1426 2231.75,-1426 2231.75,-1450.5"/>
<polygon fill="#aaaaaa" stroke="none" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
<polygon fill="none" stroke="black" points="2144.25,-1426 2144.25,-1450.5 2231.75,-1450.5 2231.75,-1426 2144.25,-1426"/>
<text text-anchor="start" x="2148.25" y="-1433.2" font-family="arial" font-size="14.00">Engine GND</text>
</g>
<!-- W1--Coil Pack 1 -->
<g id="edge2" class="edge">
<title>W1:e--Coil Pack 1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C993.68,-2077.49 698.7,-3239.24 960,-3236.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C991.74,-2077 696.76,-3238.75 960,-3238.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C989.8,-2076.51 694.82,-3238.26 960,-3240.75"/>
</g>
<!-- W1--Coil Pack 2 -->
<g id="edge4" class="edge">
<title>W1:e--Coil Pack 2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C836.11,-2076.31 856.15,-2131.06 960,-2129.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C834.23,-2077 854.27,-2131.75 960,-2131.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C832.35,-2077.69 852.39,-2132.44 960,-2133.75"/>
</g>
<!-- W1--Coil Pack 3 -->
<g id="edge6" class="edge">
<title>W1:e--Coil Pack 3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C944.92,-2077.85 747.21,-2501.6 960,-2498.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C943.11,-2077 745.39,-2500.75 960,-2500.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C941.29,-2076.15 743.58,-2499.9 960,-2502.75"/>
</g>
<!-- W1--Coil Pack 4 -->
<g id="edge8" class="edge">
<title>W1:e--Coil Pack 4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2075C1097.24,-2078.07 594.64,-2870.82 960,-2867.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M728.5,-2077C1095.55,-2077 592.95,-2869.75 960,-2869.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M728.5,-2079C1093.86,-2075.93 591.26,-2868.68 960,-2871.75"/>
</g>
<!-- W2--Fuel Injector 1 -->
<g id="edge12" class="edge">
<title>W2:e--Fuel Injector 1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1432.75C812.05,-1434.65 816.96,-1341.15 919.5,-1339.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1434.75C814.04,-1434.75 818.96,-1341.25 919.5,-1341.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1436.75C816.04,-1434.85 820.95,-1341.35 919.5,-1343.25"/>
</g>
<!-- W2--Fuel Injector 2 -->
<g id="edge10" class="edge">
<title>W2:e--Fuel Injector 2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1432.75C930.67,-1435.67 698.77,-988.17 919.5,-985.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M713.5,-1434.75C932.45,-1434.75 700.55,-987.25 919.5,-987.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M713.5,-1436.75C934.23,-1433.83 702.33,-986.33 919.5,-989.25"/>
</g>
<!-- W3--ECU1 -->
<g id="edge14" class="edge">
<title>W3:e--ECU1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1857.75C793.85,-1857.76 809.84,-1856.51 874,-1856.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1859.75C794,-1859.75 810,-1858.5 874,-1858.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1861.75C794.16,-1861.74 810.15,-1860.49 874,-1860.5"/>
</g>
<!-- W3--ECU1 -->
<g id="edge16" class="edge">
<title>W3:e--ECU1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1831.75C794.09,-1831.75 810.09,-1832.5 874,-1832.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M730,-1833.75C794,-1833.75 810,-1834.5 874,-1834.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1835.75C793.91,-1835.75 809.91,-1836.5 874,-1836.5"/>
</g>
<!-- W3--ECU1 -->
<g id="edge18" class="edge">
<title>W3:e--ECU1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1805.75C794.35,-1805.78 810.33,-1808.53 874,-1808.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1807.75C794.01,-1807.75 809.99,-1810.5 874,-1810.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1809.75C793.67,-1809.72 809.65,-1812.47 874,-1812.5"/>
</g>
<!-- W3--_S_1 -->
<g id="edge19" class="edge">
<title>W3:e--_S_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1805.75C894.26,-1808.82 740.98,-1565.76 872.78,-1461.67 937.91,-1413.1 972.54,-1436.6 1050.75,-1436.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M730,-1807.75C895.95,-1807.75 742.67,-1564.69 874,-1463.25 936.79,-1414.75 971.41,-1438.25 1050.75,-1438.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M730,-1809.75C897.64,-1806.68 744.36,-1563.63 875.22,-1464.83 935.67,-1416.41 970.29,-1439.9 1050.75,-1440.25"/>
</g>
<!-- W4--Fuse Block -->
<g id="edge21" class="edge">
<title>W4:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3912.75C1853.03,-3915.06 1831.02,-3776.31 1934,-3774"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3914.75C1855.01,-3914.75 1832.99,-3776 1934,-3776"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3916.75C1856.98,-3914.44 1834.97,-3775.69 1934,-3778"/>
</g>
<!-- W4--Fuse Block -->
<g id="edge23" class="edge">
<title>W4:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3886.75C1859.3,-3889.17 1824.79,-3728.42 1934,-3726"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1754,-3888.75C1861.26,-3888.75 1826.74,-3728 1934,-3728"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1754,-3890.75C1863.21,-3888.33 1828.7,-3727.58 1934,-3730"/>
</g>
<!-- W6--Fuse Block -->
<g id="edge25" class="edge">
<title>W6:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3863.75C873.29,-3866.73 732.18,-4116.92 875.05,-4202.55 1024.5,-4296.11 1098.12,-4233.31 1274.66,-4202.28 1514.77,-4160.53 1599.13,-4167.77 1788.76,-4017.68 1879.74,-3947.9 1815.58,-3800.8 1934,-3798"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3865.75C871.55,-3865.75 730.44,-4115.93 874,-4204.25 1025.8,-4297.63 1099.42,-4234.83 1275,-4204.25 1514.6,-4162.52 1598.96,-4169.76 1790,-4019.25 1881.58,-3947.1 1817.42,-3800 1934,-3800"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3867.75C869.81,-3864.77 728.7,-4114.95 872.95,-4205.95 1027.1,-4299.16 1100.72,-4236.35 1275.34,-4206.22 1514.43,-4164.51 1598.78,-4171.75 1791.24,-4020.82 1883.41,-3946.3 1819.25,-3799.2 1934,-3802"/>
</g>
<!-- W6--Fuse Block -->
<g id="edge27" class="edge">
<title>W6:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3837.75C887.1,-3840.79 717.76,-3562.47 872.89,-3456.59 948.39,-3406.79 1187.58,-3440.45 1275.36,-3456.28 1429.87,-3484.3 1778.76,-3702.3 1934,-3702"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M703,-3839.75C888.81,-3839.75 719.47,-3561.43 874,-3458.25 948.11,-3408.77 1187.3,-3442.43 1275,-3458.25 1428.81,-3486 1777.7,-3704 1934,-3704"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M703,-3841.75C890.52,-3838.71 721.18,-3560.39 875.11,-3459.91 947.83,-3410.75 1187.03,-3444.41 1274.64,-3460.22 1427.75,-3487.69 1776.64,-3705.7 1934,-3706"/>
</g>
<!-- W7--Fuse Block -->
<g id="edge29" class="edge">
<title>W7:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3162.75C2001.28,-3165.78 1693.65,-3681.03 1934,-3678"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1757.5,-3164.75C1999.56,-3164.75 1691.94,-3680 1934,-3680"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1757.5,-3166.75C1997.85,-3163.72 1690.22,-3678.97 1934,-3682"/>
</g>
<!-- W8--KillSwitch -->
<g id="edge31" class="edge">
<title>W8:e--KillSwitch:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3698.75C805.23,-3698.75 828.4,-3699.5 921,-3699.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-3700.75C805.17,-3700.75 828.33,-3701.5 921,-3701.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-3702.75C805.1,-3702.75 828.27,-3703.5 921,-3703.5"/>
</g>
<!-- W10--_Engine GND_1 -->
<g id="edge33" class="edge">
<title>W10:e--_Engine GND_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2982.75C1911.32,-2982.76 1957.73,-2986.26 2143.25,-2986.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2984.75C1911.17,-2984.75 1957.58,-2988.25 2143.25,-2988.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2986.75C1911.02,-2986.74 1957.43,-2990.24 2143.25,-2990.25"/>
</g>
<!-- W10--_Engine GND_2 -->
<g id="edge35" class="edge">
<title>W10:e--_Engine GND_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2956.75C1910.59,-2956.91 1956.6,-2937.41 2143.25,-2937.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2958.75C1911.37,-2958.75 1957.38,-2939.25 2143.25,-2939.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2960.75C1912.15,-2960.59 1958.16,-2941.09 2143.25,-2941.25"/>
</g>
<!-- W19--_Engine GND_3 -->
<g id="edge37" class="edge">
<title>W19:e--_Engine GND_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2375.75C1911.72,-2375.81 1958,-2387.31 2143.25,-2387.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2377.75C1911.24,-2377.75 1957.51,-2389.25 2143.25,-2389.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2379.75C1910.75,-2379.69 1957.03,-2391.19 2143.25,-2391.25"/>
</g>
<!-- W19--_Engine GND_4 -->
<g id="edge39" class="edge">
<title>W19:e--_Engine GND_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2349.75C1910.75,-2349.81 1957.03,-2338.31 2143.25,-2338.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1725.5,-2351.75C1911.24,-2351.75 1957.51,-2340.25 2143.25,-2340.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1725.5,-2353.75C1911.72,-2353.69 1958,-2342.19 2143.25,-2342.25"/>
</g>
<!-- W20--Negative Bus Bar -->
<g id="edge41" class="edge">
<title>W20:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2800.75C1923.81,-2801.51 1955.05,-2761.76 2092,-2761"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2802.75C1925.38,-2802.75 1956.62,-2763 2092,-2763"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2804.75C1926.95,-2803.99 1958.19,-2764.24 2092,-2765"/>
</g>
<!-- W20--Negative Bus Bar -->
<g id="edge43" class="edge">
<title>W20:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2774.75C1923.6,-2774.9 1956.87,-2761.15 2092,-2761"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2776.75C1924.36,-2776.75 1957.64,-2763 2092,-2763"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2778.75C1925.13,-2778.6 1958.4,-2764.85 2092,-2765"/>
</g>
<!-- W20--Negative Bus Bar -->
<g id="edge45" class="edge">
<title>W20:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2748.75C1925.02,-2748.87 1958.36,-2761.12 2092,-2761"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2750.75C1924.33,-2750.75 1957.67,-2763 2092,-2763"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2752.75C1923.64,-2752.63 1956.98,-2764.88 2092,-2765"/>
</g>
<!-- W20--Negative Bus Bar -->
<g id="edge47" class="edge">
<title>W20:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2722.75C1926.84,-2723.48 1958.25,-2761.73 2092,-2761"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2724.75C1925.29,-2724.75 1956.71,-2763 2092,-2763"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1790,-2726.75C1923.75,-2726.02 1955.16,-2764.27 2092,-2765"/>
</g>
<!-- W11--Servo Power -->
<g id="edge49" class="edge">
<title>W11:e--Servo Power:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-630C862.52,-632.65 770.2,-364.15 924,-361.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M712.5,-632C864.41,-632 772.09,-363.5 924,-363.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M712.5,-634C866.3,-631.35 773.98,-362.85 924,-365.5"/>
</g>
<!-- W12--_Engine GND_5 -->
<g id="edge51" class="edge">
<title>W12:e--_Engine GND_5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4692C2908.53,-4692 2924.53,-4692.25 2988.5,-4692.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4694C2908.5,-4694 2924.5,-4694.25 2988.5,-4694.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M2844.5,-4696C2908.47,-4696 2924.47,-4696.25 2988.5,-4696.25"/>
</g>
<!-- W13--_Engine GND_6 -->
<g id="edge53" class="edge">
<title>W13:e--_Engine GND_6:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1436C1891.59,-1436 1941.93,-1436.25 2143.25,-1436.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1690.25,-1438C1891.58,-1438 1941.92,-1438.25 2143.25,-1438.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1690.25,-1440C1891.57,-1440 1941.91,-1440.25 2143.25,-1440.25"/>
</g>
<!-- W14--Fuse Block -->
<g id="edge55" class="edge">
<title>W14:e--Fuse Block:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3710.75C1830.92,-3711.92 1848.72,-3751.17 1934,-3750"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1742,-3712.75C1829.1,-3712.75 1846.9,-3752 1934,-3752"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1742,-3714.75C1827.28,-3713.58 1845.08,-3752.83 1934,-3754"/>
</g>
<!-- W15--ECU1 -->
<g id="edge57" class="edge">
<title>W15:e--ECU1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1666.75C801.71,-1669.01 786.25,-1786.76 874,-1784.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M710,-1668.75C799.73,-1668.75 784.27,-1786.5 874,-1786.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M710,-1670.75C797.75,-1668.49 782.29,-1786.24 874,-1788.5"/>
</g>
<!-- W16--MAF Sensor -->
<g id="edge59" class="edge">
<title>W16:e--MAF Sensor:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4287.75C1881.82,-4288.62 1909.38,-4248.62 2033,-4247.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1761.5,-4289.75C1883.47,-4289.75 1911.03,-4249.75 2033,-4249.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1761.5,-4291.75C1885.12,-4290.88 1912.68,-4250.88 2033,-4251.75"/>
</g>
<!-- W17--Tachometer -->
<g id="edge61" class="edge">
<title>W17:e--Tachometer:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4489C1931.36,-4491.42 1883.06,-4718.42 2033,-4716"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1777.5,-4491C1929.4,-4491 1881.1,-4718 2033,-4718"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1777.5,-4493C1927.44,-4490.58 1879.14,-4717.58 2033,-4720"/>
</g>
<!-- W18--Negative Bus Bar -->
<g id="edge63" class="edge">
<title>W18:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3301.75C1766.1,-3302.99 1771.73,-3289.24 1788.43,-3268.01 1893.79,-3137.25 1831.15,-3052.82 1932.39,-2914.06 1985.89,-2842.25 1999.76,-2787.01 2092,-2785.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3303.75C1767.95,-3303.75 1773.59,-3289.99 1790,-3269.25 1895.4,-3136.05 1832.76,-3051.63 1934,-2915.25 1987.83,-2842.74 2001.7,-2787.5 2092,-2787.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1741.5,-3305.75C1769.8,-3304.51 1775.44,-3290.75 1791.57,-3270.49 1897,-3134.86 1834.36,-3050.44 1935.61,-2916.44 1989.77,-2843.23 2003.64,-2787.99 2092,-2789.5"/>
</g>
<!-- W21--LSU -->
<g id="edge65" class="edge">
<title>W21:e--LSU:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1118.75C922.7,-1121.64 681.72,-633.64 926,-630.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M682,-1120.75C924.49,-1120.75 683.51,-632.75 926,-632.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M682,-1122.75C926.28,-1119.86 685.3,-631.86 926,-634.75"/>
</g>
<!-- W22--Negative Bus Bar -->
<g id="edge67" class="edge">
<title>W22:e--Negative Bus Bar:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1807.75C2043.51,-1810.75 1846.27,-2150.22 1935.89,-2412.61 1997.01,-2594.59 1903.21,-2812.79 2092,-2810"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1809.75C2041.78,-1809.75 1844.54,-2149.21 1934,-2413.25 1995.17,-2593.8 1901.37,-2812 2092,-2812"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1763,-1811.75C2040.05,-1808.75 1842.81,-2148.21 1932.11,-2413.89 1993.34,-2593.01 1899.53,-2811.21 2092,-2814"/>
</g>
</g>
</svg>
|