📦 furkan / fakequidditch

📄 fakequidditch.fit.rpt · 2980 lines
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
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980Fitter report for fakequidditch
Sat May 25 01:40:00 2019
Quartus II 64-Bit Version 13.1.0 Build 162 10/23/2013 SJ Web Edition


---------------------
; Table of Contents ;
---------------------
  1. Legal Notice
  2. Fitter Summary
  3. Fitter Settings
  4. Parallel Compilation
  5. I/O Assignment Warnings
  6. Fitter Netlist Optimizations
  7. Incremental Compilation Preservation Summary
  8. Incremental Compilation Partition Settings
  9. Incremental Compilation Placement Preservation
 10. Pin-Out File
 11. Fitter Resource Usage Summary
 12. Fitter Partition Statistics
 13. Input Pins
 14. Output Pins
 15. I/O Bank Usage
 16. All Package Pins
 17. Fitter Resource Utilization by Entity
 18. Delay Chain Summary
 19. Pad To Core Delay Chain Fanout
 20. Control Signals
 21. Global & Other Fast Signals
 22. Non-Global High Fan-Out Signals
 23. Fitter DSP Block Usage Summary
 24. Routing Usage Summary
 25. I/O Rules Summary
 26. I/O Rules Details
 27. I/O Rules Matrix
 28. Fitter Device Options
 29. Operating Settings and Conditions
 30. Estimated Delay Added for Hold Timing Summary
 31. Estimated Delay Added for Hold Timing Details
 32. Fitter Messages
 33. Fitter Suppressed Messages



----------------
; Legal Notice ;
----------------
Copyright (C) 1991-2013 Altera Corporation
Your use of Altera Corporation's design tools, logic functions 
and other software and tools, and its AMPP partner logic 
functions, and any output files from any of the foregoing 
(including device programming or simulation files), and any 
associated documentation or information are expressly subject 
to the terms and conditions of the Altera Program License 
Subscription Agreement, Altera MegaCore Function License 
Agreement, or other applicable license agreement, including, 
without limitation, that your use is for the sole purpose of 
programming logic devices manufactured by Altera and sold by 
Altera or its authorized distributors.  Please refer to the 
applicable agreement for further details.



+------------------------------------------------------------------------------+
; Fitter Summary                                                               ;
+---------------------------------+--------------------------------------------+
; Fitter Status                   ; Successful - Sat May 25 01:40:00 2019      ;
; Quartus II 64-Bit Version       ; 13.1.0 Build 162 10/23/2013 SJ Web Edition ;
; Revision Name                   ; fakequidditch                              ;
; Top-level Entity Name           ; fakequidditch                              ;
; Family                          ; Cyclone V                                  ;
; Device                          ; 5CSEMA5F31C6                               ;
; Timing Models                   ; Preliminary                                ;
; Logic utilization (in ALMs)     ; 3,199 / 32,070 ( 10 % )                    ;
; Total registers                 ; 329                                        ;
; Total pins                      ; 32 / 457 ( 7 % )                           ;
; Total virtual pins              ; 0                                          ;
; Total block memory bits         ; 0 / 4,065,280 ( 0 % )                      ;
; Total DSP Blocks                ; 87 / 87 ( 100 % )                          ;
; Total HSSI RX PCSs              ; 0                                          ;
; Total HSSI PMA RX Deserializers ; 0                                          ;
; Total HSSI TX PCSs              ; 0                                          ;
; Total HSSI TX Channels          ; 0                                          ;
; Total PLLs                      ; 0 / 6 ( 0 % )                              ;
; Total DLLs                      ; 0 / 4 ( 0 % )                              ;
+---------------------------------+--------------------------------------------+


+------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Settings                                                                                                                                            ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Option                                                                     ; Setting                               ; Default Value                         ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+
; Device                                                                     ; 5CSEMA5F31C6                          ;                                       ;
; Minimum Core Junction Temperature                                          ; 0                                     ;                                       ;
; Maximum Core Junction Temperature                                          ; 85                                    ;                                       ;
; Use smart compilation                                                      ; Off                                   ; Off                                   ;
; Enable parallel Assembler and TimeQuest Timing Analyzer during compilation ; On                                    ; On                                    ;
; Enable compact report table                                                ; Off                                   ; Off                                   ;
; Router Timing Optimization Level                                           ; Normal                                ; Normal                                ;
; Perform Clocking Topology Analysis During Routing                          ; Off                                   ; Off                                   ;
; Placement Effort Multiplier                                                ; 1.0                                   ; 1.0                                   ;
; Device initialization clock source                                         ; INIT_INTOSC                           ; INIT_INTOSC                           ;
; Optimize Hold Timing                                                       ; All Paths                             ; All Paths                             ;
; Optimize Multi-Corner Timing                                               ; On                                    ; On                                    ;
; Auto RAM to MLAB Conversion                                                ; On                                    ; On                                    ;
; Equivalent RAM and MLAB Power Up                                           ; Auto                                  ; Auto                                  ;
; Equivalent RAM and MLAB Paused Read Capabilities                           ; Care                                  ; Care                                  ;
; PowerPlay Power Optimization                                               ; Normal compilation                    ; Normal compilation                    ;
; SSN Optimization                                                           ; Off                                   ; Off                                   ;
; Optimize Timing                                                            ; Normal compilation                    ; Normal compilation                    ;
; Optimize Timing for ECOs                                                   ; Off                                   ; Off                                   ;
; Regenerate full fit report during ECO compiles                             ; Off                                   ; Off                                   ;
; Optimize IOC Register Placement for Timing                                 ; Normal                                ; Normal                                ;
; Final Placement Optimizations                                              ; Automatically                         ; Automatically                         ;
; Fitter Aggressive Routability Optimizations                                ; Automatically                         ; Automatically                         ;
; Fitter Initial Placement Seed                                              ; 1                                     ; 1                                     ;
; Weak Pull-Up Resistor                                                      ; Off                                   ; Off                                   ;
; Enable Bus-Hold Circuitry                                                  ; Off                                   ; Off                                   ;
; Auto Packed Registers                                                      ; Auto                                  ; Auto                                  ;
; Auto Delay Chains                                                          ; On                                    ; On                                    ;
; Auto Delay Chains for High Fanout Input Pins                               ; Off                                   ; Off                                   ;
; Treat Bidirectional Pin as Output Pin                                      ; Off                                   ; Off                                   ;
; Perform Physical Synthesis for Combinational Logic for Fitting             ; Off                                   ; Off                                   ;
; Perform Physical Synthesis for Combinational Logic for Performance         ; Off                                   ; Off                                   ;
; Perform Register Duplication for Performance                               ; Off                                   ; Off                                   ;
; Perform Register Retiming for Performance                                  ; Off                                   ; Off                                   ;
; Perform Asynchronous Signal Pipelining                                     ; Off                                   ; Off                                   ;
; Fitter Effort                                                              ; Auto Fit                              ; Auto Fit                              ;
; Physical Synthesis Effort Level                                            ; Normal                                ; Normal                                ;
; Logic Cell Insertion - Logic Duplication                                   ; Auto                                  ; Auto                                  ;
; Auto Register Duplication                                                  ; Auto                                  ; Auto                                  ;
; Auto Global Clock                                                          ; On                                    ; On                                    ;
; Auto Global Register Control Signals                                       ; On                                    ; On                                    ;
; Reserve all unused pins                                                    ; As input tri-stated with weak pull-up ; As input tri-stated with weak pull-up ;
; Synchronizer Identification                                                ; Off                                   ; Off                                   ;
; Enable Beneficial Skew Optimization                                        ; On                                    ; On                                    ;
; Optimize Design for Metastability                                          ; On                                    ; On                                    ;
; Active Serial clock source                                                 ; FREQ_100MHz                           ; FREQ_100MHz                           ;
; Force Fitter to Avoid Periphery Placement Warnings                         ; Off                                   ; Off                                   ;
; Clamping Diode                                                             ; Off                                   ; Off                                   ;
; Enable input tri-state on active configuration pins in user mode           ; Off                                   ; Off                                   ;
+----------------------------------------------------------------------------+---------------------------------------+---------------------------------------+


+------------------------------------------+
; Parallel Compilation                     ;
+----------------------------+-------------+
; Processors                 ; Number      ;
+----------------------------+-------------+
; Number detected on machine ; 4           ;
; Maximum allowed            ; 2           ;
;                            ;             ;
; Average used               ; 1.57        ;
; Maximum used               ; 2           ;
;                            ;             ;
; Usage by Processor         ; % Time Used ;
;     Processor 1            ; 100.0%      ;
;     Processor 2            ;  57.4%      ;
;     Processors 3-4         ;   0.0%      ;
+----------------------------+-------------+


+-------------------------------------------------+
; I/O Assignment Warnings                         ;
+-----------------+-------------------------------+
; Pin Name        ; Reason                        ;
+-----------------+-------------------------------+
; red[0]          ; Incomplete set of assignments ;
; red[1]          ; Incomplete set of assignments ;
; red[2]          ; Incomplete set of assignments ;
; red[3]          ; Incomplete set of assignments ;
; red[4]          ; Incomplete set of assignments ;
; red[5]          ; Incomplete set of assignments ;
; red[6]          ; Incomplete set of assignments ;
; red[7]          ; Incomplete set of assignments ;
; green[0]        ; Incomplete set of assignments ;
; green[1]        ; Incomplete set of assignments ;
; green[2]        ; Incomplete set of assignments ;
; green[3]        ; Incomplete set of assignments ;
; green[4]        ; Incomplete set of assignments ;
; green[5]        ; Incomplete set of assignments ;
; green[6]        ; Incomplete set of assignments ;
; green[7]        ; Incomplete set of assignments ;
; blue[0]         ; Incomplete set of assignments ;
; blue[1]         ; Incomplete set of assignments ;
; blue[2]         ; Incomplete set of assignments ;
; blue[3]         ; Incomplete set of assignments ;
; blue[4]         ; Incomplete set of assignments ;
; blue[5]         ; Incomplete set of assignments ;
; blue[6]         ; Incomplete set of assignments ;
; blue[7]         ; Incomplete set of assignments ;
; hor_sync        ; Incomplete set of assignments ;
; ver_sync        ; Incomplete set of assignments ;
; vga_clk         ; Incomplete set of assignments ;
; clk             ; Incomplete set of assignments ;
; team1_vu_button ; Incomplete set of assignments ;
; team1_vd_button ; Incomplete set of assignments ;
; team2_vu_button ; Incomplete set of assignments ;
; team2_vd_button ; Incomplete set of assignments ;
+-----------------+-------------------------------+


+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Netlist Optimizations                                                                                                                                                                                                                                                                                                          ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+
; Node                                                                      ; Action     ; Operation                                         ; Reason                     ; Node Port ; Node Port Name ; Destination Node                                                                    ; Destination Port ; Destination Port Name ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+
; clk~inputCLKENA0                                                          ; Created    ; Placement                                         ; Fitter Periphery Placement ;           ;                ;                                                                                     ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult1~36        ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult0~461                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult3~40        ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult2~461                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult5~36        ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult4~461                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult7~40        ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult6~461                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult9~40        ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult8~461                 ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult11~40       ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult10~461                ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult13~24       ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mult12~477                ;                  ;                       ;
; vga_controller:vga_cont|Mult43~8                                          ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult42~136                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult45~36                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult44~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult47~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult46~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult49~12                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult48~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult51~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult50~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult53~12                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult52~477                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult55~20                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult54~473                                                  ;                  ;                       ;
; vga_controller:vga_cont|Mult57~12                                         ; Merged     ; Placement                                         ; Location assignment        ;           ;                ; vga_controller:vga_cont|Mult56~477                                                  ;                  ;                       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[20]     ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[20]~DUPLICATE     ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]~DUPLICATE ;                  ;                       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7] ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~DUPLICATE ;                  ;                       ;
; vga_controller:vga_cont|x[3]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[3]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[4]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[4]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[5]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[5]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[7]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[7]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[8]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[8]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|x[9]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|x[9]~DUPLICATE                                              ;                  ;                       ;
; vga_controller:vga_cont|y[0]                                              ; Duplicated ; Router Logic Cell Insertion and Logic Duplication ; Routability optimization   ;           ;                ; vga_controller:vga_cont|y[0]~DUPLICATE                                              ;                  ;                       ;
+---------------------------------------------------------------------------+------------+---------------------------------------------------+----------------------------+-----------+----------------+-------------------------------------------------------------------------------------+------------------+-----------------------+


+---------------------------------------------------------------------------------------------------+
; Incremental Compilation Preservation Summary                                                      ;
+---------------------+---------------------+----------------------------+--------------------------+
; Type                ; Total [A + B]       ; From Design Partitions [A] ; From Rapid Recompile [B] ;
+---------------------+---------------------+----------------------------+--------------------------+
; Placement (by node) ;                     ;                            ;                          ;
;     -- Requested    ; 0.00 % ( 0 / 5976 ) ; 0.00 % ( 0 / 5976 )        ; 0.00 % ( 0 / 5976 )      ;
;     -- Achieved     ; 0.00 % ( 0 / 5976 ) ; 0.00 % ( 0 / 5976 )        ; 0.00 % ( 0 / 5976 )      ;
;                     ;                     ;                            ;                          ;
; Routing (by net)    ;                     ;                            ;                          ;
;     -- Requested    ; 0.00 % ( 0 / 0 )    ; 0.00 % ( 0 / 0 )           ; 0.00 % ( 0 / 0 )         ;
;     -- Achieved     ; 0.00 % ( 0 / 0 )    ; 0.00 % ( 0 / 0 )           ; 0.00 % ( 0 / 0 )         ;
+---------------------+---------------------+----------------------------+--------------------------+


+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Partition Settings                                                                                                                                             ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Partition Name                 ; Partition Type ; Netlist Type Used ; Preservation Level Used ; Netlist Type Requested ; Preservation Level Requested ; Contents                       ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+
; Top                            ; User-created   ; Source File       ; N/A                     ; Source File            ; N/A                          ;                                ;
; hard_block:auto_generated_inst ; Auto-generated ; Source File       ; N/A                     ; Source File            ; N/A                          ; hard_block:auto_generated_inst ;
+--------------------------------+----------------+-------------------+-------------------------+------------------------+------------------------------+--------------------------------+


+------------------------------------------------------------------------------------------------------------------------------------+
; Incremental Compilation Placement Preservation                                                                                     ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+
; Partition Name                 ; Preservation Achieved ; Preservation Level Used ; Netlist Type Used ; Preservation Method ; Notes ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+
; Top                            ; 0.00 % ( 0 / 5976 )   ; N/A                     ; Source File       ; N/A                 ;       ;
; hard_block:auto_generated_inst ; 0.00 % ( 0 / 0 )      ; N/A                     ; Source File       ; N/A                 ;       ;
+--------------------------------+-----------------------+-------------------------+-------------------+---------------------+-------+


