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
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
|
<?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="2330pt" height="2925pt"
viewBox="0.00 0.00 2330.00 2925.25" 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 2921.25)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-2921.25 2326,-2921.25 2326,4 -4,4"/>
<!-- Veronte CEX -->
<g id="node1" class="node">
<title>Veronte CEX</title>
<polygon fill="#ffffff" stroke="black" points="409,-2129 0,-2129 0,0 409,0 409,-2129"/>
<polygon fill="none" stroke="black" points="0,-2104.5 0,-2129 409,-2129 409,-2104.5 0,-2104.5"/>
<text text-anchor="start" x="162.5" y="-2111.7" font-family="arial" font-size="14.00">Veronte CEX</text>
<polygon fill="none" stroke="black" points="0,-2080 0,-2104.5 248.38,-2104.5 248.38,-2080 0,-2080"/>
<text text-anchor="start" x="60.44" y="-2087.2" font-family="arial" font-size="14.00">FGW.LM.368.XLCT</text>
<polygon fill="none" stroke="black" points="248.38,-2080 248.38,-2104.5 409,-2104.5 409,-2080 248.38,-2080"/>
<text text-anchor="start" x="308.81" y="-2087.2" font-family="arial" font-size="14.00">68-pin</text>
<polygon fill="none" stroke="black" points="0,-2056 0,-2080 241,-2080 241,-2056 0,-2056"/>
<text text-anchor="start" x="94.25" y="-2062.7" font-family="arial" font-size="14.00">Power 1</text>
<polygon fill="none" stroke="black" points="241,-2056 241,-2080 409,-2080 409,-2056 241,-2056"/>
<text text-anchor="start" x="320.88" y="-2062.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-2032 0,-2056 241,-2056 241,-2032 0,-2032"/>
<text text-anchor="start" x="94.25" y="-2038.7" font-family="arial" font-size="14.00">Power 2</text>
<polygon fill="none" stroke="black" points="241,-2032 241,-2056 409,-2056 409,-2032 241,-2032"/>
<text text-anchor="start" x="320.88" y="-2038.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-2008 0,-2032 241,-2032 241,-2008 0,-2008"/>
<text text-anchor="start" x="104.75" y="-2014.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-2008 241,-2032 409,-2032 409,-2008 241,-2008"/>
<text text-anchor="start" x="320.88" y="-2014.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-1984 0,-2008 241,-2008 241,-1984 0,-1984"/>
<text text-anchor="start" x="104.75" y="-1990.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1984 241,-2008 409,-2008 409,-1984 241,-1984"/>
<text text-anchor="start" x="320.88" y="-1990.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-1960 0,-1984 241,-1984 241,-1960 0,-1960"/>
<text text-anchor="start" x="96.12" y="-1966.7" font-family="arial" font-size="14.00">CanA P</text>
<polygon fill="none" stroke="black" points="241,-1960 241,-1984 409,-1984 409,-1960 241,-1960"/>
<text text-anchor="start" x="320.88" y="-1966.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-1936 0,-1960 241,-1960 241,-1936 0,-1936"/>
<text text-anchor="start" x="96.12" y="-1942.7" font-family="arial" font-size="14.00">CanA N</text>
<polygon fill="none" stroke="black" points="241,-1936 241,-1960 409,-1960 409,-1936 241,-1936"/>
<text text-anchor="start" x="320.88" y="-1942.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-1912 0,-1936 241,-1936 241,-1912 0,-1912"/>
<text text-anchor="start" x="87.88" y="-1918.7" font-family="arial" font-size="14.00">CAN GND</text>
<polygon fill="none" stroke="black" points="241,-1912 241,-1936 409,-1936 409,-1912 241,-1912"/>
<text text-anchor="start" x="320.88" y="-1918.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-1888 0,-1912 241,-1912 241,-1888 0,-1888"/>
<text text-anchor="start" x="96.12" y="-1894.7" font-family="arial" font-size="14.00">CanB P</text>
<polygon fill="none" stroke="black" points="241,-1888 241,-1912 409,-1912 409,-1888 241,-1888"/>
<text text-anchor="start" x="320.88" y="-1894.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,-1864 0,-1888 241,-1888 241,-1864 0,-1864"/>
<text text-anchor="start" x="96.12" y="-1870.7" font-family="arial" font-size="14.00">CanB N</text>
<polygon fill="none" stroke="black" points="241,-1864 241,-1888 409,-1888 409,-1864 241,-1864"/>
<text text-anchor="start" x="320.88" y="-1870.7" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-1840 0,-1864 241,-1864 241,-1840 0,-1840"/>
<text text-anchor="start" x="75.88" y="-1846.7" font-family="arial" font-size="14.00">Out RS-485 P</text>
<polygon fill="none" stroke="black" points="241,-1840 241,-1864 409,-1864 409,-1840 241,-1840"/>
<text text-anchor="start" x="316.75" y="-1846.7" font-family="arial" font-size="14.00">10</text>
<polygon fill="none" stroke="black" points="0,-1816 0,-1840 241,-1840 241,-1816 0,-1816"/>
<text text-anchor="start" x="75.88" y="-1822.7" font-family="arial" font-size="14.00">Out RS-485 N</text>
<polygon fill="none" stroke="black" points="241,-1816 241,-1840 409,-1840 409,-1816 241,-1816"/>
<text text-anchor="start" x="316.75" y="-1822.7" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-1792 0,-1816 241,-1816 241,-1792 0,-1792"/>
<text text-anchor="start" x="80" y="-1798.7" font-family="arial" font-size="14.00">IN RS-485 N</text>
<polygon fill="none" stroke="black" points="241,-1792 241,-1816 409,-1816 409,-1792 241,-1792"/>
<text text-anchor="start" x="316.75" y="-1798.7" font-family="arial" font-size="14.00">12</text>
<polygon fill="none" stroke="black" points="0,-1768 0,-1792 241,-1792 241,-1768 0,-1768"/>
<text text-anchor="start" x="80" y="-1774.7" font-family="arial" font-size="14.00">IN RS-485 P</text>
<polygon fill="none" stroke="black" points="241,-1768 241,-1792 409,-1792 409,-1768 241,-1768"/>
<text text-anchor="start" x="316.75" y="-1774.7" font-family="arial" font-size="14.00">13</text>
<polygon fill="none" stroke="black" points="0,-1744 0,-1768 241,-1768 241,-1744 0,-1744"/>
<text text-anchor="start" x="78.12" y="-1750.7" font-family="arial" font-size="14.00">RS-485 GND</text>
<polygon fill="none" stroke="black" points="241,-1744 241,-1768 409,-1768 409,-1744 241,-1744"/>
<text text-anchor="start" x="316.75" y="-1750.7" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-1720 0,-1744 241,-1744 241,-1720 0,-1720"/>
<text text-anchor="start" x="79.62" y="-1726.7" font-family="arial" font-size="14.00">RS-232A TX</text>
<polygon fill="none" stroke="black" points="241,-1720 241,-1744 409,-1744 409,-1720 241,-1720"/>
<text text-anchor="start" x="316.75" y="-1726.7" font-family="arial" font-size="14.00">15</text>
<polygon fill="none" stroke="black" points="0,-1696 0,-1720 241,-1720 241,-1696 0,-1696"/>
<text text-anchor="start" x="78.88" y="-1702.7" font-family="arial" font-size="14.00">RS-232A RX</text>
<polygon fill="none" stroke="black" points="241,-1696 241,-1720 409,-1720 409,-1696 241,-1696"/>
<text text-anchor="start" x="316.75" y="-1702.7" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-1672 0,-1696 241,-1696 241,-1672 0,-1672"/>
<text text-anchor="start" x="104.75" y="-1678.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1672 241,-1696 409,-1696 409,-1672 241,-1672"/>
<text text-anchor="start" x="316.75" y="-1678.7" font-family="arial" font-size="14.00">17</text>
<polygon fill="none" stroke="black" points="0,-1648 0,-1672 241,-1672 241,-1648 0,-1648"/>
<text text-anchor="start" x="79.62" y="-1654.7" font-family="arial" font-size="14.00">RS-232B TX</text>
<polygon fill="none" stroke="black" points="241,-1648 241,-1672 409,-1672 409,-1648 241,-1648"/>
<text text-anchor="start" x="316.75" y="-1654.7" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-1624 0,-1648 241,-1648 241,-1624 0,-1624"/>
<text text-anchor="start" x="78.88" y="-1630.7" font-family="arial" font-size="14.00">RS-232B RX</text>
<polygon fill="none" stroke="black" points="241,-1624 241,-1648 409,-1648 409,-1624 241,-1624"/>
<text text-anchor="start" x="316.75" y="-1630.7" font-family="arial" font-size="14.00">19</text>
<polygon fill="none" stroke="black" points="0,-1600 0,-1624 241,-1624 241,-1600 0,-1600"/>
<text text-anchor="start" x="92.75" y="-1606.7" font-family="arial" font-size="14.00">I2C SCL</text>
<polygon fill="none" stroke="black" points="241,-1600 241,-1624 409,-1624 409,-1600 241,-1600"/>
<text text-anchor="start" x="316.75" y="-1606.7" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-1576 0,-1600 241,-1600 241,-1576 0,-1576"/>
<text text-anchor="start" x="92" y="-1582.7" font-family="arial" font-size="14.00">I2C SDA</text>
<polygon fill="none" stroke="black" points="241,-1576 241,-1600 409,-1600 409,-1576 241,-1576"/>
<text text-anchor="start" x="316.75" y="-1582.7" font-family="arial" font-size="14.00">21</text>
<polygon fill="none" stroke="black" points="0,-1552 0,-1576 241,-1576 241,-1552 0,-1552"/>
<text text-anchor="start" x="93.88" y="-1558.7" font-family="arial" font-size="14.00">3.3V out</text>
<polygon fill="none" stroke="black" points="241,-1552 241,-1576 409,-1576 409,-1552 241,-1552"/>
<text text-anchor="start" x="316.75" y="-1558.7" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-1528 0,-1552 241,-1552 241,-1528 0,-1528"/>
<text text-anchor="start" x="104.75" y="-1534.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1528 241,-1552 409,-1552 409,-1528 241,-1528"/>
<text text-anchor="start" x="316.75" y="-1534.7" font-family="arial" font-size="14.00">23</text>
<polygon fill="none" stroke="black" points="0,-1504 0,-1528 241,-1528 241,-1504 0,-1504"/>
<text text-anchor="start" x="99.88" y="-1510.7" font-family="arial" font-size="14.00">5V out</text>
<polygon fill="none" stroke="black" points="241,-1504 241,-1528 409,-1528 409,-1504 241,-1504"/>
<text text-anchor="start" x="316.75" y="-1510.7" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-1480 0,-1504 241,-1504 241,-1480 0,-1480"/>
<text text-anchor="start" x="104.75" y="-1486.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1480 241,-1504 409,-1504 409,-1480 241,-1480"/>
<text text-anchor="start" x="316.75" y="-1486.7" font-family="arial" font-size="14.00">25</text>
<polygon fill="none" stroke="black" points="0,-1456 0,-1480 241,-1480 241,-1456 0,-1456"/>
<text text-anchor="start" x="90.88" y="-1462.7" font-family="arial" font-size="14.00">ATX(0) N</text>
<polygon fill="none" stroke="black" points="241,-1456 241,-1480 409,-1480 409,-1456 241,-1456"/>
<text text-anchor="start" x="316.75" y="-1462.7" font-family="arial" font-size="14.00">26</text>
<polygon fill="none" stroke="black" points="0,-1432 0,-1456 241,-1456 241,-1432 0,-1432"/>
<text text-anchor="start" x="90.88" y="-1438.7" font-family="arial" font-size="14.00">ATX(0) P</text>
<polygon fill="none" stroke="black" points="241,-1432 241,-1456 409,-1456 409,-1432 241,-1432"/>
<text text-anchor="start" x="316.75" y="-1438.7" font-family="arial" font-size="14.00">27</text>
<polygon fill="none" stroke="black" points="0,-1408 0,-1432 241,-1432 241,-1408 0,-1408"/>
<text text-anchor="start" x="90.12" y="-1414.7" font-family="arial" font-size="14.00">ARX(0) P</text>
<polygon fill="none" stroke="black" points="241,-1408 241,-1432 409,-1432 409,-1408 241,-1408"/>
<text text-anchor="start" x="316.75" y="-1414.7" font-family="arial" font-size="14.00">28</text>
<polygon fill="none" stroke="black" points="0,-1384 0,-1408 241,-1408 241,-1384 0,-1384"/>
<text text-anchor="start" x="90.12" y="-1390.7" font-family="arial" font-size="14.00">ARX(0) N</text>
<polygon fill="none" stroke="black" points="241,-1384 241,-1408 409,-1408 409,-1384 241,-1384"/>
<text text-anchor="start" x="316.75" y="-1390.7" font-family="arial" font-size="14.00">29</text>
<polygon fill="none" stroke="black" points="0,-1360 0,-1384 241,-1384 241,-1360 0,-1360"/>
<text text-anchor="start" x="94.62" y="-1366.7" font-family="arial" font-size="14.00">ECAP 0</text>
<polygon fill="none" stroke="black" points="241,-1360 241,-1384 409,-1384 409,-1360 241,-1360"/>
<text text-anchor="start" x="316.75" y="-1366.7" font-family="arial" font-size="14.00">30</text>
<polygon fill="none" stroke="black" points="0,-1336 0,-1360 241,-1360 241,-1336 0,-1336"/>
<text text-anchor="start" x="94.62" y="-1342.7" font-family="arial" font-size="14.00">ECAP 1</text>
<polygon fill="none" stroke="black" points="241,-1336 241,-1360 409,-1360 409,-1336 241,-1336"/>
<text text-anchor="start" x="316.75" y="-1342.7" font-family="arial" font-size="14.00">31</text>
<polygon fill="none" stroke="black" points="0,-1312 0,-1336 241,-1336 241,-1312 0,-1312"/>
<text text-anchor="start" x="94.62" y="-1318.7" font-family="arial" font-size="14.00">ECAP 2</text>
<polygon fill="none" stroke="black" points="241,-1312 241,-1336 409,-1336 409,-1312 241,-1312"/>
<text text-anchor="start" x="316.75" y="-1318.7" font-family="arial" font-size="14.00">32</text>
<polygon fill="none" stroke="black" points="0,-1288 0,-1312 241,-1312 241,-1288 0,-1288"/>
<text text-anchor="start" x="94.62" y="-1294.7" font-family="arial" font-size="14.00">ECAP 3</text>
<polygon fill="none" stroke="black" points="241,-1288 241,-1312 409,-1312 409,-1288 241,-1288"/>
<text text-anchor="start" x="316.75" y="-1294.7" font-family="arial" font-size="14.00">33</text>
<polygon fill="none" stroke="black" points="0,-1264 0,-1288 241,-1288 241,-1264 0,-1264"/>
<text text-anchor="start" x="96.88" y="-1270.7" font-family="arial" font-size="14.00">PWM 0</text>
<polygon fill="none" stroke="black" points="241,-1264 241,-1288 409,-1288 409,-1264 241,-1264"/>
<text text-anchor="start" x="316.75" y="-1270.7" font-family="arial" font-size="14.00">34</text>
<polygon fill="none" stroke="black" points="0,-1240 0,-1264 241,-1264 241,-1240 0,-1240"/>
<text text-anchor="start" x="96.88" y="-1246.7" font-family="arial" font-size="14.00">PWM 1</text>
<polygon fill="none" stroke="black" points="241,-1240 241,-1264 409,-1264 409,-1240 241,-1240"/>
<text text-anchor="start" x="316.75" y="-1246.7" font-family="arial" font-size="14.00">35</text>
<polygon fill="none" stroke="black" points="0,-1216 0,-1240 241,-1240 241,-1216 0,-1216"/>
<text text-anchor="start" x="96.88" y="-1222.7" font-family="arial" font-size="14.00">PWM 2</text>
<polygon fill="none" stroke="black" points="241,-1216 241,-1240 409,-1240 409,-1216 241,-1216"/>
<text text-anchor="start" x="316.75" y="-1222.7" font-family="arial" font-size="14.00">36</text>
<polygon fill="none" stroke="black" points="0,-1192 0,-1216 241,-1216 241,-1192 0,-1192"/>
<text text-anchor="start" x="96.88" y="-1198.7" font-family="arial" font-size="14.00">PWM 3</text>
<polygon fill="none" stroke="black" points="241,-1192 241,-1216 409,-1216 409,-1192 241,-1192"/>
<text text-anchor="start" x="316.75" y="-1198.7" font-family="arial" font-size="14.00">37</text>
<polygon fill="none" stroke="black" points="0,-1168 0,-1192 241,-1192 241,-1168 0,-1168"/>
<text text-anchor="start" x="96.88" y="-1174.7" font-family="arial" font-size="14.00">PWM 4</text>
<polygon fill="none" stroke="black" points="241,-1168 241,-1192 409,-1192 409,-1168 241,-1168"/>
<text text-anchor="start" x="316.75" y="-1174.7" font-family="arial" font-size="14.00">38</text>
<polygon fill="none" stroke="black" points="0,-1144 0,-1168 241,-1168 241,-1144 0,-1144"/>
<text text-anchor="start" x="96.88" y="-1150.7" font-family="arial" font-size="14.00">PWM 5</text>
<polygon fill="none" stroke="black" points="241,-1144 241,-1168 409,-1168 409,-1144 241,-1144"/>
<text text-anchor="start" x="316.75" y="-1150.7" font-family="arial" font-size="14.00">39</text>
<polygon fill="none" stroke="black" points="0,-1120 0,-1144 241,-1144 241,-1120 0,-1120"/>
<text text-anchor="start" x="96.88" y="-1126.7" font-family="arial" font-size="14.00">PWM 6</text>
<polygon fill="none" stroke="black" points="241,-1120 241,-1144 409,-1144 409,-1120 241,-1120"/>
<text text-anchor="start" x="316.75" y="-1126.7" font-family="arial" font-size="14.00">40</text>
<polygon fill="none" stroke="black" points="0,-1096 0,-1120 241,-1120 241,-1096 0,-1096"/>
<text text-anchor="start" x="96.88" y="-1102.7" font-family="arial" font-size="14.00">PWM 7</text>
<polygon fill="none" stroke="black" points="241,-1096 241,-1120 409,-1120 409,-1096 241,-1096"/>
<text text-anchor="start" x="316.75" y="-1102.7" font-family="arial" font-size="14.00">41</text>
<polygon fill="none" stroke="black" points="0,-1072 0,-1096 241,-1096 241,-1072 0,-1072"/>
<text text-anchor="start" x="104.75" y="-1078.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1072 241,-1096 409,-1096 409,-1072 241,-1072"/>
<text text-anchor="start" x="316.75" y="-1078.7" font-family="arial" font-size="14.00">42</text>
<polygon fill="none" stroke="black" points="0,-1048 0,-1072 241,-1072 241,-1048 0,-1048"/>
<text text-anchor="start" x="94.62" y="-1054.7" font-family="arial" font-size="14.00">A0 3.3V</text>
<polygon fill="none" stroke="black" points="241,-1048 241,-1072 409,-1072 409,-1048 241,-1048"/>
<text text-anchor="start" x="316.75" y="-1054.7" font-family="arial" font-size="14.00">43</text>
<polygon fill="none" stroke="black" points="0,-1024 0,-1048 241,-1048 241,-1024 0,-1024"/>
<text text-anchor="start" x="94.62" y="-1030.7" font-family="arial" font-size="14.00">A1 3.3V</text>
<polygon fill="none" stroke="black" points="241,-1024 241,-1048 409,-1048 409,-1024 241,-1024"/>
<text text-anchor="start" x="316.75" y="-1030.7" font-family="arial" font-size="14.00">44</text>
<polygon fill="none" stroke="black" points="0,-1000 0,-1024 241,-1024 241,-1000 0,-1000"/>
<text text-anchor="start" x="100.62" y="-1006.7" font-family="arial" font-size="14.00">A2 5V</text>
<polygon fill="none" stroke="black" points="241,-1000 241,-1024 409,-1024 409,-1000 241,-1000"/>
<text text-anchor="start" x="316.75" y="-1006.7" font-family="arial" font-size="14.00">45</text>
<polygon fill="none" stroke="black" points="0,-976 0,-1000 241,-1000 241,-976 0,-976"/>
<text text-anchor="start" x="100.62" y="-982.7" font-family="arial" font-size="14.00">A3 5V</text>
<polygon fill="none" stroke="black" points="241,-976 241,-1000 409,-1000 409,-976 241,-976"/>
<text text-anchor="start" x="316.75" y="-982.7" font-family="arial" font-size="14.00">46</text>
<polygon fill="none" stroke="black" points="0,-952 0,-976 241,-976 241,-952 0,-952"/>
<text text-anchor="start" x="96.5" y="-958.7" font-family="arial" font-size="14.00">A4 12V</text>
<polygon fill="none" stroke="black" points="241,-952 241,-976 409,-976 409,-952 241,-952"/>
<text text-anchor="start" x="316.75" y="-958.7" font-family="arial" font-size="14.00">47</text>
<polygon fill="none" stroke="black" points="0,-928 0,-952 241,-952 241,-928 0,-928"/>
<text text-anchor="start" x="96.5" y="-934.7" font-family="arial" font-size="14.00">A5 12V</text>
<polygon fill="none" stroke="black" points="241,-928 241,-952 409,-952 409,-928 241,-928"/>
<text text-anchor="start" x="316.75" y="-934.7" font-family="arial" font-size="14.00">48</text>
<polygon fill="none" stroke="black" points="0,-904 0,-928 241,-928 241,-904 0,-904"/>
<text text-anchor="start" x="96.5" y="-910.7" font-family="arial" font-size="14.00">A6 36V</text>
<polygon fill="none" stroke="black" points="241,-904 241,-928 409,-928 409,-904 241,-904"/>
<text text-anchor="start" x="316.75" y="-910.7" font-family="arial" font-size="14.00">49</text>
<polygon fill="none" stroke="black" points="0,-880 0,-904 241,-904 241,-880 0,-880"/>
<text text-anchor="start" x="96.5" y="-886.7" font-family="arial" font-size="14.00">A7 36V</text>
<polygon fill="none" stroke="black" points="241,-880 241,-904 409,-904 409,-880 241,-880"/>
<text text-anchor="start" x="316.75" y="-886.7" font-family="arial" font-size="14.00">50</text>
<polygon fill="none" stroke="black" points="0,-856 0,-880 241,-880 241,-856 0,-856"/>
<text text-anchor="start" x="104.75" y="-862.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-856 241,-880 409,-880 409,-856 241,-856"/>
<text text-anchor="start" x="316.75" y="-862.7" font-family="arial" font-size="14.00">51</text>
<polygon fill="none" stroke="black" points="0,-832 0,-856 241,-856 241,-832 0,-832"/>
<text text-anchor="start" x="90.12" y="-838.7" font-family="arial" font-size="14.00">ARX(0) P</text>
<polygon fill="none" stroke="black" points="241,-832 241,-856 409,-856 409,-832 241,-832"/>
<text text-anchor="start" x="316.75" y="-838.7" font-family="arial" font-size="14.00">52</text>
<polygon fill="none" stroke="black" points="0,-808 0,-832 241,-832 241,-808 0,-808"/>
<text text-anchor="start" x="90.12" y="-814.7" font-family="arial" font-size="14.00">ARX(0) N</text>
<polygon fill="none" stroke="black" points="241,-808 241,-832 409,-832 409,-808 241,-808"/>
<text text-anchor="start" x="316.75" y="-814.7" font-family="arial" font-size="14.00">53</text>
<polygon fill="none" stroke="black" points="0,-784 0,-808 241,-808 241,-784 0,-784"/>
<text text-anchor="start" x="90.12" y="-790.7" font-family="arial" font-size="14.00">ARX(1) P</text>
<polygon fill="none" stroke="black" points="241,-784 241,-808 409,-808 409,-784 241,-784"/>
<text text-anchor="start" x="316.75" y="-790.7" font-family="arial" font-size="14.00">54</text>
<polygon fill="none" stroke="black" points="0,-760 0,-784 241,-784 241,-760 0,-760"/>
<text text-anchor="start" x="90.12" y="-766.7" font-family="arial" font-size="14.00">ARX(1) N</text>
<polygon fill="none" stroke="black" points="241,-760 241,-784 409,-784 409,-760 241,-760"/>
<text text-anchor="start" x="316.75" y="-766.7" font-family="arial" font-size="14.00">55</text>
<polygon fill="none" stroke="black" points="0,-736 0,-760 241,-760 241,-736 0,-736"/>
<text text-anchor="start" x="90.12" y="-742.7" font-family="arial" font-size="14.00">ARX(2) P</text>
<polygon fill="none" stroke="black" points="241,-736 241,-760 409,-760 409,-736 241,-736"/>
<text text-anchor="start" x="316.75" y="-742.7" font-family="arial" font-size="14.00">56</text>
<polygon fill="none" stroke="black" points="0,-712 0,-736 241,-736 241,-712 0,-712"/>
<text text-anchor="start" x="90.12" y="-718.7" font-family="arial" font-size="14.00">ARX(2) N</text>
<polygon fill="none" stroke="black" points="241,-712 241,-736 409,-736 409,-712 241,-712"/>
<text text-anchor="start" x="316.75" y="-718.7" font-family="arial" font-size="14.00">57</text>
<polygon fill="none" stroke="black" points="0,-688 0,-712 241,-712 241,-688 0,-688"/>
<text text-anchor="start" x="90.12" y="-694.7" font-family="arial" font-size="14.00">ARX(3) P</text>
<polygon fill="none" stroke="black" points="241,-688 241,-712 409,-712 409,-688 241,-688"/>
<text text-anchor="start" x="316.75" y="-694.7" font-family="arial" font-size="14.00">58</text>
<polygon fill="none" stroke="black" points="0,-664 0,-688 241,-688 241,-664 0,-664"/>
<text text-anchor="start" x="90.12" y="-670.7" font-family="arial" font-size="14.00">ARX(3) N</text>
<polygon fill="none" stroke="black" points="241,-664 241,-688 409,-688 409,-664 241,-664"/>
<text text-anchor="start" x="316.75" y="-670.7" font-family="arial" font-size="14.00">59</text>
<polygon fill="none" stroke="black" points="0,-640 0,-664 241,-664 241,-640 0,-640"/>
<text text-anchor="start" x="96.12" y="-646.7" font-family="arial" font-size="14.00">GPIO 8</text>
<polygon fill="none" stroke="black" points="241,-640 241,-664 409,-664 409,-640 241,-640"/>
<text text-anchor="start" x="316.75" y="-646.7" font-family="arial" font-size="14.00">60</text>
<polygon fill="none" stroke="black" points="0,-616 0,-640 241,-640 241,-616 0,-616"/>
<text text-anchor="start" x="96.12" y="-622.7" font-family="arial" font-size="14.00">GPIO 9</text>
<polygon fill="none" stroke="black" points="241,-616 241,-640 409,-640 409,-616 241,-616"/>
<text text-anchor="start" x="316.75" y="-622.7" font-family="arial" font-size="14.00">61</text>
<polygon fill="none" stroke="black" points="0,-592 0,-616 241,-616 241,-592 0,-592"/>
<text text-anchor="start" x="92" y="-598.7" font-family="arial" font-size="14.00">GPIO 10</text>
<polygon fill="none" stroke="black" points="241,-592 241,-616 409,-616 409,-592 241,-592"/>
<text text-anchor="start" x="316.75" y="-598.7" font-family="arial" font-size="14.00">62</text>
<polygon fill="none" stroke="black" points="0,-568 0,-592 241,-592 241,-568 0,-568"/>
<text text-anchor="start" x="92" y="-574.7" font-family="arial" font-size="14.00">GPIO 11</text>
<polygon fill="none" stroke="black" points="241,-568 241,-592 409,-592 409,-568 241,-568"/>
<text text-anchor="start" x="316.75" y="-574.7" font-family="arial" font-size="14.00">63</text>
<polygon fill="none" stroke="black" points="0,-544 0,-568 241,-568 241,-544 0,-544"/>
<text text-anchor="start" x="92" y="-550.7" font-family="arial" font-size="14.00">GPIO 12</text>
<polygon fill="none" stroke="black" points="241,-544 241,-568 409,-568 409,-544 241,-544"/>
<text text-anchor="start" x="316.75" y="-550.7" font-family="arial" font-size="14.00">64</text>
<polygon fill="none" stroke="black" points="0,-520 0,-544 241,-544 241,-520 0,-520"/>
<text text-anchor="start" x="92" y="-526.7" font-family="arial" font-size="14.00">GPIO 13</text>
<polygon fill="none" stroke="black" points="241,-520 241,-544 409,-544 409,-520 241,-520"/>
<text text-anchor="start" x="316.75" y="-526.7" font-family="arial" font-size="14.00">65</text>
<polygon fill="none" stroke="black" points="0,-496 0,-520 241,-520 241,-496 0,-496"/>
<text text-anchor="start" x="92" y="-502.7" font-family="arial" font-size="14.00">GPIO 14</text>
<polygon fill="none" stroke="black" points="241,-496 241,-520 409,-520 409,-496 241,-496"/>
<text text-anchor="start" x="316.75" y="-502.7" font-family="arial" font-size="14.00">66</text>
<polygon fill="none" stroke="black" points="0,-472 0,-496 241,-496 241,-472 0,-472"/>
<text text-anchor="start" x="92" y="-478.7" font-family="arial" font-size="14.00">GPIO 15</text>
<polygon fill="none" stroke="black" points="241,-472 241,-496 409,-496 409,-472 241,-472"/>
<text text-anchor="start" x="316.75" y="-478.7" font-family="arial" font-size="14.00">67</text>
<polygon fill="none" stroke="black" points="0,-448 0,-472 241,-472 241,-448 0,-448"/>
<text text-anchor="start" x="92" y="-454.7" font-family="arial" font-size="14.00">GPIO 16</text>
<polygon fill="none" stroke="black" points="241,-448 241,-472 409,-472 409,-448 241,-448"/>
<text text-anchor="start" x="316.75" y="-454.7" font-family="arial" font-size="14.00">68</text>
<polyline fill="none" stroke="black" points="409,-49 409,-448 0,-448 0,-49"/>
<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="4" y="-444"/>
<polyline fill="none" stroke="black" points="0,-49 0,-24.5 409,-24.5 409,-49"/>
<text text-anchor="start" x="48.12" y="-31.7" font-family="arial" font-size="14.00">Connector HEW.LM.368.XLNP (mounted in CEX)</text>
<polygon fill="none" stroke="black" points="0,0 0,-24.5 409,-24.5 409,0 0,0"/>
<text text-anchor="start" x="63.88" y="-7.2" font-family="arial" font-size="14.00">Only GND need be 47! Others may be short!</text>
</g>
<!-- W1 -->
<g id="node16" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="889.12,-2167.25 599.88,-2167.25 599.88,-223.75 889.12,-223.75 889.12,-2167.25"/>
<polygon fill="none" stroke="black" points="599.88,-2142.75 599.88,-2167.25 889.12,-2167.25 889.12,-2142.75 599.88,-2142.75"/>
<text text-anchor="start" x="733.25" y="-2149.95" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="599.88,-2118.25 599.88,-2142.75 680.79,-2142.75 680.79,-2118.25 599.88,-2118.25"/>
<text text-anchor="start" x="628.71" y="-2125.45" font-family="arial" font-size="14.00">61x</text>
<polygon fill="none" stroke="black" points="680.79,-2118.25 680.79,-2142.75 793.96,-2142.75 793.96,-2118.25 680.79,-2118.25"/>
<text text-anchor="start" x="709.62" y="-2125.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="793.96,-2118.25 793.96,-2142.75 889.12,-2142.75 889.12,-2118.25 793.96,-2118.25"/>
<text text-anchor="start" x="822.79" y="-2125.45" font-family="arial" font-size="14.00">47.0 "</text>
<text text-anchor="start" x="698.88" y="-2102.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="624.62" y="-2082.95" font-family="arial" font-size="14.00">Veronte CEX:1:Power 1</text>
<text text-anchor="start" x="814.12" y="-2082.95" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-2076.25 599.88,-2078.25 889.12,-2078.25 889.12,-2076.25 599.88,-2076.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-2074.25 599.88,-2076.25 889.12,-2076.25 889.12,-2074.25 599.88,-2074.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-2072.25 599.88,-2074.25 889.12,-2074.25 889.12,-2072.25 599.88,-2072.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-2070.25 599.88,-2072.25 889.12,-2072.25 889.12,-2070.25 599.88,-2070.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-2068.25 599.88,-2070.25 889.12,-2070.25 889.12,-2068.25 599.88,-2068.25"/>
<text text-anchor="start" x="624.62" y="-2052.95" font-family="arial" font-size="14.00">Veronte CEX:2:Power 2</text>
<text text-anchor="start" x="816.38" y="-2052.95" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-2046.25 599.88,-2048.25 889.12,-2048.25 889.12,-2046.25 599.88,-2046.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-2044.25 599.88,-2046.25 889.12,-2046.25 889.12,-2044.25 599.88,-2044.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-2042.25 599.88,-2044.25 889.12,-2044.25 889.12,-2042.25 599.88,-2042.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-2040.25 599.88,-2042.25 889.12,-2042.25 889.12,-2040.25 599.88,-2040.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-2038.25 599.88,-2040.25 889.12,-2040.25 889.12,-2038.25 599.88,-2038.25"/>
<text text-anchor="start" x="635.12" y="-2022.95" font-family="arial" font-size="14.00">Veronte CEX:3:GND</text>
<text text-anchor="start" x="815.62" y="-2022.95" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-2016.25 599.88,-2018.25 889.12,-2018.25 889.12,-2016.25 599.88,-2016.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-2014.25 599.88,-2016.25 889.12,-2016.25 889.12,-2014.25 599.88,-2014.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-2012.25 599.88,-2014.25 889.12,-2014.25 889.12,-2012.25 599.88,-2012.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-2010.25 599.88,-2012.25 889.12,-2012.25 889.12,-2010.25 599.88,-2010.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-2008.25 599.88,-2010.25 889.12,-2010.25 889.12,-2008.25 599.88,-2008.25"/>
<text text-anchor="start" x="635.12" y="-1992.95" font-family="arial" font-size="14.00">Veronte CEX:4:GND</text>
<text text-anchor="start" x="816.75" y="-1992.95" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1986.25 599.88,-1988.25 889.12,-1988.25 889.12,-1986.25 599.88,-1986.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1984.25 599.88,-1986.25 889.12,-1986.25 889.12,-1984.25 599.88,-1984.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1982.25 599.88,-1984.25 889.12,-1984.25 889.12,-1982.25 599.88,-1982.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1980.25 599.88,-1982.25 889.12,-1982.25 889.12,-1980.25 599.88,-1980.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1978.25 599.88,-1980.25 889.12,-1980.25 889.12,-1978.25 599.88,-1978.25"/>
<text text-anchor="start" x="626.5" y="-1962.95" font-family="arial" font-size="14.00">Veronte CEX:5:CanA P</text>
<text text-anchor="start" x="816" y="-1962.95" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1956.25 599.88,-1958.25 889.12,-1958.25 889.12,-1956.25 599.88,-1956.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1954.25 599.88,-1956.25 889.12,-1956.25 889.12,-1954.25 599.88,-1954.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1952.25 599.88,-1954.25 889.12,-1954.25 889.12,-1952.25 599.88,-1952.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1950.25 599.88,-1952.25 889.12,-1952.25 889.12,-1950.25 599.88,-1950.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1948.25 599.88,-1950.25 889.12,-1950.25 889.12,-1948.25 599.88,-1948.25"/>
<text text-anchor="start" x="626.5" y="-1932.95" font-family="arial" font-size="14.00">Veronte CEX:6:CanA N</text>
<text text-anchor="start" x="816.38" y="-1932.95" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1926.25 599.88,-1928.25 889.12,-1928.25 889.12,-1926.25 599.88,-1926.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1924.25 599.88,-1926.25 889.12,-1926.25 889.12,-1924.25 599.88,-1924.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1922.25 599.88,-1924.25 889.12,-1924.25 889.12,-1922.25 599.88,-1922.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1920.25 599.88,-1922.25 889.12,-1922.25 889.12,-1920.25 599.88,-1920.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1918.25 599.88,-1920.25 889.12,-1920.25 889.12,-1918.25 599.88,-1918.25"/>
<text text-anchor="start" x="602.12" y="-1902.95" font-family="arial" font-size="14.00">Veronte CEX:10:Out RS-485 P</text>
<text text-anchor="start" x="816.75" y="-1902.95" font-family="arial" font-size="14.00">     VT    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1896.25 599.88,-1898.25 889.12,-1898.25 889.12,-1896.25 599.88,-1896.25"/>
<polygon fill="#8000ff" stroke="none" points="599.88,-1894.25 599.88,-1896.25 889.12,-1896.25 889.12,-1894.25 599.88,-1894.25"/>
<polygon fill="#8000ff" stroke="none" points="599.88,-1892.25 599.88,-1894.25 889.12,-1894.25 889.12,-1892.25 599.88,-1892.25"/>
<polygon fill="#8000ff" stroke="none" points="599.88,-1890.25 599.88,-1892.25 889.12,-1892.25 889.12,-1890.25 599.88,-1890.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1888.25 599.88,-1890.25 889.12,-1890.25 889.12,-1888.25 599.88,-1888.25"/>
<text text-anchor="start" x="602.12" y="-1872.95" font-family="arial" font-size="14.00">Veronte CEX:11:Out RS-485 N</text>
<text text-anchor="start" x="806.25" y="-1872.95" font-family="arial" font-size="14.00">     PKGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1866.25 599.88,-1868.25 889.12,-1868.25 889.12,-1866.25 599.88,-1866.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1864.25 599.88,-1866.25 889.12,-1866.25 889.12,-1864.25 599.88,-1864.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1862.25 599.88,-1864.25 889.12,-1864.25 889.12,-1862.25 599.88,-1862.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1860.25 599.88,-1862.25 889.12,-1862.25 889.12,-1860.25 599.88,-1860.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1858.25 599.88,-1860.25 889.12,-1860.25 889.12,-1858.25 599.88,-1858.25"/>
<text text-anchor="start" x="606.25" y="-1842.95" font-family="arial" font-size="14.00">Veronte CEX:12:IN RS-485 N</text>
<text text-anchor="start" x="805.88" y="-1842.95" font-family="arial" font-size="14.00">     BURD    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1836.25 599.88,-1838.25 889.12,-1838.25 889.12,-1836.25 599.88,-1836.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1834.25 599.88,-1836.25 889.12,-1836.25 889.12,-1834.25 599.88,-1834.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1832.25 599.88,-1834.25 889.12,-1834.25 889.12,-1832.25 599.88,-1832.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1830.25 599.88,-1832.25 889.12,-1832.25 889.12,-1830.25 599.88,-1830.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1828.25 599.88,-1830.25 889.12,-1830.25 889.12,-1828.25 599.88,-1828.25"/>
<text text-anchor="start" x="606.25" y="-1812.95" font-family="arial" font-size="14.00">Veronte CEX:13:IN RS-485 P</text>
<text text-anchor="start" x="803.62" y="-1812.95" font-family="arial" font-size="14.00">     GNWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1806.25 599.88,-1808.25 889.12,-1808.25 889.12,-1806.25 599.88,-1806.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1804.25 599.88,-1806.25 889.12,-1806.25 889.12,-1804.25 599.88,-1804.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1802.25 599.88,-1804.25 889.12,-1804.25 889.12,-1802.25 599.88,-1802.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1800.25 599.88,-1802.25 889.12,-1802.25 889.12,-1800.25 599.88,-1800.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1798.25 599.88,-1800.25 889.12,-1800.25 889.12,-1798.25 599.88,-1798.25"/>
<text text-anchor="start" x="604.38" y="-1782.95" font-family="arial" font-size="14.00">Veronte CEX:14:RS-485 GND</text>
<text text-anchor="start" x="805.88" y="-1782.95" font-family="arial" font-size="14.00">     GNBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1776.25 599.88,-1778.25 889.12,-1778.25 889.12,-1776.25 599.88,-1776.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1774.25 599.88,-1776.25 889.12,-1776.25 889.12,-1774.25 599.88,-1774.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1772.25 599.88,-1774.25 889.12,-1774.25 889.12,-1772.25 599.88,-1772.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1770.25 599.88,-1772.25 889.12,-1772.25 889.12,-1770.25 599.88,-1770.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1768.25 599.88,-1770.25 889.12,-1770.25 889.12,-1768.25 599.88,-1768.25"/>
<text text-anchor="start" x="631" y="-1752.95" font-family="arial" font-size="14.00">Veronte CEX:17:GND</text>
<text text-anchor="start" x="804" y="-1752.95" font-family="arial" font-size="14.00">     GYWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1746.25 599.88,-1748.25 889.12,-1748.25 889.12,-1746.25 599.88,-1746.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1744.25 599.88,-1746.25 889.12,-1746.25 889.12,-1744.25 599.88,-1744.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1742.25 599.88,-1744.25 889.12,-1744.25 889.12,-1742.25 599.88,-1742.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1740.25 599.88,-1742.25 889.12,-1742.25 889.12,-1740.25 599.88,-1740.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1738.25 599.88,-1740.25 889.12,-1740.25 889.12,-1738.25 599.88,-1738.25"/>
<text text-anchor="start" x="619" y="-1722.95" font-family="arial" font-size="14.00">Veronte CEX:20:I2C SCL</text>
<text text-anchor="start" x="806.25" y="-1722.95" font-family="arial" font-size="14.00">     BNGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1716.25 599.88,-1718.25 889.12,-1718.25 889.12,-1716.25 599.88,-1716.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1714.25 599.88,-1716.25 889.12,-1716.25 889.12,-1714.25 599.88,-1714.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1712.25 599.88,-1714.25 889.12,-1714.25 889.12,-1712.25 599.88,-1712.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1710.25 599.88,-1712.25 889.12,-1712.25 889.12,-1710.25 599.88,-1710.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1708.25 599.88,-1710.25 889.12,-1710.25 889.12,-1708.25 599.88,-1708.25"/>
<text text-anchor="start" x="618.25" y="-1692.95" font-family="arial" font-size="14.00">Veronte CEX:21:I2C SDA</text>
<text text-anchor="start" x="804.38" y="-1692.95" font-family="arial" font-size="14.00">     PKWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1686.25 599.88,-1688.25 889.12,-1688.25 889.12,-1686.25 599.88,-1686.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1684.25 599.88,-1686.25 889.12,-1686.25 889.12,-1684.25 599.88,-1684.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1682.25 599.88,-1684.25 889.12,-1684.25 889.12,-1682.25 599.88,-1682.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1680.25 599.88,-1682.25 889.12,-1682.25 889.12,-1680.25 599.88,-1680.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1678.25 599.88,-1680.25 889.12,-1680.25 889.12,-1678.25 599.88,-1678.25"/>
<text text-anchor="start" x="620.12" y="-1662.95" font-family="arial" font-size="14.00">Veronte CEX:22:3.3V out</text>
<text text-anchor="start" x="806.62" y="-1662.95" font-family="arial" font-size="14.00">     BUBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1656.25 599.88,-1658.25 889.12,-1658.25 889.12,-1656.25 599.88,-1656.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1654.25 599.88,-1656.25 889.12,-1656.25 889.12,-1654.25 599.88,-1654.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1652.25 599.88,-1654.25 889.12,-1654.25 889.12,-1652.25 599.88,-1652.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1650.25 599.88,-1652.25 889.12,-1652.25 889.12,-1650.25 599.88,-1650.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1648.25 599.88,-1650.25 889.12,-1650.25 889.12,-1648.25 599.88,-1648.25"/>
<text text-anchor="start" x="631" y="-1632.95" font-family="arial" font-size="14.00">Veronte CEX:23:GND</text>
<text text-anchor="start" x="803.62" y="-1632.95" font-family="arial" font-size="14.00">     RDWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1626.25 599.88,-1628.25 889.12,-1628.25 889.12,-1626.25 599.88,-1626.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1624.25 599.88,-1626.25 889.12,-1626.25 889.12,-1624.25 599.88,-1624.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1622.25 599.88,-1624.25 889.12,-1624.25 889.12,-1622.25 599.88,-1622.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1620.25 599.88,-1622.25 889.12,-1622.25 889.12,-1620.25 599.88,-1620.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1618.25 599.88,-1620.25 889.12,-1620.25 889.12,-1618.25 599.88,-1618.25"/>
<text text-anchor="start" x="626.12" y="-1602.95" font-family="arial" font-size="14.00">Veronte CEX:24:5V out</text>
<text text-anchor="start" x="805.88" y="-1602.95" font-family="arial" font-size="14.00">     RDBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1596.25 599.88,-1598.25 889.12,-1598.25 889.12,-1596.25 599.88,-1596.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1594.25 599.88,-1596.25 889.12,-1596.25 889.12,-1594.25 599.88,-1594.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1592.25 599.88,-1594.25 889.12,-1594.25 889.12,-1592.25 599.88,-1592.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1590.25 599.88,-1592.25 889.12,-1592.25 889.12,-1590.25 599.88,-1590.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1588.25 599.88,-1590.25 889.12,-1590.25 889.12,-1588.25 599.88,-1588.25"/>
<text text-anchor="start" x="631" y="-1572.95" font-family="arial" font-size="14.00">Veronte CEX:25:GND</text>
<text text-anchor="start" x="804.38" y="-1572.95" font-family="arial" font-size="14.00">     BKWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1566.25 599.88,-1568.25 889.12,-1568.25 889.12,-1566.25 599.88,-1566.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1564.25 599.88,-1566.25 889.12,-1566.25 889.12,-1564.25 599.88,-1564.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1562.25 599.88,-1564.25 889.12,-1564.25 889.12,-1562.25 599.88,-1562.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1560.25 599.88,-1562.25 889.12,-1562.25 889.12,-1560.25 599.88,-1560.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1558.25 599.88,-1560.25 889.12,-1560.25 889.12,-1558.25 599.88,-1558.25"/>
<text text-anchor="start" x="617.12" y="-1542.95" font-family="arial" font-size="14.00">Veronte CEX:26:ATX(0) N</text>
<text text-anchor="start" x="806.62" y="-1542.95" font-family="arial" font-size="14.00">     BKBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1536.25 599.88,-1538.25 889.12,-1538.25 889.12,-1536.25 599.88,-1536.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1534.25 599.88,-1536.25 889.12,-1536.25 889.12,-1534.25 599.88,-1534.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1532.25 599.88,-1534.25 889.12,-1534.25 889.12,-1532.25 599.88,-1532.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1530.25 599.88,-1532.25 889.12,-1532.25 889.12,-1530.25 599.88,-1530.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1528.25 599.88,-1530.25 889.12,-1530.25 889.12,-1528.25 599.88,-1528.25"/>
<text text-anchor="start" x="617.12" y="-1512.95" font-family="arial" font-size="14.00">Veronte CEX:27:ATX(0) P</text>
<text text-anchor="start" x="805.5" y="-1512.95" font-family="arial" font-size="14.00">     GNGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1506.25 599.88,-1508.25 889.12,-1508.25 889.12,-1506.25 599.88,-1506.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1504.25 599.88,-1506.25 889.12,-1506.25 889.12,-1504.25 599.88,-1504.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1502.25 599.88,-1504.25 889.12,-1504.25 889.12,-1502.25 599.88,-1502.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1500.25 599.88,-1502.25 889.12,-1502.25 889.12,-1500.25 599.88,-1500.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1498.25 599.88,-1500.25 889.12,-1500.25 889.12,-1498.25 599.88,-1498.25"/>
<text text-anchor="start" x="616.38" y="-1482.95" font-family="arial" font-size="14.00">Veronte CEX:28:ARX(0) P</text>
<text text-anchor="start" x="806.25" y="-1482.95" font-family="arial" font-size="14.00">     GNYE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1476.25 599.88,-1478.25 889.12,-1478.25 889.12,-1476.25 599.88,-1476.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1474.25 599.88,-1476.25 889.12,-1476.25 889.12,-1474.25 599.88,-1474.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1472.25 599.88,-1474.25 889.12,-1474.25 889.12,-1472.25 599.88,-1472.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1470.25 599.88,-1472.25 889.12,-1472.25 889.12,-1470.25 599.88,-1470.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1468.25 599.88,-1470.25 889.12,-1470.25 889.12,-1468.25 599.88,-1468.25"/>
<text text-anchor="start" x="616.38" y="-1452.95" font-family="arial" font-size="14.00">Veronte CEX:29:ARX(0) N</text>
<text text-anchor="start" x="805.88" y="-1452.95" font-family="arial" font-size="14.00">     GNPK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1446.25 599.88,-1448.25 889.12,-1448.25 889.12,-1446.25 599.88,-1446.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1444.25 599.88,-1446.25 889.12,-1446.25 889.12,-1444.25 599.88,-1444.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1442.25 599.88,-1444.25 889.12,-1444.25 889.12,-1442.25 599.88,-1442.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1440.25 599.88,-1442.25 889.12,-1442.25 889.12,-1440.25 599.88,-1440.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1438.25 599.88,-1440.25 889.12,-1440.25 889.12,-1438.25 599.88,-1438.25"/>
<text text-anchor="start" x="620.88" y="-1422.95" font-family="arial" font-size="14.00">Veronte CEX:30:ECAP 0</text>
<text text-anchor="start" x="807" y="-1422.95" font-family="arial" font-size="14.00">     PKYE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1416.25 599.88,-1418.25 889.12,-1418.25 889.12,-1416.25 599.88,-1416.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1414.25 599.88,-1416.25 889.12,-1416.25 889.12,-1414.25 599.88,-1414.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1412.25 599.88,-1414.25 889.12,-1414.25 889.12,-1412.25 599.88,-1412.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1410.25 599.88,-1412.25 889.12,-1412.25 889.12,-1410.25 599.88,-1410.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1408.25 599.88,-1410.25 889.12,-1410.25 889.12,-1408.25 599.88,-1408.25"/>
<text text-anchor="start" x="620.88" y="-1392.95" font-family="arial" font-size="14.00">Veronte CEX:31:ECAP 1</text>
<text text-anchor="start" x="814.12" y="-1392.95" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1386.25 599.88,-1388.25 889.12,-1388.25 889.12,-1386.25 599.88,-1386.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1384.25 599.88,-1386.25 889.12,-1386.25 889.12,-1384.25 599.88,-1384.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1382.25 599.88,-1384.25 889.12,-1384.25 889.12,-1382.25 599.88,-1382.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1380.25 599.88,-1382.25 889.12,-1382.25 889.12,-1380.25 599.88,-1380.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1378.25 599.88,-1380.25 889.12,-1380.25 889.12,-1378.25 599.88,-1378.25"/>
<text text-anchor="start" x="620.88" y="-1362.95" font-family="arial" font-size="14.00">Veronte CEX:32:ECAP 2</text>
<text text-anchor="start" x="816.38" y="-1362.95" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1356.25 599.88,-1358.25 889.12,-1358.25 889.12,-1356.25 599.88,-1356.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1354.25 599.88,-1356.25 889.12,-1356.25 889.12,-1354.25 599.88,-1354.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1352.25 599.88,-1354.25 889.12,-1354.25 889.12,-1352.25 599.88,-1352.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-1350.25 599.88,-1352.25 889.12,-1352.25 889.12,-1350.25 599.88,-1350.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1348.25 599.88,-1350.25 889.12,-1350.25 889.12,-1348.25 599.88,-1348.25"/>
<text text-anchor="start" x="620.88" y="-1332.95" font-family="arial" font-size="14.00">Veronte CEX:33:ECAP 3</text>
<text text-anchor="start" x="815.62" y="-1332.95" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1326.25 599.88,-1328.25 889.12,-1328.25 889.12,-1326.25 599.88,-1326.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1324.25 599.88,-1326.25 889.12,-1326.25 889.12,-1324.25 599.88,-1324.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1322.25 599.88,-1324.25 889.12,-1324.25 889.12,-1322.25 599.88,-1322.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1320.25 599.88,-1322.25 889.12,-1322.25 889.12,-1320.25 599.88,-1320.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1318.25 599.88,-1320.25 889.12,-1320.25 889.12,-1318.25 599.88,-1318.25"/>
<text text-anchor="start" x="623.12" y="-1302.95" font-family="arial" font-size="14.00">Veronte CEX:34:PWM 0</text>
<text text-anchor="start" x="816.75" y="-1302.95" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1296.25 599.88,-1298.25 889.12,-1298.25 889.12,-1296.25 599.88,-1296.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1294.25 599.88,-1296.25 889.12,-1296.25 889.12,-1294.25 599.88,-1294.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1292.25 599.88,-1294.25 889.12,-1294.25 889.12,-1292.25 599.88,-1292.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-1290.25 599.88,-1292.25 889.12,-1292.25 889.12,-1290.25 599.88,-1290.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1288.25 599.88,-1290.25 889.12,-1290.25 889.12,-1288.25 599.88,-1288.25"/>
<text text-anchor="start" x="623.12" y="-1272.95" font-family="arial" font-size="14.00">Veronte CEX:35:PWM 1</text>
<text text-anchor="start" x="816" y="-1272.95" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1266.25 599.88,-1268.25 889.12,-1268.25 889.12,-1266.25 599.88,-1266.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1264.25 599.88,-1266.25 889.12,-1266.25 889.12,-1264.25 599.88,-1264.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1262.25 599.88,-1264.25 889.12,-1264.25 889.12,-1262.25 599.88,-1262.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1260.25 599.88,-1262.25 889.12,-1262.25 889.12,-1260.25 599.88,-1260.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1258.25 599.88,-1260.25 889.12,-1260.25 889.12,-1258.25 599.88,-1258.25"/>
<text text-anchor="start" x="623.12" y="-1242.95" font-family="arial" font-size="14.00">Veronte CEX:36:PWM 2</text>
<text text-anchor="start" x="816.38" y="-1242.95" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1236.25 599.88,-1238.25 889.12,-1238.25 889.12,-1236.25 599.88,-1236.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1234.25 599.88,-1236.25 889.12,-1236.25 889.12,-1234.25 599.88,-1234.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1232.25 599.88,-1234.25 889.12,-1234.25 889.12,-1232.25 599.88,-1232.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1230.25 599.88,-1232.25 889.12,-1232.25 889.12,-1230.25 599.88,-1230.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1228.25 599.88,-1230.25 889.12,-1230.25 889.12,-1228.25 599.88,-1228.25"/>
<text text-anchor="start" x="623.12" y="-1212.95" font-family="arial" font-size="14.00">Veronte CEX:37:PWM 3</text>
<text text-anchor="start" x="816.38" y="-1212.95" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1206.25 599.88,-1208.25 889.12,-1208.25 889.12,-1206.25 599.88,-1206.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1204.25 599.88,-1206.25 889.12,-1206.25 889.12,-1204.25 599.88,-1204.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1202.25 599.88,-1204.25 889.12,-1204.25 889.12,-1202.25 599.88,-1202.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1200.25 599.88,-1202.25 889.12,-1202.25 889.12,-1200.25 599.88,-1200.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1198.25 599.88,-1200.25 889.12,-1200.25 889.12,-1198.25 599.88,-1198.25"/>
<text text-anchor="start" x="623.12" y="-1182.95" font-family="arial" font-size="14.00">Veronte CEX:38:PWM 4</text>
<text text-anchor="start" x="815.62" y="-1182.95" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1176.25 599.88,-1178.25 889.12,-1178.25 889.12,-1176.25 599.88,-1176.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1174.25 599.88,-1176.25 889.12,-1176.25 889.12,-1174.25 599.88,-1174.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1172.25 599.88,-1174.25 889.12,-1174.25 889.12,-1172.25 599.88,-1172.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1170.25 599.88,-1172.25 889.12,-1172.25 889.12,-1170.25 599.88,-1170.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1168.25 599.88,-1170.25 889.12,-1170.25 889.12,-1168.25 599.88,-1168.25"/>
<text text-anchor="start" x="623.12" y="-1152.95" font-family="arial" font-size="14.00">Veronte CEX:39:PWM 5</text>
<text text-anchor="start" x="816.38" y="-1152.95" font-family="arial" font-size="14.00">     BK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1146.25 599.88,-1148.25 889.12,-1148.25 889.12,-1146.25 599.88,-1146.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1144.25 599.88,-1146.25 889.12,-1146.25 889.12,-1144.25 599.88,-1144.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1142.25 599.88,-1144.25 889.12,-1144.25 889.12,-1142.25 599.88,-1142.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1140.25 599.88,-1142.25 889.12,-1142.25 889.12,-1140.25 599.88,-1140.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1138.25 599.88,-1140.25 889.12,-1140.25 889.12,-1138.25 599.88,-1138.25"/>
<text text-anchor="start" x="623.12" y="-1122.95" font-family="arial" font-size="14.00">Veronte CEX:40:PWM 6</text>
<text text-anchor="start" x="816.38" y="-1122.95" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1116.25 599.88,-1118.25 889.12,-1118.25 889.12,-1116.25 599.88,-1116.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1114.25 599.88,-1116.25 889.12,-1116.25 889.12,-1114.25 599.88,-1114.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1112.25 599.88,-1114.25 889.12,-1114.25 889.12,-1112.25 599.88,-1112.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1110.25 599.88,-1112.25 889.12,-1112.25 889.12,-1110.25 599.88,-1110.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1108.25 599.88,-1110.25 889.12,-1110.25 889.12,-1108.25 599.88,-1108.25"/>
<text text-anchor="start" x="623.12" y="-1092.95" font-family="arial" font-size="14.00">Veronte CEX:41:PWM 7</text>
<text text-anchor="start" x="806.25" y="-1092.95" font-family="arial" font-size="14.00">     PKGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1086.25 599.88,-1088.25 889.12,-1088.25 889.12,-1086.25 599.88,-1086.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1084.25 599.88,-1086.25 889.12,-1086.25 889.12,-1084.25 599.88,-1084.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-1082.25 599.88,-1084.25 889.12,-1084.25 889.12,-1082.25 599.88,-1082.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-1080.25 599.88,-1082.25 889.12,-1082.25 889.12,-1080.25 599.88,-1080.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1078.25 599.88,-1080.25 889.12,-1080.25 889.12,-1078.25 599.88,-1078.25"/>
<text text-anchor="start" x="631" y="-1062.95" font-family="arial" font-size="14.00">Veronte CEX:42:GND</text>
<text text-anchor="start" x="805.88" y="-1062.95" font-family="arial" font-size="14.00">     BURD    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1056.25 599.88,-1058.25 889.12,-1058.25 889.12,-1056.25 599.88,-1056.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1054.25 599.88,-1056.25 889.12,-1056.25 889.12,-1054.25 599.88,-1054.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-1052.25 599.88,-1054.25 889.12,-1054.25 889.12,-1052.25 599.88,-1052.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-1050.25 599.88,-1052.25 889.12,-1052.25 889.12,-1050.25 599.88,-1050.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1048.25 599.88,-1050.25 889.12,-1050.25 889.12,-1048.25 599.88,-1048.25"/>
<text text-anchor="start" x="620.88" y="-1032.95" font-family="arial" font-size="14.00">Veronte CEX:43:A0 3.3V</text>
<text text-anchor="start" x="803.62" y="-1032.95" font-family="arial" font-size="14.00">     GNWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-1026.25 599.88,-1028.25 889.12,-1028.25 889.12,-1026.25 599.88,-1026.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1024.25 599.88,-1026.25 889.12,-1026.25 889.12,-1024.25 599.88,-1024.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-1022.25 599.88,-1024.25 889.12,-1024.25 889.12,-1022.25 599.88,-1022.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-1020.25 599.88,-1022.25 889.12,-1022.25 889.12,-1020.25 599.88,-1020.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-1018.25 599.88,-1020.25 889.12,-1020.25 889.12,-1018.25 599.88,-1018.25"/>
<text text-anchor="start" x="620.88" y="-1002.95" font-family="arial" font-size="14.00">Veronte CEX:44:A1 3.3V</text>
<text text-anchor="start" x="805.88" y="-1002.95" font-family="arial" font-size="14.00">     GNBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-996.25 599.88,-998.25 889.12,-998.25 889.12,-996.25 599.88,-996.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-994.25 599.88,-996.25 889.12,-996.25 889.12,-994.25 599.88,-994.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-992.25 599.88,-994.25 889.12,-994.25 889.12,-992.25 599.88,-992.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-990.25 599.88,-992.25 889.12,-992.25 889.12,-990.25 599.88,-990.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-988.25 599.88,-990.25 889.12,-990.25 889.12,-988.25 599.88,-988.25"/>
<text text-anchor="start" x="626.88" y="-972.95" font-family="arial" font-size="14.00">Veronte CEX:45:A2 5V</text>
<text text-anchor="start" x="804.75" y="-972.95" font-family="arial" font-size="14.00">     YEWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-966.25 599.88,-968.25 889.12,-968.25 889.12,-966.25 599.88,-966.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-964.25 599.88,-966.25 889.12,-966.25 889.12,-964.25 599.88,-964.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-962.25 599.88,-964.25 889.12,-964.25 889.12,-962.25 599.88,-962.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-960.25 599.88,-962.25 889.12,-962.25 889.12,-960.25 599.88,-960.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-958.25 599.88,-960.25 889.12,-960.25 889.12,-958.25 599.88,-958.25"/>
<text text-anchor="start" x="626.88" y="-942.95" font-family="arial" font-size="14.00">Veronte CEX:46:A3 5V</text>
<text text-anchor="start" x="807" y="-942.95" font-family="arial" font-size="14.00">     BNYE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-936.25 599.88,-938.25 889.12,-938.25 889.12,-936.25 599.88,-936.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-934.25 599.88,-936.25 889.12,-936.25 889.12,-934.25 599.88,-934.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-932.25 599.88,-934.25 889.12,-934.25 889.12,-932.25 599.88,-932.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-930.25 599.88,-932.25 889.12,-932.25 889.12,-930.25 599.88,-930.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-928.25 599.88,-930.25 889.12,-930.25 889.12,-928.25 599.88,-928.25"/>
<text text-anchor="start" x="622.75" y="-912.95" font-family="arial" font-size="14.00">Veronte CEX:47:A4 12V</text>
<text text-anchor="start" x="804" y="-912.95" font-family="arial" font-size="14.00">     GYWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-906.25 599.88,-908.25 889.12,-908.25 889.12,-906.25 599.88,-906.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-904.25 599.88,-906.25 889.12,-906.25 889.12,-904.25 599.88,-904.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-902.25 599.88,-904.25 889.12,-904.25 889.12,-902.25 599.88,-902.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-900.25 599.88,-902.25 889.12,-902.25 889.12,-900.25 599.88,-900.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-898.25 599.88,-900.25 889.12,-900.25 889.12,-898.25 599.88,-898.25"/>
<text text-anchor="start" x="622.75" y="-882.95" font-family="arial" font-size="14.00">Veronte CEX:48:A5 12V</text>
<text text-anchor="start" x="806.25" y="-882.95" font-family="arial" font-size="14.00">     BNGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-876.25 599.88,-878.25 889.12,-878.25 889.12,-876.25 599.88,-876.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-874.25 599.88,-876.25 889.12,-876.25 889.12,-874.25 599.88,-874.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-872.25 599.88,-874.25 889.12,-874.25 889.12,-872.25 599.88,-872.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-870.25 599.88,-872.25 889.12,-872.25 889.12,-870.25 599.88,-870.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-868.25 599.88,-870.25 889.12,-870.25 889.12,-868.25 599.88,-868.25"/>
<text text-anchor="start" x="622.75" y="-852.95" font-family="arial" font-size="14.00">Veronte CEX:49:A6 36V</text>
<text text-anchor="start" x="804.38" y="-852.95" font-family="arial" font-size="14.00">     PKWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-846.25 599.88,-848.25 889.12,-848.25 889.12,-846.25 599.88,-846.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-844.25 599.88,-846.25 889.12,-846.25 889.12,-844.25 599.88,-844.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-842.25 599.88,-844.25 889.12,-844.25 889.12,-842.25 599.88,-842.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-840.25 599.88,-842.25 889.12,-842.25 889.12,-840.25 599.88,-840.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-838.25 599.88,-840.25 889.12,-840.25 889.12,-838.25 599.88,-838.25"/>
<text text-anchor="start" x="622.75" y="-822.95" font-family="arial" font-size="14.00">Veronte CEX:50:A7 36V</text>
<text text-anchor="start" x="806.62" y="-822.95" font-family="arial" font-size="14.00">     BNPK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-816.25 599.88,-818.25 889.12,-818.25 889.12,-816.25 599.88,-816.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-814.25 599.88,-816.25 889.12,-816.25 889.12,-814.25 599.88,-814.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-812.25 599.88,-814.25 889.12,-814.25 889.12,-812.25 599.88,-812.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-810.25 599.88,-812.25 889.12,-812.25 889.12,-810.25 599.88,-810.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-808.25 599.88,-810.25 889.12,-810.25 889.12,-808.25 599.88,-808.25"/>
<text text-anchor="start" x="631" y="-792.95" font-family="arial" font-size="14.00">Veronte CEX:51:GND</text>
<text text-anchor="start" x="804.38" y="-792.95" font-family="arial" font-size="14.00">     BUWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-786.25 599.88,-788.25 889.12,-788.25 889.12,-786.25 599.88,-786.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-784.25 599.88,-786.25 889.12,-786.25 889.12,-784.25 599.88,-784.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-782.25 599.88,-784.25 889.12,-784.25 889.12,-782.25 599.88,-782.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-780.25 599.88,-782.25 889.12,-782.25 889.12,-780.25 599.88,-780.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-778.25 599.88,-780.25 889.12,-780.25 889.12,-778.25 599.88,-778.25"/>
<text text-anchor="start" x="616.38" y="-762.95" font-family="arial" font-size="14.00">Veronte CEX:52:ARX(0) P</text>
<text text-anchor="start" x="806.62" y="-762.95" font-family="arial" font-size="14.00">     BUBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-756.25 599.88,-758.25 889.12,-758.25 889.12,-756.25 599.88,-756.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-754.25 599.88,-756.25 889.12,-756.25 889.12,-754.25 599.88,-754.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-752.25 599.88,-754.25 889.12,-754.25 889.12,-752.25 599.88,-752.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-750.25 599.88,-752.25 889.12,-752.25 889.12,-750.25 599.88,-750.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-748.25 599.88,-750.25 889.12,-750.25 889.12,-748.25 599.88,-748.25"/>
<text text-anchor="start" x="616.38" y="-732.95" font-family="arial" font-size="14.00">Veronte CEX:53:ARX(0) N</text>
<text text-anchor="start" x="803.62" y="-732.95" font-family="arial" font-size="14.00">     RDWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-726.25 599.88,-728.25 889.12,-728.25 889.12,-726.25 599.88,-726.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-724.25 599.88,-726.25 889.12,-726.25 889.12,-724.25 599.88,-724.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-722.25 599.88,-724.25 889.12,-724.25 889.12,-722.25 599.88,-722.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-720.25 599.88,-722.25 889.12,-722.25 889.12,-720.25 599.88,-720.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-718.25 599.88,-720.25 889.12,-720.25 889.12,-718.25 599.88,-718.25"/>
<text text-anchor="start" x="616.38" y="-702.95" font-family="arial" font-size="14.00">Veronte CEX:54:ARX(1) P</text>
<text text-anchor="start" x="805.88" y="-702.95" font-family="arial" font-size="14.00">     RDBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-696.25 599.88,-698.25 889.12,-698.25 889.12,-696.25 599.88,-696.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-694.25 599.88,-696.25 889.12,-696.25 889.12,-694.25 599.88,-694.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-692.25 599.88,-694.25 889.12,-694.25 889.12,-692.25 599.88,-692.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-690.25 599.88,-692.25 889.12,-692.25 889.12,-690.25 599.88,-690.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-688.25 599.88,-690.25 889.12,-690.25 889.12,-688.25 599.88,-688.25"/>
<text text-anchor="start" x="616.38" y="-672.95" font-family="arial" font-size="14.00">Veronte CEX:55:ARX(1) N</text>
<text text-anchor="start" x="804.38" y="-672.95" font-family="arial" font-size="14.00">     BKWH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-666.25 599.88,-668.25 889.12,-668.25 889.12,-666.25 599.88,-666.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-664.25 599.88,-666.25 889.12,-666.25 889.12,-664.25 599.88,-664.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-662.25 599.88,-664.25 889.12,-664.25 889.12,-662.25 599.88,-662.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-660.25 599.88,-662.25 889.12,-662.25 889.12,-660.25 599.88,-660.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-658.25 599.88,-660.25 889.12,-660.25 889.12,-658.25 599.88,-658.25"/>
<text text-anchor="start" x="616.38" y="-642.95" font-family="arial" font-size="14.00">Veronte CEX:56:ARX(2) P</text>
<text text-anchor="start" x="806.62" y="-642.95" font-family="arial" font-size="14.00">     BKBN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-636.25 599.88,-638.25 889.12,-638.25 889.12,-636.25 599.88,-636.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-634.25 599.88,-636.25 889.12,-636.25 889.12,-634.25 599.88,-634.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-632.25 599.88,-634.25 889.12,-634.25 889.12,-632.25 599.88,-632.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-630.25 599.88,-632.25 889.12,-632.25 889.12,-630.25 599.88,-630.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-628.25 599.88,-630.25 889.12,-630.25 889.12,-628.25 599.88,-628.25"/>
<text text-anchor="start" x="616.38" y="-612.95" font-family="arial" font-size="14.00">Veronte CEX:57:ARX(2) N</text>
<text text-anchor="start" x="805.5" y="-612.95" font-family="arial" font-size="14.00">     GNGY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-606.25 599.88,-608.25 889.12,-608.25 889.12,-606.25 599.88,-606.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-604.25 599.88,-606.25 889.12,-606.25 889.12,-604.25 599.88,-604.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-602.25 599.88,-604.25 889.12,-604.25 889.12,-602.25 599.88,-602.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-600.25 599.88,-602.25 889.12,-602.25 889.12,-600.25 599.88,-600.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-598.25 599.88,-600.25 889.12,-600.25 889.12,-598.25 599.88,-598.25"/>
<text text-anchor="start" x="616.38" y="-582.95" font-family="arial" font-size="14.00">Veronte CEX:58:ARX(3) P</text>
<text text-anchor="start" x="806.25" y="-582.95" font-family="arial" font-size="14.00">     GNYE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-576.25 599.88,-578.25 889.12,-578.25 889.12,-576.25 599.88,-576.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-574.25 599.88,-576.25 889.12,-576.25 889.12,-574.25 599.88,-574.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-572.25 599.88,-574.25 889.12,-574.25 889.12,-572.25 599.88,-572.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-570.25 599.88,-572.25 889.12,-572.25 889.12,-570.25 599.88,-570.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-568.25 599.88,-570.25 889.12,-570.25 889.12,-568.25 599.88,-568.25"/>
<text text-anchor="start" x="616.38" y="-552.95" font-family="arial" font-size="14.00">Veronte CEX:59:ARX(3) N</text>
<text text-anchor="start" x="805.88" y="-552.95" font-family="arial" font-size="14.00">     GNPK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-546.25 599.88,-548.25 889.12,-548.25 889.12,-546.25 599.88,-546.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-544.25 599.88,-546.25 889.12,-546.25 889.12,-544.25 599.88,-544.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-542.25 599.88,-544.25 889.12,-544.25 889.12,-542.25 599.88,-542.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-540.25 599.88,-542.25 889.12,-542.25 889.12,-540.25 599.88,-540.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-538.25 599.88,-540.25 889.12,-540.25 889.12,-538.25 599.88,-538.25"/>
<text text-anchor="start" x="622.38" y="-522.95" font-family="arial" font-size="14.00">Veronte CEX:60:GPIO 8</text>
<text text-anchor="start" x="807" y="-522.95" font-family="arial" font-size="14.00">     PKYE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-516.25 599.88,-518.25 889.12,-518.25 889.12,-516.25 599.88,-516.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-514.25 599.88,-516.25 889.12,-516.25 889.12,-514.25 599.88,-514.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-512.25 599.88,-514.25 889.12,-514.25 889.12,-512.25 599.88,-512.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-510.25 599.88,-512.25 889.12,-512.25 889.12,-510.25 599.88,-510.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-508.25 599.88,-510.25 889.12,-510.25 889.12,-508.25 599.88,-508.25"/>
<text text-anchor="start" x="622.38" y="-492.95" font-family="arial" font-size="14.00">Veronte CEX:61:GPIO 9</text>
<text text-anchor="start" x="814.12" y="-492.95" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="599.88,-486.25 599.88,-488.25 889.12,-488.25 889.12,-486.25 599.88,-486.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-484.25 599.88,-486.25 889.12,-486.25 889.12,-484.25 599.88,-484.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-482.25 599.88,-484.25 889.12,-484.25 889.12,-482.25 599.88,-482.25"/>
<polygon fill="#ffffff" stroke="none" points="599.88,-480.25 599.88,-482.25 889.12,-482.25 889.12,-480.25 599.88,-480.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-478.25 599.88,-480.25 889.12,-480.25 889.12,-478.25 599.88,-478.25"/>
<text text-anchor="start" x="618.25" y="-462.95" font-family="arial" font-size="14.00">Veronte CEX:62:GPIO 10</text>
<text text-anchor="start" x="816.38" y="-462.95" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-456.25 599.88,-458.25 889.12,-458.25 889.12,-456.25 599.88,-456.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-454.25 599.88,-456.25 889.12,-456.25 889.12,-454.25 599.88,-454.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-452.25 599.88,-454.25 889.12,-454.25 889.12,-452.25 599.88,-452.25"/>
<polygon fill="#895956" stroke="none" points="599.88,-450.25 599.88,-452.25 889.12,-452.25 889.12,-450.25 599.88,-450.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-448.25 599.88,-450.25 889.12,-450.25 889.12,-448.25 599.88,-448.25"/>
<text text-anchor="start" x="618.25" y="-432.95" font-family="arial" font-size="14.00">Veronte CEX:63:GPIO 11</text>
<text text-anchor="start" x="815.62" y="-432.95" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="599.88,-426.25 599.88,-428.25 889.12,-428.25 889.12,-426.25 599.88,-426.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-424.25 599.88,-426.25 889.12,-426.25 889.12,-424.25 599.88,-424.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-422.25 599.88,-424.25 889.12,-424.25 889.12,-422.25 599.88,-422.25"/>
<polygon fill="#00ff00" stroke="none" points="599.88,-420.25 599.88,-422.25 889.12,-422.25 889.12,-420.25 599.88,-420.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-418.25 599.88,-420.25 889.12,-420.25 889.12,-418.25 599.88,-418.25"/>
<text text-anchor="start" x="618.25" y="-402.95" font-family="arial" font-size="14.00">Veronte CEX:64:GPIO 12</text>
<text text-anchor="start" x="816.75" y="-402.95" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="599.88,-396.25 599.88,-398.25 889.12,-398.25 889.12,-396.25 599.88,-396.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-394.25 599.88,-396.25 889.12,-396.25 889.12,-394.25 599.88,-394.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-392.25 599.88,-394.25 889.12,-394.25 889.12,-392.25 599.88,-392.25"/>
<polygon fill="#ffff00" stroke="none" points="599.88,-390.25 599.88,-392.25 889.12,-392.25 889.12,-390.25 599.88,-390.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-388.25 599.88,-390.25 889.12,-390.25 889.12,-388.25 599.88,-388.25"/>
<text text-anchor="start" x="618.25" y="-372.95" font-family="arial" font-size="14.00">Veronte CEX:65:GPIO 13</text>
<text text-anchor="start" x="816" y="-372.95" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="599.88,-366.25 599.88,-368.25 889.12,-368.25 889.12,-366.25 599.88,-366.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-364.25 599.88,-366.25 889.12,-366.25 889.12,-364.25 599.88,-364.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-362.25 599.88,-364.25 889.12,-364.25 889.12,-362.25 599.88,-362.25"/>
<polygon fill="#999999" stroke="none" points="599.88,-360.25 599.88,-362.25 889.12,-362.25 889.12,-360.25 599.88,-360.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-358.25 599.88,-360.25 889.12,-360.25 889.12,-358.25 599.88,-358.25"/>
<text text-anchor="start" x="618.25" y="-342.95" font-family="arial" font-size="14.00">Veronte CEX:66:GPIO 14</text>
<text text-anchor="start" x="816.38" y="-342.95" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="599.88,-336.25 599.88,-338.25 889.12,-338.25 889.12,-336.25 599.88,-336.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-334.25 599.88,-336.25 889.12,-336.25 889.12,-334.25 599.88,-334.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-332.25 599.88,-334.25 889.12,-334.25 889.12,-332.25 599.88,-332.25"/>
<polygon fill="#ff66cc" stroke="none" points="599.88,-330.25 599.88,-332.25 889.12,-332.25 889.12,-330.25 599.88,-330.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-328.25 599.88,-330.25 889.12,-330.25 889.12,-328.25 599.88,-328.25"/>
<text text-anchor="start" x="618.25" y="-312.95" font-family="arial" font-size="14.00">Veronte CEX:67:GPIO 15</text>
<text text-anchor="start" x="816.38" y="-312.95" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="599.88,-306.25 599.88,-308.25 889.12,-308.25 889.12,-306.25 599.88,-306.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-304.25 599.88,-306.25 889.12,-306.25 889.12,-304.25 599.88,-304.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-302.25 599.88,-304.25 889.12,-304.25 889.12,-302.25 599.88,-302.25"/>
<polygon fill="#0066ff" stroke="none" points="599.88,-300.25 599.88,-302.25 889.12,-302.25 889.12,-300.25 599.88,-300.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-298.25 599.88,-300.25 889.12,-300.25 889.12,-298.25 599.88,-298.25"/>
<text text-anchor="start" x="618.25" y="-282.95" font-family="arial" font-size="14.00">Veronte CEX:68:GPIO 16</text>
<text text-anchor="start" x="815.62" y="-282.95" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="599.88,-276.25 599.88,-278.25 889.12,-278.25 889.12,-276.25 599.88,-276.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-274.25 599.88,-276.25 889.12,-276.25 889.12,-274.25 599.88,-274.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-272.25 599.88,-274.25 889.12,-274.25 889.12,-272.25 599.88,-272.25"/>
<polygon fill="#ff0000" stroke="none" points="599.88,-270.25 599.88,-272.25 889.12,-272.25 889.12,-270.25 599.88,-270.25"/>
<polygon fill="#000000" stroke="none" points="599.88,-268.25 599.88,-270.25 889.12,-270.25 889.12,-268.25 599.88,-268.25"/>
<text text-anchor="start" x="698.88" y="-252.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="599.88,-223.75 599.88,-248.25 889.12,-248.25 889.12,-223.75 599.88,-223.75"/>
<text text-anchor="start" x="603.88" y="-230.95" font-family="arial" font-size="14.00">Only GND need be 47! Others may be short!</text>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge1" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2064C494.39,-2064.12 515.42,-2069.37 598.88,-2069.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2066C493.91,-2066.06 514.94,-2071.31 598.88,-2071.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2068C493.42,-2068 514.45,-2073.25 598.88,-2073.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2070C492.94,-2069.94 513.97,-2075.19 598.88,-2075.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2072C492.45,-2071.88 513.49,-2077.13 598.88,-2077.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge2" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2040C493.25,-2040 514.34,-2039.25 598.88,-2039.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2042C493.32,-2042 514.41,-2041.25 598.88,-2041.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2044C493.39,-2044 514.49,-2043.25 598.88,-2043.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2046C493.46,-2046 514.56,-2045.25 598.88,-2045.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2048C493.53,-2048 514.63,-2047.25 598.88,-2047.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge3" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1968C491.08,-1969.06 511.36,-1950.31 598.88,-1949.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1970C492.44,-1970.53 512.72,-1951.78 598.88,-1951.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1972C493.8,-1972 514.08,-1953.25 598.88,-1953.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1974C495.16,-1973.47 515.43,-1954.72 598.88,-1955.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1976C496.52,-1974.94 516.79,-1956.19 598.88,-1957.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge4" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1944C490.97,-1945.51 510.64,-1920.76 598.88,-1919.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1946C492.54,-1946.76 512.21,-1922.01 598.88,-1921.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1948C494.1,-1948 513.77,-1923.25 598.88,-1923.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1950C495.67,-1949.24 515.34,-1924.49 598.88,-1925.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1952C497.23,-1950.49 516.9,-1925.74 598.88,-1927.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge5" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1848C499.05,-1850.46 516.21,-1891.71 598.88,-1889.25"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1850C497.2,-1851.23 514.36,-1892.48 598.88,-1891.25"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1852C495.36,-1852 512.52,-1893.25 598.88,-1893.25"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1854C493.51,-1852.77 510.67,-1894.02 598.88,-1895.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1856C491.66,-1853.54 508.82,-1894.79 598.88,-1897.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge6" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1824C498.38,-1826.16 516.6,-1861.41 598.88,-1859.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1826C496.61,-1827.08 514.82,-1862.33 598.88,-1861.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1828C494.83,-1828 513.04,-1863.25 598.88,-1863.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1830C493.05,-1828.92 511.27,-1864.17 598.88,-1865.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1832C491.28,-1829.84 509.49,-1865.09 598.88,-1867.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge7" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1800C497.73,-1801.81 516.84,-1831.06 598.88,-1829.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1802C496.06,-1802.91 515.17,-1832.16 598.88,-1831.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1804C494.38,-1804 513.49,-1833.25 598.88,-1833.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1806C492.71,-1805.09 511.82,-1834.34 598.88,-1835.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1808C491.04,-1806.19 510.14,-1835.44 598.88,-1837.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge8" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1776C497.06,-1777.4 516.9,-1800.65 598.88,-1799.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1778C495.54,-1778.7 515.38,-1801.95 598.88,-1801.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1780C494.02,-1780 513.86,-1803.25 598.88,-1803.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1782C492.5,-1781.3 512.33,-1804.55 598.88,-1805.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1784C490.98,-1782.6 510.81,-1805.85 598.88,-1807.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge9" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1752C496.32,-1752.95 516.72,-1770.2 598.88,-1769.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1754C495.03,-1754.47 515.43,-1771.72 598.88,-1771.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1756C493.74,-1756 514.14,-1773.25 598.88,-1773.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1758C492.45,-1757.53 512.85,-1774.78 598.88,-1775.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1760C491.15,-1759.05 511.56,-1776.3 598.88,-1777.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge10" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1608C508.64,-1612.06 507.24,-1713.31 598.88,-1709.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1610C506.64,-1612.03 505.24,-1713.28 598.88,-1711.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1612C504.64,-1612 503.24,-1713.25 598.88,-1713.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1614C502.64,-1611.97 501.24,-1713.22 598.88,-1715.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1616C500.64,-1611.94 499.24,-1713.19 598.88,-1717.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge11" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1584C507.41,-1587.96 508.46,-1683.21 598.88,-1679.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1586C505.41,-1587.98 506.46,-1683.23 598.88,-1681.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1588C503.41,-1588 504.46,-1683.25 598.88,-1683.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1590C501.41,-1588.02 502.46,-1683.27 598.88,-1685.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1592C499.41,-1588.04 500.46,-1683.29 598.88,-1687.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge12" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1560C506.24,-1563.85 509.63,-1653.1 598.88,-1649.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1562C504.25,-1563.92 507.63,-1653.17 598.88,-1651.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1564C502.25,-1564 505.63,-1653.25 598.88,-1653.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1566C500.25,-1564.08 503.63,-1653.33 598.88,-1655.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1568C498.25,-1564.15 501.63,-1653.4 598.88,-1657.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge13" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1512C504.09,-1515.61 511.75,-1592.86 598.88,-1589.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1514C502.1,-1515.8 509.76,-1593.05 598.88,-1591.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1516C500.11,-1516 507.77,-1593.25 598.88,-1593.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1518C498.12,-1516.2 505.78,-1593.45 598.88,-1595.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1520C496.13,-1516.39 503.79,-1593.64 598.88,-1597.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge14" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1464C502.17,-1467.31 513.58,-1532.56 598.88,-1529.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1466C500.2,-1467.66 511.61,-1532.91 598.88,-1531.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1468C498.23,-1468 509.64,-1533.25 598.88,-1533.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1470C496.26,-1468.34 507.67,-1533.59 598.88,-1535.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1472C494.29,-1468.69 505.7,-1533.94 598.88,-1537.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge15" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1440C501.31,-1443.14 514.38,-1502.39 598.88,-1499.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1442C499.36,-1443.57 512.43,-1502.82 598.88,-1501.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1444C497.4,-1444 510.47,-1503.25 598.88,-1503.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1446C495.45,-1444.43 508.52,-1503.68 598.88,-1505.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1448C493.5,-1444.86 506.57,-1504.11 598.88,-1507.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge16" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1416C500.5,-1418.94 515.09,-1472.19 598.88,-1469.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1418C498.57,-1419.47 513.16,-1472.72 598.88,-1471.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1420C496.64,-1420 511.23,-1473.25 598.88,-1473.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1422C494.72,-1420.53 509.3,-1473.78 598.88,-1475.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1424C492.79,-1421.06 507.37,-1474.31 598.88,-1477.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge17" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1392C499.75,-1394.72 515.7,-1441.97 598.88,-1439.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1394C497.86,-1395.36 513.81,-1442.61 598.88,-1441.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1396C495.96,-1396 511.91,-1443.25 598.88,-1443.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1398C494.07,-1396.64 510.02,-1443.89 598.88,-1445.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1400C492.17,-1397.28 508.12,-1444.53 598.88,-1447.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge18" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1368C499.05,-1370.46 516.21,-1411.71 598.88,-1409.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1370C497.2,-1371.23 514.36,-1412.48 598.88,-1411.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1372C495.36,-1372 512.52,-1413.25 598.88,-1413.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1374C493.51,-1372.77 510.67,-1414.02 598.88,-1415.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1376C491.66,-1373.54 508.82,-1414.79 598.88,-1417.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge19" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1344C498.38,-1346.16 516.6,-1381.41 598.88,-1379.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1346C496.61,-1347.08 514.82,-1382.33 598.88,-1381.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1348C494.83,-1348 513.04,-1383.25 598.88,-1383.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1350C493.05,-1348.92 511.27,-1384.17 598.88,-1385.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1352C491.28,-1349.84 509.49,-1385.09 598.88,-1387.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge20" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1320C497.73,-1321.81 516.84,-1351.06 598.88,-1349.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1322C496.06,-1322.91 515.17,-1352.16 598.88,-1351.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1324C494.38,-1324 513.49,-1353.25 598.88,-1353.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1326C492.71,-1325.09 511.82,-1354.34 598.88,-1355.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1328C491.04,-1326.19 510.14,-1355.44 598.88,-1357.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge21" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1296C497.06,-1297.4 516.9,-1320.65 598.88,-1319.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1298C495.54,-1298.7 515.38,-1321.95 598.88,-1321.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1300C494.02,-1300 513.86,-1323.25 598.88,-1323.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1302C492.5,-1301.3 512.33,-1324.55 598.88,-1325.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1304C490.98,-1302.6 510.81,-1325.85 598.88,-1327.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge22" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1272C496.32,-1272.95 516.72,-1290.2 598.88,-1289.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1274C495.03,-1274.47 515.43,-1291.72 598.88,-1291.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1276C493.74,-1276 514.14,-1293.25 598.88,-1293.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1278C492.45,-1277.53 512.85,-1294.78 598.88,-1295.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1280C491.15,-1279.05 511.56,-1296.3 598.88,-1297.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge23" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1248C495.44,-1248.48 516.24,-1259.73 598.88,-1259.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1250C494.49,-1250.24 515.29,-1261.49 598.88,-1261.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1252C493.54,-1252 514.34,-1263.25 598.88,-1263.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1254C492.59,-1253.76 513.39,-1265.01 598.88,-1265.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1256C491.63,-1255.52 512.44,-1266.77 598.88,-1267.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge24" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1224C494.39,-1224.12 515.42,-1229.37 598.88,-1229.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1226C493.91,-1226.06 514.94,-1231.31 598.88,-1231.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1228C493.42,-1228 514.45,-1233.25 598.88,-1233.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1230C492.94,-1229.94 513.97,-1235.19 598.88,-1235.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1232C492.45,-1231.88 513.49,-1237.13 598.88,-1237.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge25" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1200C493.25,-1200 514.34,-1199.25 598.88,-1199.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1202C493.32,-1202 514.41,-1201.25 598.88,-1201.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1204C493.39,-1204 514.49,-1203.25 598.88,-1203.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1206C493.46,-1206 514.56,-1205.25 598.88,-1205.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1208C493.53,-1208 514.63,-1207.25 598.88,-1207.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge26" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1176C492.22,-1176.19 513.21,-1169.44 598.88,-1169.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1178C492.83,-1178.1 513.82,-1171.35 598.88,-1171.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1180C493.44,-1180 514.43,-1173.25 598.88,-1173.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1182C494.05,-1181.9 515.05,-1175.15 598.88,-1175.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1184C494.67,-1183.81 515.66,-1177.06 598.88,-1177.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge27" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1152C491.48,-1152.59 512.2,-1139.84 598.88,-1139.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1154C492.53,-1154.3 513.25,-1141.55 598.88,-1141.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1156C493.58,-1156 514.3,-1143.25 598.88,-1143.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1158C494.63,-1157.7 515.34,-1144.95 598.88,-1145.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1160C495.68,-1159.41 516.39,-1146.66 598.88,-1147.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge28" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1128C491.08,-1129.06 511.36,-1110.31 598.88,-1109.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1130C492.44,-1130.53 512.72,-1111.78 598.88,-1111.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1132C493.8,-1132 514.08,-1113.25 598.88,-1113.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1134C495.16,-1133.47 515.43,-1114.72 598.88,-1115.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1136C496.52,-1134.94 516.79,-1116.19 598.88,-1117.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge29" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1104C490.97,-1105.51 510.64,-1080.76 598.88,-1079.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1106C492.54,-1106.76 512.21,-1082.01 598.88,-1081.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1108C494.1,-1108 513.77,-1083.25 598.88,-1083.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1110C495.67,-1109.24 515.34,-1084.49 598.88,-1085.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1112C497.23,-1110.49 516.9,-1085.74 598.88,-1087.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge30" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1056C491.36,-1058.24 509.33,-1021.49 598.88,-1019.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1058C493.16,-1059.12 511.12,-1022.37 598.88,-1021.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1060C494.96,-1060 512.92,-1023.25 598.88,-1023.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1062C496.75,-1060.88 514.72,-1024.13 598.88,-1025.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1064C498.55,-1061.76 516.51,-1025.01 598.88,-1027.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge31" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1032C491.78,-1034.53 508.65,-991.78 598.88,-989.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1034C493.64,-1035.27 510.51,-992.52 598.88,-991.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1036C495.5,-1036 512.37,-993.25 598.88,-993.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1038C497.36,-1036.73 514.23,-993.98 598.88,-995.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1040C499.22,-1037.47 516.09,-994.72 598.88,-997.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge32" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1008C492.32,-1010.78 507.94,-962.03 598.88,-959.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1010C494.22,-1011.39 509.84,-962.64 598.88,-961.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1012C496.13,-1012 511.75,-963.25 598.88,-963.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1014C498.03,-1012.61 513.65,-963.86 598.88,-965.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1016C499.94,-1013.22 515.56,-964.47 598.88,-967.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge33" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-984C492.96,-986.99 507.18,-932.24 598.88,-929.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-986C494.89,-987.5 509.11,-932.75 598.88,-931.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-988C496.83,-988 511.05,-933.25 598.88,-933.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-990C498.76,-988.5 512.98,-933.75 598.88,-935.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-992C500.7,-989.01 514.92,-934.26 598.88,-937.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge34" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-960C493.69,-963.18 506.36,-902.43 598.88,-899.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-962C495.65,-963.59 508.31,-902.84 598.88,-901.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-964C497.6,-964 510.27,-903.25 598.88,-903.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-966C499.56,-964.41 512.23,-903.66 598.88,-905.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-968C501.52,-964.82 514.19,-904.07 598.88,-907.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge35" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-936C494.5,-939.35 505.48,-872.6 598.88,-869.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-938C496.48,-939.68 507.45,-872.93 598.88,-871.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-940C498.45,-940 509.42,-873.25 598.88,-873.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-942C500.43,-940.32 511.4,-873.57 598.88,-875.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-944C502.4,-940.65 513.37,-873.9 598.88,-877.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge36" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-912C495.4,-915.5 504.54,-842.75 598.88,-839.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-914C497.39,-915.75 506.52,-843 598.88,-841.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-916C499.37,-916 508.5,-843.25 598.88,-843.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-918C501.36,-916.25 510.49,-843.5 598.88,-845.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-920C503.34,-916.5 512.47,-843.75 598.88,-847.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge37" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-888C496.38,-891.64 503.53,-812.89 598.88,-809.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-890C498.37,-891.82 505.52,-813.07 598.88,-811.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-892C500.36,-892 507.52,-813.25 598.88,-813.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-894C502.35,-892.18 509.51,-813.43 598.88,-815.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-896C504.34,-892.36 511.5,-813.61 598.88,-817.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge38" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-840C498.53,-843.88 501.34,-753.13 598.88,-749.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-842C500.53,-843.94 503.34,-753.19 598.88,-751.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-844C502.53,-844 505.34,-753.25 598.88,-753.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-846C504.53,-844.06 507.34,-753.31 598.88,-755.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-848C506.53,-844.12 509.34,-753.37 598.88,-757.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge39" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-816C499.71,-819.98 500.16,-723.23 598.88,-719.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-818C501.71,-819.99 502.16,-723.24 598.88,-721.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-820C503.71,-820 504.16,-723.25 598.88,-723.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-822C505.71,-820.01 506.16,-723.26 598.88,-725.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-824C507.71,-820.02 508.16,-723.27 598.88,-727.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge40" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-792C500.95,-796.08 498.92,-693.33 598.88,-689.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-794C502.95,-796.04 500.92,-693.29 598.88,-691.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-796C504.95,-796 502.92,-693.25 598.88,-693.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-798C506.95,-795.96 504.92,-693.21 598.88,-695.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-800C508.95,-795.92 506.92,-693.17 598.88,-697.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge41" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-768C502.25,-772.17 497.63,-663.42 598.88,-659.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-770C504.25,-772.08 499.63,-663.33 598.88,-661.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-772C506.25,-772 501.62,-663.25 598.88,-663.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-774C508.25,-771.92 503.62,-663.17 598.88,-665.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-776C510.25,-771.83 505.62,-663.08 598.88,-667.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge42" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-744C503.61,-748.26 496.28,-633.51 598.88,-629.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-746C505.61,-748.13 498.28,-633.38 598.88,-631.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-748C507.6,-748 500.27,-633.25 598.88,-633.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-750C509.6,-747.87 502.27,-633.12 598.88,-635.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-752C511.59,-747.74 504.26,-632.99 598.88,-637.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge43" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-720C505.02,-724.33 494.88,-603.58 598.88,-599.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-722C507.01,-724.17 496.87,-603.42 598.88,-601.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-724C509.01,-724 498.87,-603.25 598.88,-603.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-726C511,-723.83 500.86,-603.08 598.88,-605.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-728C512.99,-723.67 502.85,-602.92 598.88,-607.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge44" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-696C506.48,-700.41 493.43,-573.66 598.88,-569.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-698C508.47,-700.2 495.42,-573.45 598.88,-571.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-700C510.46,-700 497.41,-573.25 598.88,-573.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-702C512.45,-699.8 499.4,-573.05 598.88,-575.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-704C514.44,-699.59 501.39,-572.84 598.88,-577.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge45" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-672C508,-676.48 491.94,-543.73 598.88,-539.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-674C509.98,-676.24 493.92,-543.49 598.88,-541.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-676C511.97,-676 495.91,-543.25 598.88,-543.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-678C513.95,-675.76 497.89,-543.01 598.88,-545.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-680C515.94,-675.52 499.88,-542.77 598.88,-547.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge46" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-648C509.56,-652.55 490.39,-513.8 598.88,-509.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-650C511.54,-652.27 492.37,-513.52 598.88,-511.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-652C513.52,-652 494.36,-513.25 598.88,-513.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-654C515.5,-651.73 496.34,-512.98 598.88,-515.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-656C517.48,-651.45 498.32,-512.7 598.88,-517.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge47" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-624C511.16,-628.61 488.81,-483.86 598.88,-479.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-626C513.14,-628.31 490.78,-483.56 598.88,-481.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-628C515.11,-628 492.76,-483.25 598.88,-483.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-630C517.09,-627.69 494.74,-482.94 598.88,-485.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-632C519.07,-627.39 496.71,-482.64 598.88,-487.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge48" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-600C512.81,-604.67 487.18,-453.92 598.88,-449.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-602C514.78,-604.34 489.15,-453.59 598.88,-451.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-604C516.75,-604 491.12,-453.25 598.88,-453.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-606C518.72,-603.66 493.09,-452.91 598.88,-455.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-608C520.7,-603.33 495.07,-452.58 598.88,-457.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge49" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-576C514.5,-580.73 485.51,-423.98 598.88,-419.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-578C516.46,-580.36 487.48,-423.61 598.88,-421.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-580C518.43,-580 489.44,-423.25 598.88,-423.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-582C520.4,-579.64 491.41,-422.89 598.88,-425.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-584C522.36,-579.27 493.38,-422.52 598.88,-427.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge50" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-552C516.22,-556.78 483.81,-394.03 598.88,-389.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-554C518.19,-556.39 485.77,-393.64 598.88,-391.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-556C520.15,-556 487.73,-393.25 598.88,-393.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-558C522.11,-555.61 489.69,-392.86 598.88,-395.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-560C524.07,-555.22 491.65,-392.47 598.88,-397.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge51" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-528C517.99,-532.83 482.06,-364.08 598.88,-359.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-530C519.94,-532.42 484.02,-363.67 598.88,-361.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-532C521.9,-532 485.97,-363.25 598.88,-363.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-534C523.86,-531.58 487.93,-362.83 598.88,-365.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-536C525.81,-531.17 489.89,-362.42 598.88,-367.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge52" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-504C519.79,-508.88 480.28,-334.13 598.88,-329.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-506C521.74,-508.44 482.24,-333.69 598.88,-331.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-508C523.69,-508 484.19,-333.25 598.88,-333.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-510C525.64,-507.56 486.14,-332.81 598.88,-335.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-512C527.59,-507.12 488.09,-332.37 598.88,-337.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge53" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-480C521.62,-484.93 478.47,-304.18 598.88,-299.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-482C523.57,-484.46 480.42,-303.71 598.88,-301.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-484C525.51,-484 482.36,-303.25 598.88,-303.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-486C527.46,-483.54 484.31,-302.79 598.88,-305.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-488C529.4,-483.07 486.25,-302.32 598.88,-307.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge54" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-456C523.49,-460.97 476.63,-274.22 598.88,-269.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-458C525.43,-460.49 478.57,-273.74 598.88,-271.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-460C527.37,-460 480.51,-273.25 598.88,-273.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-462C529.31,-459.51 482.45,-272.76 598.88,-275.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-464C531.25,-459.03 484.39,-272.28 598.88,-277.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge55" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2016C492.22,-2016.19 513.21,-2009.44 598.88,-2009.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2018C492.83,-2018.1 513.82,-2011.35 598.88,-2011.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2020C493.44,-2020 514.43,-2013.25 598.88,-2013.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2022C494.05,-2021.9 515.05,-2015.15 598.88,-2015.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2024C494.67,-2023.81 515.66,-2017.06 598.88,-2017.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge57" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1992C491.48,-1992.59 512.2,-1979.84 598.88,-1979.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1994C492.53,-1994.3 513.25,-1981.55 598.88,-1981.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1996C493.58,-1996 514.3,-1983.25 598.88,-1983.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1998C494.63,-1997.7 515.34,-1984.95 598.88,-1985.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2000C495.68,-1999.41 516.39,-1986.66 598.88,-1987.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge59" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1680C501.31,-1683.14 514.38,-1742.39 598.88,-1739.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1682C499.36,-1683.57 512.43,-1742.82 598.88,-1741.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1684C497.4,-1684 510.47,-1743.25 598.88,-1743.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1686C495.45,-1684.43 508.52,-1743.68 598.88,-1745.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1688C493.5,-1684.86 506.57,-1744.11 598.88,-1747.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge61" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1536C505.13,-1539.73 510.72,-1622.98 598.88,-1619.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1538C503.14,-1539.87 508.73,-1623.12 598.88,-1621.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1540C501.14,-1540 506.73,-1623.25 598.88,-1623.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1542C499.15,-1540.13 504.74,-1623.38 598.88,-1625.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1544C497.15,-1540.27 502.74,-1623.52 598.88,-1627.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge63" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1488C503.1,-1491.47 512.7,-1562.72 598.88,-1559.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1490C501.12,-1491.73 510.72,-1562.98 598.88,-1561.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1492C499.13,-1492 508.74,-1563.25 598.88,-1563.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1494C497.15,-1492.27 506.76,-1563.52 598.88,-1565.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1496C495.17,-1492.53 504.78,-1563.78 598.88,-1567.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge65" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1080C491.08,-1081.91 509.98,-1051.16 598.88,-1049.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1082C492.78,-1082.95 511.68,-1052.2 598.88,-1051.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1084C494.49,-1084 513.39,-1053.25 598.88,-1053.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1086C496.19,-1085.05 515.09,-1054.3 598.88,-1055.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1088C497.9,-1086.09 516.79,-1055.34 598.88,-1057.25"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge67" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-864C497.42,-867.76 502.47,-783.01 598.88,-779.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-866C499.42,-867.88 504.46,-783.13 598.88,-781.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-868C501.41,-868 506.46,-783.25 598.88,-783.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-870C503.41,-868.12 508.46,-783.37 598.88,-785.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-872C505.41,-868.24 510.45,-783.49 598.88,-787.25"/>
</g>
<!-- W2 -->
<g id="node17" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="860,-2917.25 629,-2917.25 629,-2671.75 860,-2671.75 860,-2917.25"/>
<polygon fill="none" stroke="black" points="629,-2892.75 629,-2917.25 860,-2917.25 860,-2892.75 629,-2892.75"/>
<text text-anchor="start" x="733.25" y="-2899.95" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="629,-2868.25 629,-2892.75 669.31,-2892.75 669.31,-2868.25 629,-2868.25"/>
<text text-anchor="start" x="641.66" y="-2875.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="669.31,-2868.25 669.31,-2892.75 750.12,-2892.75 750.12,-2868.25 669.31,-2868.25"/>
<text text-anchor="start" x="681.97" y="-2875.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="750.12,-2868.25 750.12,-2892.75 797.19,-2892.75 797.19,-2868.25 750.12,-2868.25"/>
<text text-anchor="start" x="762.78" y="-2875.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="797.19,-2868.25 797.19,-2892.75 860,-2892.75 860,-2868.25 797.19,-2868.25"/>
<text text-anchor="start" x="809.84" y="-2875.45" font-family="arial" font-size="14.00">13.0 "</text>
<text text-anchor="start" x="711.62" y="-2852.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="631" y="-2832.95" font-family="arial" font-size="14.00">Veronte CEX:7:CAN GND</text>
<text text-anchor="start" x="800.38" y="-2832.95" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="629,-2826.25 629,-2828.25 860,-2828.25 860,-2826.25 629,-2826.25"/>
<polygon fill="#0066ff" stroke="none" points="629,-2824.25 629,-2826.25 860,-2826.25 860,-2824.25 629,-2824.25"/>
<polygon fill="#0066ff" stroke="none" points="629,-2822.25 629,-2824.25 860,-2824.25 860,-2822.25 629,-2822.25"/>
<polygon fill="#0066ff" stroke="none" points="629,-2820.25 629,-2822.25 860,-2822.25 860,-2820.25 629,-2820.25"/>
<polygon fill="#000000" stroke="none" points="629,-2818.25 629,-2820.25 860,-2820.25 860,-2818.25 629,-2818.25"/>
<text text-anchor="start" x="639.25" y="-2802.95" font-family="arial" font-size="14.00">Veronte CEX:8:CanB P</text>
<text text-anchor="start" x="799.62" y="-2802.95" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="629,-2796.25 629,-2798.25 860,-2798.25 860,-2796.25 629,-2796.25"/>
<polygon fill="#ff0000" stroke="none" points="629,-2794.25 629,-2796.25 860,-2796.25 860,-2794.25 629,-2794.25"/>
<polygon fill="#ff0000" stroke="none" points="629,-2792.25 629,-2794.25 860,-2794.25 860,-2792.25 629,-2792.25"/>
<polygon fill="#ff0000" stroke="none" points="629,-2790.25 629,-2792.25 860,-2792.25 860,-2790.25 629,-2790.25"/>
<polygon fill="#000000" stroke="none" points="629,-2788.25 629,-2790.25 860,-2790.25 860,-2788.25 629,-2788.25"/>
<text text-anchor="start" x="639.25" y="-2772.95" font-family="arial" font-size="14.00">Veronte CEX:9:CanB N</text>
<text text-anchor="start" x="800.38" y="-2772.95" font-family="arial" font-size="14.00">     BK    </text>
<polygon fill="#000000" stroke="none" points="629,-2766.25 629,-2768.25 860,-2768.25 860,-2766.25 629,-2766.25"/>
<polygon fill="#000000" stroke="none" points="629,-2764.25 629,-2766.25 860,-2766.25 860,-2764.25 629,-2764.25"/>
<polygon fill="#000000" stroke="none" points="629,-2762.25 629,-2764.25 860,-2764.25 860,-2762.25 629,-2762.25"/>
<polygon fill="#000000" stroke="none" points="629,-2760.25 629,-2762.25 860,-2762.25 860,-2760.25 629,-2760.25"/>
<polygon fill="#000000" stroke="none" points="629,-2758.25 629,-2760.25 860,-2760.25 860,-2758.25 629,-2758.25"/>
<text text-anchor="start" x="711.62" y="-2742.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="631" y="-2722.95" font-family="arial" font-size="14.00">Veronte CEX:7:CAN GND</text>
<text text-anchor="start" x="807.12" y="-2722.95" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="629,-2716.25 629,-2718.25 860,-2718.25 860,-2716.25 629,-2716.25"/>
<text text-anchor="start" x="711.62" y="-2700.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="629,-2671.75 629,-2696.25 860,-2696.25 860,-2671.75 629,-2671.75"/>
<text text-anchor="start" x="705.5" y="-2678.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge69" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1920C618.59,-1924.84 426.24,-2824.09 628,-2819.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1922C616.63,-1924.42 424.28,-2823.67 628,-2821.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1924C614.67,-1924 422.33,-2823.25 628,-2823.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1926C612.72,-1923.58 420.37,-2822.83 628,-2825.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1928C610.76,-1923.16 418.41,-2822.41 628,-2827.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge70" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1896C617.29,-1900.83 427.53,-2794.08 628,-2789.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1898C615.34,-1900.42 425.58,-2793.67 628,-2791.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1900C613.38,-1900 423.62,-2793.25 628,-2793.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1902C611.42,-1899.58 421.66,-2792.83 628,-2795.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1904C609.47,-1899.17 419.71,-2792.42 628,-2797.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge71" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1872C616,-1876.83 428.83,-2764.08 628,-2759.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1874C614.04,-1876.41 426.87,-2763.66 628,-2761.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1876C612.08,-1876 424.92,-2763.25 628,-2763.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1878C610.13,-1875.59 422.96,-2762.84 628,-2765.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1880C608.17,-1875.17 421,-2762.42 628,-2767.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge75" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1924C774.74,-1924 262.26,-2717.25 628,-2717.25"/>
</g>
<!-- W3 -->
<g id="node18" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="921.5,-2407.25 567.5,-2407.25 567.5,-2191.75 921.5,-2191.75 921.5,-2407.25"/>
<polygon fill="none" stroke="black" points="567.5,-2382.75 567.5,-2407.25 921.5,-2407.25 921.5,-2382.75 567.5,-2382.75"/>
<text text-anchor="start" x="733.25" y="-2389.95" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="567.5,-2358.25 567.5,-2382.75 638.56,-2382.75 638.56,-2358.25 567.5,-2358.25"/>
<text text-anchor="start" x="595.53" y="-2365.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="638.56,-2358.25 638.56,-2382.75 750.12,-2382.75 750.12,-2358.25 638.56,-2358.25"/>
<text text-anchor="start" x="666.59" y="-2365.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="750.12,-2358.25 750.12,-2382.75 827.94,-2382.75 827.94,-2358.25 750.12,-2358.25"/>
<text text-anchor="start" x="778.16" y="-2365.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="827.94,-2358.25 827.94,-2382.75 921.5,-2382.75 921.5,-2358.25 827.94,-2358.25"/>
<text text-anchor="start" x="855.97" y="-2365.45" font-family="arial" font-size="14.00">43.0 "</text>
<text text-anchor="start" x="663.12" y="-2342.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="570.12" y="-2322.95" font-family="arial" font-size="14.00">Veronte CEX:18:RS-232B TX</text>
<text text-anchor="start" x="766.62" y="-2322.95" font-family="arial" font-size="14.00">     BNPK    </text>
<text text-anchor="start" x="851" y="-2322.95" font-family="arial" font-size="14.00">Mag:3:RX</text>
<polygon fill="#000000" stroke="none" points="567.5,-2316.25 567.5,-2318.25 921.5,-2318.25 921.5,-2316.25 567.5,-2316.25"/>
<polygon fill="#895956" stroke="none" points="567.5,-2314.25 567.5,-2316.25 921.5,-2316.25 921.5,-2314.25 567.5,-2314.25"/>
<polygon fill="#ff66cc" stroke="none" points="567.5,-2312.25 567.5,-2314.25 921.5,-2314.25 921.5,-2312.25 567.5,-2312.25"/>
<polygon fill="#895956" stroke="none" points="567.5,-2310.25 567.5,-2312.25 921.5,-2312.25 921.5,-2310.25 567.5,-2310.25"/>
<polygon fill="#000000" stroke="none" points="567.5,-2308.25 567.5,-2310.25 921.5,-2310.25 921.5,-2308.25 567.5,-2308.25"/>
<text text-anchor="start" x="569.38" y="-2292.95" font-family="arial" font-size="14.00">Veronte CEX:19:RS-232B RX</text>
<text text-anchor="start" x="764.38" y="-2292.95" font-family="arial" font-size="14.00">     BUWH    </text>
<text text-anchor="start" x="851.75" y="-2292.95" font-family="arial" font-size="14.00">Mag:2:TX</text>
<polygon fill="#000000" stroke="none" points="567.5,-2286.25 567.5,-2288.25 921.5,-2288.25 921.5,-2286.25 567.5,-2286.25"/>
<polygon fill="#0066ff" stroke="none" points="567.5,-2284.25 567.5,-2286.25 921.5,-2286.25 921.5,-2284.25 567.5,-2284.25"/>
<polygon fill="#ffffff" stroke="none" points="567.5,-2282.25 567.5,-2284.25 921.5,-2284.25 921.5,-2282.25 567.5,-2282.25"/>
<polygon fill="#0066ff" stroke="none" points="567.5,-2280.25 567.5,-2282.25 921.5,-2282.25 921.5,-2280.25 567.5,-2280.25"/>
<polygon fill="#000000" stroke="none" points="567.5,-2278.25 567.5,-2280.25 921.5,-2280.25 921.5,-2278.25 567.5,-2278.25"/>
<text text-anchor="start" x="663.12" y="-2262.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="595.25" y="-2242.95" font-family="arial" font-size="14.00">Veronte CEX:17:GND</text>
<text text-anchor="start" x="783.12" y="-2242.95" font-family="arial" font-size="14.00">Shield</text>
<text text-anchor="start" x="845.38" y="-2242.95" font-family="arial" font-size="14.00">Mag:5:GND</text>
<polygon fill="#000000" stroke="none" points="567.5,-2236.25 567.5,-2238.25 921.5,-2238.25 921.5,-2236.25 567.5,-2236.25"/>
<text text-anchor="start" x="663.12" y="-2220.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="567.5,-2191.75 567.5,-2216.25 921.5,-2216.25 921.5,-2191.75 567.5,-2191.75"/>
<text text-anchor="start" x="705.5" y="-2198.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W3 -->
<g id="edge77" class="edge">
<title>Veronte CEX:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1656C710.97,-1662.23 271.17,-2315.48 566.5,-2309.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1658C709.31,-1661.12 269.51,-2314.37 566.5,-2311.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1660C707.65,-1660 267.85,-2313.25 566.5,-2313.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1662C705.99,-1658.88 266.19,-2312.13 566.5,-2315.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1664C704.33,-1657.77 264.53,-2311.02 566.5,-2317.25"/>
</g>
<!-- Veronte CEX--W3 -->
<g id="edge79" class="edge">
<title>Veronte CEX:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1632C708.38,-1638.23 273.76,-2285.48 566.5,-2279.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1634C706.72,-1637.11 272.1,-2284.36 566.5,-2281.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1636C705.06,-1636 270.44,-2283.25 566.5,-2283.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1638C703.4,-1634.89 268.78,-2282.14 566.5,-2285.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1640C701.74,-1633.77 267.12,-2281.02 566.5,-2287.25"/>
</g>
<!-- Veronte CEX--W3 -->
<g id="edge81" class="edge">
<title>Veronte CEX:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1684C664.66,-1684 310.84,-2237.25 566.5,-2237.25"/>
</g>
<!-- W4 -->
<g id="node19" class="node">
<title>W4</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="936,-2647.25 553,-2647.25 553,-2431.75 936,-2431.75 936,-2647.25"/>
<polygon fill="none" stroke="black" points="553,-2622.75 553,-2647.25 936,-2647.25 936,-2622.75 553,-2622.75"/>
<text text-anchor="start" x="733.25" y="-2629.95" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="553,-2598.25 553,-2622.75 631.31,-2622.75 631.31,-2598.25 553,-2598.25"/>
<text text-anchor="start" x="584.66" y="-2605.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="631.31,-2598.25 631.31,-2622.75 750.12,-2622.75 750.12,-2598.25 631.31,-2598.25"/>
<text text-anchor="start" x="662.97" y="-2605.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="750.12,-2598.25 750.12,-2622.75 835.19,-2622.75 835.19,-2598.25 750.12,-2598.25"/>
<text text-anchor="start" x="781.78" y="-2605.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="835.19,-2598.25 835.19,-2622.75 936,-2622.75 936,-2598.25 835.19,-2598.25"/>
<text text-anchor="start" x="866.84" y="-2605.45" font-family="arial" font-size="14.00">55.0 "</text>
<text text-anchor="start" x="648.62" y="-2582.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="555.62" y="-2562.95" font-family="arial" font-size="14.00">Veronte CEX:15:RS-232A TX</text>
<text text-anchor="start" x="749.75" y="-2562.95" font-family="arial" font-size="14.00">     YEWH    </text>
<text text-anchor="start" x="835.5" y="-2562.95" font-family="arial" font-size="14.00">VPX J1:22:RX</text>
<polygon fill="#000000" stroke="none" points="553,-2556.25 553,-2558.25 936,-2558.25 936,-2556.25 553,-2556.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2554.25 553,-2556.25 936,-2556.25 936,-2554.25 553,-2554.25"/>
<polygon fill="#ffffff" stroke="none" points="553,-2552.25 553,-2554.25 936,-2554.25 936,-2552.25 553,-2552.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2550.25 553,-2552.25 936,-2552.25 936,-2550.25 553,-2550.25"/>
<polygon fill="#000000" stroke="none" points="553,-2548.25 553,-2550.25 936,-2550.25 936,-2548.25 553,-2548.25"/>
<text text-anchor="start" x="554.88" y="-2532.95" font-family="arial" font-size="14.00">Veronte CEX:16:RS-232A RX</text>
<text text-anchor="start" x="752" y="-2532.95" font-family="arial" font-size="14.00">     BNYE    </text>
<text text-anchor="start" x="836.25" y="-2532.95" font-family="arial" font-size="14.00">VPX J1:20:TX</text>
<polygon fill="#000000" stroke="none" points="553,-2526.25 553,-2528.25 936,-2528.25 936,-2526.25 553,-2526.25"/>
<polygon fill="#895956" stroke="none" points="553,-2524.25 553,-2526.25 936,-2526.25 936,-2524.25 553,-2524.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2522.25 553,-2524.25 936,-2524.25 936,-2522.25 553,-2522.25"/>
<polygon fill="#895956" stroke="none" points="553,-2520.25 553,-2522.25 936,-2522.25 936,-2520.25 553,-2520.25"/>
<polygon fill="#000000" stroke="none" points="553,-2518.25 553,-2520.25 936,-2520.25 936,-2518.25 553,-2518.25"/>
<text text-anchor="start" x="648.62" y="-2502.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="580.75" y="-2482.95" font-family="arial" font-size="14.00">Veronte CEX:17:GND</text>
<text text-anchor="start" x="768.12" y="-2482.95" font-family="arial" font-size="14.00">Shield</text>
<text text-anchor="start" x="829.88" y="-2482.95" font-family="arial" font-size="14.00">VPX J1:21:GND</text>
<polygon fill="#000000" stroke="none" points="553,-2476.25 553,-2478.25 936,-2478.25 936,-2476.25 553,-2476.25"/>
<text text-anchor="start" x="648.62" y="-2460.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="553,-2431.75 553,-2456.25 936,-2456.25 936,-2431.75 553,-2431.75"/>
<text text-anchor="start" x="705.5" y="-2438.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W4 -->
<g id="edge83" class="edge">
<title>Veronte CEX:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1728C782.8,-1734.35 185.67,-2555.6 553,-2549.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1730C781.19,-1733.18 184.05,-2554.43 553,-2551.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1732C779.57,-1732 182.43,-2553.25 553,-2553.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1734C777.95,-1730.82 180.81,-2552.07 553,-2555.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1736C776.33,-1729.65 179.2,-2550.9 553,-2557.25"/>
</g>
<!-- Veronte CEX--W4 -->
<g id="edge85" class="edge">
<title>Veronte CEX:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1704C780.18,-1710.35 188.29,-2525.6 553,-2519.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1706C778.56,-1709.18 186.68,-2524.43 553,-2521.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1708C776.94,-1708 185.06,-2523.25 553,-2523.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1710C775.32,-1706.82 183.44,-2522.07 553,-2525.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1712C773.71,-1705.65 181.82,-2520.9 553,-2527.25"/>
</g>
<!-- Veronte CEX--W4 -->
<g id="edge87" class="edge">
<title>Veronte CEX:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1684C767.32,-1684 194.68,-2477.25 553,-2477.25"/>
</g>
<!-- 1X -->
<g id="node2" class="node">
<title>1X</title>
<polygon fill="#ffffff" stroke="black" points="2322,-2874.75 1913,-2874.75 1913,-2330.25 2322,-2330.25 2322,-2874.75"/>
<polygon fill="none" stroke="black" points="1913,-2850.25 1913,-2874.75 2322,-2874.75 2322,-2850.25 1913,-2850.25"/>
<text text-anchor="start" x="2108.5" y="-2857.45" font-family="arial" font-size="14.00">1X</text>
<polygon fill="none" stroke="black" points="1913,-2825.75 1913,-2850.25 2165.5,-2850.25 2165.5,-2825.75 1913,-2825.75"/>
<text text-anchor="start" x="1975.5" y="-2832.95" font-family="arial" font-size="14.00">FGW.LM.368.XLCT</text>
<polygon fill="none" stroke="black" points="2165.5,-2825.75 2165.5,-2850.25 2322,-2850.25 2322,-2825.75 2165.5,-2825.75"/>
<text text-anchor="start" x="2228" y="-2832.95" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1913,-2801.75 1913,-2825.75 2091,-2825.75 2091,-2801.75 1913,-2801.75"/>
<text text-anchor="start" x="1993.75" y="-2808.45" font-family="arial" font-size="14.00">27</text>
<polygon fill="none" stroke="black" points="2091,-2801.75 2091,-2825.75 2322,-2825.75 2322,-2801.75 2091,-2801.75"/>
<text text-anchor="start" x="2171.62" y="-2808.45" font-family="arial" font-size="14.00">CAN_GND</text>
<polygon fill="none" stroke="black" points="1913,-2777.75 1913,-2801.75 2091,-2801.75 2091,-2777.75 1913,-2777.75"/>
<text text-anchor="start" x="1993.75" y="-2784.45" font-family="arial" font-size="14.00">28</text>
<polygon fill="none" stroke="black" points="2091,-2777.75 2091,-2801.75 2322,-2801.75 2322,-2777.75 2091,-2777.75"/>
<text text-anchor="start" x="2177.62" y="-2784.45" font-family="arial" font-size="14.00">CANB_P</text>
<polygon fill="none" stroke="black" points="1913,-2753.75 1913,-2777.75 2091,-2777.75 2091,-2753.75 1913,-2753.75"/>
<text text-anchor="start" x="1993.75" y="-2760.45" font-family="arial" font-size="14.00">29</text>
<polygon fill="none" stroke="black" points="2091,-2753.75 2091,-2777.75 2322,-2777.75 2322,-2753.75 2091,-2753.75"/>
<text text-anchor="start" x="2177.62" y="-2760.45" font-family="arial" font-size="14.00">CANB_N</text>
<polygon fill="none" stroke="black" points="1913,-2354.75 1913,-2753.75 2322,-2753.75 2322,-2354.75 1913,-2354.75"/>
<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="1917" y="-2749.75"/>
<polygon fill="none" stroke="black" points="1913,-2330.25 1913,-2354.75 2322,-2354.75 2322,-2330.25 1913,-2330.25"/>
<text text-anchor="start" x="1939" y="-2337.45" font-family="arial" font-size="14.00">Connection is superfluous! Accounted for in 1X Drawing!</text>
</g>
<!-- VPX J1 -->
<g id="node3" class="node">
<title>VPX J1</title>
<polygon fill="#ffffff" stroke="black" points="1424,-2618.25 1080,-2618.25 1080,-2396.75 1424,-2396.75 1424,-2618.25"/>
<polygon fill="none" stroke="black" points="1080,-2593.75 1080,-2618.25 1424,-2618.25 1424,-2593.75 1080,-2593.75"/>
<text text-anchor="start" x="1227.62" y="-2600.95" font-family="arial" font-size="14.00">VPX J1</text>
<polygon fill="none" stroke="black" points="1080,-2569.25 1080,-2593.75 1244.12,-2593.75 1244.12,-2569.25 1080,-2569.25"/>
<text text-anchor="start" x="1154.19" y="-2576.45" font-family="arial" font-size="14.00">J1</text>
<polygon fill="none" stroke="black" points="1244.12,-2569.25 1244.12,-2593.75 1424,-2593.75 1424,-2569.25 1244.12,-2569.25"/>
<text text-anchor="start" x="1318.31" y="-2576.45" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1080,-2545.25 1080,-2569.25 1244.5,-2569.25 1244.5,-2545.25 1080,-2545.25"/>
<text text-anchor="start" x="1154" y="-2551.95" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="1244.5,-2545.25 1244.5,-2569.25 1424,-2569.25 1424,-2545.25 1244.5,-2545.25"/>
<text text-anchor="start" x="1324.88" y="-2551.95" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="1080,-2521.25 1080,-2545.25 1244.5,-2545.25 1244.5,-2521.25 1080,-2521.25"/>
<text text-anchor="start" x="1154" y="-2527.95" font-family="arial" font-size="14.00">21</text>
<polygon fill="none" stroke="black" points="1244.5,-2521.25 1244.5,-2545.25 1424,-2545.25 1424,-2521.25 1244.5,-2521.25"/>
<text text-anchor="start" x="1318.5" y="-2527.95" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1080,-2497.25 1080,-2521.25 1244.5,-2521.25 1244.5,-2497.25 1080,-2497.25"/>
<text text-anchor="start" x="1154" y="-2503.95" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="1244.5,-2497.25 1244.5,-2521.25 1424,-2521.25 1424,-2497.25 1244.5,-2497.25"/>
<text text-anchor="start" x="1324.12" y="-2503.95" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="1080,-2421.25 1080,-2497.25 1424,-2497.25 1424,-2421.25 1080,-2421.25"/>
<image xlink:href="images\25dsub.png" width="336px" height="68px" preserveAspectRatio="xMinYMin meet" x="1084" y="-2493.25"/>
<polygon fill="none" stroke="black" points="1080,-2396.75 1080,-2421.25 1424,-2421.25 1424,-2396.75 1080,-2396.75"/>
<text text-anchor="start" x="1183.75" y="-2403.95" font-family="arial" font-size="14.00">25-pin dsub FEMALE</text>
</g>
<!-- Mag -->
<g id="node4" class="node">
<title>Mag</title>
<polygon fill="#ffffff" stroke="black" points="1341.5,-2372.5 1162.5,-2372.5 1162.5,-2000.5 1341.5,-2000.5 1341.5,-2372.5"/>
<polygon fill="none" stroke="black" points="1162.5,-2348 1162.5,-2372.5 1341.5,-2372.5 1341.5,-2348 1162.5,-2348"/>
<text text-anchor="start" x="1238.5" y="-2355.2" font-family="arial" font-size="14.00">Mag</text>
<polygon fill="none" stroke="black" points="1162.5,-2323.5 1162.5,-2348 1249.75,-2348 1249.75,-2323.5 1162.5,-2323.5"/>
<text text-anchor="start" x="1192.62" y="-2330.7" font-family="arial" font-size="14.00">Mag</text>
<polygon fill="none" stroke="black" points="1249.75,-2323.5 1249.75,-2348 1341.5,-2348 1341.5,-2323.5 1249.75,-2323.5"/>
<text text-anchor="start" x="1279.88" y="-2330.7" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1162.5,-2299.5 1162.5,-2323.5 1240.5,-2323.5 1240.5,-2299.5 1162.5,-2299.5"/>
<text text-anchor="start" x="1197.38" y="-2306.2" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1240.5,-2299.5 1240.5,-2323.5 1341.5,-2323.5 1341.5,-2299.5 1240.5,-2299.5"/>
<text text-anchor="start" x="1281.62" y="-2306.2" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="1162.5,-2275.5 1162.5,-2299.5 1240.5,-2299.5 1240.5,-2275.5 1162.5,-2275.5"/>
<text text-anchor="start" x="1197.38" y="-2282.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1240.5,-2275.5 1240.5,-2299.5 1341.5,-2299.5 1341.5,-2275.5 1240.5,-2275.5"/>
<text text-anchor="start" x="1280.88" y="-2282.2" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="1162.5,-2251.5 1162.5,-2275.5 1240.5,-2275.5 1240.5,-2251.5 1162.5,-2251.5"/>
<text text-anchor="start" x="1197.38" y="-2258.2" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="1240.5,-2251.5 1240.5,-2275.5 1341.5,-2275.5 1341.5,-2251.5 1240.5,-2251.5"/>
<text text-anchor="start" x="1275.25" y="-2258.2" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1162.5,-2000.5 1162.5,-2251.5 1341.5,-2251.5 1341.5,-2000.5 1162.5,-2000.5"/>
<image xlink:href="images\mag.png" width="171px" height="243px" preserveAspectRatio="xMinYMin meet" x="1166.5" y="-2247.5"/>
</g>
<!-- _S_1 -->
<g id="node5" class="node">
<title>_S_1</title>
<polygon fill="#ffffff" stroke="black" points="1274.75,-2863.75 1229.25,-2863.75 1229.25,-2839.25 1274.75,-2839.25 1274.75,-2863.75"/>
<polygon fill="none" stroke="black" points="1229.25,-2839.25 1229.25,-2863.75 1274.75,-2863.75 1274.75,-2839.25 1229.25,-2839.25"/>
<text text-anchor="start" x="1233.25" y="-2846.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- W5 -->
<g id="node20" class="node">
<title>W5</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1769,-2916.25 1568,-2916.25 1568,-2670.75 1769,-2670.75 1769,-2916.25"/>
<polygon fill="none" stroke="black" points="1568,-2891.75 1568,-2916.25 1769,-2916.25 1769,-2891.75 1568,-2891.75"/>
<text text-anchor="start" x="1657.25" y="-2898.95" font-family="arial" font-size="14.00">W5</text>
<polygon fill="none" stroke="black" points="1568,-2867.25 1568,-2891.75 1602.88,-2891.75 1602.88,-2867.25 1568,-2867.25"/>
<text text-anchor="start" x="1577.94" y="-2874.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="1602.88,-2867.25 1602.88,-2891.75 1678.25,-2891.75 1678.25,-2867.25 1602.88,-2867.25"/>
<text text-anchor="start" x="1612.81" y="-2874.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="1678.25,-2867.25 1678.25,-2891.75 1719.88,-2891.75 1719.88,-2867.25 1678.25,-2867.25"/>
<text text-anchor="start" x="1688.19" y="-2874.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="1719.88,-2867.25 1719.88,-2891.75 1769,-2891.75 1769,-2867.25 1719.88,-2867.25"/>
<text text-anchor="start" x="1729.81" y="-2874.45" font-family="arial" font-size="14.00">5.0 "</text>
<text text-anchor="start" x="1569.62" y="-2851.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1577" y="-2831.95" font-family="arial" font-size="14.00">     GNGY    </text>
<text text-anchor="start" x="1655.62" y="-2831.95" font-family="arial" font-size="14.00">1X:27:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="1568,-2825.25 1568,-2827.25 1769,-2827.25 1769,-2825.25 1568,-2825.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2823.25 1568,-2825.25 1769,-2825.25 1769,-2823.25 1568,-2823.25"/>
<polygon fill="#999999" stroke="none" points="1568,-2821.25 1568,-2823.25 1769,-2823.25 1769,-2821.25 1568,-2821.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2819.25 1568,-2821.25 1769,-2821.25 1769,-2819.25 1568,-2819.25"/>
<polygon fill="#000000" stroke="none" points="1568,-2817.25 1568,-2819.25 1769,-2819.25 1769,-2817.25 1568,-2817.25"/>
<text text-anchor="start" x="1577.75" y="-2801.95" font-family="arial" font-size="14.00">     GNYE    </text>
<text text-anchor="start" x="1661.62" y="-2801.95" font-family="arial" font-size="14.00">1X:28:CANB_P</text>
<polygon fill="#000000" stroke="none" points="1568,-2795.25 1568,-2797.25 1769,-2797.25 1769,-2795.25 1568,-2795.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2793.25 1568,-2795.25 1769,-2795.25 1769,-2793.25 1568,-2793.25"/>
<polygon fill="#ffff00" stroke="none" points="1568,-2791.25 1568,-2793.25 1769,-2793.25 1769,-2791.25 1568,-2791.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2789.25 1568,-2791.25 1769,-2791.25 1769,-2789.25 1568,-2789.25"/>
<polygon fill="#000000" stroke="none" points="1568,-2787.25 1568,-2789.25 1769,-2789.25 1769,-2787.25 1568,-2787.25"/>
<text text-anchor="start" x="1577.38" y="-2771.95" font-family="arial" font-size="14.00">     GNPK    </text>
<text text-anchor="start" x="1661.62" y="-2771.95" font-family="arial" font-size="14.00">1X:29:CANB_N</text>
<polygon fill="#000000" stroke="none" points="1568,-2765.25 1568,-2767.25 1769,-2767.25 1769,-2765.25 1568,-2765.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2763.25 1568,-2765.25 1769,-2765.25 1769,-2763.25 1568,-2763.25"/>
<polygon fill="#ff66cc" stroke="none" points="1568,-2761.25 1568,-2763.25 1769,-2763.25 1769,-2761.25 1568,-2761.25"/>
<polygon fill="#00ff00" stroke="none" points="1568,-2759.25 1568,-2761.25 1769,-2761.25 1769,-2759.25 1568,-2759.25"/>
<polygon fill="#000000" stroke="none" points="1568,-2757.25 1568,-2759.25 1769,-2759.25 1769,-2757.25 1568,-2757.25"/>
<text text-anchor="start" x="1569.62" y="-2741.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1594.62" y="-2721.95" font-family="arial" font-size="14.00">Shield</text>
<text text-anchor="start" x="1655.62" y="-2721.95" font-family="arial" font-size="14.00">1X:27:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="1568,-2715.25 1568,-2717.25 1769,-2717.25 1769,-2715.25 1568,-2715.25"/>
<text text-anchor="start" x="1569.62" y="-2699.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="1568,-2670.75 1568,-2695.25 1769,-2695.25 1769,-2670.75 1568,-2670.75"/>
<text text-anchor="start" x="1629.5" y="-2677.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- _S_1--W5 -->
<g id="edge89" class="edge">
<title>_S_1:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2847.5C1403.55,-2848.58 1434.73,-2819.33 1568,-2818.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2849.5C1404.92,-2850.04 1436.09,-2820.79 1568,-2820.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1275.75,-2851.5C1406.29,-2851.5 1437.46,-2822.25 1568,-2822.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2853.5C1407.66,-2852.96 1438.83,-2823.71 1568,-2824.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2855.5C1409.02,-2854.42 1440.2,-2825.17 1568,-2826.25"/>
</g>
<!-- _S_2 -->
<g id="node6" class="node">
<title>_S_2</title>
<polygon fill="#ffffff" stroke="black" points="1274.75,-2814.75 1229.25,-2814.75 1229.25,-2790.25 1274.75,-2790.25 1274.75,-2814.75"/>
<polygon fill="none" stroke="black" points="1229.25,-2790.25 1229.25,-2814.75 1274.75,-2814.75 1274.75,-2790.25 1229.25,-2790.25"/>
<text text-anchor="start" x="1233.25" y="-2797.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_2--W5 -->
<g id="edge91" class="edge">
<title>_S_2:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2798.5C1404.51,-2798.69 1436.82,-2788.44 1568,-2788.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2800.5C1405.11,-2800.59 1437.43,-2790.34 1568,-2790.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1275.75,-2802.5C1405.72,-2802.5 1438.03,-2792.25 1568,-2792.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2804.5C1406.32,-2804.41 1438.64,-2794.16 1568,-2794.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2806.5C1406.93,-2806.31 1439.24,-2796.06 1568,-2796.25"/>
</g>
<!-- _S_3 -->
<g id="node7" class="node">
<title>_S_3</title>
<polygon fill="#ffffff" stroke="black" points="1274.75,-2765.75 1229.25,-2765.75 1229.25,-2741.25 1274.75,-2741.25 1274.75,-2765.75"/>
<polygon fill="none" stroke="black" points="1229.25,-2741.25 1229.25,-2765.75 1274.75,-2765.75 1274.75,-2741.25 1229.25,-2741.25"/>
<text text-anchor="start" x="1233.25" y="-2748.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_3--W5 -->
<g id="edge93" class="edge">
<title>_S_3:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2749.5C1406.74,-2749.64 1439.1,-2758.39 1568,-2758.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2751.5C1406.22,-2751.57 1438.58,-2760.32 1568,-2760.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1275.75,-2753.5C1405.7,-2753.5 1438.05,-2762.25 1568,-2762.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1275.75,-2755.5C1405.17,-2755.43 1437.53,-2764.18 1568,-2764.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2757.5C1404.65,-2757.36 1437.01,-2766.11 1568,-2766.25"/>
</g>
<!-- _S_4 -->
<g id="node8" class="node">
<title>_S_4</title>
<polygon fill="#ffffff" stroke="black" points="1274.75,-2716.75 1229.25,-2716.75 1229.25,-2692.25 1274.75,-2692.25 1274.75,-2716.75"/>
<polygon fill="none" stroke="black" points="1229.25,-2692.25 1229.25,-2716.75 1274.75,-2716.75 1274.75,-2692.25 1229.25,-2692.25"/>
<text text-anchor="start" x="1233.25" y="-2699.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_4--W5 -->
<g id="edge95" class="edge">
<title>_S_4:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1275.75,-2704.5C1405.74,-2704.5 1438.01,-2716.25 1568,-2716.25"/>
</g>
<!-- _GND_1 -->
<g id="node9" class="node">
<title>_GND_1</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1976.75 1232.25,-1976.75 1232.25,-1952.25 1271.75,-1952.25 1271.75,-1976.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1952.25 1232.25,-1976.75 1271.75,-1976.75 1271.75,-1952.25 1232.25,-1952.25"/>
<text text-anchor="start" x="1236.25" y="-1959.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_2 -->
<g id="node10" class="node">
<title>_GND_2</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1927.75 1232.25,-1927.75 1232.25,-1903.25 1271.75,-1903.25 1271.75,-1927.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1903.25 1232.25,-1927.75 1271.75,-1927.75 1271.75,-1903.25 1232.25,-1903.25"/>
<text text-anchor="start" x="1236.25" y="-1910.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_3 -->
<g id="node11" class="node">
<title>_GND_3</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1754.75 1232.25,-1754.75 1232.25,-1730.25 1271.75,-1730.25 1271.75,-1754.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1730.25 1232.25,-1754.75 1271.75,-1754.75 1271.75,-1730.25 1232.25,-1730.25"/>
<text text-anchor="start" x="1236.25" y="-1737.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_4 -->
<g id="node12" class="node">
<title>_GND_4</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1634.75 1232.25,-1634.75 1232.25,-1610.25 1271.75,-1610.25 1271.75,-1634.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1610.25 1232.25,-1634.75 1271.75,-1634.75 1271.75,-1610.25 1232.25,-1610.25"/>
<text text-anchor="start" x="1236.25" y="-1617.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_5 -->
<g id="node13" class="node">
<title>_GND_5</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1574.75 1232.25,-1574.75 1232.25,-1550.25 1271.75,-1550.25 1271.75,-1574.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1550.25 1232.25,-1574.75 1271.75,-1574.75 1271.75,-1550.25 1232.25,-1550.25"/>
<text text-anchor="start" x="1236.25" y="-1557.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_6 -->
<g id="node14" class="node">
<title>_GND_6</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-1065.75 1232.25,-1065.75 1232.25,-1041.25 1271.75,-1041.25 1271.75,-1065.75"/>
<polygon fill="none" stroke="black" points="1232.25,-1041.25 1232.25,-1065.75 1271.75,-1065.75 1271.75,-1041.25 1232.25,-1041.25"/>
<text text-anchor="start" x="1236.25" y="-1048.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_7 -->
<g id="node15" class="node">
<title>_GND_7</title>
<polygon fill="#ffffff" stroke="black" points="1271.75,-795.75 1232.25,-795.75 1232.25,-771.25 1271.75,-771.25 1271.75,-795.75"/>
<polygon fill="none" stroke="black" points="1232.25,-771.25 1232.25,-795.75 1271.75,-795.75 1271.75,-771.25 1232.25,-771.25"/>
<text text-anchor="start" x="1236.25" y="-778.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- W1--_GND_1 -->
<g id="edge56" class="edge">
<title>W1:e--_GND_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-2009.25C1040.02,-2010.93 1074.84,-1962.18 1231.25,-1960.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M890.12,-2011.25C1041.65,-2012.09 1076.47,-1963.34 1231.25,-1962.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M890.12,-2013.25C1043.28,-2013.25 1078.1,-1964.5 1231.25,-1964.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M890.12,-2015.25C1044.9,-2014.41 1079.73,-1965.66 1231.25,-1966.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-2017.25C1046.53,-2015.57 1081.35,-1966.82 1231.25,-1968.5"/>
</g>
<!-- W1--_GND_2 -->
<g id="edge58" class="edge">
<title>W1:e--_GND_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1979.25C973.36,-1980.94 991.83,-1954.75 1079.23,-1936.57 1144.5,-1924.23 1160.74,-1912.28 1231.25,-1911.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M890.12,-1981.25C974.99,-1982.1 993.46,-1955.91 1079.62,-1938.54 1145.69,-1925.85 1161.93,-1913.89 1231.25,-1913.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M890.12,-1983.25C976.63,-1983.25 995.1,-1957.06 1080,-1940.5 1146.87,-1927.46 1163.12,-1915.5 1231.25,-1915.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M890.12,-1985.25C978.26,-1984.4 996.73,-1958.21 1080.38,-1942.46 1148.06,-1929.07 1164.3,-1917.11 1231.25,-1917.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1987.25C979.9,-1985.56 998.37,-1959.37 1080.77,-1944.43 1149.25,-1930.68 1165.49,-1918.72 1231.25,-1919.5"/>
</g>
<!-- W1--_GND_3 -->
<g id="edge60" class="edge">
<title>W1:e--_GND_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1739.25C1041.66,-1739.25 1079.56,-1738.5 1231.25,-1738.5"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M890.12,-1741.25C1041.7,-1741.25 1079.6,-1740.5 1231.25,-1740.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M890.12,-1743.25C1041.74,-1743.25 1079.64,-1742.5 1231.25,-1742.5"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M890.12,-1745.25C1041.78,-1745.25 1079.68,-1744.5 1231.25,-1744.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1747.25C1041.82,-1747.25 1079.72,-1746.5 1231.25,-1746.5"/>
</g>
<!-- W1--_GND_4 -->
<g id="edge62" class="edge">
<title>W1:e--_GND_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1619.25C1041.66,-1619.25 1079.56,-1618.5 1231.25,-1618.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M890.12,-1621.25C1041.7,-1621.25 1079.6,-1620.5 1231.25,-1620.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M890.12,-1623.25C1041.74,-1623.25 1079.64,-1622.5 1231.25,-1622.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M890.12,-1625.25C1041.78,-1625.25 1079.68,-1624.5 1231.25,-1624.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1627.25C1041.82,-1627.25 1079.72,-1626.5 1231.25,-1626.5"/>
</g>
<!-- W1--_GND_5 -->
<g id="edge64" class="edge">
<title>W1:e--_GND_5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1559.25C1041.66,-1559.25 1079.56,-1558.5 1231.25,-1558.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1561.25C1041.7,-1561.25 1079.6,-1560.5 1231.25,-1560.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M890.12,-1563.25C1041.74,-1563.25 1079.64,-1562.5 1231.25,-1562.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1565.25C1041.78,-1565.25 1079.68,-1564.5 1231.25,-1564.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1567.25C1041.82,-1567.25 1079.72,-1566.5 1231.25,-1566.5"/>
</g>
<!-- W1--_GND_6 -->
<g id="edge66" class="edge">
<title>W1:e--_GND_6:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1049.25C1041.76,-1049.25 1079.67,-1049.5 1231.25,-1049.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M890.12,-1051.25C1041.75,-1051.25 1079.65,-1051.5 1231.25,-1051.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M890.12,-1053.25C1041.74,-1053.25 1079.64,-1053.5 1231.25,-1053.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M890.12,-1055.25C1041.72,-1055.25 1079.63,-1055.5 1231.25,-1055.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-1057.25C1041.71,-1057.25 1079.61,-1057.5 1231.25,-1057.5"/>
</g>
<!-- W1--_GND_7 -->
<g id="edge68" class="edge">
<title>W1:e--_GND_7:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-779.25C1041.76,-779.25 1079.67,-779.5 1231.25,-779.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M890.12,-781.25C1041.75,-781.25 1079.65,-781.5 1231.25,-781.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M890.12,-783.25C1041.74,-783.25 1079.64,-783.5 1231.25,-783.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M890.12,-785.25C1041.72,-785.25 1079.63,-785.5 1231.25,-785.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M890.12,-787.25C1041.71,-787.25 1079.61,-787.5 1231.25,-787.5"/>
</g>
<!-- W2--_S_1 -->
<g id="edge72" class="edge">
<title>W2:e--_S_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2819.25C1027.02,-2819.99 1066.86,-2848.24 1228.25,-2847.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M861,-2821.25C1025.86,-2821.62 1065.7,-2849.87 1228.25,-2849.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M861,-2823.25C1024.7,-2823.25 1064.55,-2851.5 1228.25,-2851.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M861,-2825.25C1023.55,-2824.88 1063.39,-2853.13 1228.25,-2853.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2827.25C1022.39,-2826.51 1062.23,-2854.76 1228.25,-2855.5"/>
</g>
<!-- W2--_S_2 -->
<g id="edge73" class="edge">
<title>W2:e--_S_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2789.25C1025.16,-2789.35 1065.86,-2798.6 1228.25,-2798.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M861,-2791.25C1024.72,-2791.3 1065.42,-2800.55 1228.25,-2800.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M861,-2793.25C1024.27,-2793.25 1064.98,-2802.5 1228.25,-2802.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M861,-2795.25C1023.83,-2795.2 1064.53,-2804.45 1228.25,-2804.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2797.25C1023.39,-2797.15 1064.09,-2806.4 1228.25,-2806.5"/>
</g>
<!-- W2--_S_3 -->
<g id="edge74" class="edge">
<title>W2:e--_S_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2759.25C1023.35,-2759.36 1064.04,-2749.61 1228.25,-2749.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2761.25C1023.81,-2761.31 1064.5,-2751.56 1228.25,-2751.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2763.25C1024.28,-2763.25 1064.97,-2753.5 1228.25,-2753.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2765.25C1024.75,-2765.19 1065.44,-2755.44 1228.25,-2755.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2767.25C1025.21,-2767.14 1065.9,-2757.39 1228.25,-2757.5"/>
</g>
<!-- W2--_S_4 -->
<g id="edge76" class="edge">
<title>W2:e--_S_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M861,-2717.25C1024.32,-2717.25 1064.93,-2704.5 1228.25,-2704.5"/>
</g>
<!-- W3--Mag -->
<g id="edge78" class="edge">
<title>W3:e--Mag:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M922.5,-2309.25C1026.49,-2310.45 1051.81,-2284.7 1161.5,-2283.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M922.5,-2311.25C1027.91,-2311.85 1053.24,-2286.1 1161.5,-2285.5"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M922.5,-2313.25C1029.34,-2313.25 1054.66,-2287.5 1161.5,-2287.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M922.5,-2315.25C1030.76,-2314.65 1056.09,-2288.9 1161.5,-2289.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M922.5,-2317.25C1032.19,-2316.05 1057.51,-2290.3 1161.5,-2291.5"/>
</g>
<!-- W3--Mag -->
<g id="edge80" class="edge">
<title>W3:e--Mag:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M922.5,-2279.25C1032.45,-2280.59 1057.53,-2308.84 1161.5,-2307.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M922.5,-2281.25C1030.96,-2281.92 1056.03,-2310.17 1161.5,-2309.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M922.5,-2283.25C1029.46,-2283.25 1054.54,-2311.5 1161.5,-2311.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M922.5,-2285.25C1027.97,-2284.58 1053.04,-2312.83 1161.5,-2313.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M922.5,-2287.25C1026.47,-2285.91 1051.55,-2314.16 1161.5,-2315.5"/>
</g>
<!-- W3--Mag -->
<g id="edge82" class="edge">
<title>W3:e--Mag:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M922.5,-2237.25C1029.36,-2237.25 1054.64,-2263.5 1161.5,-2263.5"/>
</g>
<!-- W4--VPX J1 -->
<g id="edge84" class="edge">
<title>W4:e--VPX J1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M936,-2549.25C999.02,-2552.35 1009.18,-2508.35 1080,-2505.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M936,-2551.25C1000.97,-2552.8 1011.13,-2508.8 1080,-2507.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M936,-2553.25C1002.92,-2553.25 1013.08,-2509.25 1080,-2509.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M936,-2555.25C1004.87,-2553.7 1015.03,-2509.7 1080,-2511.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M936,-2557.25C1006.82,-2554.15 1016.98,-2510.15 1080,-2513.25"/>
</g>
<!-- W4--VPX J1 -->
<g id="edge86" class="edge">
<title>W4:e--VPX J1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M936,-2519.25C1005.51,-2521.87 1018,-2555.87 1080,-2553.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M936,-2521.25C1003.64,-2522.56 1016.12,-2556.56 1080,-2555.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M936,-2523.25C1001.76,-2523.25 1014.24,-2557.25 1080,-2557.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M936,-2525.25C999.88,-2523.94 1012.36,-2557.94 1080,-2559.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M936,-2527.25C998,-2524.63 1010.49,-2558.63 1080,-2561.25"/>
</g>
<!-- W4--VPX J1 -->
<g id="edge88" class="edge">
<title>W4:e--VPX J1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M936,-2477.25C1004.67,-2477.25 1011.33,-2533.25 1080,-2533.25"/>
</g>
<!-- W5--1X -->
<g id="edge90" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2818.25C1831.21,-2818.73 1846.99,-2810.23 1913,-2809.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2820.25C1832.16,-2820.49 1847.94,-2811.99 1913,-2811.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1769,-2822.25C1833.11,-2822.25 1848.89,-2813.75 1913,-2813.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2824.25C1834.06,-2824.01 1849.84,-2815.51 1913,-2815.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2826.25C1835.01,-2825.77 1850.79,-2817.27 1913,-2817.75"/>
</g>
<!-- W5--1X -->
<g id="edge92" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2788.25C1832.39,-2788.3 1848.37,-2785.8 1913,-2785.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2790.25C1832.7,-2790.27 1848.68,-2787.77 1913,-2787.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1769,-2792.25C1833.01,-2792.25 1848.99,-2789.75 1913,-2789.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2794.25C1833.32,-2794.23 1849.3,-2791.73 1913,-2791.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2796.25C1833.63,-2796.2 1849.61,-2793.7 1913,-2793.75"/>
</g>
<!-- W5--1X -->
<g id="edge94" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2758.25C1833.88,-2758.34 1849.84,-2761.84 1913,-2761.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2760.25C1833.45,-2760.3 1849.41,-2763.8 1913,-2763.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1769,-2762.25C1833.02,-2762.25 1848.98,-2765.75 1913,-2765.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1769,-2764.25C1832.59,-2764.2 1848.55,-2767.7 1913,-2767.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2766.25C1832.16,-2766.16 1848.12,-2769.66 1913,-2769.75"/>
</g>
<!-- W5--1X -->
<g id="edge96" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1769,-2716.25C1846.29,-2716.25 1835.71,-2813.75 1913,-2813.75"/>
</g>
</g>
</svg>
|