+--------------+
; Pin-Out File ;
+--------------+
The pin-out file can be found in C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.pin.


+---------------------------------------------------------------------------------------+
; Fitter Resource Usage Summary                                                         ;
+-------------------------------------------------------------+-----------------+-------+
; Resource                                                    ; Usage           ; %     ;
+-------------------------------------------------------------+-----------------+-------+
; Logic utilization (ALMs needed / total ALMs on device)      ; 3,199 / 32,070  ; 10 %  ;
; ALMs needed [=A-B+C]                                        ; 3,199           ;       ;
;     [A] ALMs used in final placement [=a+b+c+d]             ; 2,953 / 32,070  ; 9 %   ;
;         [a] ALMs used for LUT logic and registers           ; 135             ;       ;
;         [b] ALMs used for LUT logic                         ; 2,798           ;       ;
;         [c] ALMs used for registers                         ; 20              ;       ;
;         [d] ALMs used for memory (up to half of total ALMs) ; 0               ;       ;
;     [B] Estimate of ALMs recoverable by dense packing       ; 52 / 32,070     ; < 1 % ;
;     [C] Estimate of ALMs unavailable [=a+b+c+d]             ; 298 / 32,070    ; < 1 % ;
;         [a] Due to location constrained logic               ; 51              ;       ;
;         [b] Due to LAB-wide signal conflicts                ; 0               ;       ;
;         [c] Due to LAB input limits                         ; 247             ;       ;
;         [d] Due to virtual I/Os                             ; 0               ;       ;
;                                                             ;                 ;       ;
; Difficulty packing design                                   ; Low             ;       ;
;                                                             ;                 ;       ;
; Total LABs:  partially or completely used                   ; 454 / 3,207     ; 14 %  ;
;     -- Logic LABs                                           ; 454             ;       ;
;     -- Memory LABs (up to half of total LABs)               ; 0               ;       ;
;                                                             ;                 ;       ;
; Combinational ALUT usage for logic                          ; 5,500           ;       ;
;     -- 7 input functions                                    ; 2               ;       ;
;     -- 6 input functions                                    ; 177             ;       ;
;     -- 5 input functions                                    ; 356             ;       ;
;     -- 4 input functions                                    ; 690             ;       ;
;     -- <=3 input functions                                  ; 4,275           ;       ;
; Combinational ALUT usage for route-throughs                 ; 6               ;       ;
; Dedicated logic registers                                   ; 329             ;       ;
;     -- By type:                                             ;                 ;       ;
;         -- Primary logic registers                          ; 309 / 64,140    ; < 1 % ;
;         -- Secondary logic registers                        ; 20 / 64,140     ; < 1 % ;
;     -- By function:                                         ;                 ;       ;
;         -- Design implementation registers                  ; 309             ;       ;
;         -- Routing optimization registers                   ; 20              ;       ;
;                                                             ;                 ;       ;
; Virtual pins                                                ; 0               ;       ;
; I/O pins                                                    ; 32 / 457        ; 7 %   ;
;     -- Clock pins                                           ; 4 / 8           ; 50 %  ;
;     -- Dedicated input pins                                 ; 0 / 21          ; 0 %   ;
;                                                             ;                 ;       ;
; Hard processor system peripheral utilization                ;                 ;       ;
;     -- Boot from FPGA                                       ; 0 / 1 ( 0 % )   ;       ;
;     -- Clock resets                                         ; 0 / 1 ( 0 % )   ;       ;
;     -- Cross trigger                                        ; 0 / 1 ( 0 % )   ;       ;
;     -- S2F AXI                                              ; 0 / 1 ( 0 % )   ;       ;
;     -- F2S AXI                                              ; 0 / 1 ( 0 % )   ;       ;
;     -- AXI Lightweight                                      ; 0 / 1 ( 0 % )   ;       ;
;     -- SDRAM                                                ; 0 / 1 ( 0 % )   ;       ;
;     -- Interrupts                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- JTAG                                                 ; 0 / 1 ( 0 % )   ;       ;
;     -- Loan I/O                                             ; 0 / 1 ( 0 % )   ;       ;
;     -- MPU event standby                                    ; 0 / 1 ( 0 % )   ;       ;
;     -- MPU general purpose                                  ; 0 / 1 ( 0 % )   ;       ;
;     -- STM event                                            ; 0 / 1 ( 0 % )   ;       ;
;     -- TPIU trace                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- DMA                                                  ; 0 / 1 ( 0 % )   ;       ;
;     -- CAN                                                  ; 0 / 2 ( 0 % )   ;       ;
;     -- EMAC                                                 ; 0 / 2 ( 0 % )   ;       ;
;     -- I2C                                                  ; 0 / 4 ( 0 % )   ;       ;
;     -- NAND Flash                                           ; 0 / 1 ( 0 % )   ;       ;
;     -- QSPI                                                 ; 0 / 1 ( 0 % )   ;       ;
;     -- SDMMC                                                ; 0 / 1 ( 0 % )   ;       ;
;     -- SPI Master                                           ; 0 / 2 ( 0 % )   ;       ;
;     -- SPI Slave                                            ; 0 / 2 ( 0 % )   ;       ;
;     -- UART                                                 ; 0 / 2 ( 0 % )   ;       ;
;     -- USB                                                  ; 0 / 2 ( 0 % )   ;       ;
;                                                             ;                 ;       ;
; Global signals                                              ; 1               ;       ;
; M10K blocks                                                 ; 0 / 397         ; 0 %   ;
; Total MLAB memory bits                                      ; 0               ;       ;
; Total block memory bits                                     ; 0 / 4,065,280   ; 0 %   ;
; Total block memory implementation bits                      ; 0 / 4,065,280   ; 0 %   ;
; Total DSP Blocks                                            ; 87 / 87         ; 100 % ;
; Fractional PLLs                                             ; 0 / 6           ; 0 %   ;
; Global clocks                                               ; 1 / 16          ; 6 %   ;
; Quadrant clocks                                             ; 0 / 66          ; 0 %   ;
; Horizontal periphery clocks and Vertical periphery clocks   ; 0 / 18          ; 0 %   ;
; SERDES Transmitters                                         ; 0 / 100         ; 0 %   ;
; SERDES Receivers                                            ; 0 / 100         ; 0 %   ;
; JTAGs                                                       ; 0 / 1           ; 0 %   ;
; ASMI blocks                                                 ; 0 / 1           ; 0 %   ;
; CRC blocks                                                  ; 0 / 1           ; 0 %   ;
; Remote update blocks                                        ; 0 / 1           ; 0 %   ;
; Impedance control blocks                                    ; 0 / 4           ; 0 %   ;
; Hard Memory Controllers                                     ; 0 / 2           ; 0 %   ;
; Average interconnect usage (total/H/V)                      ; 5% / 4% / 7%    ;       ;
; Peak interconnect usage (total/H/V)                         ; 30% / 26% / 42% ;       ;
; Maximum fan-out                                             ; 746             ;       ;
; Highest non-global fan-out                                  ; 746             ;       ;
; Total fan-out                                               ; 21702           ;       ;
; Average fan-out                                             ; 3.62            ;       ;
+-------------------------------------------------------------+-----------------+-------+


+----------------------------------------------------------------------------------------------------------------------+
; Fitter Partition Statistics                                                                                          ;
+-------------------------------------------------------------+-----------------------+--------------------------------+
; Statistic                                                   ; Top                   ; hard_block:auto_generated_inst ;
+-------------------------------------------------------------+-----------------------+--------------------------------+
; Logic utilization (ALMs needed / total ALMs on device)      ; 3199 / 32070 ( 10 % ) ; 0 / 32070 ( 0 % )              ;
; ALMs needed [=A-B+C]                                        ; 3199                  ; 0                              ;
;     [A] ALMs used in final placement [=a+b+c+d]             ; 2953 / 32070 ( 9 % )  ; 0 / 32070 ( 0 % )              ;
;         [a] ALMs used for LUT logic and registers           ; 135                   ; 0                              ;
;         [b] ALMs used for LUT logic                         ; 2798                  ; 0                              ;
;         [c] ALMs used for registers                         ; 20                    ; 0                              ;
;         [d] ALMs used for memory (up to half of total ALMs) ; 0                     ; 0                              ;
;     [B] Estimate of ALMs recoverable by dense packing       ; 52 / 32070 ( < 1 % )  ; 0 / 32070 ( 0 % )              ;
;     [C] Estimate of ALMs unavailable [=a+b+c+d]             ; 298 / 32070 ( < 1 % ) ; 0 / 32070 ( 0 % )              ;
;         [a] Due to location constrained logic               ; 51                    ; 0                              ;
;         [b] Due to LAB-wide signal conflicts                ; 0                     ; 0                              ;
;         [c] Due to LAB input limits                         ; 247                   ; 0                              ;
;         [d] Due to virtual I/Os                             ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Difficulty packing design                                   ; Low                   ; Low                            ;
;                                                             ;                       ;                                ;
; Total LABs:  partially or completely used                   ; 454 / 3207 ( 14 % )   ; 0 / 3207 ( 0 % )               ;
;     -- Logic LABs                                           ; 454                   ; 0                              ;
;     -- Memory LABs (up to half of total LABs)               ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Combinational ALUT usage for logic                          ; 5500                  ; 0                              ;
;     -- 7 input functions                                    ; 2                     ; 0                              ;
;     -- 6 input functions                                    ; 177                   ; 0                              ;
;     -- 5 input functions                                    ; 356                   ; 0                              ;
;     -- 4 input functions                                    ; 690                   ; 0                              ;
;     -- <=3 input functions                                  ; 4275                  ; 0                              ;
; Combinational ALUT usage for route-throughs                 ; 6                     ; 0                              ;
; Memory ALUT usage                                           ; 0                     ; 0                              ;
;     -- 64-address deep                                      ; 0                     ; 0                              ;
;     -- 32-address deep                                      ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Dedicated logic registers                                   ; 0                     ; 0                              ;
;     -- By type:                                             ;                       ;                                ;
;         -- Primary logic registers                          ; 309 / 64140 ( < 1 % ) ; 0 / 64140 ( 0 % )              ;
;         -- Secondary logic registers                        ; 20 / 64140 ( < 1 % )  ; 0 / 64140 ( 0 % )              ;
;     -- By function:                                         ;                       ;                                ;
;         -- Design implementation registers                  ; 309                   ; 0                              ;
;         -- Routing optimization registers                   ; 20                    ; 0                              ;
;                                                             ;                       ;                                ;
;                                                             ;                       ;                                ;
; Virtual pins                                                ; 0                     ; 0                              ;
; I/O pins                                                    ; 32                    ; 0                              ;
; I/O registers                                               ; 0                     ; 0                              ;
; Total block memory bits                                     ; 0                     ; 0                              ;
; Total block memory implementation bits                      ; 0                     ; 0                              ;
; DSP block                                                   ; 87 / 87 ( 100 % )     ; 0 / 87 ( 0 % )                 ;
; Clock enable block                                          ; 1 / 116 ( < 1 % )     ; 0 / 116 ( 0 % )                ;
;                                                             ;                       ;                                ;
; Connections                                                 ;                       ;                                ;
;     -- Input Connections                                    ; 0                     ; 0                              ;
;     -- Registered Input Connections                         ; 0                     ; 0                              ;
;     -- Output Connections                                   ; 0                     ; 0                              ;
;     -- Registered Output Connections                        ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Internal Connections                                        ;                       ;                                ;
;     -- Total Connections                                    ; 27956                 ; 0                              ;
;     -- Registered Connections                               ; 3105                  ; 0                              ;
;                                                             ;                       ;                                ;
; External Connections                                        ;                       ;                                ;
;     -- Top                                                  ; 0                     ; 0                              ;
;     -- hard_block:auto_generated_inst                       ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Partition Interface                                         ;                       ;                                ;
;     -- Input Ports                                          ; 5                     ; 0                              ;
;     -- Output Ports                                         ; 27                    ; 0                              ;
;     -- Bidir Ports                                          ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Registered Ports                                            ;                       ;                                ;
;     -- Registered Input Ports                               ; 0                     ; 0                              ;
;     -- Registered Output Ports                              ; 0                     ; 0                              ;
;                                                             ;                       ;                                ;
; Port Connectivity                                           ;                       ;                                ;
;     -- Input Ports driven by GND                            ; 0                     ; 0                              ;
;     -- Output Ports driven by GND                           ; 0                     ; 0                              ;
;     -- Input Ports driven by VCC                            ; 0                     ; 0                              ;
;     -- Output Ports driven by VCC                           ; 0                     ; 0                              ;
;     -- Input Ports with no Source                           ; 0                     ; 0                              ;
;     -- Output Ports with no Source                          ; 0                     ; 0                              ;
;     -- Input Ports with no Fanout                           ; 0                     ; 0                              ;
;     -- Output Ports with no Fanout                          ; 0                     ; 0                              ;
+-------------------------------------------------------------+-----------------------+--------------------------------+


+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Input Pins                                                                                                                                                                                                                                                        ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; Name            ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Combinational Fan-Out ; Registered Fan-Out ; Global ; PCI I/O Enabled ; Bus Hold ; Weak Pull Up ; I/O Standard ; Termination ; Termination Control Block ; Location assigned by ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+
; clk             ; AF14  ; 3B       ; 32           ; 0            ; 0            ; 329                   ; 0                  ; yes    ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_vd_button ; W15   ; 3B       ; 40           ; 0            ; 0            ; 5                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team1_vu_button ; Y16   ; 3B       ; 40           ; 0            ; 17           ; 5                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_vd_button ; AA14  ; 3B       ; 36           ; 0            ; 0            ; 5                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
; team2_vu_button ; AA15  ; 3B       ; 36           ; 0            ; 17           ; 5                     ; 0                  ; no     ; no              ; no       ; Off          ; 2.5 V        ; Off         ; --                        ; User                 ;
+-----------------+-------+----------+--------------+--------------+--------------+-----------------------+--------------------+--------+-----------------+----------+--------------+--------------+-------------+---------------------------+----------------------+


+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Output Pins                                                                                                                                                                                                                                                                                                                                                                                                                                                          ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; Name     ; Pin # ; I/O Bank ; X coordinate ; Y coordinate ; Z coordinate ; Output Register ; Slew Rate ; PCI I/O Enabled ; Open Drain ; TRI Primitive ; Bus Hold ; Weak Pull Up ; I/O Standard ; Current Strength ; Termination                       ; Termination Control Block ; Output Buffer Pre-emphasis ; Voltage Output Differential ; Output Buffer Delay ; Output Buffer Delay Control ; Location assigned by ; Output Enable Source ; Output Enable Group ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+
; blue[0]  ; B13   ; 8A       ; 40           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[1]  ; G13   ; 8A       ; 28           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[2]  ; H13   ; 8A       ; 20           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[3]  ; F14   ; 8A       ; 36           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[4]  ; H14   ; 8A       ; 28           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[5]  ; F15   ; 8A       ; 36           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[6]  ; G15   ; 8A       ; 40           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; blue[7]  ; J14   ; 8A       ; 32           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[0] ; J9    ; 8A       ; 4            ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[1] ; J10   ; 8A       ; 4            ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[2] ; H12   ; 8A       ; 20           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[3] ; G10   ; 8A       ; 6            ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[4] ; G11   ; 8A       ; 10           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[5] ; G12   ; 8A       ; 10           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[6] ; F11   ; 8A       ; 18           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; green[7] ; E11   ; 8A       ; 18           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; hor_sync ; B11   ; 8A       ; 36           ; 81           ; 51           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[0]   ; A13   ; 8A       ; 40           ; 81           ; 51           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[1]   ; C13   ; 8A       ; 38           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[2]   ; E13   ; 8A       ; 26           ; 81           ; 57           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[3]   ; B12   ; 8A       ; 38           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[4]   ; C12   ; 8A       ; 36           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[5]   ; D12   ; 8A       ; 22           ; 81           ; 17           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[6]   ; E12   ; 8A       ; 22           ; 81           ; 0            ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; red[7]   ; F13   ; 8A       ; 26           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; ver_sync ; D11   ; 8A       ; 34           ; 81           ; 40           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
; vga_clk  ; A11   ; 8A       ; 38           ; 81           ; 34           ; no              ; 1         ; no              ; no         ; no            ; no       ; Off          ; 2.5 V        ; Default          ; Series 50 Ohm without Calibration ; --                        ; no                         ; no                          ; 0                   ; Off                         ; User                 ; -                    ; -                   ;
+----------+-------+----------+--------------+--------------+--------------+-----------------+-----------+-----------------+------------+---------------+----------+--------------+--------------+------------------+-----------------------------------+---------------------------+----------------------------+-----------------------------+---------------------+-----------------------------+----------------------+----------------------+---------------------+


+----------------------------------------------------------------------------+
; I/O Bank Usage                                                             ;
+----------+------------------+---------------+--------------+---------------+
; I/O Bank ; Usage            ; VCCIO Voltage ; VREF Voltage ; VCCPD Voltage ;
+----------+------------------+---------------+--------------+---------------+
; B2L      ; 0 / 0 ( -- )     ; --            ; --           ; --            ;
; B1L      ; 0 / 0 ( -- )     ; --            ; --           ; --            ;
; 3A       ; 0 / 32 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 3B       ; 5 / 48 ( 10 % )  ; 2.5V          ; --           ; 2.5V          ;
; 4A       ; 0 / 80 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 5A       ; 0 / 32 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 5B       ; 0 / 16 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 6B       ; 0 / 45 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 6A       ; 0 / 57 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7A       ; 0 / 19 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7B       ; 0 / 22 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7C       ; 0 / 12 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 7D       ; 0 / 14 ( 0 % )   ; 2.5V          ; --           ; 2.5V          ;
; 8A       ; 27 / 80 ( 34 % ) ; 2.5V          ; --           ; 2.5V          ;
+----------+------------------+---------------+--------------+---------------+


+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; All Package Pins                                                                                                                                                            ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; Location ; Pad Number ; I/O Bank ; Pin Name/Usage                  ; Dir.   ; I/O Standard ; Voltage             ; I/O Type     ; User Assignment ; Bus Hold ; Weak Pull Up ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
; A2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A3       ; 493        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A4       ; 491        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A5       ; 489        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A6       ; 487        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A7       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; A8       ; 473        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A9       ; 471        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A10      ; 465        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A11      ; 463        ; 8A       ; vga_clk                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; A12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A13      ; 461        ; 8A       ; red[0]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; A14      ; 455        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A15      ; 447        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A16      ; 439        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A18      ; 425        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A19      ; 423        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A20      ; 415        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A21      ; 411        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A23      ; 395        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A24      ; 391        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A25      ; 389        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; A26      ; 382        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; A27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; A28      ; 380        ; 7A       ; ^HPS_TRST                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; A29      ; 378        ; 7A       ; ^HPS_TMS                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AA1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA5      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; AA6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA7      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AA8      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA9      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA10     ;            ; 3A       ; VCCPD3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA11     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA12     ; 74         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA13     ; 90         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA14     ; 122        ; 3B       ; team2_vd_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AA15     ; 120        ; 3B       ; team2_vu_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AA16     ; 146        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA17     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA18     ; 168        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA19     ; 176        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA20     ; 200        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA21     ; 210        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AA22     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AA23     ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; AA24     ; 228        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA25     ; 224        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA26     ; 252        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA27     ;            ; 5B       ; VCCIO5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AA28     ; 251        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AA29     ;            ; 5B       ; VREFB5BN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AA30     ; 250        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB3      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AB4      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AB5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB6      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB7      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB8      ; 43         ; 3A       ; ^nCSO, DATA4                    ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AB9      ; 42         ; 3A       ; #TDO                            ; output ;              ;                     ; --           ;                 ; --       ; --           ;
; AB10     ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; AB11     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB12     ; 72         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB13     ; 88         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB14     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB15     ; 106        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB16     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB17     ; 144        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB18     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB19     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB20     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB21     ; 208        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AB22     ; 225        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB23     ; 227        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB24     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AB25     ; 230        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB26     ; 226        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB27     ; 254        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB28     ; 249        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AB29     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AB30     ; 248        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC5      ; 46         ; 3A       ; #TCK                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; AC6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC7      ; 45         ; 3A       ; ^AS_DATA3, DATA3                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AC8      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC9      ; 58         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC10     ;            ; 3A       ; VCCPD3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC11     ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC12     ; 82         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC13     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC14     ; 104        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC15     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC16     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC17     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC18     ; 162        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC19     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC20     ; 186        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC21     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AC22     ; 207        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC23     ; 205        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AC24     ;            ; 5A       ; VREFB5AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AC25     ; 215        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC26     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AC27     ; 242        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC28     ; 245        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC29     ; 247        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AC30     ; 259        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD3      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD4      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD6      ;            ; 3A       ; VREFB3AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AD7      ; 62         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD8      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD9      ; 55         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD10     ; 56         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD11     ; 54         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD12     ; 80         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD13     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD14     ; 98         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD15     ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; AD16     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD17     ; 160        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD18     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD19     ; 184        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD20     ; 199        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD21     ; 197        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD22     ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD23     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AD24     ; 211        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AD25     ; 213        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD26     ; 240        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD27     ; 222        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD28     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AD29     ; 255        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AD30     ; 257        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE4      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE5      ; 49         ; 3A       ; ^AS_DATA1, DATA1                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE6      ; 51         ; 3A       ; ^AS_DATA0, ASDO, DATA0          ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE7      ; 60         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE8      ; 47         ; 3A       ; ^AS_DATA2, DATA2                ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; AE9      ; 53         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE10     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE11     ; 59         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE12     ; 52         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE13     ; 95         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE14     ; 96         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE15     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE16     ; 139        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE17     ; 135        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE18     ; 167        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE19     ; 165        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE20     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AE21     ;            ; --       ; VCCPD3B4A                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE22     ; 191        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE23     ; 189        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE24     ; 209        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AE25     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AE26     ; 220        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE27     ; 229        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE28     ; 231        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE29     ; 253        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AE30     ;            ; 5B       ; VCCIO5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF2      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF4      ; 66         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF5      ; 64         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF6      ; 75         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF7      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF8      ; 70         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF9      ; 67         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF10     ; 57         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF11     ; 87         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF12     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF13     ; 93         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF14     ; 114        ; 3B       ; clk                             ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; AF15     ; 112        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF16     ; 137        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF17     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF18     ; 133        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF19     ; 159        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF20     ; 175        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF21     ; 173        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF22     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AF23     ; 183        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF24     ; 181        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF25     ; 206        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF26     ; 204        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AF27     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AF28     ; 235        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AF29     ; 237        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AF30     ; 239        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG1      ; 71         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG2      ; 83         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG3      ; 63         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG4      ;            ; 3A       ; VCCIO3A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG5      ; 78         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG6      ; 73         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG7      ; 68         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG8      ; 65         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG9      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG10     ; 86         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG11     ; 85         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG12     ; 103        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG13     ; 101        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG14     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG15     ; 127        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG16     ; 134        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG17     ; 132        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG18     ; 150        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG19     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG20     ; 157        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG21     ; 143        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG22     ; 166        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG23     ; 163        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG24     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AG25     ; 190        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG26     ; 203        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AG27     ; 212        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG28     ; 233        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AG29     ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AG30     ; 243        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH1      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH2      ; 69         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH3      ; 81         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH4      ; 61         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH5      ; 76         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH6      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH7      ; 115        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH8      ; 113        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH9      ; 84         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH10     ; 118        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH11     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH12     ; 126        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH13     ; 111        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH14     ; 109        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH15     ; 125        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH16     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AH17     ; 147        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH18     ; 145        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH19     ; 148        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH20     ; 141        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH21     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AH22     ; 164        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH23     ; 174        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH24     ; 161        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH25     ; 188        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH26     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AH27     ; 201        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AH28     ; 214        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH29     ; 218        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AH30     ; 241        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AJ1      ; 79         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ2      ; 77         ; 3A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ3      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ4      ; 94         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ5      ; 99         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ6      ; 102        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ7      ; 100        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ8      ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ9      ; 110        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ10     ; 116        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ11     ; 119        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ12     ; 124        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ13     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ14     ; 131        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ15     ;            ; 3B       ; VREFB3BN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ16     ; 142        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ17     ; 151        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ18     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ19     ; 155        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ20     ; 158        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ21     ; 156        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ22     ; 172        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ23     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AJ24     ; 182        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ25     ; 180        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ26     ; 187        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ27     ; 195        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AJ28     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AJ29     ; 216        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; AJ30     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK2      ; 91         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK3      ; 89         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK4      ; 92         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK5      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK6      ; 97         ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK7      ; 107        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK8      ; 105        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK9      ; 108        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK10     ;            ; 3B       ; VCCIO3B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AK11     ; 117        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK12     ; 123        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK13     ; 121        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK14     ; 129        ; 3B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK15     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK16     ; 140        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK17     ;            ; 4A       ; VREFB4AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; AK18     ; 149        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK19     ; 153        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK20     ;            ; 4A       ; VCCIO4A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; AK21     ; 171        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK22     ; 169        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK23     ; 179        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK24     ; 177        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK25     ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; AK26     ; 185        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK27     ; 193        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK28     ; 198        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; AK29     ; 196        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B1       ; 509        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B2       ; 507        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B3       ; 513        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B4       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; B5       ; 512        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B6       ; 510        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B7       ; 477        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B8       ; 481        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B10      ;            ; 8A       ; VREFB8AN0                       ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; B11      ; 469        ; 8A       ; hor_sync                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B12      ; 464        ; 8A       ; red[3]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B13      ; 459        ; 8A       ; blue[0]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; B14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B15      ; 451        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B16      ; 441        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B17      ; 431        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B18      ; 418        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B20      ; 417        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B21      ; 413        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B22      ; 399        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B23      ; 397        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B25      ; 387        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B26      ; 386        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; B27      ; 381        ; 7A       ; ^HPS_TDI                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; B28      ; 376        ; 7A       ; ^HPS_TDO                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; B29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; B30      ; 365        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C2       ; 517        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C3       ; 511        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C4       ; 501        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C5       ; 497        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C7       ; 475        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C8       ; 479        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C9       ; 485        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C10      ; 483        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C11      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; C12      ; 467        ; 8A       ; red[4]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; C13      ; 462        ; 8A       ; red[1]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; C14      ; 448        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C15      ; 453        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C17      ; 433        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C18      ; 435        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C19      ; 427        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C20      ; 421        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C21      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C22      ; 396        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C23      ; 401        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C24      ; 393        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C25      ; 388        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; C26      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; C27      ; 374        ; 7A       ; ^HPS_nRST                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; C28      ; 369        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C29      ; 367        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; C30      ; 363        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; D1       ; 529        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D2       ; 515        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D4       ; 521        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D5       ; 499        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D6       ; 495        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D7       ; 505        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D8       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D9       ; 480        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D10      ; 472        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D11      ; 470        ; 8A       ; ver_sync                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; D12      ; 496        ; 8A       ; red[5]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; D13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D14      ; 446        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D15      ; 449        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D16      ; 445        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D17      ; 440        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D18      ;            ; 7C       ; VCCIO7C_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D19      ; 426        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D20      ; 420        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D21      ; 419        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D22      ; 402        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D23      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; D24      ; 404        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; D25      ; 384        ; 7A       ; ^HPS_CLK1                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; D26      ; 373        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; D27      ; 371        ; 6A       ; HPS_RZQ_0                       ;        ;              ;                     ; --           ;                 ; no       ; On           ;
; D28      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; D29      ; 361        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; D30      ; 359        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E1       ; 527        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E2       ; 525        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E3       ; 523        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E4       ; 519        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E5       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E6       ; 533        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E7       ; 531        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E8       ; 503        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E9       ; 478        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; E11      ; 504        ; 8A       ; green[7]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E12      ; 494        ; 8A       ; red[6]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E13      ; 488        ; 8A       ; red[2]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; E14      ; 454        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E15      ;            ; 7D       ; VCCIO7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E16      ; 443        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E17      ; 438        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E18      ; 437        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E19      ; 424        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E20      ;            ; 7B       ; VCCIO7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; E21      ; 412        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E22      ;            ; --       ; VREFB7A7B7C7DN0_HPS             ; power  ;              ;                     ; --           ;                 ; --       ; --           ;
; E23      ; 394        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E24      ; 403        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; E25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; E26      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; E27      ; 357        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E28      ; 351        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E29      ; 353        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; E30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F1       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F3       ; 539        ; 9A       ; ^CONF_DONE                      ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F4       ; 541        ; 9A       ; ^nSTATUS                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F6       ; 537        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F8       ; 536        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F9       ; 534        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F10      ; 528        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F11      ; 502        ; 8A       ; green[6]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F12      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; F13      ; 486        ; 8A       ; red[7]                          ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F14      ; 468        ; 8A       ; blue[3]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F15      ; 466        ; 8A       ; blue[5]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; F16      ; 442        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F18      ; 430        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F19      ; 410        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F20      ; 407        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F21      ; 409        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; F22      ;            ; 7A       ; VCCIO7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; F23      ; 375        ; 7A       ; ^HPS_nPOR                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F24      ; 383        ; 7A       ; ^HPS_PORSEL                     ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F25      ; 385        ; 7A       ; ^HPS_CLK2                       ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; F26      ; 341        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; F28      ; 345        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F29      ; 349        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; F30      ; 347        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G1       ;            ;          ; GND                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G2       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G5       ; 542        ; 9A       ; ^nCE                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G6       ; 543        ; 9A       ; ^MSEL2                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G7       ; 535        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G8       ; 492        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G9       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G10      ; 526        ; 8A       ; green[3]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G11      ; 520        ; 8A       ; green[4]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G12      ; 518        ; 8A       ; green[5]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G13      ; 484        ; 8A       ; blue[1]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G14      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G15      ; 460        ; 8A       ; blue[6]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; G16      ; 444        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G17      ; 436        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G18      ; 432        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G19      ;            ; 7B       ; VCCIO7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G20      ; 416        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G21      ; 392        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G22      ; 400        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; G23      ; 377        ; 7A       ; ^VCCRSTCLK_HPS                  ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; G24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; G25      ; 370        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G26      ; 362        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G27      ; 339        ; 6A       ; GND+                            ;        ;              ;                     ; Row I/O      ;                 ; --       ; --           ;
; G28      ; 335        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; G29      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; G30      ; 343        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H6       ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H7       ; 508        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H8       ; 490        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H9       ;            ; --       ; VCCBAT                          ; power  ;              ; 1.2V                ; --           ;                 ; --       ; --           ;
; H10      ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; H12      ; 500        ; 8A       ; green[2]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H13      ; 498        ; 8A       ; blue[2]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H14      ; 482        ; 8A       ; blue[4]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; H15      ; 458        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H16      ;            ; 7D       ; VCCIO7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H17      ; 434        ; 7C       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H18      ; 422        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H19      ; 406        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H20      ; 398        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H21      ;            ; 7A       ; VCCIO7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H22      ; 379        ; 7A       ; ^HPS_TCK                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; H23      ; 390        ; 7A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; H24      ; 364        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H25      ; 368        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H26      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; H27      ; 360        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H28      ; 333        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H29      ; 331        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; H30      ; 337        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J5       ; 545        ; 9A       ; ^nCONFIG                        ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J6       ; 547        ; 9A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J7       ; 506        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J9       ; 532        ; 8A       ; green[0]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J10      ; 530        ; 8A       ; green[1]                        ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J11      ;            ; --       ; VCCPGM                          ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; J12      ; 516        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J13      ;            ; 8A       ; VCCIO8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J14      ; 476        ; 8A       ; blue[7]                         ; output ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; J15      ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J16      ;            ; --       ; VCC_AUX                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J17      ;            ; 7C       ; VCCPD7C_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J19      ; 408        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; J20      ;            ; --       ; VCCRSTCLK_HPS                   ; power  ;              ; 1.8V/2.5V/3.0V/3.3V ; --           ;                 ; --       ; --           ;
; J21      ;            ; --       ; VCC_AUX_SHARED                  ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; J22      ; 372        ; 7A       ; ^GND                            ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; J23      ; 354        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J24      ; 352        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J25      ; 344        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J26      ; 323        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J27      ; 346        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J28      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; J29      ; 327        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; J30      ; 329        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K6       ; 540        ; 9A       ; ^MSEL1                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; K7       ; 522        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K8       ; 524        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K9       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K11      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K12      ; 514        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K13      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K14      ; 474        ; 8A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K16      ;            ; 7D       ; VCCPD7D_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K17      ; 414        ; 7B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; K18      ;            ; 7B       ; VCCPD7B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K19      ;            ; 7A       ; VCCPD7A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K21      ; 366        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K22      ; 336        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K23      ; 338        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K24      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; K25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; K26      ; 322        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K27      ; 319        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K28      ; 325        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K29      ; 321        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; K30      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L7       ; 544        ; 9A       ; ^MSEL3                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L8       ; 538        ; 9A       ; ^MSEL0                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L9       ; 546        ; 9A       ; ^MSEL4                          ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; L10      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L12      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L14      ;            ; 8A       ; VCCPD8A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L18      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L20      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; L21      ;            ; --       ; VCCPLL_HPS                      ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; L23      ; 350        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L24      ; 328        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L25      ; 330        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L26      ; 320        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L27      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; L28      ; 313        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L29      ; 315        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; L30      ; 317        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; M4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; M5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M9       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M15      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; M16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M17      ; 450        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; M18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M19      ; 334        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M21      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; M22      ; 308        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M23      ; 348        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M24      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; M25      ; 324        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M26      ; 314        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M27      ; 312        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M28      ; 309        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; M29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; M30      ; 311        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N7       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N16      ; 452        ; 7D       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; N17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N18      ; 332        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N20      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; N21      ;            ; 6A       ; VCCIO6A_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N22      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; N23      ; 310        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N24      ; 318        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N25      ; 316        ; 6A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N26      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; N27      ; 297        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N28      ; 303        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N29      ; 305        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; N30      ; 307        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; P4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; P5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P6       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P15      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P17      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P19      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; P20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; P21      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P22      ; 294        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P23      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P24      ; 290        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P25      ; 288        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P26      ; 298        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P27      ; 296        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P28      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; P29      ; 299        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; P30      ; 301        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R7       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; R17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; R18      ; 302        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R19      ; 300        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R20      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R21      ; 286        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R22      ; 284        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R23      ;            ; --       ; VCCPD6A6B_HPS                   ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R24      ; 272        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R25      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; R26      ; 280        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R27      ; 282        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R28      ; 293        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R29      ; 295        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; R30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; T4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; T5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T16      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T17      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T19      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; T20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T21      ; 278        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T22      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; T23      ; 270        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T24      ; 268        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T25      ; 266        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T26      ; 304        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T27      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; T28      ; 287        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T29      ; 289        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; T30      ; 291        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U7       ; 50         ; 3A       ; ^DCLK                           ;        ;              ;                     ; Weak Pull Up ;                 ; --       ; On           ;
; U8       ; 48         ; 3A       ; #TDI                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; U9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U16      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U17      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U18      ;            ; --       ; VCC_HPS                         ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U19      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; U20      ; 276        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U21      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; U22      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U23      ;            ; 5B       ; VCCPD5B                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; U24      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U25      ; 264        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U26      ; 306        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U27      ; 273        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U28      ; 285        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; U29      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; U30      ; 283        ; 6B       ; GND+                            ;        ;              ;                     ; Row I/O      ;                 ; --       ; --           ;
; V1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; V4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; V5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V6       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V8       ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V9       ; 44         ; 3A       ; #TMS                            ; input  ;              ;                     ; --           ;                 ; --       ; --           ;
; V10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V15      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; V16      ; 138        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V17      ; 154        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V18      ; 194        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; V19      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V20      ; 292        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V21      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; V22      ;            ; 5A       ; VCCPD5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V23      ; 236        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V24      ;            ; 5A       ; VCCPD5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V25      ; 246        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V26      ;            ; 6B       ; VCCIO6B_HPS                     ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; V27      ; 265        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V28      ; 271        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V29      ; 275        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; V30      ; 281        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W3       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W4       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W5       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W6       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W9       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W10      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W11      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W12      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W13      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W14      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; W15      ; 130        ; 3B       ; team1_vd_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; W16      ; 136        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W17      ; 152        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W18      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W19      ; 192        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; W20      ; 217        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W21      ; 221        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W22      ; 223        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W23      ;            ; 5A       ; VCCIO5A                         ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; W24      ; 238        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W25      ; 244        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W26      ; 274        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W27      ; 261        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W28      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; W29      ; 279        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; W30      ; 277        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y1       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y2       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y3       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; Y4       ;            ;          ; DNU                             ;        ;              ;                     ; --           ;                 ; --       ; --           ;
; Y5       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y6       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y7       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y8       ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y9       ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y10      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y11      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y12      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y13      ;            ; --       ; VCC                             ; power  ;              ; 1.1V                ; --           ;                 ; --       ; --           ;
; Y14      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y15      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y16      ; 128        ; 3B       ; team1_vu_button                 ; input  ; 2.5 V        ;                     ; Column I/O   ; Y               ; no       ; Off          ;
; Y17      ; 170        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y18      ; 178        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y19      ; 202        ; 4A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Column I/O   ;                 ; no       ; On           ;
; Y20      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y21      ; 219        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y22      ;            ; --       ; VCCA_FPLL                       ; power  ;              ; 2.5V                ; --           ;                 ; --       ; --           ;
; Y23      ; 232        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y24      ; 234        ; 5A       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y25      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
; Y26      ; 256        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y27      ; 258        ; 5B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y28      ; 269        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y29      ; 263        ; 6B       ; RESERVED_INPUT_WITH_WEAK_PULLUP ;        ;              ;                     ; Row I/O      ;                 ; no       ; On           ;
; Y30      ;            ;          ; GND                             ; gnd    ;              ;                     ; --           ;                 ; --       ; --           ;
+----------+------------+----------+---------------------------------+--------+--------------+---------------------+--------------+-----------------+----------+--------------+
Note: Pin directions (input, output or bidir) are based on device operating in user mode.


+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Fitter Resource Utilization by Entity                                                                                                                                                                                                                                                                                                                                                                                                                         ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------+--------------+
; Compilation Hierarchy Node                   ; ALMs needed [=A-B+C] ; [A] ALMs used in final placement ; [B] Estimate of ALMs recoverable by dense packing ; [C] Estimate of ALMs unavailable ; ALMs used for memory ; Combinational ALUTs ; Dedicated Logic Registers ; I/O Registers ; Block Memory Bits ; M10Ks ; DSP Blocks ; Pins ; Virtual Pins ; Full Hierarchy Name                                                                    ; Library Name ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------+--------------+
; |fakequidditch                               ; 3199.0 (24.0)        ; 2952.5 (24.5)                    ; 51.0 (0.5)                                        ; 297.5 (0.0)                      ; 0.0 (0.0)            ; 5500 (41)           ; 329 (33)                  ; 0 (0)         ; 0                 ; 0     ; 87         ; 32   ; 0            ; |fakequidditch                                                                         ; work         ;
;    |game_controller:game_ctrl|               ; 565.5 (0.0)          ; 572.5 (0.0)                      ; 29.5 (0.0)                                        ; 22.5 (0.0)                       ; 0.0 (0.0)            ; 976 (0)             ; 244 (0)                   ; 0 (0)         ; 0                 ; 0     ; 21         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl                                               ; work         ;
;       |ball_controller_cansu:ball_ctrl|      ; 448.0 (448.0)        ; 438.2 (438.2)                    ; 11.8 (11.8)                                       ; 21.6 (21.6)                      ; 0.0 (0.0)            ; 754 (754)           ; 78 (78)                   ; 0 (0)         ; 0                 ; 0     ; 21         ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ball_controller_cansu:ball_ctrl               ; work         ;
;       |ver_player_controller:team1_ver_ctrl| ; 59.5 (59.5)          ; 68.0 (68.0)                      ; 9.2 (9.2)                                         ; 0.7 (0.7)                        ; 0.0 (0.0)            ; 111 (111)           ; 84 (84)                   ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl          ; work         ;
;       |ver_player_controller:team2_ver_ctrl| ; 58.0 (58.0)          ; 66.3 (66.3)                      ; 8.5 (8.5)                                         ; 0.2 (0.2)                        ; 0.0 (0.0)            ; 111 (111)           ; 82 (82)                   ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl          ; work         ;
;    |vga_controller:vga_cont|                 ; 2609.5 (1043.9)      ; 2355.5 (975.5)                   ; 21.0 (19.0)                                       ; 275.0 (87.4)                     ; 0.0 (0.0)            ; 4483 (1730)         ; 52 (52)                   ; 0 (0)         ; 0                 ; 0     ; 66         ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont                                                 ; work         ;
;       |lpm_mult:Mult0_rtl_6|                 ; 148.6 (0.0)          ; 129.5 (0.0)                      ; 0.0 (0.0)                                         ; 19.1 (0.0)                       ; 0.0 (0.0)            ; 259 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult0_rtl_6                            ; work         ;
;          |mult_ol01:auto_generated|          ; 148.6 (148.6)        ; 129.5 (129.5)                    ; 0.0 (0.0)                                         ; 19.1 (19.1)                      ; 0.0 (0.0)            ; 259 (259)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult0_rtl_6|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult13_rtl_3|                ; 137.3 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 13.2 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult13_rtl_3                           ; work         ;
;          |mult_ol01:auto_generated|          ; 137.3 (137.3)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 13.2 (13.2)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated  ; work         ;
;       |lpm_mult:Mult18_rtl_9|                ; 144.5 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 20.5 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult18_rtl_9                           ; work         ;
;          |mult_ol01:auto_generated|          ; 144.5 (144.5)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 20.5 (20.5)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult18_rtl_9|mult_ol01:auto_generated  ; work         ;
;       |lpm_mult:Mult19_rtl_10|               ; 140.6 (0.0)          ; 124.5 (0.0)                      ; 0.5 (0.0)                                         ; 16.6 (0.0)                       ; 0.0 (0.0)            ; 247 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult19_rtl_10                          ; work         ;
;          |mult_ol01:auto_generated|          ; 140.6 (140.6)        ; 124.5 (124.5)                    ; 0.5 (0.5)                                         ; 16.6 (16.6)                      ; 0.0 (0.0)            ; 247 (247)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult19_rtl_10|mult_ol01:auto_generated ; work         ;
;       |lpm_mult:Mult1_rtl_7|                 ; 147.3 (0.0)          ; 129.5 (0.0)                      ; 0.0 (0.0)                                         ; 17.8 (0.0)                       ; 0.0 (0.0)            ; 259 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult1_rtl_7                            ; work         ;
;          |mult_ol01:auto_generated|          ; 147.3 (147.3)        ; 129.5 (129.5)                    ; 0.0 (0.0)                                         ; 17.8 (17.8)                      ; 0.0 (0.0)            ; 259 (259)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult1_rtl_7|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult2_rtl_4|                 ; 140.9 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 16.9 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult2_rtl_4                            ; work         ;
;          |mult_ol01:auto_generated|          ; 140.9 (140.9)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 16.9 (16.9)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult32_rtl_8|                ; 135.4 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 11.4 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult32_rtl_8                           ; work         ;
;          |mult_ol01:auto_generated|          ; 135.4 (135.4)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 11.4 (11.4)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated  ; work         ;
;       |lpm_mult:Mult3_rtl_5|                 ; 141.7 (0.0)          ; 124.5 (0.0)                      ; 1.0 (0.0)                                         ; 18.2 (0.0)                       ; 0.0 (0.0)            ; 247 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult3_rtl_5                            ; work         ;
;          |mult_ol01:auto_generated|          ; 141.7 (141.7)        ; 124.5 (124.5)                    ; 1.0 (1.0)                                         ; 18.2 (18.2)                      ; 0.0 (0.0)            ; 247 (247)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult4_rtl_0|                 ; 149.0 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 25.0 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult4_rtl_0                            ; work         ;
;          |mult_ol01:auto_generated|          ; 149.0 (149.0)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 25.0 (25.0)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult5_rtl_1|                 ; 138.5 (0.0)          ; 124.0 (0.0)                      ; 0.0 (0.0)                                         ; 14.5 (0.0)                       ; 0.0 (0.0)            ; 248 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult5_rtl_1                            ; work         ;
;          |mult_ol01:auto_generated|          ; 138.5 (138.5)        ; 124.0 (124.0)                    ; 0.0 (0.0)                                         ; 14.5 (14.5)                      ; 0.0 (0.0)            ; 248 (248)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated   ; work         ;
;       |lpm_mult:Mult9_rtl_2|                 ; 141.8 (0.0)          ; 128.0 (0.0)                      ; 0.5 (0.0)                                         ; 14.3 (0.0)                       ; 0.0 (0.0)            ; 253 (0)             ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult9_rtl_2                            ; work         ;
;          |mult_ol01:auto_generated|          ; 141.8 (141.8)        ; 128.0 (128.0)                    ; 0.5 (0.5)                                         ; 14.3 (14.3)                      ; 0.0 (0.0)            ; 253 (253)           ; 0 (0)                     ; 0 (0)         ; 0                 ; 0     ; 0          ; 0    ; 0            ; |fakequidditch|vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated   ; work         ;
+----------------------------------------------+----------------------+----------------------------------+---------------------------------------------------+----------------------------------+----------------------+---------------------+---------------------------+---------------+-------------------+-------+------------+------+--------------+----------------------------------------------------------------------------------------+--------------+
Note: For table entries with two numbers listed, the numbers in parentheses indicate the number of resources of the given type used by the specific entity alone. The numbers listed outside of parentheses indicate the total resources of the given type used by the specific entity and all of its sub-entities in the hierarchy.


+--------------------------------------------------------------------------------------------------------------------------------+
; Delay Chain Summary                                                                                                            ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+
; Name            ; Pin Type ; D1 ; D3_0 ; D3_1 ; D4 ; D5   ; D5 OE ; D5 OCT ; T11 (Postamble Gating) ; T11 (Postamble Ungating) ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+
; red[0]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[1]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[2]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[3]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[4]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[5]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[6]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; red[7]          ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[0]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[1]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[2]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[3]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[4]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[5]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[6]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; green[7]        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[0]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[1]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[2]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[3]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[4]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[5]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[6]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; blue[7]         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; hor_sync        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; ver_sync        ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; vga_clk         ; Output   ; -- ; --   ; --   ; -- ; (0)  ; (31)  ; --     ; --                     ; --                       ;
; clk             ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_vu_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team1_vd_button ; Input    ; -- ; --   ; (0)  ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_vu_button ; Input    ; -- ; --   ; (0)  ; -- ; --   ; --    ; --     ; --                     ; --                       ;
; team2_vd_button ; Input    ; -- ; (0)  ; --   ; -- ; --   ; --    ; --     ; --                     ; --                       ;
+-----------------+----------+----+------+------+----+------+-------+--------+------------------------+--------------------------+


+-----------------------------------------------------------------------------------------------------------------+
; Pad To Core Delay Chain Fanout                                                                                  ;
+-----------------------------------------------------------------------------------+-------------------+---------+
; Source Pin / Fanout                                                               ; Pad To Core Index ; Setting ;
+-----------------------------------------------------------------------------------+-------------------+---------+
; clk                                                                               ;                   ;         ;
; team1_vu_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~5          ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~6 ; 0                 ; 0       ;
; team1_vd_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~5          ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always0~0   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~5 ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state~6 ; 1                 ; 0       ;
; team2_vu_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~5          ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always0~0   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~5 ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7   ; 1                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~6 ; 1                 ; 0       ;
; team2_vd_button                                                                   ;                   ;         ;
;      - game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~5          ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always0~0   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6   ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~5 ; 0                 ; 0       ;
;      - game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state~6 ; 0                 ; 0       ;
+-----------------------------------------------------------------------------------+-------------------+---------+


+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Control Signals                                                                                                                                                                                               ;
+--------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+
; Name                                                                           ; Location             ; Fan-Out ; Usage        ; Global ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ;
+--------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+
; Equal0~7                                                                       ; LABCELL_X31_Y74_N15  ; 33      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; clk                                                                            ; PIN_AF14             ; 329     ; Clock        ; yes    ; Global Clock         ; GCLK6            ; --                        ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan0~5          ; LABCELL_X60_Y35_N45  ; 33      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[3]~46 ; MLABCELL_X34_Y38_N57 ; 3       ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4]    ; FF_X34_Y38_N17       ; 26      ; Latch enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state.active         ; FF_X34_Y34_N56       ; 42      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[14]~1     ; MLABCELL_X34_Y38_N45 ; 37      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6       ; LABCELL_X40_Y44_N36  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7       ; LABCELL_X42_Y46_N48  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~9    ; LABCELL_X42_Y44_N51  ; 17      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6       ; MLABCELL_X25_Y42_N36 ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7       ; LABCELL_X23_Y42_N36  ; 32      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]~9    ; LABCELL_X23_Y42_N54  ; 15      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; vga_clk~reg0                                                                   ; FF_X31_Y74_N26       ; 19      ; Clock enable ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|LessThan2~1                                            ; MLABCELL_X34_Y33_N54 ; 17      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|LessThan3~0                                            ; LABCELL_X45_Y25_N18  ; 10      ; Sync. clear  ; no     ; --                   ; --               ; --                        ;
; vga_controller:vga_cont|y[9]~1                                                 ; MLABCELL_X34_Y33_N30 ; 11      ; Clock enable ; no     ; --                   ; --               ; --                        ;
+--------------------------------------------------------------------------------+----------------------+---------+--------------+--------+----------------------+------------------+---------------------------+


+-------------------------------------------------------------------------------------------------+
; Global & Other Fast Signals                                                                     ;
+------+----------+---------+----------------------+------------------+---------------------------+
; Name ; Location ; Fan-Out ; Global Resource Used ; Global Line Name ; Enable Signal Source Name ;
+------+----------+---------+----------------------+------------------+---------------------------+
; clk  ; PIN_AF14 ; 329     ; Global Clock         ; GCLK6            ; --                        ;
+------+----------+---------+----------------------+------------------+---------------------------+


+---------------------------------------------------------------------------------------------------------+
; Non-Global High Fan-Out Signals                                                                         ;
+-----------------------------------------------------------------------------------------------+---------+
; Name                                                                                          ; Fan-Out ;
+-----------------------------------------------------------------------------------------------+---------+
; vga_controller:vga_cont|Add33~33                                                              ; 746     ;
; vga_controller:vga_cont|Add15~9                                                               ; 634     ;
; vga_controller:vga_cont|Add16~33                                                              ; 506     ;
; vga_controller:vga_cont|Add9~33                                                               ; 490     ;
; vga_controller:vga_cont|Add12~5                                                               ; 487     ;
; vga_controller:vga_cont|x[1]                                                                  ; 247     ;
; vga_controller:vga_cont|x[0]                                                                  ; 241     ;
; vga_controller:vga_cont|Add19~17                                                              ; 210     ;
; vga_controller:vga_cont|Add6~1                                                                ; 194     ;
; vga_controller:vga_cont|Add5~17                                                               ; 194     ;
; vga_controller:vga_cont|x[9]~DUPLICATE                                                        ; 154     ;
; vga_controller:vga_cont|y[0]                                                                  ; 141     ;
; vga_controller:vga_cont|x[4]~DUPLICATE                                                        ; 138     ;
; vga_controller:vga_cont|x[2]                                                                  ; 138     ;
; vga_controller:vga_cont|x[6]                                                                  ; 126     ;
; vga_controller:vga_cont|x[5]~DUPLICATE                                                        ; 122     ;
; vga_controller:vga_cont|x[3]~DUPLICATE                                                        ; 117     ;
; vga_controller:vga_cont|Add20~4                                                               ; 112     ;
; vga_controller:vga_cont|Add20~3                                                               ; 105     ;
; vga_controller:vga_cont|x[7]~DUPLICATE                                                        ; 98      ;
; vga_controller:vga_cont|y[1]                                                                  ; 79      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~5                              ; 78      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~5                              ; 78      ;
; vga_controller:vga_cont|Add33~29                                                              ; 72      ;
; vga_controller:vga_cont|Add33~25                                                              ; 72      ;
; vga_controller:vga_cont|Add33~21                                                              ; 72      ;
; vga_controller:vga_cont|Add33~17                                                              ; 72      ;
; vga_controller:vga_cont|Add33~13                                                              ; 72      ;
; vga_controller:vga_cont|Add33~9                                                               ; 72      ;
; vga_controller:vga_cont|Add33~5                                                               ; 72      ;
; vga_controller:vga_cont|Add33~1                                                               ; 72      ;
; vga_controller:vga_cont|x[8]                                                                  ; 67      ;
; vga_controller:vga_cont|x[4]                                                                  ; 62      ;
; vga_controller:vga_cont|Add15~37                                                              ; 58      ;
; vga_controller:vga_cont|Add15~33                                                              ; 58      ;
; vga_controller:vga_cont|Add15~29                                                              ; 58      ;
; vga_controller:vga_cont|Add15~25                                                              ; 58      ;
; vga_controller:vga_cont|Add15~21                                                              ; 58      ;
; vga_controller:vga_cont|Add15~17                                                              ; 58      ;
; vga_controller:vga_cont|Add15~13                                                              ; 58      ;
; vga_controller:vga_cont|Add15~5                                                               ; 58      ;
; vga_controller:vga_cont|Add15~1                                                               ; 58      ;
; vga_controller:vga_cont|Add16~29                                                              ; 56      ;
; vga_controller:vga_cont|Add16~25                                                              ; 56      ;
; vga_controller:vga_cont|Add16~21                                                              ; 56      ;
; vga_controller:vga_cont|Add16~17                                                              ; 56      ;
; vga_controller:vga_cont|Add16~13                                                              ; 56      ;
; vga_controller:vga_cont|Add16~9                                                               ; 56      ;
; vga_controller:vga_cont|Add16~5                                                               ; 56      ;
; vga_controller:vga_cont|Add16~1                                                               ; 56      ;
; vga_controller:vga_cont|Add9~29                                                               ; 54      ;
; vga_controller:vga_cont|Add9~25                                                               ; 54      ;
; vga_controller:vga_cont|Add9~21                                                               ; 54      ;
; vga_controller:vga_cont|Add9~17                                                               ; 54      ;
; vga_controller:vga_cont|Add9~13                                                               ; 54      ;
; vga_controller:vga_cont|Add9~9                                                                ; 54      ;
; vga_controller:vga_cont|Add9~5                                                                ; 54      ;
; vga_controller:vga_cont|Add9~1                                                                ; 54      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~69                            ; 52      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~69                             ; 52      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~61                             ; 52      ;
; vga_controller:vga_cont|x[8]~DUPLICATE                                                        ; 45      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state.active                        ; 42      ;
; vga_controller:vga_cont|Add19~41                                                              ; 40      ;
; vga_controller:vga_cont|Add19~37                                                              ; 40      ;
; vga_controller:vga_cont|Add19~33                                                              ; 40      ;
; vga_controller:vga_cont|Add19~29                                                              ; 40      ;
; vga_controller:vga_cont|Add19~25                                                              ; 40      ;
; vga_controller:vga_cont|Add19~21                                                              ; 40      ;
; vga_controller:vga_cont|Add19~13                                                              ; 40      ;
; vga_controller:vga_cont|Add19~9                                                               ; 40      ;
; vga_controller:vga_cont|Add19~1                                                               ; 40      ;
; vga_controller:vga_cont|Add12~8                                                               ; 38      ;
; vga_controller:vga_cont|Add12~0                                                               ; 38      ;
; vga_controller:vga_cont|Add5~41                                                               ; 38      ;
; vga_controller:vga_cont|Add5~37                                                               ; 38      ;
; vga_controller:vga_cont|Add5~33                                                               ; 38      ;
; vga_controller:vga_cont|Add5~29                                                               ; 38      ;
; vga_controller:vga_cont|Add5~25                                                               ; 38      ;
; vga_controller:vga_cont|Add5~21                                                               ; 38      ;
; vga_controller:vga_cont|Add5~13                                                               ; 38      ;
; vga_controller:vga_cont|Add5~9                                                                ; 38      ;
; vga_controller:vga_cont|Add5~1                                                                ; 38      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[14]~1                    ; 37      ;
; vga_controller:vga_cont|Add19~5                                                               ; 37      ;
; vga_controller:vga_cont|Add3~65                                                               ; 36      ;
; vga_controller:vga_cont|Add3~61                                                               ; 36      ;
; vga_controller:vga_cont|Add3~57                                                               ; 36      ;
; vga_controller:vga_cont|Add3~53                                                               ; 36      ;
; vga_controller:vga_cont|Add3~49                                                               ; 36      ;
; vga_controller:vga_cont|Add3~45                                                               ; 36      ;
; vga_controller:vga_cont|Add3~41                                                               ; 36      ;
; vga_controller:vga_cont|Add3~37                                                               ; 36      ;
; vga_controller:vga_cont|Add3~33                                                               ; 36      ;
; vga_controller:vga_cont|Add3~29                                                               ; 36      ;
; vga_controller:vga_cont|Add3~25                                                               ; 36      ;
; vga_controller:vga_cont|Add2~73                                                               ; 36      ;
; vga_controller:vga_cont|Add2~69                                                               ; 36      ;
; vga_controller:vga_cont|Add2~65                                                               ; 36      ;
; vga_controller:vga_cont|Add2~61                                                               ; 36      ;
; vga_controller:vga_cont|Add2~57                                                               ; 36      ;
; vga_controller:vga_cont|Add2~53                                                               ; 36      ;
; vga_controller:vga_cont|Add2~49                                                               ; 36      ;
; vga_controller:vga_cont|Add2~45                                                               ; 36      ;
; vga_controller:vga_cont|Add2~41                                                               ; 36      ;
; vga_controller:vga_cont|Add2~25                                                               ; 36      ;
; vga_controller:vga_cont|Add2~17                                                               ; 36      ;
; vga_controller:vga_cont|Add3~13                                                               ; 36      ;
; vga_controller:vga_cont|Add2~13                                                               ; 36      ;
; vga_controller:vga_cont|Add3~9                                                                ; 36      ;
; vga_controller:vga_cont|Add2~9                                                                ; 36      ;
; vga_controller:vga_cont|Add3~5                                                                ; 36      ;
; vga_controller:vga_cont|Add2~5                                                                ; 36      ;
; vga_controller:vga_cont|Add5~5                                                                ; 36      ;
; vga_controller:vga_cont|Add3~1                                                                ; 36      ;
; vga_controller:vga_cont|Add2~1                                                                ; 36      ;
; vga_controller:vga_cont|Add3~73                                                               ; 34      ;
; vga_controller:vga_cont|Add3~69                                                               ; 34      ;
; vga_controller:vga_cont|Add2~77                                                               ; 34      ;
; vga_controller:vga_cont|Add2~29                                                               ; 34      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan0~5                         ; 33      ;
; Equal0~7                                                                                      ; 33      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~7                      ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~6                      ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~7                      ; 32      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~6                      ; 32      ;
; vga_controller:vga_cont|Add3~77                                                               ; 32      ;
; vga_controller:vga_cont|Add2~21                                                               ; 32      ;
; vga_controller:vga_cont|x[9]                                                                  ; 32      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[1]                       ; 31      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[0]                       ; 31      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~77                            ; 31      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[0]                       ; 30      ;
; vga_controller:vga_cont|LessThan5~0                                                           ; 30      ;
; vga_controller:vga_cont|Add12~6                                                               ; 29      ;
; vga_controller:vga_cont|Add12~2                                                               ; 27      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4]                   ; 26      ;
; vga_controller:vga_cont|Add12~1                                                               ; 26      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~5                             ; 26      ;
; vga_controller:vga_cont|Add3~21                                                               ; 26      ;
; vga_controller:vga_cont|Add2~37                                                               ; 26      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[3]                   ; 25      ;
; vga_controller:vga_cont|Add12~7                                                               ; 24      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]                   ; 23      ;
; vga_controller:vga_cont|Add6~5                                                                ; 23      ;
; vga_controller:vga_cont|x[3]                                                                  ; 23      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[2]                   ; 22      ;
; vga_controller:vga_cont|Add12~4                                                               ; 22      ;
; vga_controller:vga_cont|Add6~0                                                                ; 21      ;
; vga_controller:vga_cont|x[7]                                                                  ; 21      ;
; vga_controller:vga_cont|Add20~5                                                               ; 20      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[1]                       ; 20      ;
; vga_controller:vga_cont|Add12~3                                                               ; 20      ;
; vga_controller:vga_cont|x[5]                                                                  ; 20      ;
; vga_controller:vga_cont|Add20~6                                                               ; 19      ;
; vga_clk~reg0                                                                                  ; 19      ;
; vga_controller:vga_cont|Add6~7                                                                ; 18      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[2]                       ; 18      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[3]                       ; 18      ;
; vga_controller:vga_cont|Add20~1                                                               ; 18      ;
; vga_controller:vga_cont|Add20~0                                                               ; 18      ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~9                   ; 17      ;
; vga_controller:vga_cont|LessThan2~1                                                           ; 17      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]~9                   ; 15      ;
; vga_controller:vga_cont|Add6~4                                                                ; 15      ;
; vga_controller:vga_cont|Add20~2                                                               ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~73                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~69                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~65                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~61                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~57                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~53                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~49                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~45                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~41                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~37                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~33                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~29                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~25                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~21                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~17                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~13                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~9                              ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~69                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~65                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~61                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~57                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~53                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~49                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~45                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~41                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~37                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~33                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~29                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~25                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~21                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~17                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~13                             ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~9                              ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[1]~117    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[0]~113    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[2]~109    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[5]~105    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[4]~101    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[3]~97     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[6]~93     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[7]~89     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[15]~85    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[14]~81    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[8]~77     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[13]~73    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[12]~69    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[11]~65    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[10]~61    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[9]~57     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[18]~53    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[17]~49    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[16]~45    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[28]~41    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[27]~37    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[24]~33    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[19]~29    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[26]~25    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[25]~21    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[23]~17    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[22]~13    ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[21]~9     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[20]~5     ; 12      ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft6a_in[29]~1     ; 12      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan35~7                        ; 11      ;
; vga_controller:vga_cont|Add6~6                                                                ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]                       ; 11      ;
; vga_controller:vga_cont|y[9]~1                                                                ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~53                            ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~49                            ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~45                            ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~41                            ; 11      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~37                            ; 11      ;
; vga_controller:vga_cont|Add6~3                                                                ; 10      ;
; vga_controller:vga_cont|LessThan3~0                                                           ; 10      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~33                            ; 10      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~29                            ; 10      ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[5]                       ; 10      ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state.up                   ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state.up                   ; 9       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8]                     ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[6]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~25                            ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[5]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[7]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[6]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[2]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[3]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[9]                       ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[18]                      ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[4]                       ; 9       ;
; vga_controller:vga_cont|y[9]                                                                  ; 9       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[8]                       ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[7]                       ; 8       ;
; vga_controller:vga_cont|green~3                                                               ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~61                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~57                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~53                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~49                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~45                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~41                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~37                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~33                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~29                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~25                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~21                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~17                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~13                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~9                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~5                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~1                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~61                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~57                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~53                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~49                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~45                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~41                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~37                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~33                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~29                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~25                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~21                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~17                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~13                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~9                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~5                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~1                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~53                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~49                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~45                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~41                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~37                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~33                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~29                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~25                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~21                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~17                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~13                             ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~9                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~5                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~1                              ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~21                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~17                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~13                            ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[14]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[13]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[12]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[11]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[10]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[18]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[17]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[16]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[15]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[9]                       ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[17]                      ; 8       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[10]                      ; 8       ;
; vga_controller:vga_cont|y[6]                                                                  ; 8       ;
; vga_controller:vga_cont|y[7]                                                                  ; 8       ;
; vga_controller:vga_cont|y[8]                                                                  ; 8       ;
; vga_controller:vga_cont|y[4]                                                                  ; 8       ;
; vga_controller:vga_cont|y[5]                                                                  ; 8       ;
; vga_controller:vga_cont|y[2]                                                                  ; 8       ;
; vga_controller:vga_cont|y[3]                                                                  ; 8       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9]~DUPLICATE           ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5]~DUPLICATE           ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~14                ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]                     ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4]                     ; 7       ;
; vga_controller:vga_cont|red~1                                                                 ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~73                            ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~69                            ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~65                            ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~61                            ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~57                            ; 7       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~9                             ; 7       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7]~DUPLICATE           ; 6       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]                     ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~33                            ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add3~1                              ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add9~1                              ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~5                             ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult18_rtl_9|mult_ol01:auto_generated|Add15~1                ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[16]                      ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[15]                      ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[14]                      ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[13]                      ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[12]                      ; 6       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[11]                      ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|Add15~1                 ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|Add15~1                ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|Add15~1                 ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|Add15~1                 ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult19_rtl_10|mult_ol01:auto_generated|Add15~1               ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|Add15~1                ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|Add15~1                 ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[20]~117   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[19]~113   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[18]~109   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[17]~105   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[16]~101   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[25]~97    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[24]~93    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[23]~89    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[22]~85    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[21]~81    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[29]~77    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[28]~73    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[27]~69    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[26]~65    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[18]~117   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[17]~113   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[16]~109   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[28]~105   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[27]~101   ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[24]~97    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[19]~93    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[26]~89    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[25]~85    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[23]~81    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[22]~77    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[21]~73    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[20]~69    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[29]~65    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|Add15~1                 ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[1]~61     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[0]~57     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[2]~53     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[3]~49     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[6]~45     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[5]~41     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[4]~37     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[7]~33     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[8]~29     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[11]~25    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[10]~21    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[9]~17     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[15]~13    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[14]~9     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[13]~5     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft6a_in[12]~1     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[1]~61     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[0]~57     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[2]~53     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[5]~49     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[4]~45     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[3]~41     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[6]~37     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[7]~33     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[15]~29    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[14]~25    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[8]~21     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[13]~17    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[12]~13    ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[11]~9     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[10]~5     ; 6       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft6a_in[9]~1      ; 6       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]~DUPLICATE           ; 5       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~DUPLICATE           ; 5       ;
; team2_vd_button~input                                                                         ; 5       ;
; team2_vu_button~input                                                                         ; 5       ;
; team1_vd_button~input                                                                         ; 5       ;
; team1_vu_button~input                                                                         ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan17~3                        ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan14~3                        ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~8                 ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~11                          ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~7                           ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_collission[0]~0                ; 5       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]                     ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|w_decoder_node9w[10]    ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~61                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~57                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~53                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~49                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~45                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~41                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~37                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~29                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~25                            ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~1                             ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[18]~117  ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[17]~113  ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[16]~109  ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[28]~105  ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[27]~101  ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[24]~97   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[19]~93   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[26]~89   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[25]~85   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[23]~81   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[22]~77   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[21]~73   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[20]~69   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[29]~65   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[1]~117   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[0]~113   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[2]~109   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[5]~105   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[4]~101   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[3]~97    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[6]~93    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[7]~89    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[15]~85   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[14]~81   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[8]~77    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[13]~73   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[12]~69   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[11]~65   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[10]~61   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[9]~57    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[18]~53   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[17]~49   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[16]~45   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[28]~41   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[27]~37   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[24]~33   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[19]~29   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[26]~25   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[25]~21   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[23]~17   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[22]~13   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[21]~9    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[20]~5    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft6a_in[29]~1    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[1]~61    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[0]~57    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[2]~53    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[5]~49    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[4]~45    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[3]~41    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[6]~37    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[7]~33    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[15]~29   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[14]~25   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[8]~21    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[13]~17   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[12]~13   ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[11]~9    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[10]~5    ; 5       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft6a_in[9]~1     ; 5       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[8]                       ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[4]                       ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan33~5                        ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~27                ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan20~4                        ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~20                ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~17                ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~15                ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~13                ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~0                 ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[9]                     ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]                     ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[6]                     ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]                     ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[2]                     ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult19_rtl_10|mult_ol01:auto_generated|wire_sft13a_in[0]     ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult18_rtl_9|mult_ol01:auto_generated|wire_sft13a_in[0]      ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|wire_sft13a_in[0]      ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft13a_in[0]       ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft13a_in[0]       ; 4       ;
; vga_controller:vga_cont|Add6~2                                                                ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|wire_sft13a_in[0]      ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|wire_sft13a_in[0]       ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|wire_sft13a_in[0]       ; 4       ;
; vga_controller:vga_cont|blue~2                                                                ; 4       ;
; vga_controller:vga_cont|blue~1                                                                ; 4       ;
; vga_controller:vga_cont|always2~24                                                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add10~65                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add5~65                             ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add7~57                             ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add13~1                             ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~77                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~73                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~69                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~65                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~61                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~57                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~53                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~49                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~45                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~41                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~37                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~33                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~29                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~25                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~21                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~17                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~13                            ; 4       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~9                             ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult18_rtl_9|mult_ol01:auto_generated|Add16~1                ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|Add16~1                 ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult13_rtl_3|mult_ol01:auto_generated|Add16~1                ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|Add16~1                 ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult5_rtl_1|mult_ol01:auto_generated|Add16~1                 ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult19_rtl_10|mult_ol01:auto_generated|Add16~1               ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult32_rtl_8|mult_ol01:auto_generated|Add16~1                ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|Add16~1                 ; 4       ;
; vga_controller:vga_cont|lpm_mult:Mult4_rtl_0|mult_ol01:auto_generated|Add16~1                 ; 4       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]~DUPLICATE           ; 3       ;
; vga_controller:vga_cont|y[0]~DUPLICATE                                                        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[9]                       ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[7]                       ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[7]                       ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[5]                       ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~51                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state~48                   ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~47                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[3]~46                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan33~4                        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan33~3                        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan35~8                        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~23                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~21                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~19                ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~7                 ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~13                          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]                     ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]                     ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~5                           ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan20~0                        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan35~0                        ; 3       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft4a_in[0]        ; 3       ;
; vga_controller:vga_cont|lpm_mult:Mult9_rtl_2|mult_ol01:auto_generated|wire_sft5a_in[2]        ; 3       ;
; vga_controller:vga_cont|green~0                                                               ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~21                            ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~17                            ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[10]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[9]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[8]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[7]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[6]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[11]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[17]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[16]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[11]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[17]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[10]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[6]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[7]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[16]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[8]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[9]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[11]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[17]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[16]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[6]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[7]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[9]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[10]          ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[8]           ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[8]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[17]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[16]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[10]        ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[9]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[7]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[6]         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[11]        ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[26]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[25]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[24]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[28]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[27]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[21]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[16]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[12]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[11]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[9]                          ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[8]                          ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[17]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[15]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[14]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[18]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[22]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[19]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[23]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[13]                         ; 3       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[10]                         ; 3       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[0]~DUPLICATE           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]~DUPLICATE           ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[2]                       ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[1]                       ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[2]                       ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[1]                       ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[0]                       ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[0]                       ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7]~15                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]~14                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5]~13                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]~12                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~15                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]~13                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]~11                  ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]~10                  ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mux16~0                             ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~45                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~24                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~21                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~38                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~20                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~29                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~26                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~18                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~17                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~25                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan26~0                        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~18                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~16                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~15                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~14                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan35~2                        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan23~0                        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~10                ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~9                 ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan17~2                        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~12                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~6                 ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]~1                 ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Mux5~0                              ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|LessThan0~0                    ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~5                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_state.down                 ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|LessThan1~0                    ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|always1~2                      ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult19_rtl_10|mult_ol01:auto_generated|w_decoder_node9w[151] ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state~5                             ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|LessThan0~0                    ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~5                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_state.down                 ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|LessThan1~0                    ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|always1~2                      ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]                     ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]                     ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[4]                     ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position~9                        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|LessThan0~0                         ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_collission[0]                  ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|always2~0                           ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position~1                        ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|w_decoder_node9w[8]     ; 2       ;
; vga_controller:vga_cont|y~2                                                                   ; 2       ;
; vga_controller:vga_cont|next_line                                                             ; 2       ;
; vga_controller:vga_cont|blue~0                                                                ; 2       ;
; vga_controller:vga_cont|always2~86                                                            ; 2       ;
; vga_controller:vga_cont|LessThan34~6                                                          ; 2       ;
; vga_controller:vga_cont|LessThan34~1                                                          ; 2       ;
; vga_controller:vga_cont|red~0                                                                 ; 2       ;
; vga_controller:vga_cont|always2~23                                                            ; 2       ;
; vga_controller:vga_cont|LessThan7~6                                                           ; 2       ;
; vga_controller:vga_cont|always2~22                                                            ; 2       ;
; vga_controller:vga_cont|always2~10                                                            ; 2       ;
; vga_controller:vga_cont|always2~8                                                             ; 2       ;
; vga_controller:vga_cont|LessThan11~2                                                          ; 2       ;
; vga_controller:vga_cont|LessThan11~0                                                          ; 2       ;
; vga_controller:vga_cont|always2~7                                                             ; 2       ;
; vga_controller:vga_cont|LessThan39~1                                                          ; 2       ;
; vga_controller:vga_cont|LessThan39~0                                                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~13                            ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~9                             ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add17~5                             ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add12~1                             ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add3~37                        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|Add3~5                         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[3]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[2]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[0]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[1]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[5]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[4]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[15]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[14]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[12]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[13]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[22]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[21]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[20]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[19]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[18]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[30]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[29]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[28]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[27]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[26]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[25]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[24]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[23]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|up_button_counter[31]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[3]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[4]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[5]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[1]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[2]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[0]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[12]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[13]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[14]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[15]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[28]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[27]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[26]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[18]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[19]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[21]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[22]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[23]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[24]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[25]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[31]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[30]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[29]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|down_button_counter[20]        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|Add0~89                             ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add3~13                        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|Add3~5                         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[0]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[1]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[4]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[5]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[3]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[15]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[12]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[13]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[14]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[2]           ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[19]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[20]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[24]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[21]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[25]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[26]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[27]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[28]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[29]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[30]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[23]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[31]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[18]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|up_button_counter[22]          ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[5]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[0]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[1]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[3]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[4]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[2]         ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[14]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[13]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[12]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[15]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[20]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[27]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[28]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[29]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[30]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[19]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[26]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[23]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[25]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[18]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[22]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[21]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[24]        ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|down_button_counter[31]        ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[31]                         ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[30]                         ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[29]                         ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[20]                         ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[2]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[1]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[0]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[7]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[6]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[5]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[4]                          ; 2       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[3]                          ; 2       ;
; vga_controller:vga_cont|Add3~17                                                               ; 2       ;
; vga_controller:vga_cont|Add2~33                                                               ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[24]~117   ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[19]~113   ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[18]~109   ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[17]~105   ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[16]~101   ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[25]~97    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[23]~93    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[22]~89    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[21]~85    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[20]~81    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[29]~77    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[28]~73    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[27]~69    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[26]~65    ; 2       ;
; vga_controller:vga_cont|Add0~29                                                               ; 2       ;
; vga_controller:vga_cont|Add0~21                                                               ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[1]~117    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[1]~61     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[0]~113    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[0]~57     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|Add8~1                  ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[3]~109    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[3]~53     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[2]~105    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[2]~49     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[4]~101    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[4]~45     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[6]~97     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[6]~41     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[5]~93     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[5]~37     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[7]~89     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[7]~33     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[8]~85     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[8]~29     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[11]~81    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[11]~25    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[10]~77    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[10]~21    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[9]~73     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[9]~17     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[15]~69    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[15]~13    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[14]~65    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[14]~9     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[13]~61    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[13]~5     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[12]~57    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult2_rtl_4|mult_ol01:auto_generated|wire_sft6a_in[12]~1     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[24]~53    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[19]~49    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[18]~45    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[17]~41    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[16]~37    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[25]~33    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[23]~29    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[22]~25    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[21]~21    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[20]~17    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[29]~13    ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[28]~9     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[27]~5     ; 2       ;
; vga_controller:vga_cont|lpm_mult:Mult3_rtl_5|mult_ol01:auto_generated|wire_sft6a_in[26]~1     ; 2       ;
; counter_clk[29]                                                                               ; 2       ;
; counter_clk[27]                                                                               ; 2       ;
; counter_clk[28]                                                                               ; 2       ;
; counter_clk[15]                                                                               ; 2       ;
; counter_clk[1]                                                                                ; 2       ;
; counter_clk[2]                                                                                ; 2       ;
; counter_clk[4]                                                                                ; 2       ;
; counter_clk[5]                                                                                ; 2       ;
; counter_clk[6]                                                                                ; 2       ;
; counter_clk[17]                                                                               ; 2       ;
; counter_clk[10]                                                                               ; 2       ;
; counter_clk[0]                                                                                ; 2       ;
; counter_clk[7]                                                                                ; 2       ;
; counter_clk[8]                                                                                ; 2       ;
; counter_clk[9]                                                                                ; 2       ;
; counter_clk[20]                                                                               ; 2       ;
; counter_clk[11]                                                                               ; 2       ;
; counter_clk[13]                                                                               ; 2       ;
; counter_clk[14]                                                                               ; 2       ;
; counter_clk[31]                                                                               ; 2       ;
; counter_clk[30]                                                                               ; 2       ;
; counter_clk[18]                                                                               ; 2       ;
; counter_clk[21]                                                                               ; 2       ;
; counter_clk[12]                                                                               ; 2       ;
; counter_clk[24]                                                                               ; 2       ;
; counter_clk[3]                                                                                ; 2       ;
; counter_clk[23]                                                                               ; 2       ;
; counter_clk[16]                                                                               ; 2       ;
; counter_clk[22]                                                                               ; 2       ;
; counter_clk[19]                                                                               ; 2       ;
; counter_clk[26]                                                                               ; 2       ;
; counter_clk[25]                                                                               ; 2       ;
; vga_controller:vga_cont|Add0~17                                                               ; 2       ;
; vga_controller:vga_cont|Add0~13                                                               ; 2       ;
; vga_controller:vga_cont|Add0~9                                                                ; 2       ;
; vga_controller:vga_cont|Add0~1                                                                ; 2       ;
; vga_controller:vga_cont|Mult56~1                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~101                                                             ; 2       ;
; vga_controller:vga_cont|Mult8~97                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~93                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~89                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~85                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~81                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~77                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~73                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~69                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~65                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~61                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~57                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~53                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~49                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~45                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~41                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~37                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~13                                                              ; 2       ;
; vga_controller:vga_cont|Mult8~9                                                               ; 2       ;
; vga_controller:vga_cont|Mult8~5                                                               ; 2       ;
; vga_controller:vga_cont|Mult8~1                                                               ; 2       ;
; vga_controller:vga_cont|Mult10~101                                                            ; 2       ;
; vga_controller:vga_cont|Mult10~97                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~93                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~89                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~85                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~81                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~77                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~73                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~69                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~65                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~61                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~57                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~53                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~49                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~45                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~41                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~37                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~13                                                             ; 2       ;
; vga_controller:vga_cont|Mult10~9                                                              ; 2       ;
; vga_controller:vga_cont|Mult10~5                                                              ; 2       ;
; vga_controller:vga_cont|Mult10~1                                                              ; 2       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]~DUPLICATE           ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]~DUPLICATE           ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]~DUPLICATE           ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]~DUPLICATE           ; 1       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|counter[20]~DUPLICATE               ; 1       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[2]~65                ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[6]~14                  ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[3]~12                  ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]~11                  ; 1       ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4]~10                  ; 1       ;
; vga_controller:vga_cont|green~8                                                               ; 1       ;
; vga_controller:vga_cont|green~7                                                               ; 1       ;
; vga_controller:vga_cont|green~6                                                               ; 1       ;
; vga_controller:vga_cont|green~5                                                               ; 1       ;
; vga_controller:vga_cont|green~4                                                               ; 1       ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[3]~56                ; 1       ;
+-----------------------------------------------------------------------------------------------+---------+


+-----------------------------------------------------------------------------+
; Fitter DSP Block Usage Summary                                              ;
+---------------------+-------------+---------------------+-------------------+
; Statistic           ; Number Used ; Available per Block ; Maximum Available ;
+---------------------+-------------+---------------------+-------------------+
; Independent 18x18   ; 30          ; 2.00                ; 174               ;
; Sum of two 18x18    ; 72          ; 1.00                ; 87                ;
; DSP Block           ; 87          ; --                  ; 87                ;
; DSP 18-bit Element  ; 174         ; 2.00                ; 174               ;
; Unsigned Multiplier ; 174         ; --                  ; --                ;
+---------------------+-------------+---------------------+-------------------+


+------------------------------------------------------------------------+
; Routing Usage Summary                                                  ;
+---------------------------------------------+--------------------------+
; Routing Resource Type                       ; Usage                    ;
+---------------------------------------------+--------------------------+
; Block interconnects                         ; 12,478 / 289,320 ( 4 % ) ;
; C12 interconnects                           ; 1,673 / 13,420 ( 12 % )  ;
; C2 interconnects                            ; 6,267 / 119,108 ( 5 % )  ;
; C4 interconnects                            ; 3,207 / 56,300 ( 6 % )   ;
; DQS bus muxes                               ; 0 / 25 ( 0 % )           ;
; DQS-18 I/O buses                            ; 0 / 25 ( 0 % )           ;
; DQS-9 I/O buses                             ; 0 / 25 ( 0 % )           ;
; Direct links                                ; 881 / 289,320 ( < 1 % )  ;
; Global clocks                               ; 1 / 16 ( 6 % )           ;
; HPS SDRAM PLL inputs                        ; 0 / 1 ( 0 % )            ;
; HPS SDRAM PLL outputs                       ; 0 / 1 ( 0 % )            ;
; HPS_INTERFACE_BOOT_FROM_FPGA_INPUTs         ; 0 / 9 ( 0 % )            ;
; HPS_INTERFACE_CLOCKS_RESETS_INPUTs          ; 0 / 7 ( 0 % )            ;
; HPS_INTERFACE_CLOCKS_RESETS_OUTPUTs         ; 0 / 6 ( 0 % )            ;
; HPS_INTERFACE_CROSS_TRIGGER_INPUTs          ; 0 / 18 ( 0 % )           ;
; HPS_INTERFACE_CROSS_TRIGGER_OUTPUTs         ; 0 / 24 ( 0 % )           ;
; HPS_INTERFACE_DBG_APB_INPUTs                ; 0 / 37 ( 0 % )           ;
; HPS_INTERFACE_DBG_APB_OUTPUTs               ; 0 / 55 ( 0 % )           ;
; HPS_INTERFACE_DMA_INPUTs                    ; 0 / 16 ( 0 % )           ;
; HPS_INTERFACE_DMA_OUTPUTs                   ; 0 / 8 ( 0 % )            ;
; HPS_INTERFACE_FPGA2HPS_INPUTs               ; 0 / 287 ( 0 % )          ;
; HPS_INTERFACE_FPGA2HPS_OUTPUTs              ; 0 / 154 ( 0 % )          ;
; HPS_INTERFACE_FPGA2SDRAM_INPUTs             ; 0 / 852 ( 0 % )          ;
; HPS_INTERFACE_FPGA2SDRAM_OUTPUTs            ; 0 / 408 ( 0 % )          ;
; HPS_INTERFACE_HPS2FPGA_INPUTs               ; 0 / 165 ( 0 % )          ;
; HPS_INTERFACE_HPS2FPGA_LIGHT_WEIGHT_INPUTs  ; 0 / 67 ( 0 % )           ;
; HPS_INTERFACE_HPS2FPGA_LIGHT_WEIGHT_OUTPUTs ; 0 / 156 ( 0 % )          ;
; HPS_INTERFACE_HPS2FPGA_OUTPUTs              ; 0 / 282 ( 0 % )          ;
; HPS_INTERFACE_INTERRUPTS_INPUTs             ; 0 / 64 ( 0 % )           ;
; HPS_INTERFACE_INTERRUPTS_OUTPUTs            ; 0 / 42 ( 0 % )           ;
; HPS_INTERFACE_JTAG_OUTPUTs                  ; 0 / 5 ( 0 % )            ;
; HPS_INTERFACE_LOAN_IO_INPUTs                ; 0 / 142 ( 0 % )          ;
; HPS_INTERFACE_LOAN_IO_OUTPUTs               ; 0 / 85 ( 0 % )           ;
; HPS_INTERFACE_MPU_EVENT_STANDBY_INPUTs      ; 0 / 1 ( 0 % )            ;
; HPS_INTERFACE_MPU_EVENT_STANDBY_OUTPUTs     ; 0 / 5 ( 0 % )            ;
; HPS_INTERFACE_MPU_GENERAL_PURPOSE_INPUTs    ; 0 / 32 ( 0 % )           ;
; HPS_INTERFACE_MPU_GENERAL_PURPOSE_OUTPUTs   ; 0 / 32 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_CAN_INPUTs         ; 0 / 2 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_CAN_OUTPUTs        ; 0 / 2 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_EMAC_INPUTs        ; 0 / 32 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_EMAC_OUTPUTs       ; 0 / 34 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_I2C_INPUTs         ; 0 / 8 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_I2C_OUTPUTs        ; 0 / 8 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_NAND_INPUTs        ; 0 / 12 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_NAND_OUTPUTs       ; 0 / 18 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_QSPI_INPUTs        ; 0 / 4 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_QSPI_OUTPUTs       ; 0 / 13 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SDMMC_INPUTs       ; 0 / 13 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SDMMC_OUTPUTs      ; 0 / 22 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SPI_MASTER_INPUTs  ; 0 / 4 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_SPI_MASTER_OUTPUTs ; 0 / 14 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_SPI_SLAVE_INPUTs   ; 0 / 6 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_SPI_SLAVE_OUTPUTs  ; 0 / 4 ( 0 % )            ;
; HPS_INTERFACE_PERIPHERAL_UART_INPUTs        ; 0 / 10 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_UART_OUTPUTs       ; 0 / 10 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_USB_INPUTs         ; 0 / 22 ( 0 % )           ;
; HPS_INTERFACE_PERIPHERAL_USB_OUTPUTs        ; 0 / 34 ( 0 % )           ;
; HPS_INTERFACE_STM_EVENT_INPUTs              ; 0 / 28 ( 0 % )           ;
; HPS_INTERFACE_TEST_INPUTs                   ; 0 / 610 ( 0 % )          ;
; HPS_INTERFACE_TEST_OUTPUTs                  ; 0 / 513 ( 0 % )          ;
; HPS_INTERFACE_TPIU_TRACE_INPUTs             ; 0 / 2 ( 0 % )            ;
; HPS_INTERFACE_TPIU_TRACE_OUTPUTs            ; 0 / 33 ( 0 % )           ;
; Horizontal periphery clocks                 ; 0 / 72 ( 0 % )           ;
; Local interconnects                         ; 936 / 84,580 ( 1 % )     ;
; Quadrant clocks                             ; 0 / 66 ( 0 % )           ;
; R14 interconnects                           ; 1,598 / 12,676 ( 13 % )  ;
; R14/C12 interconnect drivers                ; 3,007 / 20,720 ( 15 % )  ;
; R3 interconnects                            ; 6,633 / 130,992 ( 5 % )  ;
; R6 interconnects                            ; 8,502 / 266,960 ( 3 % )  ;
; Spine clocks                                ; 6 / 360 ( 2 % )          ;
; Wire stub REs                               ; 0 / 15,858 ( 0 % )       ;
+---------------------------------------------+--------------------------+


+------------------------------------------+
; I/O Rules Summary                        ;
+----------------------------------+-------+
; I/O Rules Statistic              ; Total ;
+----------------------------------+-------+
; Total I/O Rules                  ; 28    ;
; Number of I/O Rules Passed       ; 9     ;
; Number of I/O Rules Failed       ; 0     ;
; Number of I/O Rules Unchecked    ; 0     ;
; Number of I/O Rules Inapplicable ; 19    ;
+----------------------------------+-------+


+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; I/O Rules Details                                                                                                                                                                                                                                                                 ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+
; Status       ; ID        ; Category                          ; Rule Description                                                                   ; Severity ; Information                                                              ; Area                ; Extra Information ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+
; Pass         ; IO_000001 ; Capacity Checks                   ; Number of pins in an I/O bank should not exceed the number of locations available. ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000002 ; Capacity Checks                   ; Number of clocks in an I/O bank should not exceed the number of clocks available.  ; Critical ; No Global Signal assignments found.                                      ; I/O                 ;                   ;
; Pass         ; IO_000003 ; Capacity Checks                   ; Number of pins in a Vrefgroup should not exceed the number of locations available. ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000004 ; Voltage Compatibility Checks      ; The I/O bank should support the requested VCCIO.                                   ; Critical ; No IOBANK_VCCIO assignments found.                                       ; I/O                 ;                   ;
; Inapplicable ; IO_000005 ; Voltage Compatibility Checks      ; The I/O bank should not have competing VREF values.                                ; Critical ; No VREF I/O Standard assignments found.                                  ; I/O                 ;                   ;
; Pass         ; IO_000006 ; Voltage Compatibility Checks      ; The I/O bank should not have competing VCCIO values.                               ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Pass         ; IO_000007 ; Valid Location Checks             ; Checks for unavailable locations.                                                  ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000008 ; Valid Location Checks             ; Checks for reserved locations.                                                     ; Critical ; No reserved LogicLock region found.                                      ; I/O                 ;                   ;
; Pass         ; IO_000009 ; I/O Properties Checks for One I/O ; The location should support the requested I/O standard.                            ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Pass         ; IO_000010 ; I/O Properties Checks for One I/O ; The location should support the requested I/O direction.                           ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000011 ; I/O Properties Checks for One I/O ; The location should support the requested Current Strength.                        ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Pass         ; IO_000012 ; I/O Properties Checks for One I/O ; The location should support the requested On Chip Termination value.               ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000013 ; I/O Properties Checks for One I/O ; The location should support the requested Bus Hold value.                          ; Critical ; No Enable Bus-Hold Circuitry assignments found.                          ; I/O                 ;                   ;
; Inapplicable ; IO_000014 ; I/O Properties Checks for One I/O ; The location should support the requested Weak Pull Up value.                      ; Critical ; No Weak Pull-Up Resistor assignments found.                              ; I/O                 ;                   ;
; Inapplicable ; IO_000015 ; I/O Properties Checks for One I/O ; The location should support the requested PCI Clamp Diode.                         ; Critical ; No Clamping Diode assignments found.                                     ; I/O                 ;                   ;
; Inapplicable ; IO_000018 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Current Strength.                    ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Pass         ; IO_000019 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested On Chip Termination value.           ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000020 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested PCI Clamp Diode.                     ; Critical ; No Clamping Diode assignments found.                                     ; I/O                 ;                   ;
; Inapplicable ; IO_000021 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Weak Pull Up value.                  ; Critical ; No Weak Pull-Up Resistor assignments found.                              ; I/O                 ;                   ;
; Inapplicable ; IO_000022 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Bus Hold value.                      ; Critical ; No Enable Bus-Hold Circuitry assignments found.                          ; I/O                 ;                   ;
; Inapplicable ; IO_000023 ; I/O Properties Checks for One I/O ; The I/O standard should support the Open Drain value.                              ; Critical ; No open drain assignments found.                                         ; I/O                 ;                   ;
; Pass         ; IO_000024 ; I/O Properties Checks for One I/O ; The I/O direction should support the On Chip Termination value.                    ; Critical ; 0 such failures found.                                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000026 ; I/O Properties Checks for One I/O ; On Chip Termination and Current Strength should not be used at the same time.      ; Critical ; No Current Strength assignments found.                                   ; I/O                 ;                   ;
; Inapplicable ; IO_000027 ; I/O Properties Checks for One I/O ; Weak Pull Up and Bus Hold should not be used at the same time.                     ; Critical ; No Enable Bus-Hold Circuitry or Weak Pull-Up Resistor assignments found. ; I/O                 ;                   ;
; Inapplicable ; IO_000045 ; I/O Properties Checks for One I/O ; The I/O standard should support the requested Slew Rate value.                     ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000046 ; I/O Properties Checks for One I/O ; The location should support the requested Slew Rate value.                         ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000047 ; I/O Properties Checks for One I/O ; On Chip Termination and Slew Rate should not be used at the same time.             ; Critical ; No Slew Rate assignments found.                                          ; I/O                 ;                   ;
; Inapplicable ; IO_000034 ; SI Related Distance Checks        ; Single-ended outputs should be 0 LAB row(s) away from a differential I/O.          ; High     ; No Differential I/O Standard assignments found.                          ; I/O                 ;                   ;
; ----         ; ----      ; Disclaimer                        ; OCT rules are checked but not reported.                                            ; None     ; ----                                                                     ; On Chip Termination ;                   ;
+--------------+-----------+-----------------------------------+------------------------------------------------------------------------------------+----------+--------------------------------------------------------------------------+---------------------+-------------------+


+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; I/O Rules Matrix                                                                                                                                                                                                                                                                                                                                                                                                                     ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+
; Pin/Rules          ; IO_000001 ; IO_000002    ; IO_000003 ; IO_000004    ; IO_000005    ; IO_000006 ; IO_000007 ; IO_000008    ; IO_000009 ; IO_000010 ; IO_000011    ; IO_000012    ; IO_000013    ; IO_000014    ; IO_000015    ; IO_000018    ; IO_000019    ; IO_000020    ; IO_000021    ; IO_000022    ; IO_000023    ; IO_000024    ; IO_000026    ; IO_000027    ; IO_000045    ; IO_000046    ; IO_000047    ; IO_000034    ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+
; Total Pass         ; 32        ; 0            ; 32        ; 0            ; 0            ; 32        ; 32        ; 0            ; 32        ; 32        ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 27           ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; Total Unchecked    ; 0         ; 0            ; 0         ; 0            ; 0            ; 0         ; 0         ; 0            ; 0         ; 0         ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; Total Inapplicable ; 0         ; 32           ; 0         ; 32           ; 32           ; 0         ; 0         ; 32           ; 0         ; 0         ; 32           ; 5            ; 32           ; 32           ; 32           ; 32           ; 5            ; 32           ; 32           ; 32           ; 32           ; 5            ; 32           ; 32           ; 32           ; 32           ; 32           ; 32           ;
; Total Fail         ; 0         ; 0            ; 0         ; 0            ; 0            ; 0         ; 0         ; 0            ; 0         ; 0         ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ; 0            ;
; red[0]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[1]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[2]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[3]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[4]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[5]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[6]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; red[7]             ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[0]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[1]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[2]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[3]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[4]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[5]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[6]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; green[7]           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[0]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[1]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[2]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[3]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[4]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[5]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[6]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; blue[7]            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; hor_sync           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; ver_sync           ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; vga_clk            ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Pass         ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; clk                ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_vu_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team1_vd_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_vu_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
; team2_vd_button    ; Pass      ; Inapplicable ; Pass      ; Inapplicable ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Pass      ; Pass      ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ; Inapplicable ;
+--------------------+-----------+--------------+-----------+--------------+--------------+-----------+-----------+--------------+-----------+-----------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+


+------------------------------------------------------------------------------------------------+
; Fitter Device Options                                                                          ;
+------------------------------------------------------------------+-----------------------------+
; Option                                                           ; Setting                     ;
+------------------------------------------------------------------+-----------------------------+
; Enable user-supplied start-up clock (CLKUSR)                     ; Off                         ;
; Enable device-wide reset (DEV_CLRn)                              ; Off                         ;
; Enable device-wide output enable (DEV_OE)                        ; Off                         ;
; Enable INIT_DONE output                                          ; Off                         ;
; Configuration scheme                                             ; Passive Serial              ;
; Enable Error Detection CRC_ERROR pin                             ; Off                         ;
; Enable open drain on CRC_ERROR pin                               ; On                          ;
; Enable open drain on INIT_DONE pin                               ; On                          ;
; Enable open drain on Partial Reconfiguration pins                ; Off                         ;
; Enable open drain on nCEO pin                                    ; On                          ;
; Enable Partial Reconfiguration pins                              ; Off                         ;
; Enable input tri-state on active configuration pins in user mode ; Off                         ;
; Active Serial clock source                                       ; 100 MHz Internal Oscillator ;
; Device initialization clock source                               ; Internal Oscillator         ;
; Configuration Voltage Level                                      ; Auto                        ;
; Force Configuration Voltage Level                                ; Off                         ;
; Enable nCEO output                                               ; Off                         ;
; Data[15..8]                                                      ; Unreserved                  ;
; Data[7..5]                                                       ; Unreserved                  ;
; Base pin-out file on sameframe device                            ; Off                         ;
+------------------------------------------------------------------+-----------------------------+


+------------------------------------+
; Operating Settings and Conditions  ;
+---------------------------+--------+
; Setting                   ; Value  ;
+---------------------------+--------+
; Nominal Core Voltage      ; 1.10 V ;
; Low Junction Temperature  ; 0 °C   ;
; High Junction Temperature ; 85 °C  ;
+---------------------------+--------+


+----------------------------------------------------------------------------------------------------------------------------+
; Estimated Delay Added for Hold Timing Summary                                                                              ;
+---------------------------------------------------------------------------------+----------------------+-------------------+
; Source Clock(s)                                                                 ; Destination Clock(s) ; Delay Added in ns ;
+---------------------------------------------------------------------------------+----------------------+-------------------+
; clk                                                                             ; clk                  ; 32.8              ;
; clk,game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4] ; clk                  ; 27.0              ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4]     ; clk                  ; 10.0              ;
+---------------------------------------------------------------------------------+----------------------+-------------------+
Note: For more information on problematic transfers, consider running the Fitter again with the Optimize hold timing option (Settings Menu) turned off.
This will disable optimization of problematic paths and expose them for further analysis using the TimeQuest Timing Analyzer.


+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
; Estimated Delay Added for Hold Timing Details                                                                                                                                  ;
+------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------+
; Source Register                                                              ; Destination Register                                                        ; Delay Added in ns ;
+------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------+
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4]  ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4] ; 2.543             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1]  ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 2.129             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[2]  ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 2.129             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[3]  ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 2.129             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[7]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[7]     ; 1.969             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[9]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[5]     ; 1.951             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[4]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]     ; 1.893             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[0]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[0]     ; 1.833             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[7]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]     ; 1.820             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[2]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[4]     ; 1.770             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[18]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[15]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[14]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[13]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[12]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[11]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[10]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[9]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[17]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[7]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[6]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[5]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[3]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[1]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[0]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[2]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[18]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[17]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[16]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[15]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[14]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[13]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[12]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[11]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[10]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[9]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[8]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[7]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[6]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[5]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[4]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[3]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[2]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[16]     ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[1]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[0]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[8]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[7]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[6]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[9]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[5]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[3]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[2]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[1]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[4]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ver_player_controller:team1_ver_ctrl|ver_pos[0]    ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[1] ; 1.751             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[2]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]     ; 1.720             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[1]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[4]     ; 1.667             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[0]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[0]     ; 1.398             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_y[5]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[8]     ; 1.344             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[8]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[8]     ; 1.242             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_x[1]      ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|x_position[4]     ; 1.198             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|state.active       ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|y_position[0]     ; 0.809             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|idle[0]            ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|idle[0]           ; 0.446             ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[7]    ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]   ; 0.103             ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[1]    ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]   ; 0.077             ;
; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[5]    ; game_controller:game_ctrl|ver_player_controller:team2_ver_ctrl|ver_pos[8]   ; 0.066             ;
; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_collission[0] ; game_controller:game_ctrl|ball_controller_cansu:ball_ctrl|ball_dir_state[4] ; 0.066             ;
+------------------------------------------------------------------------------+-----------------------------------------------------------------------------+-------------------+
Note: This table only shows the top 70 path(s) that have the largest delay added for hold.


+-----------------+
; Fitter Messages ;
+-----------------+
Info (11104): Parallel Compilation has detected 4 hyper-threaded processors. However, the extra hyper-threaded processors will not be used by default. Parallel Compilation will use 2 of the 2 physical processors detected instead.
Info (119006): Selected device 5CSEMA5F31C6 for design "fakequidditch"
Info (21077): Low junction temperature is 0 degrees C
Info (21077): High junction temperature is 85 degrees C
Info (171003): Fitter is performing an Auto Fit compilation, which may decrease Fitter effort to reduce compilation time
Warning (292013): Feature LogicLock is only available with a valid subscription license. You can purchase a software subscription to gain full access to this feature.
Warning (15714): Some pins have incomplete I/O assignments. Refer to the I/O Assignment Warnings report for details
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (184020): Starting Fitter periphery placement operations
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (11191): Automatically promoted 1 clock (1 global)
    Info (11162): clk~inputCLKENA0 with 309 fanout uses global clock CLKCTRL_G6
Warning (205009): Dummy RLC values generated in IBIS model files for device 5CSEMA5 with package FBGA and pin count 896
Info (184021): Fitter periphery placement operations ending: elapsed time is 00:00:00
Warning (335093): TimeQuest Timing Analyzer is analyzing 12 combinational loops as latches.
Critical Warning (332012): Synopsys Design Constraints File file not found: 'fakequidditch.sdc'. A Synopsys Design Constraints File is required by the TimeQuest Timing Analyzer to get proper timing constraints. Without it, the Compiler will not properly optimize the design.
Info (332144): No user constrained base clocks found in the design
Info (332143): No user constrained clock uncertainty found in the design. Calling "derive_clock_uncertainty"
Info (332123): Deriving Clock Uncertainty. Please refer to report_sdc in TimeQuest to see clock uncertainties.
Info (332130): Timing requirements not specified -- quality metrics such as performance may be sacrificed to reduce compilation time.
Info (176233): Starting register packing
Info (176235): Finished register packing
    Extra Info (176219): No registers were packed into other blocks
Info (11798): Fitter preparation operations ending: elapsed time is 00:00:11
Info (170189): Fitter placement preparation operations beginning
Info (170190): Fitter placement preparation operations ending: elapsed time is 00:00:03
Info (170191): Fitter placement operations beginning
Info (170137): Fitter placement was successful
Info (170192): Fitter placement operations ending: elapsed time is 00:00:21
Info (170193): Fitter routing operations beginning
Info (170195): Router estimated average interconnect usage is 4% of the available device resources
    Info (170196): Router estimated peak interconnect usage is 25% of the available device resources in the region that extends from location X33_Y35 to location X44_Y45
Info (170194): Fitter routing operations ending: elapsed time is 00:00:48
Info (170199): The Fitter performed an Auto Fit compilation.  Optimizations were skipped to reduce compilation time.
    Info (170201): Optimizations that may affect the design's routability were skipped
Info (11888): Total time spent on timing analysis during the Fitter is 17.78 seconds.
Info (334003): Started post-fitting delay annotation
Warning (334000): Timing characteristics of device 5CSEMA5F31C6 are preliminary
Info (334004): Delay annotation completed successfully
Info (334003): Started post-fitting delay annotation
Warning (334000): Timing characteristics of device 5CSEMA5F31C6 are preliminary
Info (334004): Delay annotation completed successfully
Info (11801): Fitter post-fit operations ending: elapsed time is 00:00:24
Info (144001): Generated suppressed messages file C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.fit.smsg
Info: Quartus II 64-Bit Fitter was successful. 0 errors, 9 warnings
    Info: Peak virtual memory: 5960 megabytes
    Info: Processing ended: Sat May 25 01:40:04 2019
    Info: Elapsed time: 00:02:21
    Info: Total CPU time (on all processors): 00:02:58


+----------------------------+
; Fitter Suppressed Messages ;
+----------------------------+
The suppressed messages can be found in C:/Users/Cansu/Desktop/fakequidditch/output_files/fakequidditch.fit.smsg.