aboutsummaryrefslogtreecommitdiff
path: root/src/share/algebra/category.daase
blob: 58cf0564ec33d40f0483cdff4c55b7bf7e8023c3 (plain)
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
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
(244683 . 3662386290)        
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) |has| (|Fraction| |#2|) (|RetractableTo| (|Integer|))) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) |has| (|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Fraction| |#2|) |#3|) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) |has| (|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| |#2|)) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) |has| (|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| |#2|)) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialSpace|)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((((|Fraction| |#2|)) . T)) 
((($) |has| (|Fraction| |#2|) (|DifferentialSpace|))) 
(((|#3|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((($ $) . T) ((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#2| |#3|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|Integer|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T) (((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T) (((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T) (((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T) (((|Kernel| $)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1| #1=(|OneDimensionalArray| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| (|Integer|))) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|RadixExpansion| 2)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# (|Boolean|)) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
(((|#1|) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((#1=(|BalancedPAdicInteger| |#1|) #1#) |has| #1# (|Evalable| #1#)) (((|Symbol|) #1#) |has| #1# (|InnerEvalable| (|Symbol|) #1#))) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
(((#1=(|BalancedPAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|BalancedPAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|BalancedPAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# (|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|String|)) . T) (((|PrimitiveArray| (|Byte|))) . T) (((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) . T)) 
((((|Integer|) #1=(|NonNegativeInteger|)) . T) ((|#3| #1#) . T)) 
((((|OutputForm|)) . T)) 
((((|List| $)) . T) (((|List| |#3|)) . T) (((|SquareMatrix| |#2| |#3|)) . T) (((|DirectProduct| |#2| |#3|)) . T) ((|#3|) . T)) 
(((|#3| (|NonNegativeInteger|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Identifier|)) . T)) 
((((|Constructor|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|List| (|Character|))) . T) (((|String|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) (($) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|BinaryOperation| |#1|)) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|Field|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(AND (|has| |#1| (|RadicalCategory|)) (|has| |#1| (|TranscendentalFunctionCategory|))) 
(|has| |#1| (|EuclideanDomain|)) 
(AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
((($) OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) 
(((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|EuclideanDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(|has| |#1| (|EuclideanDomain|)) 
(OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| #1=(|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Complex| #1#)) |has| |#1| (|RealConstant|)) (((|Complex| (|DoubleFloat|))) |has| |#1| (|RealConstant|))) 
((((|OutputForm|)) . T)) 
((($) OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Field|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Field|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
((($) OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) (($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) ((#2=(|Fraction| |#1|) #2#) . T) ((|#1| |#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Identifier|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| (|Integer|))) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|RadixExpansion| 10)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Expression| |#1|)) . T)) 
((((|Expression| |#1|)) . T)) 
((($) . T) (((|Expression| |#1|)) . T)) 
((($) . T) (((|Expression| |#1|)) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Expression| |#1|)) . T) (((|Integer|)) . T)) 
((((|Expression| |#1|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|InputForm|)) . T) (((|Pattern| #1=(|Float|))) . T) ((#1#) . T) (((|DoubleFloat|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#2|) |has| |#2| (|Field|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (|has| |#2| (|SetCategory|))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Monoid|))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Monoid|))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Monoid|)) (((|Integer|)) |has| |#2| (|AbelianGroup|))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|SetCategory|))) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) . T)) 
(|has| |#2| (|Finite|)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Ring|))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
((((|Vector| |#2|)) . T) (((|OutputForm|)) OR (|has| |#2| (|CoercibleTo| (|OutputForm|))) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(|has| |#2| (|CancellationAbelianMonoid|)) 
(((|#2| |#2|) |has| |#2| (|Ring|))) 
(OR (|has| |#2| (|BasicType|)) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
(|has| |#2| (|AbelianSemiGroup|)) 
(|has| |#2| (|AbelianMonoid|)) 
(|has| |#2| (|AbelianGroup|)) 
(((|#1| |#2|) . T)) 
((((|List| |#1|)) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|List| |#1|)) . T) (((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
(|has| |#2| (|GcdDomain|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
((($) . T)) 
(|has| |#2| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#2| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) (((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) |has| |#2| (|CommutativeRing|)) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Identifier|)) . T)) 
((((|Constructor|)) . T) (((|OutputForm|)) . T)) 
((((|NonNegativeInteger|) (|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#4|) |has| |#4| (|Field|))) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(((|#4|) |has| |#4| (|Ring|))) 
(((|#4|) |has| |#4| (|Monoid|))) 
(((|#4|) |has| |#4| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#4| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#4| (|Ring|))))) 
(|has| |#4| (|OrderedSet|)) 
(|has| |#4| (|OrderedSet|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|Ring|)) 
(((|#4|) |has| |#4| (|CommutativeRing|))) 
(((|#4|) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#4|) |has| |#4| (|Monoid|))) 
(((|#3|) . T) ((|#2|) . T) (($) |has| |#4| (|Ring|)) ((|#4|) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#3|) . T) ((|#2|) . T) (($) |has| |#4| (|Ring|)) ((|#4|) |has| |#4| (|Monoid|)) (((|Integer|)) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|Integer|) |#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) |has| |#4| (|SetCategory|))) 
(((|#4|) |has| |#4| (|Ring|))) 
(((|#4|) . T)) 
(|has| |#4| (|Finite|)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|Integer|) |#4|) . T)) 
((((|Integer|) |#4|) . T)) 
(((|#4|) |has| |#4| (|Ring|))) 
(OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|)))) 
(AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) 
(((|#4|) |has| |#4| (|Ring|))) 
((($) OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|))))) 
((((|Vector| |#4|)) . T) (((|OutputForm|)) . T)) 
(((|#4|) |has| |#4| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (|has| |#4| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) |has| |#4| (|Ring|))) 
(((|#1| |#4|) . T)) 
(((|#3|) |has| |#3| (|Field|))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) |has| |#3| (|Monoid|))) 
(((|#3|) |has| |#3| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|OrderedSet|)) 
(|has| |#3| (|OrderedSet|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|Ring|)) 
(((|#3|) |has| |#3| (|CommutativeRing|))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Monoid|))) 
(((|#2|) . T) (($) |has| |#3| (|Ring|)) ((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#2|) . T) (($) |has| |#3| (|Ring|)) ((|#3|) |has| |#3| (|Monoid|)) (((|Integer|)) . T)) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|SetCategory|))) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) . T)) 
(|has| |#3| (|Finite|)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(((|#3|) |has| |#3| (|Ring|))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
((((|Vector| |#3|)) . T) (((|OutputForm|)) . T)) 
(((|#3|) |has| |#3| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) |has| |#3| (|Ring|))) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#3|) . T) ((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|IndexedExponents| |#3|) |#3|) . T)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#3| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#3| (|PatternMatchable| (|Float|))))) 
(((|#3|) . T) (((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#3|) . T) (((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ |#3|) . T) (($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#3| $) . T) ((|#3| |#1|) . T) ((|#2| $) |has| |#1| (|DifferentialRing|)) ((|#2| |#1|) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
((((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#3| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#3| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#3| (|ConvertibleTo| (|InputForm|))))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (($) |has| |#1| (|IntegralDomain|)) ((|#3|) . T) ((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
(((|#1| |#2| |#3| (|IndexedExponents| |#3|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2| |#2|) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|Field|))) 
(((#1=(|Symbol|)) |has| |#1| (|PartialDifferentialRing| #1#))) 
((($ #1=(|Symbol|)) |has| |#1| (|PartialDifferentialRing| #1#))) 
((#1=((|Symbol|)) |has| |#1| (|PartialDifferentialRing| . #1#))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|Ring|))) 
(((|#1|) |has| |#1| (|Ring|))) 
(((|#1| |#1|) |has| |#1| (|Ring|))) 
(|has| |#1| (|Ring|)) 
(|has| |#1| (|Ring|)) 
(((|#1|) |has| |#1| #1=(|Ring|)) (($) |has| |#1| #1#)) 
((((|Integer|)) |has| |#1| (|Ring|))) 
(|has| |#1| (|Ring|)) 
(|has| |#1| (|Group|)) 
(|has| |#1| (|Monoid|)) 
(|has| |#1| (|SemiGroup|)) 
(((|#1|) |has| |#1| #1=(|Ring|)) (($) |has| |#1| #1#) (((|Integer|)) |has| |#1| (|AbelianGroup|))) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianSemiGroup|)) 
((((|Boolean|)) |has| |#1| #1=(|SetCategory|)) (((|OutputForm|)) |has| |#1| #1#)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((#1=((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| . #1#))) 
(((|#1|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) #1#) |has| #1# (|Evalable| #1#)) (((|Symbol|) #1#) |has| #1# (|InnerEvalable| (|Symbol|) #1#))) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|OutputForm|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicZero|)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
((($ $) . T) ((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Ring|)) 
(|has| |#1| (|SemiGroup|)) 
(|has| |#1| (|Ring|)) 
(|has| |#1| (|Ring|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) ((|#1|) . T) (((|Symbol|)) . T) ((#1=(|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Kernel| $)) . T) ((#2=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|IntegralDomain|)) (((|Fraction| #2#)) OR (AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
((($ (|Symbol|)) |has| |#1| (|Ring|))) 
(|has| |#1| (|SemiGroup|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|Ring|)) (((|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|Ring|)) ((|#1|) |has| |#1| (|Ring|)) ((#1=(|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|))) (((|Fraction| #1#)) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|Ring|)) ((|#1|) |has| |#1| (|Ring|)) ((#1=(|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) (((|Fraction| #1#)) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
(|has| |#1| (|Group|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|Ring|))) 
(|has| |#1| (|IntegralDomain|)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#1| (|IntegralDomain|)) 
((((|OutputForm|)) . T)) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|Symbol|)) . T) ((#1=(|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Kernel| $)) . T) ((#2=(|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| |#1| (|Ring|))) (((|Fraction| #1#)) |has| |#1| (|IntegralDomain|)) (((|Fraction| #2#)) OR (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(OR (|has| |#1| (|AbelianGroup|)) (AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
((($ $) |has| |#1| (|IntegralDomain|)) ((|#1| |#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|AbelianSemiGroup|)) (AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|AbelianSemiGroup|)) (AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
(((#1=(|Integer|) #1#) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($ $) . T) ((#1=(|PrimeField| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($ $) . T) ((#1=(|PrimeField| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|PrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($ $) . T) ((#1=(|PrimeField| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) |#1|) . T)) 
((((|DoubleFloat|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|InputForm|)) . T) (((|String|)) . T) (((|Pattern| #1=(|Float|))) . T) ((#1#) . T) (((|DoubleFloat|)) . T)) 
((((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|String|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
((((|String|)) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#3| |#3|) . T)) 
(((|#3|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|UniqueFactorizationDomain|)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#)) (((|Float|)) |has| |#1| (|RealConstant|))) 
(|has| |#1| (|RealConstant|)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((#1=((|Symbol|) $) |has| |#1| (|InnerEvalable| . #1#)) (($ $) |has| |#1| (|Evalable| $)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(((|#1|) . T)) 
((#1=($) |has| |#1| (|Evalable| . #1#)) ((|#1|) |has| |#1| (|Evalable| |#1|))) 
((#1=($ $) |has| |#1| (|Eltable| . #1#)) ((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
((($) |has| |#1| (|DifferentialSpace|))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
(((|#1|) . T) (($) . T)) 
(|has| |#1| (|StepThrough|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|))) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Integer|)))) 
(|has| |#1| (|RealConstant|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) . T)) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
((((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| #1=(|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) ((#1#) |has| |#1| (|RealConstant|)) (((|DoubleFloat|)) |has| |#1| (|RealConstant|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#1|) . T) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|))) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|SExpression|)) . T) (((|Symbol|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|SquareMatrix| |#2| #1=(|Fraction| (|Polynomial| |#1|)))) . T) ((#1#) . T)) 
((((|SquareMatrix| |#2| #1=(|Fraction| (|Polynomial| |#1|)))) . T) ((#1#) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Integer|) (|Fraction| (|Polynomial| |#1|))) . T)) 
((((|OutputForm|)) . T)) 
(((#1=(|Fraction| (|Polynomial| |#1|)) #1#) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
(|has| |#2| (|GcdDomain|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#3|) . T)) 
((($) . T)) 
(|has| |#2| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#2| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) (((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) |has| |#2| (|CommutativeRing|)) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2| |#3|) . T)) 
(((|#2| |#3| (|OrderedVariableList| |#1|)) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2| |#2|) . T) ((|#6| |#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|InputForm|)) . T) (((|Fraction| (|SparseUnivariatePolynomial| (|Integer|)))) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
(|has| |#2| (|GcdDomain|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
((($) . T)) 
(|has| |#2| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#2| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) (((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) |has| |#2| (|CommutativeRing|)) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
(((|#2|) |has| |#2| (|Field|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (|has| |#2| (|SetCategory|))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Monoid|))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Monoid|))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Monoid|)) (((|Integer|)) |has| |#2| (|AbelianGroup|))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|SetCategory|))) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) . T)) 
(|has| |#2| (|Finite|)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Ring|))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
((((|Vector| |#2|)) . T) (((|OutputForm|)) OR (|has| |#2| (|CoercibleTo| (|OutputForm|))) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(|has| |#2| (|CancellationAbelianMonoid|)) 
(((|#2| |#2|) |has| |#2| (|Ring|))) 
(OR (|has| |#2| (|BasicType|)) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
(|has| |#2| (|AbelianSemiGroup|)) 
(|has| |#2| (|AbelianMonoid|)) 
(|has| |#2| (|AbelianGroup|)) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| (|Integer|))) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|RadixExpansion| 16)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T) (((|Kernel| $)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1| |#2| |#3|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# (|Boolean|)) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|String|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
((((|OutputForm|)) AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Pair| |#2| |#1|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|InnerPrimeField| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($ $) . T) ((#1=(|InnerPrimeField| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|List| (|IndexedProductTerm| (|NonNegativeInteger|) |#1|))) . T)) 
((((|NonNegativeInteger|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|IP4Address|)) . T)) 
((((|SExpression|)) . T)) 
((((|List| #1=(|Integer|)) $) . T) ((#1# $) . T)) 
((((|OutputForm|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T) (((|Symbol|)) . T) (((|String|)) . T) (((|List| $)) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| #1=(|Integer|))) . T) ((#1#) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Integer|) |#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((($) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T)) 
((($ $) |has| |#1| (|IntegralDomain|)) ((|#1| |#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) |has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|))) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|))) (((|Record| (|:| |key| #1=(|String|)) (|:| |entry| |#1|)) (|Record| (|:| |key| #1#) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| #1#) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| |#1|))))) 
((((|String|) |#1|) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|))) (((|Record| (|:| |key| #1=(|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| #1#) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| |#1|))))) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#)) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|))))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
(|has| |#2| (|DifferentialSpace|)) 
(|has| |#2| (|DifferentialRing|)) 
((($) |has| |#2| (|DifferentialSpace|))) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (($) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|XPBWPolynomial| |#1| |#2|)) . T) (((|XDistributedPolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
(((#1=(|Any|)) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| #1#))) . T)) 
((((|String|) (|Any|)) . T)) 
((((|Record| (|:| |key| #1=(|String|)) (|:| |entry| #2=(|Any|))) (|Record| (|:| |key| #1#) (|:| |entry| #2#))) |has| (|Record| (|:| |key| #1#) (|:| |entry| #2#)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| #2#))))) 
((((|String|) (|Any|)) . T)) 
(((#1=(|Any|)) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| #1#))) . T)) 
(((#1=(|Any|)) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| #1#))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| #1=(|String|)) (|:| |entry| #2=(|Any|)))) |has| (|Record| (|:| |key| #1#) (|:| |entry| #2#)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| #2#))))) 
((((|String|) (|Any|)) . T)) 
((((|Symbol|) #1=(|Any|)) . T) (((|String|) #1#) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|String|) (|Any|)) . T)) 
(((|#1|) |has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|))) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|List| (|IndexedProductTerm| |#1| (|LinearBasis| |#2|)))) . T)) 
(((|#1| (|LinearBasis| |#2|)) . T)) 
((((|LinearBasis| |#2|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|LinearElement| |#1| |#2|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T) (((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#2| |#2|) . T) ((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
((((|LyndonWord| |#1|)) . T)) 
(((|#2|) . T)) 
((((|LyndonWord| |#1|)) . T)) 
(((|#2| (|LyndonWord| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
((((|XRecursivePolynomial| |#1| |#2|)) . T) (((|XDistributedPolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(|has| |#2| (|DifferentialSpace|)) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) |has| |#2| (|DifferentialSpace|))) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
(((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|FreeMagma| |#1|)) . T) (((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#))) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|StepThrough|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|SingletonAsOrderedSet|) $) . T) ((#1# |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
((($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| $) #1#) |has| |#1| (|IntegralDomain|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#2| |#2|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SemiGroupOperation| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
(|has| |#2| (|GcdDomain|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
((($) . T)) 
(|has| |#2| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#2| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) (((|OrderedVariableList| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) |has| |#2| (|CommutativeRing|)) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
(((|#2| (|IndexedExponents| #1=(|OrderedVariableList| |#1|)) #1#) . T)) 
(AND (|has| |#1| (|Finite|)) (|has| |#2| (|Finite|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1|) . T) ((|#2|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#2| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#2| (|PatternMatchable| (|Float|))))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((((|String|)) AND (|has| |#1| (|RetractableTo| (|Integer|))) (|has| |#2| (|ConvertibleTo| (|Symbol|)))) (((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#2| (|ConvertibleTo| (|InputForm|))))) 
(|has| |#1| (|CommutativeRing|)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (($) |has| |#1| (|IntegralDomain|)) ((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|StepThrough|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseUnivariatePolynomial| |#1|)) . T) ((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|SingletonAsOrderedSet|) $) . T) ((#1# |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
((($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| $) #1#) |has| |#1| (|IntegralDomain|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
(|has| |#1| (|CommutativeRing|)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T) ((#1=(|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Integer|)))) (((|Fraction| #1#)) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(((|#1|) . T)) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|OutputForm|)) . T)) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) |has| |#2| (|Field|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (|has| |#2| (|SetCategory|))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Monoid|))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|Ring|)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Monoid|))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
((($) |has| |#2| (|Ring|)) ((|#2|) |has| |#2| (|Monoid|)) (((|Integer|)) |has| |#2| (|AbelianGroup|))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|SetCategory|))) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) . T)) 
(|has| |#2| (|Finite|)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(((|#2|) |has| |#2| (|Ring|))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
((((|Vector| |#2|)) . T) (((|OutputForm|)) OR (|has| |#2| (|CoercibleTo| (|OutputForm|))) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(|has| |#2| (|CancellationAbelianMonoid|)) 
(((|#2| |#2|) |has| |#2| (|Ring|))) 
(OR (|has| |#2| (|BasicType|)) (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
(|has| |#2| (|AbelianSemiGroup|)) 
(|has| |#2| (|AbelianMonoid|)) 
(|has| |#2| (|AbelianGroup|)) 
(((|#1| |#2|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|OrderlyDifferentialVariable| #1#)) . T) ((#1#) . T) ((|#1|) . T) ((#2=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #2#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|IndexedExponents| #1=(|OrderlyDifferentialVariable| (|Symbol|))) #1#) . T)) 
((((|OrderlyDifferentialVariable| (|Symbol|))) . T) (((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|OrderlyDifferentialVariable| (|Symbol|))) . T) (((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|OrderlyDifferentialVariable| (|Symbol|))) . T) (($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|OrderlyDifferentialVariable| #2=(|Symbol|)) $) . T) ((#1# |#1|) . T) ((#2# $) |has| |#1| (|DifferentialRing|)) ((#2# |#1|) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (($) |has| |#1| (|IntegralDomain|)) (((|OrderlyDifferentialVariable| #1#)) . T) ((#1#) . T) ((|#1|) . T) ((#2=(|Integer|)) . T) (((|Fraction| #2#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
(((|#1| #1=(|Symbol|) #2=(|OrderlyDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
((($) . #1=(|has| |#2| (|Field|))) (((|Fraction| (|Integer|))) . #1#)) 
((($) . #1=(|has| |#2| (|Field|))) (((|Fraction| (|Integer|))) . #1#)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
((($) . #1=(|has| |#2| (|Field|))) (((|Fraction| (|Integer|))) . #1#)) 
(|has| |#2| (|Field|)) 
(((|#2|) . T)) 
((($) . T)) 
((($) . #1=(|has| |#2| (|Field|))) (((|Fraction| (|Integer|))) . #1#) ((|#2|) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Field|)) (($ $) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|DifferentialRing|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|)) (((|Integer|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) |has| |#1| (|AbelianGroup|))) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T) ((#1=(|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1| |#1|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Identifier|)) . T)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) |has| |#1| (|AbelianGroup|))) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(|has| |#1| (|AbelianGroup|)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T) ((#1=(|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Variable| |#1|)) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Pattern| (|Integer|))) . T) (((|Pattern| (|Float|))) . T) (((|InputForm|)) . T) (((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Polynomial| |#1|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|Polynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Polynomial| |#1|)) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
(((|#1|) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((#1=(|PAdicInteger| |#1|) #1#) |has| #1# (|Evalable| #1#)) (((|Symbol|) #1#) |has| #1# (|InnerEvalable| (|Symbol|) #1#))) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
(((#1=(|PAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|PAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|PAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
(|has| |#2| (|StepThrough|)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|))) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Integer|)))) 
(|has| |#2| (|RealConstant|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(((|#2|) . T)) 
((((|Integer|)) |has| |#2| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#2| (|PatternMatchable| (|Float|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedSet|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) . T)) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#2| |#2|) |has| |#2| (|Evalable| |#2|)) (((|Symbol|) |#2|) |has| |#2| (|InnerEvalable| (|Symbol|) |#2|))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Evalable| |#2|))) 
(((|#2| $) |has| |#2| (|Eltable| |#2| |#2|))) 
(((|#2|) . T)) 
(|has| |#2| (|DifferentialSpace|)) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) |has| |#2| (|DifferentialSpace|))) 
((((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| #1=(|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) ((#1#) |has| |#2| (|RealConstant|)) (((|DoubleFloat|)) |has| |#2| (|RealConstant|))) 
((((|OutputForm|)) . T)) 
((($) . T) ((|#2|) . T) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|))) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) . T) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T)) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
((((|OutputForm|)) OR (AND (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CoercibleTo| (|OutputForm|)))) (AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))))) 
((((|Color|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Tree| |#1|)) . T) (((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|List| (|Permutation| |#1|))) . T)) 
((((|List| (|Permutation| |#1|))) . T)) 
((((|List| (|Permutation| |#1|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Fraction| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Symbol|)) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
((((|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
((($ (|Symbol|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|Symbol|) $) . T) ((#1# |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) (((|Symbol|)) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((((|SingleInteger|)) . T) (((|OutputForm|)) . T)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(OR (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) (AND (|has| |#1| (|OrderedSet|)) (|has| |#2| (|OrderedSet|)))) 
(OR (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) (AND (|has| |#1| (|OrderedSet|)) (|has| |#2| (|OrderedSet|)))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
((((|Integer|)) AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|)))) 
(AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) 
(AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|AbelianMonoid|)) (|has| |#2| (|AbelianMonoid|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|AbelianMonoid|)) (|has| |#2| (|AbelianMonoid|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) (AND (|has| |#1| (|Monoid|)) (|has| |#2| (|Monoid|)))) 
(OR (AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) (AND (|has| |#1| (|Monoid|)) (|has| |#2| (|Monoid|)))) 
(AND (|has| |#1| (|Finite|)) (|has| |#2| (|Finite|))) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|List| (|PositiveInteger|))) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|DirectProduct| |#1| |#2|) |#2|) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((($) |has| |#1| (|EntireRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) |has| |#1| (|EntireRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
(((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(|has| |#1| (|EntireRing|)) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Field|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|EntireRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) |has| (|Fraction| |#2|) (|RetractableTo| (|Integer|))) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) |has| (|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Fraction| |#2|) |#3|) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) |has| (|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| |#2|)) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) |has| (|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| |#2|)) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialSpace|)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((((|Fraction| |#2|)) . T)) 
((($) |has| (|Fraction| |#2|) (|DifferentialSpace|))) 
(((|#3|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| |#2|)) . T) (((|Fraction| #1#)) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((($ $) . T) ((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#2| |#3|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| (|Integer|))) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((($ $) . T) ((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) ((#1=(|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Fraction| (|Integer|)) (|RetractableTo| (|Integer|)))) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| #1#) #2#) . T)) 
(((|#1|) . T) (($) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
(((#1=(|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) #1#) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|Evalable| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))))) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|Evalable| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))))) 
((((|InputForm|)) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|ConvertibleTo| (|InputForm|)))) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|OutputForm|)) . T) (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((#1=((|InputForm|)) |has| |#3| (|ConvertibleTo| . #1#))) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|CommutativeRing|))) 
(((|#3|) |has| |#3| (|CommutativeRing|))) 
(((|#3|) . T)) 
(((|#3|) . T) (((|Integer|)) . T)) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
((((|Matrix| |#3|)) . T) (((|OutputForm|)) . T)) 
(((|#3| |#3|) . T)) 
(((|#1| |#2| |#3| (|DirectProduct| |#2| |#3|) (|DirectProduct| |#1| |#3|)) . T)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| #1=(|Integer|))) . T) ((#1#) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Equation| |#3|)) . T)) 
((((|Equation| |#3|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Field|)) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))))) 
((((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))))) 
((($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))))) 
((($) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (AND (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|))) 
(((|#1|) |has| |#1| (|Field|))) 
((($) OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (AND (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|)))) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|Field|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Field|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Field|))) 
((($) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|SequentialDifferentialVariable| #1#)) . T) ((#1#) . T) ((|#1|) . T) ((#2=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #2#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|IndexedExponents| #1=(|SequentialDifferentialVariable| (|Symbol|))) #1#) . T)) 
((((|SequentialDifferentialVariable| (|Symbol|))) . T) (((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|SequentialDifferentialVariable| (|Symbol|))) . T) (((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|SequentialDifferentialVariable| (|Symbol|))) . T) (($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|SequentialDifferentialVariable| #2=(|Symbol|)) $) . T) ((#1# |#1|) . T) ((#2# $) |has| |#1| (|DifferentialRing|)) ((#2# |#1|) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialSpace|)) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T)) 
((($) |has| |#1| (|DifferentialSpace|))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (($) |has| |#1| (|IntegralDomain|)) (((|SequentialDifferentialVariable| #1#)) . T) ((#1#) . T) ((|#1|) . T) ((#2=(|Integer|)) . T) (((|Fraction| #2#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
(((|#1| #1=(|Symbol|) #2=(|SequentialDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|List| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) |has| (|Segment| |#1|) (|SetCategory|))) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| #1=(|Integer|)) $) . T) ((#1# $) . T)) 
((((|OutputForm|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T) (((|Symbol|)) . T) (((|String|)) . T) (((|List| $)) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((((|List| #1=(|Integer|)) $) . T) ((#1# $) . T)) 
(((|#5|) . T) ((|#4|) . T) ((|#3|) . T) ((|#2|) . T) ((|#1|) . T) (((|List| $)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4| |#5|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#3|) |has| |#3| (|Field|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (|has| |#3| (|SetCategory|))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) |has| |#3| (|Monoid|))) 
(((|#3|) |has| |#3| (|SetCategory|)) ((#1=(|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| #1#)) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
((((|Symbol|)) AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|)))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|OrderedSet|)) 
(|has| |#3| (|OrderedSet|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|Ring|)) 
(((|#3|) |has| |#3| (|CommutativeRing|))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Monoid|))) 
((($) |has| |#3| (|Ring|)) ((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
((($) |has| |#3| (|Ring|)) ((|#3|) |has| |#3| (|Monoid|)) (((|Integer|)) |has| |#3| (|AbelianGroup|))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|SetCategory|))) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) . T)) 
(|has| |#3| (|Finite|)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(((|#3|) |has| |#3| (|Ring|))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
((((|Vector| |#3|)) . T) (((|OutputForm|)) OR (|has| |#3| (|CoercibleTo| (|OutputForm|))) (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(((|#3|) |has| |#3| (|SetCategory|)) ((#1=(|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) (((|Fraction| #1#)) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(|has| |#3| (|CancellationAbelianMonoid|)) 
(((|#3| |#3|) |has| |#3| (|Ring|))) 
(OR (|has| |#3| (|BasicType|)) (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|)))) 
(|has| |#3| (|AbelianSemiGroup|)) 
(|has| |#3| (|AbelianMonoid|)) 
(|has| |#3| (|AbelianGroup|)) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|Pattern| #1=(|Integer|))) . T) ((#1#) . T) (((|InputForm|)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#2| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#2| (|PatternMatchable| (|Float|))))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#2| (|ConvertibleTo| (|InputForm|))))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#2|) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#2| $) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1|) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
(((#1=(|SplittingNode| |#1| |#2|) #1#) |has| (|SplittingNode| |#1| |#2|) (|Evalable| (|SplittingNode| |#1| |#2|)))) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) |has| (|SplittingNode| |#1| |#2|) (|Evalable| (|SplittingNode| |#1| |#2|)))) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((#1=((|InputForm|)) |has| |#2| (|ConvertibleTo| . #1#))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(|has| |#2| (|DifferentialSpace|)) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) |has| |#2| (|DifferentialSpace|))) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
(((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# (|Character|)) . T)) 
((((|Character|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|))) (((|Record| (|:| |key| #1=(|String|)) (|:| |entry| |#1|)) (|Record| (|:| |key| #1#) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| #1#) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| |#1|))))) 
((((|String|) |#1|) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|))) (((|Record| (|:| |key| #1=(|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| #1#) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| #1#) (|:| |entry| |#1|))))) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((($) |has| |#1| (|IntegralDomain|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($) |has| |#1| (|IntegralDomain|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(((#1=(|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) #1#) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Symbol|) #1#) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|InnerEvalable| (|Symbol|) (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Integer|) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicZero|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicNonZero|)))) 
((($ $) |has| |#1| (|CommutativeRing|)) ((#1=(|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) #1#) |has| |#1| (|Field|)) ((|#1| |#1|) . T) ((#2=(|Fraction| (|Integer|)) #2#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|StepThrough|)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|SingletonAsOrderedSet|) $) . T) ((#1# |#1|) . T)) 
(|has| |#1| (|GcdDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
((($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) ((|#1| |#1|) . T) ((#1=(|Fraction| $) #1#) |has| |#1| (|IntegralDomain|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|Variable| |#2|)) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (($) |has| |#1| (|IntegralDomain|)) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|NonNegativeInteger|) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
((((|Float|)) . T) (((|Integer|)) . T)) 
((((|Identifier|)) . T)) 
((((|Identifier|)) . T) (((|String|)) . T)) 
((((|Pattern| (|Float|))) . T) (((|Pattern| (|Integer|))) . T) (((|Symbol|)) . T) (((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) ((#1=(|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Partition|)) . T)) 
(((|#1| (|Partition|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Table| (|Symbol|) (|FortranType|))) . T) (((|OutputForm|)) . T)) 
((((|String|)) . T) (((|Identifier|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T)) 
((((|String|)) . T) (((|Identifier|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) ((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|))) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))))) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) (|String|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((((|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
((($ (|Symbol|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Symbol|) $) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1|) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1| (|Symbol|)) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) (((|PrimitiveArray| |#1|)) . T)) 
((((|PrimitiveArray| |#1|)) . T)) 
((((|PrimitiveArray| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((($) |has| |#1| (|IntegralDomain|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($) |has| |#1| (|IntegralDomain|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(((#1=(|UnivariateTaylorSeries| |#1| |#2| |#3|) #1#) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|UnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Symbol|) #1#) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|InnerEvalable| (|Symbol|) (|UnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|UnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|UnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Integer|) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicZero|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicNonZero|)))) 
((($ $) |has| |#1| (|CommutativeRing|)) ((#1=(|UnivariateTaylorSeries| |#1| |#2| |#3|) #1#) |has| |#1| (|Field|)) ((|#1| |#1|) . T) ((#2=(|Fraction| (|Integer|)) #2#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|StepThrough|))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) ((#1=(|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|)))) (((|Fraction| #1#)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|))))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#2|) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(((|#2|) |has| |#1| (|Field|))) 
((((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Float|))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedSet|)))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedSet|)))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) |has| |#1| (|Field|)) (((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T) ((#1=(|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) 
(((|#2| |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|))) (((|Symbol|) |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|InnerEvalable| (|Symbol|) |#2|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#2|) |has| |#1| (|Field|))) 
(((|#2|) |has| |#1| (|Field|))) 
(((|#2|) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(((|#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|)))) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) 
((($ $) . T) ((|#2| $) AND (|has| |#1| (|Field|)) (|has| |#2| (|Eltable| |#2| |#2|))) (((|Integer|) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#2|) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(((|#2|) |has| |#1| (|Field|))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((((|Pattern| (|Integer|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| #1=(|Float|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|InputForm|)))) ((#1#) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) (((|DoubleFloat|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|OutputForm|)) . T)) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#2|) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|)))))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|CharacteristicZero|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|CharacteristicNonZero|)))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) ((|#2| |#2|) |has| |#1| (|Field|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Integer|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| (|Stream| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|StepThrough|)) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|CommutativeRing|)) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(((|#2| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#2|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((#1=(|SingletonAsOrderedSet|) $) . T) ((#1# |#2|) . T)) 
(|has| |#2| (|GcdDomain|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|NonNegativeInteger|)) . T)) 
((($) . T)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|IntegralDomain|)) 
((($ $) . T) ((|#2| |#2|) . T) ((#1=(|Fraction| $) #1#) |has| |#2| (|IntegralDomain|))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($) . T)) 
(|has| |#2| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|Variable| |#1|)) . T) (($) |has| |#2| (|IntegralDomain|)) ((|#2|) . T) (((|SingletonAsOrderedSet|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((($ $) |has| |#2| (|CommutativeRing|)) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#2| (|IntegralDomain|)) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2| (|NonNegativeInteger|)) . T)) 
(((|#2|) . T)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((((|Variable| |#2|)) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (($) |has| |#1| (|IntegralDomain|)) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#2|) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| |#2|) . T)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) ((#2=(|Integer|)) . T) (((|Fraction| #2#)) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|Algebra| (|Fraction| (|Integer|))))) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicZero|)) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
((($ $) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|CommutativeRing|)) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((|#1|) . T) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
((($ $) . T) (((|NonNegativeInteger|) |#1|) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
(|has| |#1| (|CommutativeRing|)) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Integer|)) . T) (((|Fraction| #1#)) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($ $) |has| |#1| (|CommutativeRing|)) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
((((|Symbol|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| #1=(|Integer|)) $) . T) ((#1# |#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|OutputForm|)) |has| |#1| (|CoercibleTo| (|OutputForm|)))) 
(|has| |#1| (|BasicType|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#4|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
(((|#4|) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) ((|#4|) . T) (((|Integer|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#1| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2| (|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| (|PoincareBirkhoffWittLyndonBasis| |#1|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
((((|XRecursivePolynomial| |#1| |#2|)) . T) (((|XDistributedPolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) ((|#2|) . T) (((|OrderedFreeMonoid| |#1|)) . T) (((|Integer|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#1| |#2|) . T)) 
((((|Symbol|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedFreeMonoid| (|Symbol|))) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|OrderedFreeMonoid| (|Symbol|))) . T) (((|Integer|)) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Symbol|) |#1|) . T)) 
(((|#2|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((($) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|OrderedFreeMonoid| |#1|)) . T) (((|Integer|)) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#1| |#2|) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($ $) . T)) 
(((|IntegerMod| . |CommutativeRing|) T) ((|IntegerMod| . |AbelianGroup|) T) ((|IntegerMod| . |AbelianMonoid|) T) ((|IntegerMod| . |AbelianSemiGroup|) T) ((|IntegerMod| . |BasicType|) T) ((|IntegerMod| . |BiModule|) 244668) ((|IntegerMod| . |CancellationAbelianMonoid|) T) ((|IntegerMod| . |CoercibleFrom|) 244645) ((|IntegerMod| . |CoercibleTo|) 244619) ((|IntegerMod| . |LeftLinearSet|) 244586) ((|IntegerMod| . |LeftModule|) 244573) ((|IntegerMod| . |Monoid|) T) ((|IntegerMod| . |RightLinearSet|) 244560) ((|IntegerMod| . |RightModule|) 244547) ((|IntegerMod| . |Ring|) T) ((|IntegerMod| . |Rng|) T) ((|IntegerMod| . |SemiGroup|) T) ((|IntegerMod| . |SemiRing|) T) ((|IntegerMod| . |SetCategory|) T) ((|IntegerMod| . |Type|) T) ((|IntegerMod| . |Finite|) T) ((|IntegerMod| . |ConvertibleTo|) 244524) ((|IntegerMod| . |StepThrough|) T) ((|YoungDiagram| . |SetCategory|) T) ((|YoungDiagram| . |BasicType|) T) ((|YoungDiagram| . |CoercibleTo|) 244476) ((|YoungDiagram| . |Type|) T) ((|YoungDiagram| . |HomotopicTo|) 244451) ((|YoungDiagram| . |CoercibleFrom|) 244426) ((|XRecursivePolynomial| . |XPolynomialsCat|) 244405) ((|XRecursivePolynomial| . |AbelianGroup|) T) ((|XRecursivePolynomial| . |AbelianMonoid|) T) ((|XRecursivePolynomial| . |AbelianSemiGroup|) T) ((|XRecursivePolynomial| . |Algebra|) 244362) ((|XRecursivePolynomial| . |BasicType|) T) ((|XRecursivePolynomial| . |BiModule|) 244341) ((|XRecursivePolynomial| . |CancellationAbelianMonoid|) T) ((|XRecursivePolynomial| . |CoercibleFrom|) 244270) ((|XRecursivePolynomial| . |CoercibleTo|) 244244) ((|XRecursivePolynomial| . |Functorial|) 244228) ((|XRecursivePolynomial| . |LeftLinearSet|) 244182) ((|XRecursivePolynomial| . |LeftModule|) 244156) ((|XRecursivePolynomial| . |LinearSet|) 244113) ((|XRecursivePolynomial| . |Module|) 244070) ((|XRecursivePolynomial| . |Monoid|) T) ((|XRecursivePolynomial| . |RetractableTo|) 244032) ((|XRecursivePolynomial| . |RightLinearSet|) 244016) ((|XRecursivePolynomial| . |RightModule|) 244000) ((|XRecursivePolynomial| . |Ring|) T) ((|XRecursivePolynomial| . |Rng|) T) ((|XRecursivePolynomial| . |SemiGroup|) T) ((|XRecursivePolynomial| . |SemiRing|) T) ((|XRecursivePolynomial| . |SetCategory|) T) ((|XRecursivePolynomial| . |Type|) T) ((|XRecursivePolynomial| . |XAlgebra|) 243984) ((|XRecursivePolynomial| . |XFreeAlgebra|) 243963) ((|XPolynomialRing| . |Ring|) T) ((|XPolynomialRing| . |AbelianGroup|) T) ((|XPolynomialRing| . |AbelianMonoid|) T) ((|XPolynomialRing| . |AbelianSemiGroup|) T) ((|XPolynomialRing| . |BasicType|) T) ((|XPolynomialRing| . |CancellationAbelianMonoid|) T) ((|XPolynomialRing| . |CoercibleFrom|) 243914) ((|XPolynomialRing| . |CoercibleTo|) 243888) ((|XPolynomialRing| . |LeftLinearSet|) 243842) ((|XPolynomialRing| . |LeftModule|) 243816) ((|XPolynomialRing| . |Monoid|) T) ((|XPolynomialRing| . |Rng|) T) ((|XPolynomialRing| . |SemiGroup|) T) ((|XPolynomialRing| . |SemiRing|) T) ((|XPolynomialRing| . |SetCategory|) T) ((|XPolynomialRing| . |Type|) T) ((|XPolynomialRing| . |XAlgebra|) 243800) ((|XPolynomialRing| . |Algebra|) 243757) ((|XPolynomialRing| . |BiModule|) 243736) ((|XPolynomialRing| . |LinearSet|) 243693) ((|XPolynomialRing| . |Module|) 243650) ((|XPolynomialRing| . |RightLinearSet|) 243634) ((|XPolynomialRing| . |RightModule|) 243618) ((|XPolynomialRing| . |FreeModuleCat|) 243597) ((|XPolynomialRing| . |Functorial|) 243581) ((|XPolynomialRing| . |RetractableTo|) 243565) ((|XPolynomial| . |XPolynomialsCat|) 243538) ((|XPolynomial| . |AbelianGroup|) T) ((|XPolynomial| . |AbelianMonoid|) T) ((|XPolynomial| . |AbelianSemiGroup|) T) ((|XPolynomial| . |Algebra|) 243495) ((|XPolynomial| . |BasicType|) T) ((|XPolynomial| . |BiModule|) 243474) ((|XPolynomial| . |CancellationAbelianMonoid|) T) ((|XPolynomial| . |CoercibleFrom|) 243397) ((|XPolynomial| . |CoercibleTo|) 243371) ((|XPolynomial| . |Functorial|) 243355) ((|XPolynomial| . |LeftLinearSet|) 243309) ((|XPolynomial| . |LeftModule|) 243283) ((|XPolynomial| . |LinearSet|) 243240) ((|XPolynomial| . |Module|) 243197) ((|XPolynomial| . |Monoid|) T) ((|XPolynomial| . |RetractableTo|) 243153) ((|XPolynomial| . |RightLinearSet|) 243137) ((|XPolynomial| . |RightModule|) 243121) ((|XPolynomial| . |Ring|) T) ((|XPolynomial| . |Rng|) T) ((|XPolynomial| . |SemiGroup|) T) ((|XPolynomial| . |SemiRing|) T) ((|XPolynomial| . |SetCategory|) T) ((|XPolynomial| . |Type|) T) ((|XPolynomial| . |XAlgebra|) 243105) ((|XPolynomial| . |XFreeAlgebra|) 243078) ((|XPBWPolynomial| . |XPolynomialsCat|) 243057) ((|XPBWPolynomial| . |AbelianGroup|) T) ((|XPBWPolynomial| . |AbelianMonoid|) T) ((|XPBWPolynomial| . |AbelianSemiGroup|) T) ((|XPBWPolynomial| . |Algebra|) 243014) ((|XPBWPolynomial| . |BasicType|) T) ((|XPBWPolynomial| . |BiModule|) 242993) ((|XPBWPolynomial| . |CancellationAbelianMonoid|) T) ((|XPBWPolynomial| . |CoercibleFrom|) 242873) ((|XPBWPolynomial| . |CoercibleTo|) 242759) ((|XPBWPolynomial| . |Functorial|) 242743) ((|XPBWPolynomial| . |LeftLinearSet|) 242697) ((|XPBWPolynomial| . |LeftModule|) 242671) ((|XPBWPolynomial| . |LinearSet|) 242628) ((|XPBWPolynomial| . |Module|) 242585) ((|XPBWPolynomial| . |Monoid|) T) ((|XPBWPolynomial| . |RetractableTo|) 242498) ((|XPBWPolynomial| . |RightLinearSet|) 242482) ((|XPBWPolynomial| . |RightModule|) 242466) ((|XPBWPolynomial| . |Ring|) T) ((|XPBWPolynomial| . |Rng|) T) ((|XPBWPolynomial| . |SemiGroup|) T) ((|XPBWPolynomial| . |SemiRing|) T) ((|XPBWPolynomial| . |SetCategory|) T) ((|XPBWPolynomial| . |Type|) T) ((|XPBWPolynomial| . |XAlgebra|) 242450) ((|XPBWPolynomial| . |XFreeAlgebra|) 242429) ((|XPBWPolynomial| . |FreeModuleCat|) 242372) ((|XDistributedPolynomial| . |FreeModuleCat|) 242329) ((|XDistributedPolynomial| . |AbelianGroup|) T) ((|XDistributedPolynomial| . |AbelianMonoid|) T) ((|XDistributedPolynomial| . |AbelianSemiGroup|) T) ((|XDistributedPolynomial| . |BasicType|) T) ((|XDistributedPolynomial| . |BiModule|) 242308) ((|XDistributedPolynomial| . |CancellationAbelianMonoid|) T) ((|XDistributedPolynomial| . |CoercibleFrom|) 242237) ((|XDistributedPolynomial| . |CoercibleTo|) 242211) ((|XDistributedPolynomial| . |Functorial|) 242195) ((|XDistributedPolynomial| . |LeftLinearSet|) 242149) ((|XDistributedPolynomial| . |LeftModule|) 242123) ((|XDistributedPolynomial| . |LinearSet|) 242080) ((|XDistributedPolynomial| . |Module|) 242037) ((|XDistributedPolynomial| . |RetractableTo|) 241999) ((|XDistributedPolynomial| . |RightLinearSet|) 241983) ((|XDistributedPolynomial| . |RightModule|) 241967) ((|XDistributedPolynomial| . |SetCategory|) T) ((|XDistributedPolynomial| . |Type|) T) ((|XDistributedPolynomial| . |XPolynomialsCat|) 241946) ((|XDistributedPolynomial| . |Algebra|) 241903) ((|XDistributedPolynomial| . |Monoid|) T) ((|XDistributedPolynomial| . |Ring|) T) ((|XDistributedPolynomial| . |Rng|) T) ((|XDistributedPolynomial| . |SemiGroup|) T) ((|XDistributedPolynomial| . |SemiRing|) T) ((|XDistributedPolynomial| . |XAlgebra|) 241887) ((|XDistributedPolynomial| . |XFreeAlgebra|) 241866) ((|WuWenTsunTriangularSet| . |TriangularSetCategory|) 241835) ((|WuWenTsunTriangularSet| . |Aggregate|) T) ((|WuWenTsunTriangularSet| . |BasicType|) T) ((|WuWenTsunTriangularSet| . |CoercibleTo|) 241787) ((|WuWenTsunTriangularSet| . |Collection|) 241771) ((|WuWenTsunTriangularSet| . |ConvertibleTo|) 241707) ((|WuWenTsunTriangularSet| . |Evalable|) 241631) ((|WuWenTsunTriangularSet| . |FiniteAggregate|) 241615) ((|WuWenTsunTriangularSet| . |Functorial|) 241599) ((|WuWenTsunTriangularSet| . |HomogeneousAggregate|) 241583) ((|WuWenTsunTriangularSet| . |InnerEvalable|) 241502) ((|WuWenTsunTriangularSet| . |PolynomialSetCategory|) 241471) ((|WuWenTsunTriangularSet| . |SetCategory|) T) ((|WuWenTsunTriangularSet| . |ShallowlyMutableAggregate|) 241455) ((|WuWenTsunTriangularSet| . |Type|) T) ((|WeightedPolynomials| . |Ring|) T) ((|WeightedPolynomials| . |AbelianGroup|) T) ((|WeightedPolynomials| . |AbelianMonoid|) T) ((|WeightedPolynomials| . |AbelianSemiGroup|) T) ((|WeightedPolynomials| . |BasicType|) T) ((|WeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|WeightedPolynomials| . |CoercibleFrom|) 241379) ((|WeightedPolynomials| . |CoercibleTo|) 241340) ((|WeightedPolynomials| . |LeftLinearSet|) 241267) ((|WeightedPolynomials| . |LeftModule|) 241214) ((|WeightedPolynomials| . |Monoid|) T) ((|WeightedPolynomials| . |Rng|) T) ((|WeightedPolynomials| . |SemiGroup|) T) ((|WeightedPolynomials| . |SemiRing|) T) ((|WeightedPolynomials| . |SetCategory|) T) ((|WeightedPolynomials| . |Type|) T) ((|WeightedPolynomials| . |HomotopicTo|) 241198) ((|WeightedPolynomials| . |Algebra|) 241155) ((|WeightedPolynomials| . |BiModule|) 241107) ((|WeightedPolynomials| . |LinearSet|) 241064) ((|WeightedPolynomials| . |Module|) 241021) ((|WeightedPolynomials| . |RightLinearSet|) 240978) ((|WeightedPolynomials| . |RightModule|) 240935) ((|WhileAst| . |SpadSyntaxCategory|) T) ((|WhileAst| . |AbstractSyntaxCategory|) T) ((|WhileAst| . |BasicType|) T) ((|WhileAst| . |CoercibleFrom|) 240913) ((|WhileAst| . |CoercibleTo|) 240868) ((|WhileAst| . |HomotopicTo|) 240846) ((|WhileAst| . |SetCategory|) T) ((|WhileAst| . |Type|) T) ((|WhereAst| . |SpadSyntaxCategory|) T) ((|WhereAst| . |AbstractSyntaxCategory|) T) ((|WhereAst| . |BasicType|) T) ((|WhereAst| . |CoercibleFrom|) 240824) ((|WhereAst| . |CoercibleTo|) 240779) ((|WhereAst| . |HomotopicTo|) 240757) ((|WhereAst| . |SetCategory|) T) ((|WhereAst| . |Type|) T) ((|Void| . |CoercibleTo|) 240731) ((|ThreeDimensionalViewport| . |SetCategory|) T) ((|ThreeDimensionalViewport| . |BasicType|) T) ((|ThreeDimensionalViewport| . |CoercibleTo|) 240705) ((|ThreeDimensionalViewport| . |Type|) T) ((|TwoDimensionalViewport| . |SetCategory|) T) ((|TwoDimensionalViewport| . |BasicType|) T) ((|TwoDimensionalViewport| . |CoercibleTo|) 240679) ((|TwoDimensionalViewport| . |Type|) T) ((|Vector| . |VectorCategory|) 240663) ((|Vector| . |Aggregate|) T) ((|Vector| . |BasicType|) 240635) ((|Vector| . |CoercibleTo|) 240571) ((|Vector| . |Collection|) 240555) ((|Vector| . |ConvertibleTo|) 240491) ((|Vector| . |Eltable|) 240425) ((|Vector| . |EltableAggregate|) 240397) ((|Vector| . |Evalable|) 240321) ((|Vector| . |FiniteAggregate|) 240305) ((|Vector| . |FiniteLinearAggregate|) 240289) ((|Vector| . |Functorial|) 240273) ((|Vector| . |HomogeneousAggregate|) 240257) ((|Vector| . |IndexedAggregate|) 240229) ((|Vector| . |InnerEvalable|) 240148) ((|Vector| . |LinearAggregate|) 240132) ((|Vector| . |OneDimensionalArrayAggregate|) 240116) ((|Vector| . |OrderedSet|) 240087) ((|Vector| . |OrderedType|) 240058) ((|Vector| . |SetCategory|) 240028) ((|Vector| . |ShallowlyMutableAggregate|) 240012) ((|Vector| . |Type|) T) ((|Variable| . |SetCategory|) T) ((|Variable| . |BasicType|) T) ((|Variable| . |CoercibleTo|) 239967) ((|Variable| . |Type|) T) ((|UnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 239951) ((|UnivariateTaylorSeries| . |AbelianGroup|) T) ((|UnivariateTaylorSeries| . |AbelianMonoid|) T) ((|UnivariateTaylorSeries| . |AbelianMonoidRing|) 239912) ((|UnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|UnivariateTaylorSeries| . |Algebra|) 239756) ((|UnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 239705) ((|UnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 239654) ((|UnivariateTaylorSeries| . |BasicType|) T) ((|UnivariateTaylorSeries| . |BiModule|) 239510) ((|UnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateTaylorSeries| . |CharacteristicNonZero|) 239470) ((|UnivariateTaylorSeries| . |CharacteristicZero|) 239433) ((|UnivariateTaylorSeries| . |CoercibleFrom|) 239262) ((|UnivariateTaylorSeries| . |CoercibleTo|) 239236) ((|UnivariateTaylorSeries| . |CommutativeRing|) 239202) ((|UnivariateTaylorSeries| . |DifferentialDomain|) 239133) ((|UnivariateTaylorSeries| . |DifferentialRing|) 239070) ((|UnivariateTaylorSeries| . |DifferentialSpace|) 239007) ((|UnivariateTaylorSeries| . |ElementaryFunctionCategory|) 238956) ((|UnivariateTaylorSeries| . |Eltable|) 238905) ((|UnivariateTaylorSeries| . |EntireRing|) 238872) ((|UnivariateTaylorSeries| . |Functorial|) 238856) ((|UnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 238805) ((|UnivariateTaylorSeries| . |IntegralDomain|) 238772) ((|UnivariateTaylorSeries| . |LeftLinearSet|) 238654) ((|UnivariateTaylorSeries| . |LeftModule|) 238551) ((|UnivariateTaylorSeries| . |LinearSet|) 238395) ((|UnivariateTaylorSeries| . |Module|) 238239) ((|UnivariateTaylorSeries| . |Monoid|) T) ((|UnivariateTaylorSeries| . |PartialDifferentialDomain|) 238073) ((|UnivariateTaylorSeries| . |PartialDifferentialRing|) 237937) ((|UnivariateTaylorSeries| . |PartialDifferentialSpace|) 237801) ((|UnivariateTaylorSeries| . |PowerSeriesCategory|) 237736) ((|UnivariateTaylorSeries| . |RadicalCategory|) 237685) ((|UnivariateTaylorSeries| . |RightLinearSet|) 237555) ((|UnivariateTaylorSeries| . |RightModule|) 237425) ((|UnivariateTaylorSeries| . |Ring|) T) ((|UnivariateTaylorSeries| . |Rng|) T) ((|UnivariateTaylorSeries| . |SemiGroup|) T) ((|UnivariateTaylorSeries| . |SemiRing|) T) ((|UnivariateTaylorSeries| . |SetCategory|) T) ((|UnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 237374) ((|UnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 237323) ((|UnivariateTaylorSeries| . |Type|) T) ((|UnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 237284) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FiniteAbelianMonoidRing|) 237174) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoidRing|) 237064) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Algebra|) 236895) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BasicType|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BiModule|) 236739) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicNonZero|) 236661) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicZero|) 236586) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleFrom|) 236392) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleTo|) 236366) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CommutativeRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |EntireRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FullyRetractableTo|) 236312) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Functorial|) 236258) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |IntegralDomain|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftLinearSet|) 236100) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftModule|) 235957) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LinearSet|) 235788) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Module|) 235619) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Monoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RetractableTo|) 235565) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightLinearSet|) 235422) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightModule|) 235279) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Ring|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Rng|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Type|) T) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesConstructorCategory|) 235258) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoidRing|) 235217) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Algebra|) 235061) ((|UnivariatePuiseuxSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 235010) ((|UnivariatePuiseuxSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 234959) ((|UnivariatePuiseuxSeriesConstructor| . |BasicType|) T) ((|UnivariatePuiseuxSeriesConstructor| . |BiModule|) 234815) ((|UnivariatePuiseuxSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicNonZero|) 234775) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicZero|) 234738) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleFrom|) 234554) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleTo|) 234528) ((|UnivariatePuiseuxSeriesConstructor| . |CommutativeRing|) 234494) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialDomain|) 234423) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialRing|) 234358) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialSpace|) 234293) ((|UnivariatePuiseuxSeriesConstructor| . |DivisionRing|) 234269) ((|UnivariatePuiseuxSeriesConstructor| . |ElementaryFunctionCategory|) 234218) ((|UnivariatePuiseuxSeriesConstructor| . |Eltable|) 234165) ((|UnivariatePuiseuxSeriesConstructor| . |EntireRing|) 234132) ((|UnivariatePuiseuxSeriesConstructor| . |EuclideanDomain|) 234108) ((|UnivariatePuiseuxSeriesConstructor| . |Field|) 234084) ((|UnivariatePuiseuxSeriesConstructor| . |Functorial|) 234068) ((|UnivariatePuiseuxSeriesConstructor| . |GcdDomain|) 234044) ((|UnivariatePuiseuxSeriesConstructor| . |HyperbolicFunctionCategory|) 233993) ((|UnivariatePuiseuxSeriesConstructor| . |IntegralDomain|) 233960) ((|UnivariatePuiseuxSeriesConstructor| . |LeftLinearSet|) 233842) ((|UnivariatePuiseuxSeriesConstructor| . |LeftModule|) 233739) ((|UnivariatePuiseuxSeriesConstructor| . |LinearSet|) 233583) ((|UnivariatePuiseuxSeriesConstructor| . |Module|) 233427) ((|UnivariatePuiseuxSeriesConstructor| . |Monoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialDomain|) 233287) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialRing|) 233149) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialSpace|) 233011) ((|UnivariatePuiseuxSeriesConstructor| . |PowerSeriesCategory|) 232944) ((|UnivariatePuiseuxSeriesConstructor| . |PrincipalIdealDomain|) 232920) ((|UnivariatePuiseuxSeriesConstructor| . |RadicalCategory|) 232869) ((|UnivariatePuiseuxSeriesConstructor| . |RetractableTo|) 232853) ((|UnivariatePuiseuxSeriesConstructor| . |RightLinearSet|) 232723) ((|UnivariatePuiseuxSeriesConstructor| . |RightModule|) 232593) ((|UnivariatePuiseuxSeriesConstructor| . |Ring|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Rng|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesConstructor| . |TranscendentalFunctionCategory|) 232542) ((|UnivariatePuiseuxSeriesConstructor| . |TrigonometricFunctionCategory|) 232491) ((|UnivariatePuiseuxSeriesConstructor| . |Type|) T) ((|UnivariatePuiseuxSeriesConstructor| . |UniqueFactorizationDomain|) 232467) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePowerSeriesCategory|) 232426) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesCategory|) 232410) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 232351) ((|UnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |AbelianMonoidRing|) 232310) ((|UnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeries| . |Algebra|) 232154) ((|UnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 232103) ((|UnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 232052) ((|UnivariatePuiseuxSeries| . |BasicType|) T) ((|UnivariatePuiseuxSeries| . |BiModule|) 231908) ((|UnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |CharacteristicNonZero|) 231868) ((|UnivariatePuiseuxSeries| . |CharacteristicZero|) 231831) ((|UnivariatePuiseuxSeries| . |CoercibleFrom|) 231533) ((|UnivariatePuiseuxSeries| . |CoercibleTo|) 231507) ((|UnivariatePuiseuxSeries| . |CommutativeRing|) 231473) ((|UnivariatePuiseuxSeries| . |DifferentialDomain|) 231402) ((|UnivariatePuiseuxSeries| . |DifferentialRing|) 231337) ((|UnivariatePuiseuxSeries| . |DifferentialSpace|) 231272) ((|UnivariatePuiseuxSeries| . |DivisionRing|) 231248) ((|UnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 231197) ((|UnivariatePuiseuxSeries| . |Eltable|) 231144) ((|UnivariatePuiseuxSeries| . |EntireRing|) 231111) ((|UnivariatePuiseuxSeries| . |EuclideanDomain|) 231087) ((|UnivariatePuiseuxSeries| . |Field|) 231063) ((|UnivariatePuiseuxSeries| . |Functorial|) 231047) ((|UnivariatePuiseuxSeries| . |GcdDomain|) 231023) ((|UnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 230972) ((|UnivariatePuiseuxSeries| . |IntegralDomain|) 230939) ((|UnivariatePuiseuxSeries| . |LeftLinearSet|) 230821) ((|UnivariatePuiseuxSeries| . |LeftModule|) 230718) ((|UnivariatePuiseuxSeries| . |LinearSet|) 230562) ((|UnivariatePuiseuxSeries| . |Module|) 230406) ((|UnivariatePuiseuxSeries| . |Monoid|) T) ((|UnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 230238) ((|UnivariatePuiseuxSeries| . |PartialDifferentialRing|) 230100) ((|UnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 229962) ((|UnivariatePuiseuxSeries| . |PowerSeriesCategory|) 229895) ((|UnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 229871) ((|UnivariatePuiseuxSeries| . |RadicalCategory|) 229820) ((|UnivariatePuiseuxSeries| . |RetractableTo|) 229716) ((|UnivariatePuiseuxSeries| . |RightLinearSet|) 229586) ((|UnivariatePuiseuxSeries| . |RightModule|) 229456) ((|UnivariatePuiseuxSeries| . |Ring|) T) ((|UnivariatePuiseuxSeries| . |Rng|) T) ((|UnivariatePuiseuxSeries| . |SemiGroup|) T) ((|UnivariatePuiseuxSeries| . |SemiRing|) T) ((|UnivariatePuiseuxSeries| . |SetCategory|) T) ((|UnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 229405) ((|UnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 229354) ((|UnivariatePuiseuxSeries| . |Type|) T) ((|UnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 229330) ((|UnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 229289) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 229273) ((|UnivariatePolynomial| . |UnivariatePolynomialCategory|) 229257) ((|UnivariatePolynomial| . |AbelianGroup|) T) ((|UnivariatePolynomial| . |AbelianMonoid|) T) ((|UnivariatePolynomial| . |AbelianMonoidRing|) 229218) ((|UnivariatePolynomial| . |AbelianSemiGroup|) T) ((|UnivariatePolynomial| . |Algebra|) 229062) ((|UnivariatePolynomial| . |BasicType|) T) ((|UnivariatePolynomial| . |BiModule|) 228918) ((|UnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariatePolynomial| . |CharacteristicNonZero|) 228878) ((|UnivariatePolynomial| . |CharacteristicZero|) 228841) ((|UnivariatePolynomial| . |CoercibleFrom|) 228576) ((|UnivariatePolynomial| . |CoercibleTo|) 228550) ((|UnivariatePolynomial| . |CommutativeRing|) 228516) ((|UnivariatePolynomial| . |DifferentialDomain|) 228503) ((|UnivariatePolynomial| . |DifferentialExtension|) 228487) ((|UnivariatePolynomial| . |DifferentialRing|) T) ((|UnivariatePolynomial| . |DifferentialSpace|) T) ((|UnivariatePolynomial| . |DifferentialSpaceExtension|) 228471) ((|UnivariatePolynomial| . |Eltable|) 228382) ((|UnivariatePolynomial| . |EntireRing|) 228349) ((|UnivariatePolynomial| . |EuclideanDomain|) 228325) ((|UnivariatePolynomial| . |Evalable|) 228312) ((|UnivariatePolynomial| . |FiniteAbelianMonoidRing|) 228273) ((|UnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 228257) ((|UnivariatePolynomial| . |FullyRetractableTo|) 228241) ((|UnivariatePolynomial| . |Functorial|) 228225) ((|UnivariatePolynomial| . |GcdDomain|) 228197) ((|UnivariatePolynomial| . |InnerEvalable|) 228126) ((|UnivariatePolynomial| . |IntegralDomain|) 228093) ((|UnivariatePolynomial| . |LeftLinearSet|) 227975) ((|UnivariatePolynomial| . |LeftModule|) 227809) ((|UnivariatePolynomial| . |LinearSet|) 227653) ((|UnivariatePolynomial| . |LinearlyExplicitRingOver|) 227569) ((|UnivariatePolynomial| . |Module|) 227413) ((|UnivariatePolynomial| . |Monoid|) T) ((|UnivariatePolynomial| . |PartialDifferentialDomain|) 227249) ((|UnivariatePolynomial| . |PartialDifferentialRing|) 227147) ((|UnivariatePolynomial| . |PartialDifferentialSpace|) 226987) ((|UnivariatePolynomial| . |PolynomialCategory|) 226922) ((|UnivariatePolynomial| . |PolynomialFactorizationExplicit|) 226872) ((|UnivariatePolynomial| . |PrincipalIdealDomain|) 226848) ((|UnivariatePolynomial| . |RetractableTo|) 226663) ((|UnivariatePolynomial| . |RightLinearSet|) 226533) ((|UnivariatePolynomial| . |RightModule|) 226403) ((|UnivariatePolynomial| . |Ring|) T) ((|UnivariatePolynomial| . |Rng|) T) ((|UnivariatePolynomial| . |SemiGroup|) T) ((|UnivariatePolynomial| . |SemiRing|) T) ((|UnivariatePolynomial| . |SetCategory|) T) ((|UnivariatePolynomial| . |StepThrough|) 226373) ((|UnivariatePolynomial| . |Type|) T) ((|UnivariatePolynomial| . |UniqueFactorizationDomain|) 226323) ((|UniversalSegment| . |SegmentCategory|) 226307) ((|UniversalSegment| . |ConvertibleFrom|) 226291) ((|UniversalSegment| . |SetCategory|) 226261) ((|UniversalSegment| . |BasicType|) 226231) ((|UniversalSegment| . |CoercibleTo|) 226182) ((|UniversalSegment| . |Type|) 226152) ((|UniversalSegment| . |SegmentExpansionCategory|) 226097) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesConstructorCategory|) 226076) ((|UnivariateLaurentSeriesConstructor| . |AbelianGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoidRing|) 226048) ((|UnivariateLaurentSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |Algebra|) 225711) ((|UnivariateLaurentSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 225660) ((|UnivariateLaurentSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 225609) ((|UnivariateLaurentSeriesConstructor| . |BasicType|) T) ((|UnivariateLaurentSeriesConstructor| . |BiModule|) 225279) ((|UnivariateLaurentSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicNonZero|) 225166) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicZero|) 224991) ((|UnivariateLaurentSeriesConstructor| . |CoercibleFrom|) 224495) ((|UnivariateLaurentSeriesConstructor| . |CoercibleTo|) 224469) ((|UnivariateLaurentSeriesConstructor| . |CommutativeRing|) 224284) ((|UnivariateLaurentSeriesConstructor| . |ConvertibleTo|) 223830) ((|UnivariateLaurentSeriesConstructor| . |DifferentialDomain|) 223640) ((|UnivariateLaurentSeriesConstructor| . |DifferentialExtension|) 223607) ((|UnivariateLaurentSeriesConstructor| . |DifferentialRing|) 223487) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpace|) 223303) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpaceExtension|) 223270) ((|UnivariateLaurentSeriesConstructor| . |DivisionRing|) 223246) ((|UnivariateLaurentSeriesConstructor| . |ElementaryFunctionCategory|) 223195) ((|UnivariateLaurentSeriesConstructor| . |Eltable|) 223082) ((|UnivariateLaurentSeriesConstructor| . |EntireRing|) 222898) ((|UnivariateLaurentSeriesConstructor| . |EuclideanDomain|) 222874) ((|UnivariateLaurentSeriesConstructor| . |Evalable|) 222804) ((|UnivariateLaurentSeriesConstructor| . |Field|) 222780) ((|UnivariateLaurentSeriesConstructor| . |FullyEvalableOver|) 222747) ((|UnivariateLaurentSeriesConstructor| . |FullyLinearlyExplicitRingOver|) 222714) ((|UnivariateLaurentSeriesConstructor| . |FullyPatternMatchable|) 222681) ((|UnivariateLaurentSeriesConstructor| . |Functorial|) 222635) ((|UnivariateLaurentSeriesConstructor| . |GcdDomain|) 222611) ((|UnivariateLaurentSeriesConstructor| . |HyperbolicFunctionCategory|) 222560) ((|UnivariateLaurentSeriesConstructor| . |InnerEvalable|) 222391) ((|UnivariateLaurentSeriesConstructor| . |IntegralDomain|) 222207) ((|UnivariateLaurentSeriesConstructor| . |LeftLinearSet|) 222059) ((|UnivariateLaurentSeriesConstructor| . |LeftModule|) 221834) ((|UnivariateLaurentSeriesConstructor| . |LinearSet|) 221497) ((|UnivariateLaurentSeriesConstructor| . |LinearlyExplicitRingOver|) 221367) ((|UnivariateLaurentSeriesConstructor| . |Module|) 221030) ((|UnivariateLaurentSeriesConstructor| . |Monoid|) T) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianGroup|) 220961) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianMonoid|) 220892) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianSemiGroup|) 220823) ((|UnivariateLaurentSeriesConstructor| . |OrderedCancellationAbelianMonoid|) 220754) ((|UnivariateLaurentSeriesConstructor| . |OrderedIntegralDomain|) 220685) ((|UnivariateLaurentSeriesConstructor| . |OrderedRing|) 220616) ((|UnivariateLaurentSeriesConstructor| . |OrderedSet|) 220485) ((|UnivariateLaurentSeriesConstructor| . |OrderedType|) 220354) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialDomain|) 220059) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialRing|) 219848) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialSpace|) 219555) ((|UnivariateLaurentSeriesConstructor| . |PatternMatchable|) 219378) ((|UnivariateLaurentSeriesConstructor| . |Patternable|) 219345) ((|UnivariateLaurentSeriesConstructor| . |PolynomialFactorizationExplicit|) 219266) ((|UnivariateLaurentSeriesConstructor| . |PowerSeriesCategory|) 219212) ((|UnivariateLaurentSeriesConstructor| . |PrincipalIdealDomain|) 219188) ((|UnivariateLaurentSeriesConstructor| . |QuotientFieldCategory|) 219155) ((|UnivariateLaurentSeriesConstructor| . |RadicalCategory|) 219104) ((|UnivariateLaurentSeriesConstructor| . |RealConstant|) 219044) ((|UnivariateLaurentSeriesConstructor| . |RetractableTo|) 218764) ((|UnivariateLaurentSeriesConstructor| . |RightLinearSet|) 218453) ((|UnivariateLaurentSeriesConstructor| . |RightModule|) 218142) ((|UnivariateLaurentSeriesConstructor| . |Ring|) T) ((|UnivariateLaurentSeriesConstructor| . |Rng|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiRing|) T) ((|UnivariateLaurentSeriesConstructor| . |SetCategory|) T) ((|UnivariateLaurentSeriesConstructor| . |StepThrough|) 218083) ((|UnivariateLaurentSeriesConstructor| . |TranscendentalFunctionCategory|) 218032) ((|UnivariateLaurentSeriesConstructor| . |TrigonometricFunctionCategory|) 217981) ((|UnivariateLaurentSeriesConstructor| . |Type|) T) ((|UnivariateLaurentSeriesConstructor| . |UniqueFactorizationDomain|) 217957) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesCategory|) 217941) ((|UnivariateLaurentSeriesConstructor| . |UnivariatePowerSeriesCategory|) 217913) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 217855) ((|UnivariateLaurentSeries| . |AbelianGroup|) T) ((|UnivariateLaurentSeries| . |AbelianMonoid|) T) ((|UnivariateLaurentSeries| . |AbelianMonoidRing|) 217827) ((|UnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeries| . |Algebra|) 217604) ((|UnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 217553) ((|UnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 217502) ((|UnivariateLaurentSeries| . |BasicType|) T) ((|UnivariateLaurentSeries| . |BiModule|) 217284) ((|UnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeries| . |CharacteristicNonZero|) 217134) ((|UnivariateLaurentSeries| . |CharacteristicZero|) 216990) ((|UnivariateLaurentSeries| . |CoercibleFrom|) 216769) ((|UnivariateLaurentSeries| . |CoercibleTo|) 216743) ((|UnivariateLaurentSeries| . |CommutativeRing|) 216709) ((|UnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|UnivariateLaurentSeries| . |DifferentialDomain|) 216445) ((|UnivariateLaurentSeries| . |DifferentialExtension|) 216375) ((|UnivariateLaurentSeries| . |DifferentialRing|) 216218) ((|UnivariateLaurentSeries| . |DifferentialSpace|) 215960) ((|UnivariateLaurentSeries| . |DifferentialSpaceExtension|) 215890) ((|UnivariateLaurentSeries| . |DivisionRing|) 215866) ((|UnivariateLaurentSeries| . |ElementaryFunctionCategory|) 215815) ((|UnivariateLaurentSeries| . |Eltable|) 215554) ((|UnivariateLaurentSeries| . |EntireRing|) 215521) ((|UnivariateLaurentSeries| . |EuclideanDomain|) 215497) ((|UnivariateLaurentSeries| . |Evalable|) 215316) ((|UnivariateLaurentSeries| . |Field|) 215292) ((|UnivariateLaurentSeries| . |FullyEvalableOver|) 215222) ((|UnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 215152) ((|UnivariateLaurentSeries| . |FullyPatternMatchable|) 215082) ((|UnivariateLaurentSeries| . |Functorial|) 214999) ((|UnivariateLaurentSeries| . |GcdDomain|) 214975) ((|UnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 214924) ((|UnivariateLaurentSeries| . |InnerEvalable|) 214569) ((|UnivariateLaurentSeries| . |IntegralDomain|) 214536) ((|UnivariateLaurentSeries| . |LeftLinearSet|) 214351) ((|UnivariateLaurentSeries| . |LeftModule|) 214181) ((|UnivariateLaurentSeries| . |LinearSet|) 213958) ((|UnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 213888) ((|UnivariateLaurentSeries| . |Module|) 213665) ((|UnivariateLaurentSeries| . |Monoid|) T) ((|UnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|UnivariateLaurentSeries| . |OrderedRing|) NIL) ((|UnivariateLaurentSeries| . |OrderedSet|) NIL) ((|UnivariateLaurentSeries| . |OrderedType|) NIL) ((|UnivariateLaurentSeries| . |PartialDifferentialDomain|) 213268) ((|UnivariateLaurentSeries| . |PartialDifferentialRing|) 213020) ((|UnivariateLaurentSeries| . |PartialDifferentialSpace|) 212653) ((|UnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|UnivariateLaurentSeries| . |Patternable|) 212583) ((|UnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|UnivariateLaurentSeries| . |PowerSeriesCategory|) 212529) ((|UnivariateLaurentSeries| . |PrincipalIdealDomain|) 212505) ((|UnivariateLaurentSeries| . |QuotientFieldCategory|) 212435) ((|UnivariateLaurentSeries| . |RadicalCategory|) 212384) ((|UnivariateLaurentSeries| . |RealConstant|) NIL) ((|UnivariateLaurentSeries| . |RetractableTo|) 212331) ((|UnivariateLaurentSeries| . |RightLinearSet|) 212134) ((|UnivariateLaurentSeries| . |RightModule|) 211937) ((|UnivariateLaurentSeries| . |Ring|) T) ((|UnivariateLaurentSeries| . |Rng|) T) ((|UnivariateLaurentSeries| . |SemiGroup|) T) ((|UnivariateLaurentSeries| . |SemiRing|) T) ((|UnivariateLaurentSeries| . |SetCategory|) T) ((|UnivariateLaurentSeries| . |StepThrough|) NIL) ((|UnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 211886) ((|UnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 211835) ((|UnivariateLaurentSeries| . |Type|) T) ((|UnivariateLaurentSeries| . |UniqueFactorizationDomain|) 211811) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 211795) ((|UnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 211767) ((|UInt8| . |OrderedFinite|) T) ((|UInt8| . |BasicType|) T) ((|UInt8| . |CoercibleTo|) 211741) ((|UInt8| . |Finite|) T) ((|UInt8| . |OrderedSet|) T) ((|UInt8| . |OrderedType|) T) ((|UInt8| . |SetCategory|) T) ((|UInt8| . |Type|) T) ((|UInt8| . |Logic|) T) ((|UInt64| . |OrderedFinite|) T) ((|UInt64| . |BasicType|) T) ((|UInt64| . |CoercibleTo|) 211715) ((|UInt64| . |Finite|) T) ((|UInt64| . |OrderedSet|) T) ((|UInt64| . |OrderedType|) T) ((|UInt64| . |SetCategory|) T) ((|UInt64| . |Type|) T) ((|UInt64| . |Logic|) T) ((|UInt32| . |OrderedFinite|) T) ((|UInt32| . |BasicType|) T) ((|UInt32| . |CoercibleTo|) 211689) ((|UInt32| . |Finite|) T) ((|UInt32| . |OrderedSet|) T) ((|UInt32| . |OrderedType|) T) ((|UInt32| . |SetCategory|) T) ((|UInt32| . |Type|) T) ((|UInt32| . |Logic|) T) ((|UInt16| . |OrderedFinite|) T) ((|UInt16| . |BasicType|) T) ((|UInt16| . |CoercibleTo|) 211663) ((|UInt16| . |Finite|) T) ((|UInt16| . |OrderedSet|) T) ((|UInt16| . |OrderedType|) T) ((|UInt16| . |SetCategory|) T) ((|UInt16| . |Type|) T) ((|UInt16| . |Logic|) T) ((|TypeAst| . |SpadSyntaxCategory|) T) ((|TypeAst| . |AbstractSyntaxCategory|) T) ((|TypeAst| . |BasicType|) T) ((|TypeAst| . |CoercibleFrom|) 211641) ((|TypeAst| . |CoercibleTo|) 211596) ((|TypeAst| . |HomotopicTo|) 211574) ((|TypeAst| . |SetCategory|) T) ((|TypeAst| . |Type|) T) ((|Tuple| . |HomotopicTo|) 211539) ((|Tuple| . |CoercibleFrom|) 211504) ((|Tuple| . |CoercibleTo|) 211414) ((|Tuple| . |SetCategory|) 211384) ((|Tuple| . |BasicType|) 211354) ((|Tuple| . |Type|) 211324) ((|TaylorSeries| . |MultivariateTaylorSeriesCategory|) 211297) ((|TaylorSeries| . |AbelianGroup|) T) ((|TaylorSeries| . |AbelianMonoid|) T) ((|TaylorSeries| . |AbelianMonoidRing|) 211249) ((|TaylorSeries| . |AbelianSemiGroup|) T) ((|TaylorSeries| . |Algebra|) 211093) ((|TaylorSeries| . |ArcHyperbolicFunctionCategory|) 211042) ((|TaylorSeries| . |ArcTrigonometricFunctionCategory|) 210991) ((|TaylorSeries| . |BasicType|) T) ((|TaylorSeries| . |BiModule|) 210847) ((|TaylorSeries| . |CancellationAbelianMonoid|) T) ((|TaylorSeries| . |CharacteristicNonZero|) 210807) ((|TaylorSeries| . |CharacteristicZero|) 210770) ((|TaylorSeries| . |CoercibleFrom|) 210599) ((|TaylorSeries| . |CoercibleTo|) 210573) ((|TaylorSeries| . |CommutativeRing|) 210539) ((|TaylorSeries| . |ElementaryFunctionCategory|) 210488) ((|TaylorSeries| . |EntireRing|) 210455) ((|TaylorSeries| . |Evalable|) 210442) ((|TaylorSeries| . |Functorial|) 210426) ((|TaylorSeries| . |HyperbolicFunctionCategory|) 210375) ((|TaylorSeries| . |InnerEvalable|) 210339) ((|TaylorSeries| . |IntegralDomain|) 210306) ((|TaylorSeries| . |LeftLinearSet|) 210188) ((|TaylorSeries| . |LeftModule|) 210085) ((|TaylorSeries| . |LinearSet|) 209929) ((|TaylorSeries| . |Module|) 209773) ((|TaylorSeries| . |Monoid|) T) ((|TaylorSeries| . |PartialDifferentialDomain|) 209749) ((|TaylorSeries| . |PartialDifferentialRing|) 209727) ((|TaylorSeries| . |PartialDifferentialSpace|) 209705) ((|TaylorSeries| . |PowerSeriesCategory|) 209650) ((|TaylorSeries| . |RadicalCategory|) 209599) ((|TaylorSeries| . |RightLinearSet|) 209469) ((|TaylorSeries| . |RightModule|) 209339) ((|TaylorSeries| . |Ring|) T) ((|TaylorSeries| . |Rng|) T) ((|TaylorSeries| . |SemiGroup|) T) ((|TaylorSeries| . |SemiRing|) T) ((|TaylorSeries| . |SetCategory|) T) ((|TaylorSeries| . |TranscendentalFunctionCategory|) 209288) ((|TaylorSeries| . |TrigonometricFunctionCategory|) 209237) ((|TaylorSeries| . |Type|) T) ((|Tree| . |RecursiveAggregate|) 209221) ((|Tree| . |Aggregate|) T) ((|Tree| . |BasicType|) 209193) ((|Tree| . |CoercibleTo|) 209129) ((|Tree| . |Evalable|) 209053) ((|Tree| . |Functorial|) 209037) ((|Tree| . |HomogeneousAggregate|) 209021) ((|Tree| . |InnerEvalable|) 208940) ((|Tree| . |SetCategory|) 208910) ((|Tree| . |Type|) T) ((|Tree| . |FiniteAggregate|) 208894) ((|Tree| . |ShallowlyMutableAggregate|) 208878) ((|TextFile| . |FileCategory|) 208843) ((|TextFile| . |BasicType|) T) ((|TextFile| . |CoercibleTo|) 208817) ((|TextFile| . |SetCategory|) T) ((|TextFile| . |Type|) T) ((|TexFormat| . |SetCategory|) T) ((|TexFormat| . |BasicType|) T) ((|TexFormat| . |CoercibleTo|) 208791) ((|TexFormat| . |Type|) T) ((|TexFormat| . |CoercibleFrom|) 208765) ((|TermAlgebraOperator| . |OperatorCategory|) 208749) ((|TermAlgebraOperator| . |BasicType|) T) ((|TermAlgebraOperator| . |CoercibleTo|) 208723) ((|TermAlgebraOperator| . |SetCategory|) T) ((|TermAlgebraOperator| . |Type|) T) ((|Tableau| . |CoercibleTo|) 208697) ((|Table| . |TableAggregate|) 208676) ((|Table| . |Aggregate|) T) ((|Table| . |BagAggregate|) 208618) ((|Table| . |BasicType|) T) ((|Table| . |CoercibleTo|) 208592) ((|Table| . |Collection|) 208534) ((|Table| . |Dictionary|) 208476) ((|Table| . |DictionaryOperations|) 208418) ((|Table| . |Eltable|) 208397) ((|Table| . |EltableAggregate|) 208376) ((|Table| . |Evalable|) 208136) ((|Table| . |FiniteAggregate|) 208078) ((|Table| . |Functorial|) 208007) ((|Table| . |HomogeneousAggregate|) 207936) ((|Table| . |IndexedAggregate|) 207915) ((|Table| . |InnerEvalable|) 207663) ((|Table| . |KeyedDictionary|) 207642) ((|Table| . |SetCategory|) T) ((|Table| . |ShallowlyMutableAggregate|) 207571) ((|Table| . |Type|) T) ((|SystemPointer| . |SetCategory|) T) ((|SystemPointer| . |BasicType|) T) ((|SystemPointer| . |CoercibleTo|) 207545) ((|SystemPointer| . |Type|) T) ((|SystemNonNegativeInteger| . |OrderedFinite|) T) ((|SystemNonNegativeInteger| . |BasicType|) T) ((|SystemNonNegativeInteger| . |CoercibleTo|) 207519) ((|SystemNonNegativeInteger| . |Finite|) T) ((|SystemNonNegativeInteger| . |OrderedSet|) T) ((|SystemNonNegativeInteger| . |OrderedType|) T) ((|SystemNonNegativeInteger| . |SetCategory|) T) ((|SystemNonNegativeInteger| . |Type|) T) ((|SystemNonNegativeInteger| . |Logic|) T) ((|SystemInteger| . |OrderedFinite|) T) ((|SystemInteger| . |BasicType|) T) ((|SystemInteger| . |CoercibleTo|) 207493) ((|SystemInteger| . |Finite|) T) ((|SystemInteger| . |OrderedSet|) T) ((|SystemInteger| . |OrderedType|) T) ((|SystemInteger| . |SetCategory|) T) ((|SystemInteger| . |Type|) T) ((|Syntax| . |UnionType|) T) ((|Syntax| . |SetCategory|) T) ((|Syntax| . |BasicType|) T) ((|Syntax| . |CoercibleTo|) 207445) ((|Syntax| . |Type|) T) ((|Syntax| . |RetractableTo|) 207356) ((|Syntax| . |CoercibleFrom|) 207267) ((|SymbolTable| . |CoercibleTo|) 207196) ((|TheSymbolTable| . |CoercibleTo|) 207170) ((|SymmetricPolynomial| . |FiniteAbelianMonoidRing|) 207140) ((|SymmetricPolynomial| . |AbelianGroup|) T) ((|SymmetricPolynomial| . |AbelianMonoid|) T) ((|SymmetricPolynomial| . |AbelianMonoidRing|) 207110) ((|SymmetricPolynomial| . |AbelianSemiGroup|) T) ((|SymmetricPolynomial| . |Algebra|) 206954) ((|SymmetricPolynomial| . |BasicType|) T) ((|SymmetricPolynomial| . |BiModule|) 206810) ((|SymmetricPolynomial| . |CancellationAbelianMonoid|) T) ((|SymmetricPolynomial| . |CharacteristicNonZero|) 206770) ((|SymmetricPolynomial| . |CharacteristicZero|) 206733) ((|SymmetricPolynomial| . |CoercibleFrom|) 206528) ((|SymmetricPolynomial| . |CoercibleTo|) 206502) ((|SymmetricPolynomial| . |CommutativeRing|) 206468) ((|SymmetricPolynomial| . |EntireRing|) 206435) ((|SymmetricPolynomial| . |FullyRetractableTo|) 206419) ((|SymmetricPolynomial| . |Functorial|) 206403) ((|SymmetricPolynomial| . |IntegralDomain|) 206370) ((|SymmetricPolynomial| . |LeftLinearSet|) 206252) ((|SymmetricPolynomial| . |LeftModule|) 206149) ((|SymmetricPolynomial| . |LinearSet|) 205993) ((|SymmetricPolynomial| . |Module|) 205837) ((|SymmetricPolynomial| . |Monoid|) T) ((|SymmetricPolynomial| . |RetractableTo|) 205686) ((|SymmetricPolynomial| . |RightLinearSet|) 205556) ((|SymmetricPolynomial| . |RightModule|) 205426) ((|SymmetricPolynomial| . |Ring|) T) ((|SymmetricPolynomial| . |Rng|) T) ((|SymmetricPolynomial| . |SemiGroup|) T) ((|SymmetricPolynomial| . |SemiRing|) T) ((|SymmetricPolynomial| . |SetCategory|) T) ((|SymmetricPolynomial| . |Type|) T) ((|Symbol| . |OrderedSet|) T) ((|Symbol| . |BasicType|) T) ((|Symbol| . |CoercibleTo|) 205400) ((|Symbol| . |OrderedType|) T) ((|Symbol| . |SetCategory|) T) ((|Symbol| . |Type|) T) ((|Symbol| . |ConvertibleTo|) 205294) ((|Symbol| . |CoercibleFrom|) 205249) ((|Symbol| . |RetractableTo|) 205223) ((|Symbol| . |PatternMatchable|) 205182) ((|SparseUnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 205166) ((|SparseUnivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseUnivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |AbelianMonoidRing|) 205127) ((|SparseUnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |Algebra|) 204971) ((|SparseUnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 204920) ((|SparseUnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 204869) ((|SparseUnivariateTaylorSeries| . |BasicType|) T) ((|SparseUnivariateTaylorSeries| . |BiModule|) 204725) ((|SparseUnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |CharacteristicNonZero|) 204685) ((|SparseUnivariateTaylorSeries| . |CharacteristicZero|) 204648) ((|SparseUnivariateTaylorSeries| . |CoercibleFrom|) 204477) ((|SparseUnivariateTaylorSeries| . |CoercibleTo|) 204451) ((|SparseUnivariateTaylorSeries| . |CommutativeRing|) 204417) ((|SparseUnivariateTaylorSeries| . |DifferentialDomain|) 204348) ((|SparseUnivariateTaylorSeries| . |DifferentialRing|) 204285) ((|SparseUnivariateTaylorSeries| . |DifferentialSpace|) 204222) ((|SparseUnivariateTaylorSeries| . |ElementaryFunctionCategory|) 204171) ((|SparseUnivariateTaylorSeries| . |Eltable|) 204120) ((|SparseUnivariateTaylorSeries| . |EntireRing|) 204087) ((|SparseUnivariateTaylorSeries| . |Functorial|) 204071) ((|SparseUnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 204020) ((|SparseUnivariateTaylorSeries| . |IntegralDomain|) 203987) ((|SparseUnivariateTaylorSeries| . |LeftLinearSet|) 203869) ((|SparseUnivariateTaylorSeries| . |LeftModule|) 203766) ((|SparseUnivariateTaylorSeries| . |LinearSet|) 203610) ((|SparseUnivariateTaylorSeries| . |Module|) 203454) ((|SparseUnivariateTaylorSeries| . |Monoid|) T) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialDomain|) 203288) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialRing|) 203152) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialSpace|) 203016) ((|SparseUnivariateTaylorSeries| . |PowerSeriesCategory|) 202951) ((|SparseUnivariateTaylorSeries| . |RadicalCategory|) 202900) ((|SparseUnivariateTaylorSeries| . |RightLinearSet|) 202770) ((|SparseUnivariateTaylorSeries| . |RightModule|) 202640) ((|SparseUnivariateTaylorSeries| . |Ring|) T) ((|SparseUnivariateTaylorSeries| . |Rng|) T) ((|SparseUnivariateTaylorSeries| . |SemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |SemiRing|) T) ((|SparseUnivariateTaylorSeries| . |SetCategory|) T) ((|SparseUnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 202589) ((|SparseUnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 202538) ((|SparseUnivariateTaylorSeries| . |Type|) T) ((|SparseUnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 202499) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 202434) ((|SparseUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 202393) ((|SparseUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |Algebra|) 202237) ((|SparseUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 202186) ((|SparseUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 202135) ((|SparseUnivariatePuiseuxSeries| . |BasicType|) T) ((|SparseUnivariatePuiseuxSeries| . |BiModule|) 201991) ((|SparseUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 201951) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicZero|) 201914) ((|SparseUnivariatePuiseuxSeries| . |CoercibleFrom|) 201604) ((|SparseUnivariatePuiseuxSeries| . |CoercibleTo|) 201578) ((|SparseUnivariatePuiseuxSeries| . |CommutativeRing|) 201544) ((|SparseUnivariatePuiseuxSeries| . |DifferentialDomain|) 201473) ((|SparseUnivariatePuiseuxSeries| . |DifferentialRing|) 201408) ((|SparseUnivariatePuiseuxSeries| . |DifferentialSpace|) 201343) ((|SparseUnivariatePuiseuxSeries| . |DivisionRing|) 201319) ((|SparseUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 201268) ((|SparseUnivariatePuiseuxSeries| . |Eltable|) 201215) ((|SparseUnivariatePuiseuxSeries| . |EntireRing|) 201182) ((|SparseUnivariatePuiseuxSeries| . |EuclideanDomain|) 201158) ((|SparseUnivariatePuiseuxSeries| . |Field|) 201134) ((|SparseUnivariatePuiseuxSeries| . |Functorial|) 201118) ((|SparseUnivariatePuiseuxSeries| . |GcdDomain|) 201094) ((|SparseUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 201043) ((|SparseUnivariatePuiseuxSeries| . |IntegralDomain|) 201010) ((|SparseUnivariatePuiseuxSeries| . |LeftLinearSet|) 200892) ((|SparseUnivariatePuiseuxSeries| . |LeftModule|) 200789) ((|SparseUnivariatePuiseuxSeries| . |LinearSet|) 200633) ((|SparseUnivariatePuiseuxSeries| . |Module|) 200477) ((|SparseUnivariatePuiseuxSeries| . |Monoid|) T) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 200309) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 200171) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 200033) ((|SparseUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 199966) ((|SparseUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 199942) ((|SparseUnivariatePuiseuxSeries| . |RadicalCategory|) 199891) ((|SparseUnivariatePuiseuxSeries| . |RetractableTo|) 199775) ((|SparseUnivariatePuiseuxSeries| . |RightLinearSet|) 199645) ((|SparseUnivariatePuiseuxSeries| . |RightModule|) 199515) ((|SparseUnivariatePuiseuxSeries| . |Ring|) T) ((|SparseUnivariatePuiseuxSeries| . |Rng|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiRing|) T) ((|SparseUnivariatePuiseuxSeries| . |SetCategory|) T) ((|SparseUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 199464) ((|SparseUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 199413) ((|SparseUnivariatePuiseuxSeries| . |Type|) T) ((|SparseUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 199389) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 199348) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 199332) ((|SparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 199316) ((|SparseUnivariatePolynomial| . |AbelianGroup|) T) ((|SparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |AbelianMonoidRing|) 199277) ((|SparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariatePolynomial| . |Algebra|) 199121) ((|SparseUnivariatePolynomial| . |BasicType|) T) ((|SparseUnivariatePolynomial| . |BiModule|) 198977) ((|SparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |CharacteristicNonZero|) 198937) ((|SparseUnivariatePolynomial| . |CharacteristicZero|) 198900) ((|SparseUnivariatePolynomial| . |CoercibleFrom|) 198661) ((|SparseUnivariatePolynomial| . |CoercibleTo|) 198635) ((|SparseUnivariatePolynomial| . |CommutativeRing|) 198601) ((|SparseUnivariatePolynomial| . |DifferentialDomain|) 198588) ((|SparseUnivariatePolynomial| . |DifferentialExtension|) 198572) ((|SparseUnivariatePolynomial| . |DifferentialRing|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 198556) ((|SparseUnivariatePolynomial| . |Eltable|) 198467) ((|SparseUnivariatePolynomial| . |EntireRing|) 198434) ((|SparseUnivariatePolynomial| . |EuclideanDomain|) 198410) ((|SparseUnivariatePolynomial| . |Evalable|) 198397) ((|SparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 198358) ((|SparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 198342) ((|SparseUnivariatePolynomial| . |FullyRetractableTo|) 198326) ((|SparseUnivariatePolynomial| . |Functorial|) 198310) ((|SparseUnivariatePolynomial| . |GcdDomain|) 198282) ((|SparseUnivariatePolynomial| . |InnerEvalable|) 198211) ((|SparseUnivariatePolynomial| . |IntegralDomain|) 198178) ((|SparseUnivariatePolynomial| . |LeftLinearSet|) 198060) ((|SparseUnivariatePolynomial| . |LeftModule|) 197894) ((|SparseUnivariatePolynomial| . |LinearSet|) 197738) ((|SparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 197654) ((|SparseUnivariatePolynomial| . |Module|) 197498) ((|SparseUnivariatePolynomial| . |Monoid|) T) ((|SparseUnivariatePolynomial| . |PartialDifferentialDomain|) 197334) ((|SparseUnivariatePolynomial| . |PartialDifferentialRing|) 197232) ((|SparseUnivariatePolynomial| . |PartialDifferentialSpace|) 197072) ((|SparseUnivariatePolynomial| . |PolynomialCategory|) 197007) ((|SparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 196957) ((|SparseUnivariatePolynomial| . |PrincipalIdealDomain|) 196933) ((|SparseUnivariatePolynomial| . |RetractableTo|) 196748) ((|SparseUnivariatePolynomial| . |RightLinearSet|) 196618) ((|SparseUnivariatePolynomial| . |RightModule|) 196488) ((|SparseUnivariatePolynomial| . |Ring|) T) ((|SparseUnivariatePolynomial| . |Rng|) T) ((|SparseUnivariatePolynomial| . |SemiGroup|) T) ((|SparseUnivariatePolynomial| . |SemiRing|) T) ((|SparseUnivariatePolynomial| . |SetCategory|) T) ((|SparseUnivariatePolynomial| . |StepThrough|) 196458) ((|SparseUnivariatePolynomial| . |Type|) T) ((|SparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 196408) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 196344) ((|SparseUnivariateLaurentSeries| . |AbelianGroup|) T) ((|SparseUnivariateLaurentSeries| . |AbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |AbelianMonoidRing|) 196316) ((|SparseUnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |Algebra|) 196087) ((|SparseUnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 196036) ((|SparseUnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 195985) ((|SparseUnivariateLaurentSeries| . |BasicType|) T) ((|SparseUnivariateLaurentSeries| . |BiModule|) 195761) ((|SparseUnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |CharacteristicNonZero|) 195605) ((|SparseUnivariateLaurentSeries| . |CharacteristicZero|) 195455) ((|SparseUnivariateLaurentSeries| . |CoercibleFrom|) 195228) ((|SparseUnivariateLaurentSeries| . |CoercibleTo|) 195202) ((|SparseUnivariateLaurentSeries| . |CommutativeRing|) 195168) ((|SparseUnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|SparseUnivariateLaurentSeries| . |DifferentialDomain|) 194892) ((|SparseUnivariateLaurentSeries| . |DifferentialExtension|) 194816) ((|SparseUnivariateLaurentSeries| . |DifferentialRing|) 194653) ((|SparseUnivariateLaurentSeries| . |DifferentialSpace|) 194383) ((|SparseUnivariateLaurentSeries| . |DifferentialSpaceExtension|) 194307) ((|SparseUnivariateLaurentSeries| . |DivisionRing|) 194283) ((|SparseUnivariateLaurentSeries| . |ElementaryFunctionCategory|) 194232) ((|SparseUnivariateLaurentSeries| . |Eltable|) 193947) ((|SparseUnivariateLaurentSeries| . |EntireRing|) 193914) ((|SparseUnivariateLaurentSeries| . |EuclideanDomain|) 193890) ((|SparseUnivariateLaurentSeries| . |Evalable|) 193691) ((|SparseUnivariateLaurentSeries| . |Field|) 193667) ((|SparseUnivariateLaurentSeries| . |FullyEvalableOver|) 193591) ((|SparseUnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 193515) ((|SparseUnivariateLaurentSeries| . |FullyPatternMatchable|) 193439) ((|SparseUnivariateLaurentSeries| . |Functorial|) 193350) ((|SparseUnivariateLaurentSeries| . |GcdDomain|) 193326) ((|SparseUnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 193275) ((|SparseUnivariateLaurentSeries| . |InnerEvalable|) 192890) ((|SparseUnivariateLaurentSeries| . |IntegralDomain|) 192857) ((|SparseUnivariateLaurentSeries| . |LeftLinearSet|) 192666) ((|SparseUnivariateLaurentSeries| . |LeftModule|) 192490) ((|SparseUnivariateLaurentSeries| . |LinearSet|) 192261) ((|SparseUnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 192185) ((|SparseUnivariateLaurentSeries| . |Module|) 191956) ((|SparseUnivariateLaurentSeries| . |Monoid|) T) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedRing|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedSet|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedType|) NIL) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialDomain|) 191547) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialRing|) 191293) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialSpace|) 190914) ((|SparseUnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|SparseUnivariateLaurentSeries| . |Patternable|) 190838) ((|SparseUnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|SparseUnivariateLaurentSeries| . |PowerSeriesCategory|) 190784) ((|SparseUnivariateLaurentSeries| . |PrincipalIdealDomain|) 190760) ((|SparseUnivariateLaurentSeries| . |QuotientFieldCategory|) 190684) ((|SparseUnivariateLaurentSeries| . |RadicalCategory|) 190633) ((|SparseUnivariateLaurentSeries| . |RealConstant|) NIL) ((|SparseUnivariateLaurentSeries| . |RetractableTo|) 190574) ((|SparseUnivariateLaurentSeries| . |RightLinearSet|) 190371) ((|SparseUnivariateLaurentSeries| . |RightModule|) 190168) ((|SparseUnivariateLaurentSeries| . |Ring|) T) ((|SparseUnivariateLaurentSeries| . |Rng|) T) ((|SparseUnivariateLaurentSeries| . |SemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |SemiRing|) T) ((|SparseUnivariateLaurentSeries| . |SetCategory|) T) ((|SparseUnivariateLaurentSeries| . |StepThrough|) NIL) ((|SparseUnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 190117) ((|SparseUnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 190066) ((|SparseUnivariateLaurentSeries| . |Type|) T) ((|SparseUnivariateLaurentSeries| . |UniqueFactorizationDomain|) 190042) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 190026) ((|SparseUnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 189998) ((|SuchThatAst| . |SpadSyntaxCategory|) T) ((|SuchThatAst| . |AbstractSyntaxCategory|) T) ((|SuchThatAst| . |BasicType|) T) ((|SuchThatAst| . |CoercibleFrom|) 189976) ((|SuchThatAst| . |CoercibleTo|) 189931) ((|SuchThatAst| . |HomotopicTo|) 189909) ((|SuchThatAst| . |SetCategory|) T) ((|SuchThatAst| . |Type|) T) ((|SuchThat| . |SetCategory|) T) ((|SuchThat| . |BasicType|) T) ((|SuchThat| . |CoercibleTo|) 189883) ((|SuchThat| . |Type|) T) ((|SubSpace| . |SetCategory|) T) ((|SubSpace| . |BasicType|) T) ((|SubSpace| . |CoercibleTo|) 189857) ((|SubSpace| . |Type|) T) ((|StringTable| . |TableAggregate|) 189830) ((|StringTable| . |Aggregate|) T) ((|StringTable| . |BagAggregate|) 189766) ((|StringTable| . |BasicType|) T) ((|StringTable| . |CoercibleTo|) 189740) ((|StringTable| . |Collection|) 189676) ((|StringTable| . |Dictionary|) 189612) ((|StringTable| . |DictionaryOperations|) 189548) ((|StringTable| . |Eltable|) 189521) ((|StringTable| . |EltableAggregate|) 189494) ((|StringTable| . |Evalable|) 189247) ((|StringTable| . |FiniteAggregate|) 189183) ((|StringTable| . |Functorial|) 189106) ((|StringTable| . |HomogeneousAggregate|) 189029) ((|StringTable| . |IndexedAggregate|) 189002) ((|StringTable| . |InnerEvalable|) 188704) ((|StringTable| . |KeyedDictionary|) 188677) ((|StringTable| . |SetCategory|) T) ((|StringTable| . |ShallowlyMutableAggregate|) 188600) ((|StringTable| . |Type|) T) ((|String| . |StringAggregate|) T) ((|String| . |Aggregate|) T) ((|String| . |BasicType|) T) ((|String| . |CoercibleTo|) 188574) ((|String| . |Collection|) 188549) ((|String| . |Eltable|) 188474) ((|String| . |EltableAggregate|) 188437) ((|String| . |FiniteAggregate|) 188412) ((|String| . |FiniteLinearAggregate|) 188387) ((|String| . |Functorial|) 188362) ((|String| . |HomogeneousAggregate|) 188337) ((|String| . |IndexedAggregate|) 188300) ((|String| . |LinearAggregate|) 188275) ((|String| . |OneDimensionalArrayAggregate|) 188250) ((|String| . |OrderedSet|) T) ((|String| . |OrderedType|) T) ((|String| . |SetCategory|) T) ((|String| . |ShallowlyMutableAggregate|) 188225) ((|String| . |Type|) T) ((|Stream| . |LazyStreamAggregate|) 188209) ((|Stream| . |Aggregate|) T) ((|Stream| . |BasicType|) 188181) ((|Stream| . |CoercibleTo|) 188117) ((|Stream| . |Collection|) 188101) ((|Stream| . |ConvertibleTo|) 188037) ((|Stream| . |Eltable|) 187971) ((|Stream| . |EltableAggregate|) 187943) ((|Stream| . |Evalable|) 187867) ((|Stream| . |Functorial|) 187851) ((|Stream| . |HomogeneousAggregate|) 187835) ((|Stream| . |IndexedAggregate|) 187807) ((|Stream| . |InnerEvalable|) 187726) ((|Stream| . |LinearAggregate|) 187710) ((|Stream| . |RecursiveAggregate|) 187694) ((|Stream| . |SetCategory|) 187664) ((|Stream| . |StreamAggregate|) 187648) ((|Stream| . |Type|) T) ((|Stream| . |UnaryRecursiveAggregate|) 187632) ((|Stream| . |CoercibleFrom|) 187607) ((|Stream| . |ShallowlyMutableAggregate|) 187591) ((|StepAst| . |SpadSyntaxCategory|) T) ((|StepAst| . |AbstractSyntaxCategory|) T) ((|StepAst| . |BasicType|) T) ((|StepAst| . |CoercibleFrom|) 187569) ((|StepAst| . |CoercibleTo|) 187524) ((|StepAst| . |HomotopicTo|) 187502) ((|StepAst| . |SetCategory|) T) ((|StepAst| . |Type|) T) ((|SparseTable| . |TableAggregate|) 187481) ((|SparseTable| . |Aggregate|) T) ((|SparseTable| . |BagAggregate|) 187423) ((|SparseTable| . |BasicType|) T) ((|SparseTable| . |CoercibleTo|) 187397) ((|SparseTable| . |Collection|) 187339) ((|SparseTable| . |Dictionary|) 187281) ((|SparseTable| . |DictionaryOperations|) 187223) ((|SparseTable| . |Eltable|) 187202) ((|SparseTable| . |EltableAggregate|) 187181) ((|SparseTable| . |Evalable|) 186941) ((|SparseTable| . |FiniteAggregate|) 186883) ((|SparseTable| . |Functorial|) 186812) ((|SparseTable| . |HomogeneousAggregate|) 186741) ((|SparseTable| . |IndexedAggregate|) 186720) ((|SparseTable| . |InnerEvalable|) 186468) ((|SparseTable| . |KeyedDictionary|) 186447) ((|SparseTable| . |SetCategory|) T) ((|SparseTable| . |ShallowlyMutableAggregate|) 186376) ((|SparseTable| . |Type|) T) ((|Stack| . |StackAggregate|) 186360) ((|Stack| . |Aggregate|) T) ((|Stack| . |BagAggregate|) 186344) ((|Stack| . |BasicType|) 186316) ((|Stack| . |CoercibleTo|) 186252) ((|Stack| . |Evalable|) 186176) ((|Stack| . |FiniteAggregate|) 186160) ((|Stack| . |Functorial|) 186144) ((|Stack| . |HomogeneousAggregate|) 186128) ((|Stack| . |InnerEvalable|) 186047) ((|Stack| . |SetCategory|) 186017) ((|Stack| . |ShallowlyMutableAggregate|) 186001) ((|Stack| . |Type|) T) ((|SquareFreeRegularTriangularSet| . |SquareFreeRegularTriangularSetCategory|) 185970) ((|SquareFreeRegularTriangularSet| . |Aggregate|) T) ((|SquareFreeRegularTriangularSet| . |BasicType|) T) ((|SquareFreeRegularTriangularSet| . |CoercibleTo|) 185922) ((|SquareFreeRegularTriangularSet| . |Collection|) 185906) ((|SquareFreeRegularTriangularSet| . |ConvertibleTo|) 185842) ((|SquareFreeRegularTriangularSet| . |Evalable|) 185766) ((|SquareFreeRegularTriangularSet| . |FiniteAggregate|) 185750) ((|SquareFreeRegularTriangularSet| . |Functorial|) 185734) ((|SquareFreeRegularTriangularSet| . |HomogeneousAggregate|) 185718) ((|SquareFreeRegularTriangularSet| . |InnerEvalable|) 185637) ((|SquareFreeRegularTriangularSet| . |PolynomialSetCategory|) 185606) ((|SquareFreeRegularTriangularSet| . |RegularTriangularSetCategory|) 185575) ((|SquareFreeRegularTriangularSet| . |SetCategory|) T) ((|SquareFreeRegularTriangularSet| . |ShallowlyMutableAggregate|) 185559) ((|SquareFreeRegularTriangularSet| . |TriangularSetCategory|) 185528) ((|SquareFreeRegularTriangularSet| . |Type|) T) ((|SquareMatrix| . |SquareMatrixCategory|) 185472) ((|SquareMatrix| . |AbelianGroup|) T) ((|SquareMatrix| . |AbelianMonoid|) T) ((|SquareMatrix| . |AbelianSemiGroup|) T) ((|SquareMatrix| . |Aggregate|) T) ((|SquareMatrix| . |Algebra|) 185417) ((|SquareMatrix| . |BasicType|) T) ((|SquareMatrix| . |BiModule|) 185396) ((|SquareMatrix| . |CancellationAbelianMonoid|) T) ((|SquareMatrix| . |CoercibleFrom|) 185282) ((|SquareMatrix| . |CoercibleTo|) 185232) ((|SquareMatrix| . |DifferentialDomain|) 185190) ((|SquareMatrix| . |DifferentialExtension|) 185174) ((|SquareMatrix| . |DifferentialRing|) 185139) ((|SquareMatrix| . |DifferentialSpace|) 185103) ((|SquareMatrix| . |DifferentialSpaceExtension|) 185087) ((|SquareMatrix| . |Evalable|) 185011) ((|SquareMatrix| . |FiniteAggregate|) 184995) ((|SquareMatrix| . |FullyLinearlyExplicitRingOver|) 184979) ((|SquareMatrix| . |FullyRetractableTo|) 184963) ((|SquareMatrix| . |Functorial|) 184947) ((|SquareMatrix| . |HomogeneousAggregate|) 184931) ((|SquareMatrix| . |InnerEvalable|) 184850) ((|SquareMatrix| . |LeftLinearSet|) 184804) ((|SquareMatrix| . |LeftModule|) 184710) ((|SquareMatrix| . |LinearSet|) 184617) ((|SquareMatrix| . |LinearlyExplicitRingOver|) 184533) ((|SquareMatrix| . |Module|) 184440) ((|SquareMatrix| . |Monoid|) T) ((|SquareMatrix| . |PartialDifferentialDomain|) 184312) ((|SquareMatrix| . |PartialDifferentialRing|) 184244) ((|SquareMatrix| . |PartialDifferentialSpace|) 184118) ((|SquareMatrix| . |RectangularMatrixCategory|) 184057) ((|SquareMatrix| . |RetractableTo|) 183906) ((|SquareMatrix| . |RightLinearSet|) 183890) ((|SquareMatrix| . |RightModule|) 183874) ((|SquareMatrix| . |Ring|) T) ((|SquareMatrix| . |Rng|) T) ((|SquareMatrix| . |SemiGroup|) T) ((|SquareMatrix| . |SemiRing|) T) ((|SquareMatrix| . |SetCategory|) T) ((|SquareMatrix| . |Type|) T) ((|SquareMatrix| . |ConvertibleTo|) 183815) ((|SplittingTree| . |RecursiveAggregate|) 183776) ((|SplittingTree| . |Aggregate|) T) ((|SplittingTree| . |BasicType|) T) ((|SplittingTree| . |CoercibleTo|) 183750) ((|SplittingTree| . |Evalable|) 183640) ((|SplittingTree| . |Functorial|) 183601) ((|SplittingTree| . |HomogeneousAggregate|) 183562) ((|SplittingTree| . |InnerEvalable|) 183445) ((|SplittingTree| . |SetCategory|) T) ((|SplittingTree| . |Type|) T) ((|SplittingTree| . |FiniteAggregate|) 183406) ((|SplittingTree| . |ShallowlyMutableAggregate|) 183367) ((|SplittingNode| . |SetCategory|) T) ((|SplittingNode| . |BasicType|) T) ((|SplittingNode| . |CoercibleTo|) 183341) ((|SplittingNode| . |Type|) T) ((|SpadAst| . |SpadAstExports|) T) ((|SpadAst| . |AbstractSyntaxCategory|) T) ((|SpadAst| . |BasicType|) T) ((|SpadAst| . |CoercibleFrom|) 183319) ((|SpadAst| . |CoercibleTo|) 183274) ((|SpadAst| . |HomotopicTo|) 183252) ((|SpadAst| . |SetCategory|) T) ((|SpadAst| . |SpadSyntaxCategory|) T) ((|SpadAst| . |Type|) T) ((|SpadAst| . |UnionType|) T) ((|ThreeSpace| . |ThreeSpaceCategory|) 183236) ((|ThreeSpace| . |BasicType|) T) ((|ThreeSpace| . |CoercibleTo|) 183210) ((|ThreeSpace| . |SetCategory|) T) ((|ThreeSpace| . |Type|) T) ((|SparseMultivariateTaylorSeries| . |MultivariateTaylorSeriesCategory|) 183189) ((|SparseMultivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseMultivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |AbelianMonoidRing|) 183147) ((|SparseMultivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |Algebra|) 182991) ((|SparseMultivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 182940) ((|SparseMultivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 182889) ((|SparseMultivariateTaylorSeries| . |BasicType|) T) ((|SparseMultivariateTaylorSeries| . |BiModule|) 182745) ((|SparseMultivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |CharacteristicNonZero|) 182705) ((|SparseMultivariateTaylorSeries| . |CharacteristicZero|) 182668) ((|SparseMultivariateTaylorSeries| . |CoercibleFrom|) 182497) ((|SparseMultivariateTaylorSeries| . |CoercibleTo|) 182471) ((|SparseMultivariateTaylorSeries| . |CommutativeRing|) 182437) ((|SparseMultivariateTaylorSeries| . |ElementaryFunctionCategory|) 182386) ((|SparseMultivariateTaylorSeries| . |EntireRing|) 182353) ((|SparseMultivariateTaylorSeries| . |Evalable|) 182340) ((|SparseMultivariateTaylorSeries| . |Functorial|) 182324) ((|SparseMultivariateTaylorSeries| . |HyperbolicFunctionCategory|) 182273) ((|SparseMultivariateTaylorSeries| . |InnerEvalable|) 182243) ((|SparseMultivariateTaylorSeries| . |IntegralDomain|) 182210) ((|SparseMultivariateTaylorSeries| . |LeftLinearSet|) 182092) ((|SparseMultivariateTaylorSeries| . |LeftModule|) 181989) ((|SparseMultivariateTaylorSeries| . |LinearSet|) 181833) ((|SparseMultivariateTaylorSeries| . |Module|) 181677) ((|SparseMultivariateTaylorSeries| . |Monoid|) T) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialDomain|) 181659) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialRing|) 181643) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialSpace|) 181627) ((|SparseMultivariateTaylorSeries| . |PowerSeriesCategory|) 181580) ((|SparseMultivariateTaylorSeries| . |RadicalCategory|) 181529) ((|SparseMultivariateTaylorSeries| . |RightLinearSet|) 181399) ((|SparseMultivariateTaylorSeries| . |RightModule|) 181269) ((|SparseMultivariateTaylorSeries| . |Ring|) T) ((|SparseMultivariateTaylorSeries| . |Rng|) T) ((|SparseMultivariateTaylorSeries| . |SemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |SemiRing|) T) ((|SparseMultivariateTaylorSeries| . |SetCategory|) T) ((|SparseMultivariateTaylorSeries| . |TranscendentalFunctionCategory|) 181218) ((|SparseMultivariateTaylorSeries| . |TrigonometricFunctionCategory|) 181167) ((|SparseMultivariateTaylorSeries| . |Type|) T) ((|SparseMultivariatePolynomial| . |PolynomialCategory|) 181120) ((|SparseMultivariatePolynomial| . |AbelianGroup|) T) ((|SparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |AbelianMonoidRing|) 181078) ((|SparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseMultivariatePolynomial| . |Algebra|) 180922) ((|SparseMultivariatePolynomial| . |BasicType|) T) ((|SparseMultivariatePolynomial| . |BiModule|) 180778) ((|SparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |CharacteristicNonZero|) 180738) ((|SparseMultivariatePolynomial| . |CharacteristicZero|) 180701) ((|SparseMultivariatePolynomial| . |CoercibleFrom|) 180483) ((|SparseMultivariatePolynomial| . |CoercibleTo|) 180457) ((|SparseMultivariatePolynomial| . |CommutativeRing|) 180423) ((|SparseMultivariatePolynomial| . |ConvertibleTo|) 180030) ((|SparseMultivariatePolynomial| . |EntireRing|) 179997) ((|SparseMultivariatePolynomial| . |Evalable|) 179984) ((|SparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 179942) ((|SparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 179926) ((|SparseMultivariatePolynomial| . |FullyRetractableTo|) 179910) ((|SparseMultivariatePolynomial| . |Functorial|) 179894) ((|SparseMultivariatePolynomial| . |GcdDomain|) 179866) ((|SparseMultivariatePolynomial| . |InnerEvalable|) 179818) ((|SparseMultivariatePolynomial| . |IntegralDomain|) 179785) ((|SparseMultivariatePolynomial| . |LeftLinearSet|) 179667) ((|SparseMultivariatePolynomial| . |LeftModule|) 179501) ((|SparseMultivariatePolynomial| . |LinearSet|) 179345) ((|SparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 179261) ((|SparseMultivariatePolynomial| . |Module|) 179105) ((|SparseMultivariatePolynomial| . |Monoid|) T) ((|SparseMultivariatePolynomial| . |PartialDifferentialDomain|) 179087) ((|SparseMultivariatePolynomial| . |PartialDifferentialRing|) 179071) ((|SparseMultivariatePolynomial| . |PartialDifferentialSpace|) 179055) ((|SparseMultivariatePolynomial| . |PatternMatchable|) 178834) ((|SparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 178784) ((|SparseMultivariatePolynomial| . |RetractableTo|) 178620) ((|SparseMultivariatePolynomial| . |RightLinearSet|) 178490) ((|SparseMultivariatePolynomial| . |RightModule|) 178360) ((|SparseMultivariatePolynomial| . |Ring|) T) ((|SparseMultivariatePolynomial| . |Rng|) T) ((|SparseMultivariatePolynomial| . |SemiGroup|) T) ((|SparseMultivariatePolynomial| . |SemiRing|) T) ((|SparseMultivariatePolynomial| . |SetCategory|) T) ((|SparseMultivariatePolynomial| . |Type|) T) ((|SparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 178310) ((|SingleInteger| . |IntegerNumberSystem|) T) ((|SingleInteger| . |AbelianGroup|) T) ((|SingleInteger| . |AbelianMonoid|) T) ((|SingleInteger| . |AbelianSemiGroup|) T) ((|SingleInteger| . |Algebra|) 178297) ((|SingleInteger| . |BasicType|) T) ((|SingleInteger| . |BiModule|) 178282) ((|SingleInteger| . |CancellationAbelianMonoid|) T) ((|SingleInteger| . |CharacteristicZero|) T) ((|SingleInteger| . |CoercibleFrom|) 178249) ((|SingleInteger| . |CoercibleTo|) 178223) ((|SingleInteger| . |CombinatorialFunctionCategory|) T) ((|SingleInteger| . |CommutativeRing|) T) ((|SingleInteger| . |ConvertibleTo|) 178109) ((|SingleInteger| . |DifferentialDomain|) 178096) ((|SingleInteger| . |DifferentialRing|) T) ((|SingleInteger| . |DifferentialSpace|) T) ((|SingleInteger| . |EntireRing|) T) ((|SingleInteger| . |EuclideanDomain|) T) ((|SingleInteger| . |GcdDomain|) T) ((|SingleInteger| . |IntegralDomain|) T) ((|SingleInteger| . |LeftLinearSet|) 178063) ((|SingleInteger| . |LeftModule|) 178030) ((|SingleInteger| . |LinearSet|) 178017) ((|SingleInteger| . |LinearlyExplicitRingOver|) 177994) ((|SingleInteger| . |Module|) 177981) ((|SingleInteger| . |Monoid|) T) ((|SingleInteger| . |OrderedAbelianGroup|) T) ((|SingleInteger| . |OrderedAbelianMonoid|) T) ((|SingleInteger| . |OrderedAbelianSemiGroup|) T) ((|SingleInteger| . |OrderedCancellationAbelianMonoid|) T) ((|SingleInteger| . |OrderedIntegralDomain|) T) ((|SingleInteger| . |OrderedRing|) T) ((|SingleInteger| . |OrderedSet|) T) ((|SingleInteger| . |OrderedType|) T) ((|SingleInteger| . |PatternMatchable|) 177958) ((|SingleInteger| . |PrincipalIdealDomain|) T) ((|SingleInteger| . |RealConstant|) T) ((|SingleInteger| . |RetractableTo|) 177935) ((|SingleInteger| . |RightLinearSet|) 177922) ((|SingleInteger| . |RightModule|) 177909) ((|SingleInteger| . |Ring|) T) ((|SingleInteger| . |Rng|) T) ((|SingleInteger| . |SemiGroup|) T) ((|SingleInteger| . |SemiRing|) T) ((|SingleInteger| . |SetCategory|) T) ((|SingleInteger| . |StepThrough|) T) ((|SingleInteger| . |Type|) T) ((|SingleInteger| . |UniqueFactorizationDomain|) T) ((|SingleInteger| . |OrderedFinite|) T) ((|SingleInteger| . |Finite|) T) ((|SingleInteger| . |BooleanLogic|) T) ((|SingleInteger| . |Logic|) T) ((|SignatureAst| . |SpadSyntaxCategory|) T) ((|SignatureAst| . |AbstractSyntaxCategory|) T) ((|SignatureAst| . |BasicType|) T) ((|SignatureAst| . |CoercibleFrom|) 177887) ((|SignatureAst| . |CoercibleTo|) 177842) ((|SignatureAst| . |HomotopicTo|) 177820) ((|SignatureAst| . |SetCategory|) T) ((|SignatureAst| . |Type|) T) ((|Signature| . |SetCategory|) T) ((|Signature| . |BasicType|) T) ((|Signature| . |CoercibleTo|) 177794) ((|Signature| . |Type|) T) ((|SplitHomogeneousDirectProduct| . |DirectProductCategory|) 177773) ((|SplitHomogeneousDirectProduct| . |AbelianGroup|) 177742) ((|SplitHomogeneousDirectProduct| . |AbelianMonoid|) 177710) ((|SplitHomogeneousDirectProduct| . |AbelianSemiGroup|) 177675) ((|SplitHomogeneousDirectProduct| . |Aggregate|) T) ((|SplitHomogeneousDirectProduct| . |BasicType|) 177418) ((|SplitHomogeneousDirectProduct| . |BiModule|) 177381) ((|SplitHomogeneousDirectProduct| . |CancellationAbelianMonoid|) 177337) ((|SplitHomogeneousDirectProduct| . |CoercibleFrom|) 177066) ((|SplitHomogeneousDirectProduct| . |CoercibleTo|) 176749) ((|SplitHomogeneousDirectProduct| . |DifferentialDomain|) 176612) ((|SplitHomogeneousDirectProduct| . |DifferentialExtension|) 176580) ((|SplitHomogeneousDirectProduct| . |DifferentialRing|) 176517) ((|SplitHomogeneousDirectProduct| . |DifferentialSpace|) 176386) ((|SplitHomogeneousDirectProduct| . |DifferentialSpaceExtension|) 176354) ((|SplitHomogeneousDirectProduct| . |Eltable|) 176326) ((|SplitHomogeneousDirectProduct| . |EltableAggregate|) 176298) ((|SplitHomogeneousDirectProduct| . |Evalable|) 176222) ((|SplitHomogeneousDirectProduct| . |Finite|) 176197) ((|SplitHomogeneousDirectProduct| . |FiniteAggregate|) 176181) ((|SplitHomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 176149) ((|SplitHomogeneousDirectProduct| . |FullyRetractableTo|) 176110) ((|SplitHomogeneousDirectProduct| . |Functorial|) 176094) ((|SplitHomogeneousDirectProduct| . |HomogeneousAggregate|) 176078) ((|SplitHomogeneousDirectProduct| . |IndexedAggregate|) 176050) ((|SplitHomogeneousDirectProduct| . |InnerEvalable|) 175969) ((|SplitHomogeneousDirectProduct| . |LeftLinearSet|) 175865) ((|SplitHomogeneousDirectProduct| . |LeftModule|) 175711) ((|SplitHomogeneousDirectProduct| . |LinearSet|) 175677) ((|SplitHomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 175549) ((|SplitHomogeneousDirectProduct| . |Module|) 175506) ((|SplitHomogeneousDirectProduct| . |Monoid|) 175483) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoid|) 175441) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 175399) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 175357) ((|SplitHomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 175315) ((|SplitHomogeneousDirectProduct| . |OrderedSet|) 175286) ((|SplitHomogeneousDirectProduct| . |OrderedType|) 175257) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialDomain|) 175073) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialRing|) 174977) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialSpace|) 174795) ((|SplitHomogeneousDirectProduct| . |RetractableTo|) 174551) ((|SplitHomogeneousDirectProduct| . |RightLinearSet|) 174517) ((|SplitHomogeneousDirectProduct| . |RightModule|) 174485) ((|SplitHomogeneousDirectProduct| . |Ring|) 174462) ((|SplitHomogeneousDirectProduct| . |Rng|) 174439) ((|SplitHomogeneousDirectProduct| . |SemiGroup|) 174416) ((|SplitHomogeneousDirectProduct| . |SemiRing|) 174393) ((|SplitHomogeneousDirectProduct| . |SetCategory|) 174134) ((|SplitHomogeneousDirectProduct| . |Type|) T) ((|SplitHomogeneousDirectProduct| . |VectorSpace|) 174101) ((|SemiGroupOperation| . |SemiGroupOperatorCategory|) 174085) ((|SemiGroupOperation| . |BinaryOperatorCategory|) 174069) ((|SemiGroupOperation| . |MappingCategory|) 174043) ((|SemiGroupOperation| . |SetCategory|) T) ((|SemiGroupOperation| . |BasicType|) T) ((|SemiGroupOperation| . |CoercibleTo|) 174017) ((|SemiGroupOperation| . |Type|) T) ((|SExpressionOf| . |SExpressionCategory|) 173981) ((|SExpressionOf| . |BasicType|) T) ((|SExpressionOf| . |CoercibleTo|) 173955) ((|SExpressionOf| . |ConvertibleFrom|) 173868) ((|SExpressionOf| . |Eltable|) 173817) ((|SExpressionOf| . |SetCategory|) T) ((|SExpressionOf| . |Type|) T) ((|SExpression| . |SExpressionCategory|) 173741) ((|SExpression| . |BasicType|) T) ((|SExpression| . |CoercibleTo|) 173715) ((|SExpression| . |ConvertibleFrom|) 173588) ((|SExpression| . |Eltable|) 173537) ((|SExpression| . |SetCategory|) T) ((|SExpression| . |Type|) T) ((|SetOfMIntegersInOneToN| . |Finite|) T) ((|SetOfMIntegersInOneToN| . |BasicType|) T) ((|SetOfMIntegersInOneToN| . |CoercibleTo|) 173511) ((|SetOfMIntegersInOneToN| . |SetCategory|) T) ((|SetOfMIntegersInOneToN| . |Type|) T) ((|Set| . |FiniteSetAggregate|) 173495) ((|Set| . |Aggregate|) T) ((|Set| . |BagAggregate|) 173479) ((|Set| . |BasicType|) T) ((|Set| . |CoercibleTo|) 173453) ((|Set| . |Collection|) 173437) ((|Set| . |ConvertibleTo|) 173373) ((|Set| . |Dictionary|) 173357) ((|Set| . |DictionaryOperations|) 173341) ((|Set| . |Evalable|) 173265) ((|Set| . |Finite|) 173240) ((|Set| . |FiniteAggregate|) 173224) ((|Set| . |Functorial|) 173208) ((|Set| . |HomogeneousAggregate|) 173192) ((|Set| . |InnerEvalable|) 173111) ((|Set| . |SetAggregate|) 173095) ((|Set| . |SetCategory|) T) ((|Set| . |ShallowlyMutableAggregate|) 173079) ((|Set| . |Type|) T) ((|SequenceAst| . |SpadSyntaxCategory|) T) ((|SequenceAst| . |AbstractSyntaxCategory|) T) ((|SequenceAst| . |BasicType|) T) ((|SequenceAst| . |CoercibleFrom|) 173057) ((|SequenceAst| . |CoercibleTo|) 173012) ((|SequenceAst| . |HomotopicTo|) 172990) ((|SequenceAst| . |SetCategory|) T) ((|SequenceAst| . |Type|) T) ((|SegmentBinding| . |Type|) T) ((|SegmentBinding| . |Join|) T) ((|SegmentBinding| . |SetCategory|) 172948) ((|SegmentBinding| . |BasicType|) 172906) ((|SegmentBinding| . |CoercibleTo|) 172845) ((|SegmentAst| . |SpadSyntaxCategory|) T) ((|SegmentAst| . |AbstractSyntaxCategory|) T) ((|SegmentAst| . |BasicType|) T) ((|SegmentAst| . |CoercibleFrom|) 172823) ((|SegmentAst| . |CoercibleTo|) 172778) ((|SegmentAst| . |HomotopicTo|) 172756) ((|SegmentAst| . |SetCategory|) T) ((|SegmentAst| . |Type|) T) ((|Segment| . |SegmentCategory|) 172740) ((|Segment| . |ConvertibleFrom|) 172724) ((|Segment| . |SetCategory|) 172694) ((|Segment| . |BasicType|) 172664) ((|Segment| . |CoercibleTo|) 172615) ((|Segment| . |Type|) 172585) ((|Segment| . |SegmentExpansionCategory|) 172532) ((|SequentialDifferentialVariable| . |DifferentialVariableCategory|) 172516) ((|SequentialDifferentialVariable| . |BasicType|) T) ((|SequentialDifferentialVariable| . |CoercibleFrom|) 172500) ((|SequentialDifferentialVariable| . |CoercibleTo|) 172474) ((|SequentialDifferentialVariable| . |DifferentialDomain|) 172461) ((|SequentialDifferentialVariable| . |DifferentialSpace|) T) ((|SequentialDifferentialVariable| . |OrderedSet|) T) ((|SequentialDifferentialVariable| . |OrderedType|) T) ((|SequentialDifferentialVariable| . |RetractableTo|) 172445) ((|SequentialDifferentialVariable| . |SetCategory|) T) ((|SequentialDifferentialVariable| . |Type|) T) ((|SequentialDifferentialPolynomial| . |DifferentialPolynomialCategory|) 172348) ((|SequentialDifferentialPolynomial| . |AbelianGroup|) T) ((|SequentialDifferentialPolynomial| . |AbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |AbelianMonoidRing|) 172265) ((|SequentialDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|SequentialDifferentialPolynomial| . |Algebra|) 172109) ((|SequentialDifferentialPolynomial| . |BasicType|) T) ((|SequentialDifferentialPolynomial| . |BiModule|) 171965) ((|SequentialDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |CharacteristicNonZero|) 171925) ((|SequentialDifferentialPolynomial| . |CharacteristicZero|) 171888) ((|SequentialDifferentialPolynomial| . |CoercibleFrom|) 171564) ((|SequentialDifferentialPolynomial| . |CoercibleTo|) 171538) ((|SequentialDifferentialPolynomial| . |CommutativeRing|) 171504) ((|SequentialDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|SequentialDifferentialPolynomial| . |DifferentialDomain|) 171462) ((|SequentialDifferentialPolynomial| . |DifferentialExtension|) 171446) ((|SequentialDifferentialPolynomial| . |DifferentialRing|) 171411) ((|SequentialDifferentialPolynomial| . |DifferentialSpace|) 171375) ((|SequentialDifferentialPolynomial| . |DifferentialSpaceExtension|) 171359) ((|SequentialDifferentialPolynomial| . |EntireRing|) 171326) ((|SequentialDifferentialPolynomial| . |Evalable|) 171313) ((|SequentialDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 171230) ((|SequentialDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 171214) ((|SequentialDifferentialPolynomial| . |FullyRetractableTo|) 171198) ((|SequentialDifferentialPolynomial| . |Functorial|) 171182) ((|SequentialDifferentialPolynomial| . |GcdDomain|) 171154) ((|SequentialDifferentialPolynomial| . |InnerEvalable|) 170973) ((|SequentialDifferentialPolynomial| . |IntegralDomain|) 170940) ((|SequentialDifferentialPolynomial| . |LeftLinearSet|) 170822) ((|SequentialDifferentialPolynomial| . |LeftModule|) 170656) ((|SequentialDifferentialPolynomial| . |LinearSet|) 170500) ((|SequentialDifferentialPolynomial| . |LinearlyExplicitRingOver|) 170416) ((|SequentialDifferentialPolynomial| . |Module|) 170260) ((|SequentialDifferentialPolynomial| . |Monoid|) T) ((|SequentialDifferentialPolynomial| . |PartialDifferentialDomain|) 170076) ((|SequentialDifferentialPolynomial| . |PartialDifferentialRing|) 169954) ((|SequentialDifferentialPolynomial| . |PartialDifferentialSpace|) 169774) ((|SequentialDifferentialPolynomial| . |PatternMatchable|) NIL) ((|SequentialDifferentialPolynomial| . |PolynomialCategory|) 169684) ((|SequentialDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 169634) ((|SequentialDifferentialPolynomial| . |RetractableTo|) 169364) ((|SequentialDifferentialPolynomial| . |RightLinearSet|) 169234) ((|SequentialDifferentialPolynomial| . |RightModule|) 169104) ((|SequentialDifferentialPolynomial| . |Ring|) T) ((|SequentialDifferentialPolynomial| . |Rng|) T) ((|SequentialDifferentialPolynomial| . |SemiGroup|) T) ((|SequentialDifferentialPolynomial| . |SemiRing|) T) ((|SequentialDifferentialPolynomial| . |SetCategory|) T) ((|SequentialDifferentialPolynomial| . |Type|) T) ((|SequentialDifferentialPolynomial| . |UniqueFactorizationDomain|) 169054) ((|Scope| . |CoercibleTo|) 169028) ((|SingletonAsOrderedSet| . |OrderedSet|) T) ((|SingletonAsOrderedSet| . |BasicType|) T) ((|SingletonAsOrderedSet| . |CoercibleTo|) 169002) ((|SingletonAsOrderedSet| . |OrderedType|) T) ((|SingletonAsOrderedSet| . |SetCategory|) T) ((|SingletonAsOrderedSet| . |Type|) T) ((|SingletonAsOrderedSet| . |ConvertibleTo|) 168980) ((|SimpleAlgebraicExtension| . |MonogenicAlgebra|) 168959) ((|SimpleAlgebraicExtension| . |AbelianGroup|) T) ((|SimpleAlgebraicExtension| . |AbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |AbelianSemiGroup|) T) ((|SimpleAlgebraicExtension| . |Algebra|) 168866) ((|SimpleAlgebraicExtension| . |BasicType|) T) ((|SimpleAlgebraicExtension| . |BiModule|) 168776) ((|SimpleAlgebraicExtension| . |CancellationAbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |CharacteristicNonZero|) 168736) ((|SimpleAlgebraicExtension| . |CharacteristicZero|) 168699) ((|SimpleAlgebraicExtension| . |CoercibleFrom|) 168530) ((|SimpleAlgebraicExtension| . |CoercibleTo|) 168504) ((|SimpleAlgebraicExtension| . |CommutativeRing|) T) ((|SimpleAlgebraicExtension| . |ConvertibleTo|) 168488) ((|SimpleAlgebraicExtension| . |DifferentialDomain|) 168312) ((|SimpleAlgebraicExtension| . |DifferentialExtension|) 168279) ((|SimpleAlgebraicExtension| . |DifferentialRing|) 168173) ((|SimpleAlgebraicExtension| . |DifferentialSpace|) 168003) ((|SimpleAlgebraicExtension| . |DifferentialSpaceExtension|) 167970) ((|SimpleAlgebraicExtension| . |DivisionRing|) 167946) ((|SimpleAlgebraicExtension| . |EntireRing|) 167922) ((|SimpleAlgebraicExtension| . |EuclideanDomain|) 167898) ((|SimpleAlgebraicExtension| . |Field|) 167874) ((|SimpleAlgebraicExtension| . |FieldOfPrimeCharacteristic|) 167836) ((|SimpleAlgebraicExtension| . |Finite|) 167811) ((|SimpleAlgebraicExtension| . |FiniteFieldCategory|) 167773) ((|SimpleAlgebraicExtension| . |FiniteRankAlgebra|) 167752) ((|SimpleAlgebraicExtension| . |FramedAlgebra|) 167731) ((|SimpleAlgebraicExtension| . |FullyLinearlyExplicitRingOver|) 167715) ((|SimpleAlgebraicExtension| . |FullyRetractableTo|) 167699) ((|SimpleAlgebraicExtension| . |GcdDomain|) 167675) ((|SimpleAlgebraicExtension| . |IntegralDomain|) 167651) ((|SimpleAlgebraicExtension| . |LeftLinearSet|) 167560) ((|SimpleAlgebraicExtension| . |LeftModule|) 167421) ((|SimpleAlgebraicExtension| . |LinearSet|) 167328) ((|SimpleAlgebraicExtension| . |LinearlyExplicitRingOver|) 167244) ((|SimpleAlgebraicExtension| . |Module|) 167151) ((|SimpleAlgebraicExtension| . |Monoid|) T) ((|SimpleAlgebraicExtension| . |PartialDifferentialDomain|) 166965) ((|SimpleAlgebraicExtension| . |PartialDifferentialRing|) 166868) ((|SimpleAlgebraicExtension| . |PartialDifferentialSpace|) 166684) ((|SimpleAlgebraicExtension| . |PrincipalIdealDomain|) 166660) ((|SimpleAlgebraicExtension| . |RetractableTo|) 166509) ((|SimpleAlgebraicExtension| . |RightLinearSet|) 166433) ((|SimpleAlgebraicExtension| . |RightModule|) 166357) ((|SimpleAlgebraicExtension| . |Ring|) T) ((|SimpleAlgebraicExtension| . |Rng|) T) ((|SimpleAlgebraicExtension| . |SemiGroup|) T) ((|SimpleAlgebraicExtension| . |SemiRing|) T) ((|SimpleAlgebraicExtension| . |SetCategory|) T) ((|SimpleAlgebraicExtension| . |StepThrough|) 166319) ((|SimpleAlgebraicExtension| . |Type|) T) ((|SimpleAlgebraicExtension| . |UniqueFactorizationDomain|) 166295) ((|Ruleset| . |SetCategory|) T) ((|Ruleset| . |BasicType|) T) ((|Ruleset| . |CoercibleTo|) 166269) ((|Ruleset| . |Type|) T) ((|Ruleset| . |Eltable|) 166248) ((|RuleCalled| . |SetCategory|) T) ((|RuleCalled| . |BasicType|) T) ((|RuleCalled| . |CoercibleTo|) 166222) ((|RuleCalled| . |Type|) T) ((|RewriteRule| . |SetCategory|) T) ((|RewriteRule| . |BasicType|) T) ((|RewriteRule| . |CoercibleTo|) 166196) ((|RewriteRule| . |Type|) T) ((|RewriteRule| . |Eltable|) 166175) ((|RewriteRule| . |RetractableTo|) 166146) ((|RewriteRule| . |CoercibleFrom|) 166117) ((|RuntimeValue| . |Type|) T) ((|RuntimeValue| . |Join|) T) ((|RestrictAst| . |SpadSyntaxCategory|) T) ((|RestrictAst| . |AbstractSyntaxCategory|) T) ((|RestrictAst| . |BasicType|) T) ((|RestrictAst| . |CoercibleFrom|) 166095) ((|RestrictAst| . |CoercibleTo|) 166050) ((|RestrictAst| . |HomotopicTo|) 166028) ((|RestrictAst| . |SetCategory|) T) ((|RestrictAst| . |Type|) T) ((|RepeatAst| . |SpadSyntaxCategory|) T) ((|RepeatAst| . |AbstractSyntaxCategory|) T) ((|RepeatAst| . |BasicType|) T) ((|RepeatAst| . |CoercibleFrom|) 166006) ((|RepeatAst| . |CoercibleTo|) 165961) ((|RepeatAst| . |HomotopicTo|) 165939) ((|RepeatAst| . |SetCategory|) T) ((|RepeatAst| . |Type|) T) ((|RomanNumeral| . |IntegerNumberSystem|) T) ((|RomanNumeral| . |AbelianGroup|) T) ((|RomanNumeral| . |AbelianMonoid|) T) ((|RomanNumeral| . |AbelianSemiGroup|) T) ((|RomanNumeral| . |Algebra|) 165926) ((|RomanNumeral| . |BasicType|) T) ((|RomanNumeral| . |BiModule|) 165911) ((|RomanNumeral| . |CancellationAbelianMonoid|) T) ((|RomanNumeral| . |CharacteristicZero|) T) ((|RomanNumeral| . |CoercibleFrom|) 165878) ((|RomanNumeral| . |CoercibleTo|) 165852) ((|RomanNumeral| . |CombinatorialFunctionCategory|) T) ((|RomanNumeral| . |CommutativeRing|) T) ((|RomanNumeral| . |ConvertibleTo|) 165738) ((|RomanNumeral| . |DifferentialDomain|) 165725) ((|RomanNumeral| . |DifferentialRing|) T) ((|RomanNumeral| . |DifferentialSpace|) T) ((|RomanNumeral| . |EntireRing|) T) ((|RomanNumeral| . |EuclideanDomain|) T) ((|RomanNumeral| . |GcdDomain|) T) ((|RomanNumeral| . |IntegralDomain|) T) ((|RomanNumeral| . |LeftLinearSet|) 165692) ((|RomanNumeral| . |LeftModule|) 165659) ((|RomanNumeral| . |LinearSet|) 165646) ((|RomanNumeral| . |LinearlyExplicitRingOver|) 165623) ((|RomanNumeral| . |Module|) 165610) ((|RomanNumeral| . |Monoid|) T) ((|RomanNumeral| . |OrderedAbelianGroup|) T) ((|RomanNumeral| . |OrderedAbelianMonoid|) T) ((|RomanNumeral| . |OrderedAbelianSemiGroup|) T) ((|RomanNumeral| . |OrderedCancellationAbelianMonoid|) T) ((|RomanNumeral| . |OrderedIntegralDomain|) T) ((|RomanNumeral| . |OrderedRing|) T) ((|RomanNumeral| . |OrderedSet|) T) ((|RomanNumeral| . |OrderedType|) T) ((|RomanNumeral| . |PatternMatchable|) 165587) ((|RomanNumeral| . |PrincipalIdealDomain|) T) ((|RomanNumeral| . |RealConstant|) T) ((|RomanNumeral| . |RetractableTo|) 165564) ((|RomanNumeral| . |RightLinearSet|) 165551) ((|RomanNumeral| . |RightModule|) 165538) ((|RomanNumeral| . |Ring|) T) ((|RomanNumeral| . |Rng|) T) ((|RomanNumeral| . |SemiGroup|) T) ((|RomanNumeral| . |SemiRing|) T) ((|RomanNumeral| . |SetCategory|) T) ((|RomanNumeral| . |StepThrough|) T) ((|RomanNumeral| . |Type|) T) ((|RomanNumeral| . |UniqueFactorizationDomain|) T) ((|RomanNumeral| . |ConvertibleFrom|) 165516) ((|RightOpenIntervalRootCharacterization| . |RealRootCharacterizationCategory|) 165495) ((|RightOpenIntervalRootCharacterization| . |BasicType|) T) ((|RightOpenIntervalRootCharacterization| . |CoercibleTo|) 165469) ((|RightOpenIntervalRootCharacterization| . |SetCategory|) T) ((|RightOpenIntervalRootCharacterization| . |Type|) T) ((|RangeBinding| . |Type|) T) ((|RangeBinding| . |Join|) T) ((|RangeBinding| . |SetCategory|) 165439) ((|RangeBinding| . |BasicType|) 165409) ((|RangeBinding| . |CoercibleTo|) 165360) ((|RectangularMatrix| . |RectangularMatrixCategory|) 165278) ((|RectangularMatrix| . |AbelianGroup|) T) ((|RectangularMatrix| . |AbelianMonoid|) T) ((|RectangularMatrix| . |AbelianSemiGroup|) T) ((|RectangularMatrix| . |Aggregate|) T) ((|RectangularMatrix| . |BasicType|) T) ((|RectangularMatrix| . |BiModule|) 165257) ((|RectangularMatrix| . |CancellationAbelianMonoid|) T) ((|RectangularMatrix| . |CoercibleTo|) 165207) ((|RectangularMatrix| . |Evalable|) 165131) ((|RectangularMatrix| . |FiniteAggregate|) 165115) ((|RectangularMatrix| . |Functorial|) 165099) ((|RectangularMatrix| . |HomogeneousAggregate|) 165083) ((|RectangularMatrix| . |InnerEvalable|) 165002) ((|RectangularMatrix| . |LeftLinearSet|) 164966) ((|RectangularMatrix| . |LeftModule|) 164950) ((|RectangularMatrix| . |LinearSet|) 164907) ((|RectangularMatrix| . |Module|) 164864) ((|RectangularMatrix| . |RightLinearSet|) 164848) ((|RectangularMatrix| . |RightModule|) 164832) ((|RectangularMatrix| . |SetCategory|) T) ((|RectangularMatrix| . |Type|) T) ((|RectangularMatrix| . |VectorSpace|) 164799) ((|RectangularMatrix| . |ConvertibleTo|) 164740) ((|RegularChain| . |RegularTriangularSetCategory|) 164622) ((|RegularChain| . |Aggregate|) T) ((|RegularChain| . |BasicType|) T) ((|RegularChain| . |CoercibleTo|) 164509) ((|RegularChain| . |Collection|) 164428) ((|RegularChain| . |ConvertibleTo|) 164299) ((|RegularChain| . |Evalable|) 164063) ((|RegularChain| . |FiniteAggregate|) 163982) ((|RegularChain| . |Functorial|) 163901) ((|RegularChain| . |HomogeneousAggregate|) 163820) ((|RegularChain| . |InnerEvalable|) 163577) ((|RegularChain| . |PolynomialSetCategory|) 163459) ((|RegularChain| . |SetCategory|) T) ((|RegularChain| . |ShallowlyMutableAggregate|) 163378) ((|RegularChain| . |TriangularSetCategory|) 163260) ((|RegularChain| . |Type|) T) ((|ReturnAst| . |SpadSyntaxCategory|) T) ((|ReturnAst| . |AbstractSyntaxCategory|) T) ((|ReturnAst| . |BasicType|) T) ((|ReturnAst| . |CoercibleFrom|) 163238) ((|ReturnAst| . |CoercibleTo|) 163193) ((|ReturnAst| . |HomotopicTo|) 163171) ((|ReturnAst| . |SetCategory|) T) ((|ReturnAst| . |Type|) T) ((|ResidueRing| . |CommutativeRing|) T) ((|ResidueRing| . |AbelianGroup|) T) ((|ResidueRing| . |AbelianMonoid|) T) ((|ResidueRing| . |AbelianSemiGroup|) T) ((|ResidueRing| . |BasicType|) T) ((|ResidueRing| . |BiModule|) 163138) ((|ResidueRing| . |CancellationAbelianMonoid|) T) ((|ResidueRing| . |CoercibleFrom|) 163102) ((|ResidueRing| . |CoercibleTo|) 163076) ((|ResidueRing| . |LeftLinearSet|) 163030) ((|ResidueRing| . |LeftModule|) 163004) ((|ResidueRing| . |Monoid|) T) ((|ResidueRing| . |RightLinearSet|) 162978) ((|ResidueRing| . |RightModule|) 162952) ((|ResidueRing| . |Ring|) T) ((|ResidueRing| . |Rng|) T) ((|ResidueRing| . |SemiGroup|) T) ((|ResidueRing| . |SemiRing|) T) ((|ResidueRing| . |SetCategory|) T) ((|ResidueRing| . |Type|) T) ((|ResidueRing| . |Algebra|) 162936) ((|ResidueRing| . |LinearSet|) 162920) ((|ResidueRing| . |Module|) 162904) ((|RegularTriangularSet| . |RegularTriangularSetCategory|) 162873) ((|RegularTriangularSet| . |Aggregate|) T) ((|RegularTriangularSet| . |BasicType|) T) ((|RegularTriangularSet| . |CoercibleTo|) 162825) ((|RegularTriangularSet| . |Collection|) 162809) ((|RegularTriangularSet| . |ConvertibleTo|) 162745) ((|RegularTriangularSet| . |Evalable|) 162669) ((|RegularTriangularSet| . |FiniteAggregate|) 162653) ((|RegularTriangularSet| . |Functorial|) 162637) ((|RegularTriangularSet| . |HomogeneousAggregate|) 162621) ((|RegularTriangularSet| . |InnerEvalable|) 162540) ((|RegularTriangularSet| . |PolynomialSetCategory|) 162509) ((|RegularTriangularSet| . |SetCategory|) T) ((|RegularTriangularSet| . |ShallowlyMutableAggregate|) 162493) ((|RegularTriangularSet| . |TriangularSetCategory|) 162462) ((|RegularTriangularSet| . |Type|) T) ((|Reference| . |SetCategory|) T) ((|Reference| . |BasicType|) T) ((|Reference| . |CoercibleTo|) 162436) ((|Reference| . |Type|) T) ((|RealClosure| . |RealClosedField|) T) ((|RealClosure| . |AbelianGroup|) T) ((|RealClosure| . |AbelianMonoid|) T) ((|RealClosure| . |AbelianSemiGroup|) T) ((|RealClosure| . |Algebra|) 162362) ((|RealClosure| . |BasicType|) T) ((|RealClosure| . |BiModule|) 162270) ((|RealClosure| . |CancellationAbelianMonoid|) T) ((|RealClosure| . |CharacteristicZero|) T) ((|RealClosure| . |CoercibleFrom|) 162196) ((|RealClosure| . |CoercibleTo|) 162170) ((|RealClosure| . |CommutativeRing|) T) ((|RealClosure| . |DivisionRing|) T) ((|RealClosure| . |EntireRing|) T) ((|RealClosure| . |EuclideanDomain|) T) ((|RealClosure| . |Field|) T) ((|RealClosure| . |FullyRetractableTo|) 162121) ((|RealClosure| . |GcdDomain|) T) ((|RealClosure| . |IntegralDomain|) T) ((|RealClosure| . |LeftLinearSet|) 162047) ((|RealClosure| . |LeftModule|) 161973) ((|RealClosure| . |LinearSet|) 161899) ((|RealClosure| . |Module|) 161825) ((|RealClosure| . |Monoid|) T) ((|RealClosure| . |OrderedAbelianGroup|) T) ((|RealClosure| . |OrderedAbelianMonoid|) T) ((|RealClosure| . |OrderedAbelianSemiGroup|) T) ((|RealClosure| . |OrderedCancellationAbelianMonoid|) T) ((|RealClosure| . |OrderedRing|) T) ((|RealClosure| . |OrderedSet|) T) ((|RealClosure| . |OrderedType|) T) ((|RealClosure| . |PrincipalIdealDomain|) T) ((|RealClosure| . |RadicalCategory|) T) ((|RealClosure| . |RetractableTo|) 161656) ((|RealClosure| . |RightLinearSet|) 161582) ((|RealClosure| . |RightModule|) 161508) ((|RealClosure| . |Ring|) T) ((|RealClosure| . |Rng|) T) ((|RealClosure| . |SemiGroup|) T) ((|RealClosure| . |SemiRing|) T) ((|RealClosure| . |SetCategory|) T) ((|RealClosure| . |Type|) T) ((|RealClosure| . |UniqueFactorizationDomain|) T) ((|ReduceAst| . |SpadSyntaxCategory|) T) ((|ReduceAst| . |AbstractSyntaxCategory|) T) ((|ReduceAst| . |BasicType|) T) ((|ReduceAst| . |CoercibleFrom|) 161486) ((|ReduceAst| . |CoercibleTo|) 161441) ((|ReduceAst| . |HomotopicTo|) 161419) ((|ReduceAst| . |SetCategory|) T) ((|ReduceAst| . |Type|) T) ((|RadixExpansion| . |QuotientFieldCategory|) 161396) ((|RadixExpansion| . |AbelianGroup|) T) ((|RadixExpansion| . |AbelianMonoid|) T) ((|RadixExpansion| . |AbelianSemiGroup|) T) ((|RadixExpansion| . |Algebra|) 161330) ((|RadixExpansion| . |BasicType|) T) ((|RadixExpansion| . |BiModule|) 161248) ((|RadixExpansion| . |CancellationAbelianMonoid|) T) ((|RadixExpansion| . |CharacteristicNonZero|) NIL) ((|RadixExpansion| . |CharacteristicZero|) T) ((|RadixExpansion| . |CoercibleFrom|) 161187) ((|RadixExpansion| . |CoercibleTo|) 161128) ((|RadixExpansion| . |CommutativeRing|) T) ((|RadixExpansion| . |ConvertibleTo|) 161029) ((|RadixExpansion| . |DifferentialDomain|) 161016) ((|RadixExpansion| . |DifferentialExtension|) 160993) ((|RadixExpansion| . |DifferentialRing|) T) ((|RadixExpansion| . |DifferentialSpace|) T) ((|RadixExpansion| . |DifferentialSpaceExtension|) 160970) ((|RadixExpansion| . |DivisionRing|) T) ((|RadixExpansion| . |Eltable|) NIL) ((|RadixExpansion| . |EntireRing|) T) ((|RadixExpansion| . |EuclideanDomain|) T) ((|RadixExpansion| . |Evalable|) NIL) ((|RadixExpansion| . |Field|) T) ((|RadixExpansion| . |FullyEvalableOver|) 160947) ((|RadixExpansion| . |FullyLinearlyExplicitRingOver|) 160924) ((|RadixExpansion| . |FullyPatternMatchable|) 160901) ((|RadixExpansion| . |Functorial|) 160878) ((|RadixExpansion| . |GcdDomain|) T) ((|RadixExpansion| . |InnerEvalable|) NIL) ((|RadixExpansion| . |IntegralDomain|) T) ((|RadixExpansion| . |LeftLinearSet|) 160817) ((|RadixExpansion| . |LeftModule|) 160756) ((|RadixExpansion| . |LinearSet|) 160690) ((|RadixExpansion| . |LinearlyExplicitRingOver|) 160667) ((|RadixExpansion| . |Module|) 160601) ((|RadixExpansion| . |Monoid|) T) ((|RadixExpansion| . |OrderedAbelianGroup|) T) ((|RadixExpansion| . |OrderedAbelianMonoid|) T) ((|RadixExpansion| . |OrderedAbelianSemiGroup|) T) ((|RadixExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|RadixExpansion| . |OrderedIntegralDomain|) T) ((|RadixExpansion| . |OrderedRing|) T) ((|RadixExpansion| . |OrderedSet|) T) ((|RadixExpansion| . |OrderedType|) T) ((|RadixExpansion| . |PartialDifferentialDomain|) NIL) ((|RadixExpansion| . |PartialDifferentialRing|) NIL) ((|RadixExpansion| . |PartialDifferentialSpace|) NIL) ((|RadixExpansion| . |PatternMatchable|) 160578) ((|RadixExpansion| . |Patternable|) 160555) ((|RadixExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|RadixExpansion| . |PrincipalIdealDomain|) T) ((|RadixExpansion| . |RealConstant|) T) ((|RadixExpansion| . |RetractableTo|) 160504) ((|RadixExpansion| . |RightLinearSet|) 160438) ((|RadixExpansion| . |RightModule|) 160372) ((|RadixExpansion| . |Ring|) T) ((|RadixExpansion| . |Rng|) T) ((|RadixExpansion| . |SemiGroup|) T) ((|RadixExpansion| . |SemiRing|) T) ((|RadixExpansion| . |SetCategory|) T) ((|RadixExpansion| . |StepThrough|) T) ((|RadixExpansion| . |Type|) T) ((|RadixExpansion| . |UniqueFactorizationDomain|) T) ((|RadicalFunctionField| . |FunctionFieldCategory|) 160346) ((|RadicalFunctionField| . |AbelianGroup|) T) ((|RadicalFunctionField| . |AbelianMonoid|) T) ((|RadicalFunctionField| . |AbelianSemiGroup|) T) ((|RadicalFunctionField| . |Algebra|) 160274) ((|RadicalFunctionField| . |BasicType|) T) ((|RadicalFunctionField| . |BiModule|) 160186) ((|RadicalFunctionField| . |CancellationAbelianMonoid|) T) ((|RadicalFunctionField| . |CharacteristicNonZero|) 160133) ((|RadicalFunctionField| . |CharacteristicZero|) 160083) ((|RadicalFunctionField| . |CoercibleFrom|) 159996) ((|RadicalFunctionField| . |CoercibleTo|) 159970) ((|RadicalFunctionField| . |CommutativeRing|) T) ((|RadicalFunctionField| . |ConvertibleTo|) 159954) ((|RadicalFunctionField| . |DifferentialDomain|) 159899) ((|RadicalFunctionField| . |DifferentialExtension|) 159870) ((|RadicalFunctionField| . |DifferentialRing|) 159822) ((|RadicalFunctionField| . |DifferentialSpace|) 159773) ((|RadicalFunctionField| . |DifferentialSpaceExtension|) 159744) ((|RadicalFunctionField| . |DivisionRing|) T) ((|RadicalFunctionField| . |EntireRing|) T) ((|RadicalFunctionField| . |EuclideanDomain|) T) ((|RadicalFunctionField| . |Field|) T) ((|RadicalFunctionField| . |FiniteRankAlgebra|) 159710) ((|RadicalFunctionField| . |FramedAlgebra|) 159676) ((|RadicalFunctionField| . |FullyLinearlyExplicitRingOver|) 159647) ((|RadicalFunctionField| . |FullyRetractableTo|) 159618) ((|RadicalFunctionField| . |GcdDomain|) T) ((|RadicalFunctionField| . |IntegralDomain|) T) ((|RadicalFunctionField| . |LeftLinearSet|) 159531) ((|RadicalFunctionField| . |LeftModule|) 159383) ((|RadicalFunctionField| . |LinearSet|) 159311) ((|RadicalFunctionField| . |LinearlyExplicitRingOver|) 159201) ((|RadicalFunctionField| . |Module|) 159129) ((|RadicalFunctionField| . |MonogenicAlgebra|) 159095) ((|RadicalFunctionField| . |Monoid|) T) ((|RadicalFunctionField| . |PartialDifferentialDomain|) 158941) ((|RadicalFunctionField| . |PartialDifferentialRing|) 158860) ((|RadicalFunctionField| . |PartialDifferentialSpace|) 158708) ((|RadicalFunctionField| . |PrincipalIdealDomain|) T) ((|RadicalFunctionField| . |RetractableTo|) 158518) ((|RadicalFunctionField| . |RightLinearSet|) 158446) ((|RadicalFunctionField| . |RightModule|) 158374) ((|RadicalFunctionField| . |Ring|) T) ((|RadicalFunctionField| . |Rng|) T) ((|RadicalFunctionField| . |SemiGroup|) T) ((|RadicalFunctionField| . |SemiRing|) T) ((|RadicalFunctionField| . |SetCategory|) T) ((|RadicalFunctionField| . |Type|) T) ((|RadicalFunctionField| . |UniqueFactorizationDomain|) T) ((|Queue| . |QueueAggregate|) 158358) ((|Queue| . |Aggregate|) T) ((|Queue| . |BagAggregate|) 158342) ((|Queue| . |BasicType|) 158314) ((|Queue| . |CoercibleTo|) 158250) ((|Queue| . |Evalable|) 158174) ((|Queue| . |FiniteAggregate|) 158158) ((|Queue| . |Functorial|) 158142) ((|Queue| . |HomogeneousAggregate|) 158126) ((|Queue| . |InnerEvalable|) 158045) ((|Queue| . |SetCategory|) 158015) ((|Queue| . |ShallowlyMutableAggregate|) 157999) ((|Queue| . |Type|) T) ((|Quaternion| . |QuaternionCategory|) 157983) ((|Quaternion| . |AbelianGroup|) T) ((|Quaternion| . |AbelianMonoid|) T) ((|Quaternion| . |AbelianSemiGroup|) T) ((|Quaternion| . |Algebra|) 157917) ((|Quaternion| . |BasicType|) T) ((|Quaternion| . |BiModule|) 157805) ((|Quaternion| . |CancellationAbelianMonoid|) T) ((|Quaternion| . |CharacteristicNonZero|) 157765) ((|Quaternion| . |CharacteristicZero|) 157728) ((|Quaternion| . |CoercibleFrom|) 157586) ((|Quaternion| . |CoercibleTo|) 157560) ((|Quaternion| . |ConvertibleTo|) 157496) ((|Quaternion| . |DifferentialDomain|) 157454) ((|Quaternion| . |DifferentialExtension|) 157438) ((|Quaternion| . |DifferentialRing|) 157403) ((|Quaternion| . |DifferentialSpace|) 157367) ((|Quaternion| . |DifferentialSpaceExtension|) 157351) ((|Quaternion| . |DivisionRing|) 157327) ((|Quaternion| . |Eltable|) 157280) ((|Quaternion| . |EntireRing|) 157251) ((|Quaternion| . |Evalable|) 157210) ((|Quaternion| . |FullyEvalableOver|) 157194) ((|Quaternion| . |FullyLinearlyExplicitRingOver|) 157178) ((|Quaternion| . |FullyRetractableTo|) 157162) ((|Quaternion| . |Functorial|) 157146) ((|Quaternion| . |InnerEvalable|) 157035) ((|Quaternion| . |LeftLinearSet|) 156944) ((|Quaternion| . |LeftModule|) 156805) ((|Quaternion| . |LinearSet|) 156739) ((|Quaternion| . |LinearlyExplicitRingOver|) 156655) ((|Quaternion| . |Module|) 156589) ((|Quaternion| . |Monoid|) T) ((|Quaternion| . |OrderedSet|) 156560) ((|Quaternion| . |OrderedType|) 156531) ((|Quaternion| . |PartialDifferentialDomain|) 156403) ((|Quaternion| . |PartialDifferentialRing|) 156335) ((|Quaternion| . |PartialDifferentialSpace|) 156209) ((|Quaternion| . |RetractableTo|) 156058) ((|Quaternion| . |RightLinearSet|) 155960) ((|Quaternion| . |RightModule|) 155862) ((|Quaternion| . |Ring|) T) ((|Quaternion| . |Rng|) T) ((|Quaternion| . |SemiGroup|) T) ((|Quaternion| . |SemiRing|) T) ((|Quaternion| . |SetCategory|) T) ((|Quaternion| . |Type|) T) ((|QuasiquoteAst| . |SpadSyntaxCategory|) T) ((|QuasiquoteAst| . |AbstractSyntaxCategory|) T) ((|QuasiquoteAst| . |BasicType|) T) ((|QuasiquoteAst| . |CoercibleFrom|) 155840) ((|QuasiquoteAst| . |CoercibleTo|) 155795) ((|QuasiquoteAst| . |HomotopicTo|) 155773) ((|QuasiquoteAst| . |SetCategory|) T) ((|QuasiquoteAst| . |Type|) T) ((|QuadraticForm| . |AbelianGroup|) T) ((|QuadraticForm| . |AbelianMonoid|) T) ((|QuadraticForm| . |AbelianSemiGroup|) T) ((|QuadraticForm| . |BasicType|) T) ((|QuadraticForm| . |CancellationAbelianMonoid|) T) ((|QuadraticForm| . |CoercibleTo|) 155747) ((|QuadraticForm| . |LeftLinearSet|) 155724) ((|QuadraticForm| . |SetCategory|) T) ((|QuadraticForm| . |Type|) T) ((|QuadraticForm| . |Eltable|) 155680) ((|QueryEquation| . |CoercibleTo|) 155654) ((|QuasiAlgebraicSet| . |SetCategory|) T) ((|QuasiAlgebraicSet| . |BasicType|) T) ((|QuasiAlgebraicSet| . |CoercibleTo|) 155628) ((|QuasiAlgebraicSet| . |Type|) T) ((|Partition| . |OrderedCancellationAbelianMonoid|) T) ((|Partition| . |AbelianMonoid|) T) ((|Partition| . |AbelianSemiGroup|) T) ((|Partition| . |BasicType|) T) ((|Partition| . |CancellationAbelianMonoid|) T) ((|Partition| . |CoercibleTo|) 155565) ((|Partition| . |OrderedAbelianMonoid|) T) ((|Partition| . |OrderedAbelianSemiGroup|) T) ((|Partition| . |OrderedSet|) T) ((|Partition| . |OrderedType|) T) ((|Partition| . |SetCategory|) T) ((|Partition| . |Type|) T) ((|PretendAst| . |SpadSyntaxCategory|) T) ((|PretendAst| . |AbstractSyntaxCategory|) T) ((|PretendAst| . |BasicType|) T) ((|PretendAst| . |CoercibleFrom|) 155543) ((|PretendAst| . |CoercibleTo|) 155498) ((|PretendAst| . |HomotopicTo|) 155476) ((|PretendAst| . |SetCategory|) T) ((|PretendAst| . |Type|) T) ((|PropositionalFormula| . |PropositionalLogic|) T) ((|PropositionalFormula| . |BasicType|) T) ((|PropositionalFormula| . |BooleanLogic|) T) ((|PropositionalFormula| . |CoercibleTo|) 155450) ((|PropositionalFormula| . |Logic|) T) ((|PropositionalFormula| . |SetCategory|) T) ((|PropositionalFormula| . |Type|) T) ((|PropositionalFormula| . |CoercibleFrom|) 155434) ((|Property| . |CoercibleTo|) 155408) ((|Product| . |SetCategory|) T) ((|Product| . |BasicType|) T) ((|Product| . |CoercibleTo|) 155382) ((|Product| . |Type|) T) ((|Product| . |Finite|) 155327) ((|Product| . |Monoid|) 155215) ((|Product| . |SemiGroup|) 155103) ((|Product| . |AbelianMonoid|) 154783) ((|Product| . |AbelianSemiGroup|) 154463) ((|Product| . |CancellationAbelianMonoid|) 154211) ((|Product| . |Group|) 154158) ((|Product| . |AbelianGroup|) 154091) ((|Product| . |LeftLinearSet|) 154008) ((|Product| . |OrderedAbelianMonoidSup|) 153919) ((|Product| . |OrderedAbelianMonoid|) 153830) ((|Product| . |OrderedAbelianSemiGroup|) 153741) ((|Product| . |OrderedCancellationAbelianMonoid|) 153652) ((|Product| . |OrderedSet|) 153496) ((|Product| . |OrderedType|) 153340) ((|PrimitiveArray| . |OneDimensionalArrayAggregate|) 153324) ((|PrimitiveArray| . |Aggregate|) T) ((|PrimitiveArray| . |BasicType|) 153296) ((|PrimitiveArray| . |CoercibleTo|) 153232) ((|PrimitiveArray| . |Collection|) 153216) ((|PrimitiveArray| . |ConvertibleTo|) 153152) ((|PrimitiveArray| . |Eltable|) 153086) ((|PrimitiveArray| . |EltableAggregate|) 153058) ((|PrimitiveArray| . |Evalable|) 152982) ((|PrimitiveArray| . |FiniteAggregate|) 152966) ((|PrimitiveArray| . |FiniteLinearAggregate|) 152950) ((|PrimitiveArray| . |Functorial|) 152934) ((|PrimitiveArray| . |HomogeneousAggregate|) 152918) ((|PrimitiveArray| . |IndexedAggregate|) 152890) ((|PrimitiveArray| . |InnerEvalable|) 152809) ((|PrimitiveArray| . |LinearAggregate|) 152793) ((|PrimitiveArray| . |OrderedSet|) 152764) ((|PrimitiveArray| . |OrderedType|) 152735) ((|PrimitiveArray| . |SetCategory|) 152705) ((|PrimitiveArray| . |ShallowlyMutableAggregate|) 152689) ((|PrimitiveArray| . |Type|) T) ((|PolynomialRing| . |FiniteAbelianMonoidRing|) 152668) ((|PolynomialRing| . |AbelianGroup|) T) ((|PolynomialRing| . |AbelianMonoid|) T) ((|PolynomialRing| . |AbelianMonoidRing|) 152647) ((|PolynomialRing| . |AbelianSemiGroup|) T) ((|PolynomialRing| . |Algebra|) 152491) ((|PolynomialRing| . |BasicType|) T) ((|PolynomialRing| . |BiModule|) 152347) ((|PolynomialRing| . |CancellationAbelianMonoid|) T) ((|PolynomialRing| . |CharacteristicNonZero|) 152307) ((|PolynomialRing| . |CharacteristicZero|) 152270) ((|PolynomialRing| . |CoercibleFrom|) 152065) ((|PolynomialRing| . |CoercibleTo|) 152039) ((|PolynomialRing| . |CommutativeRing|) 152005) ((|PolynomialRing| . |EntireRing|) 151972) ((|PolynomialRing| . |FullyRetractableTo|) 151956) ((|PolynomialRing| . |Functorial|) 151940) ((|PolynomialRing| . |IntegralDomain|) 151907) ((|PolynomialRing| . |LeftLinearSet|) 151789) ((|PolynomialRing| . |LeftModule|) 151686) ((|PolynomialRing| . |LinearSet|) 151530) ((|PolynomialRing| . |Module|) 151374) ((|PolynomialRing| . |Monoid|) T) ((|PolynomialRing| . |RetractableTo|) 151223) ((|PolynomialRing| . |RightLinearSet|) 151093) ((|PolynomialRing| . |RightModule|) 150963) ((|PolynomialRing| . |Ring|) T) ((|PolynomialRing| . |Rng|) T) ((|PolynomialRing| . |SemiGroup|) T) ((|PolynomialRing| . |SemiRing|) T) ((|PolynomialRing| . |SetCategory|) T) ((|PolynomialRing| . |Type|) T) ((|PortNumber| . |SetCategory|) T) ((|PortNumber| . |BasicType|) T) ((|PortNumber| . |CoercibleTo|) 150911) ((|PortNumber| . |Type|) T) ((|Polynomial| . |PolynomialCategory|) 150856) ((|Polynomial| . |AbelianGroup|) T) ((|Polynomial| . |AbelianMonoid|) T) ((|Polynomial| . |AbelianMonoidRing|) 150808) ((|Polynomial| . |AbelianSemiGroup|) T) ((|Polynomial| . |Algebra|) 150652) ((|Polynomial| . |BasicType|) T) ((|Polynomial| . |BiModule|) 150508) ((|Polynomial| . |CancellationAbelianMonoid|) T) ((|Polynomial| . |CharacteristicNonZero|) 150468) ((|Polynomial| . |CharacteristicZero|) 150431) ((|Polynomial| . |CoercibleFrom|) 150207) ((|Polynomial| . |CoercibleTo|) 150181) ((|Polynomial| . |CommutativeRing|) 150147) ((|Polynomial| . |ConvertibleTo|) 149925) ((|Polynomial| . |EntireRing|) 149892) ((|Polynomial| . |Evalable|) 149879) ((|Polynomial| . |FiniteAbelianMonoidRing|) 149831) ((|Polynomial| . |FullyLinearlyExplicitRingOver|) 149815) ((|Polynomial| . |FullyRetractableTo|) 149799) ((|Polynomial| . |Functorial|) 149783) ((|Polynomial| . |GcdDomain|) 149755) ((|Polynomial| . |InnerEvalable|) 149699) ((|Polynomial| . |IntegralDomain|) 149666) ((|Polynomial| . |LeftLinearSet|) 149548) ((|Polynomial| . |LeftModule|) 149382) ((|Polynomial| . |LinearSet|) 149226) ((|Polynomial| . |LinearlyExplicitRingOver|) 149142) ((|Polynomial| . |Module|) 148986) ((|Polynomial| . |Monoid|) T) ((|Polynomial| . |PartialDifferentialDomain|) 148962) ((|Polynomial| . |PartialDifferentialRing|) 148940) ((|Polynomial| . |PartialDifferentialSpace|) 148918) ((|Polynomial| . |PatternMatchable|) 148799) ((|Polynomial| . |PolynomialFactorizationExplicit|) 148749) ((|Polynomial| . |RetractableTo|) 148579) ((|Polynomial| . |RightLinearSet|) 148449) ((|Polynomial| . |RightModule|) 148319) ((|Polynomial| . |Ring|) T) ((|Polynomial| . |Rng|) T) ((|Polynomial| . |SemiGroup|) T) ((|Polynomial| . |SemiRing|) T) ((|Polynomial| . |SetCategory|) T) ((|Polynomial| . |Type|) T) ((|Polynomial| . |UniqueFactorizationDomain|) 148269) ((|Point| . |PointCategory|) 148253) ((|Point| . |Aggregate|) T) ((|Point| . |BasicType|) 148225) ((|Point| . |CoercibleTo|) 148161) ((|Point| . |Collection|) 148145) ((|Point| . |ConvertibleFrom|) 148120) ((|Point| . |ConvertibleTo|) 148056) ((|Point| . |Eltable|) 147990) ((|Point| . |EltableAggregate|) 147962) ((|Point| . |Evalable|) 147886) ((|Point| . |FiniteAggregate|) 147870) ((|Point| . |FiniteLinearAggregate|) 147854) ((|Point| . |Functorial|) 147838) ((|Point| . |HomogeneousAggregate|) 147822) ((|Point| . |IndexedAggregate|) 147794) ((|Point| . |InnerEvalable|) 147713) ((|Point| . |LinearAggregate|) 147697) ((|Point| . |OneDimensionalArrayAggregate|) 147681) ((|Point| . |OrderedSet|) 147652) ((|Point| . |OrderedType|) 147623) ((|Point| . |SetCategory|) 147593) ((|Point| . |ShallowlyMutableAggregate|) 147577) ((|Point| . |Type|) T) ((|Point| . |VectorCategory|) 147561) ((|Plot3D| . |PlottableSpaceCurveCategory|) T) ((|Plot3D| . |CoercibleTo|) 147535) ((|Plot| . |PlottablePlaneCurveCategory|) T) ((|Plot| . |CoercibleTo|) 147509) ((|PositiveInteger| . |OrderedAbelianSemiGroup|) T) ((|PositiveInteger| . |AbelianSemiGroup|) T) ((|PositiveInteger| . |BasicType|) T) ((|PositiveInteger| . |CoercibleTo|) 147483) ((|PositiveInteger| . |OrderedSet|) T) ((|PositiveInteger| . |OrderedType|) T) ((|PositiveInteger| . |SetCategory|) T) ((|PositiveInteger| . |Type|) T) ((|PositiveInteger| . |Monoid|) T) ((|PositiveInteger| . |SemiGroup|) T) ((|PartialFraction| . |Field|) T) ((|PartialFraction| . |AbelianGroup|) T) ((|PartialFraction| . |AbelianMonoid|) T) ((|PartialFraction| . |AbelianSemiGroup|) T) ((|PartialFraction| . |Algebra|) 147424) ((|PartialFraction| . |BasicType|) T) ((|PartialFraction| . |BiModule|) 147351) ((|PartialFraction| . |CancellationAbelianMonoid|) T) ((|PartialFraction| . |CoercibleFrom|) 147277) ((|PartialFraction| . |CoercibleTo|) 147225) ((|PartialFraction| . |CommutativeRing|) T) ((|PartialFraction| . |DivisionRing|) T) ((|PartialFraction| . |EntireRing|) T) ((|PartialFraction| . |EuclideanDomain|) T) ((|PartialFraction| . |GcdDomain|) T) ((|PartialFraction| . |IntegralDomain|) T) ((|PartialFraction| . |LeftLinearSet|) 147151) ((|PartialFraction| . |LeftModule|) 147092) ((|PartialFraction| . |LinearSet|) 147033) ((|PartialFraction| . |Module|) 146974) ((|PartialFraction| . |Monoid|) T) ((|PartialFraction| . |PrincipalIdealDomain|) T) ((|PartialFraction| . |RightLinearSet|) 146915) ((|PartialFraction| . |RightModule|) 146856) ((|PartialFraction| . |Ring|) T) ((|PartialFraction| . |Rng|) T) ((|PartialFraction| . |SemiGroup|) T) ((|PartialFraction| . |SemiRing|) T) ((|PartialFraction| . |SetCategory|) T) ((|PartialFraction| . |Type|) T) ((|PartialFraction| . |UniqueFactorizationDomain|) T) ((|PrimeField| . |FiniteFieldCategory|) T) ((|PrimeField| . |AbelianGroup|) T) ((|PrimeField| . |AbelianMonoid|) T) ((|PrimeField| . |AbelianSemiGroup|) T) ((|PrimeField| . |Algebra|) 146810) ((|PrimeField| . |BasicType|) T) ((|PrimeField| . |BiModule|) 146755) ((|PrimeField| . |CancellationAbelianMonoid|) T) ((|PrimeField| . |CharacteristicNonZero|) T) ((|PrimeField| . |CoercibleFrom|) 146694) ((|PrimeField| . |CoercibleTo|) 146668) ((|PrimeField| . |CommutativeRing|) T) ((|PrimeField| . |DifferentialDomain|) 146655) ((|PrimeField| . |DifferentialRing|) T) ((|PrimeField| . |DifferentialSpace|) T) ((|PrimeField| . |DivisionRing|) T) ((|PrimeField| . |EntireRing|) T) ((|PrimeField| . |EuclideanDomain|) T) ((|PrimeField| . |Field|) T) ((|PrimeField| . |FieldOfPrimeCharacteristic|) T) ((|PrimeField| . |Finite|) T) ((|PrimeField| . |GcdDomain|) T) ((|PrimeField| . |IntegralDomain|) T) ((|PrimeField| . |LeftLinearSet|) 146594) ((|PrimeField| . |LeftModule|) 146548) ((|PrimeField| . |LinearSet|) 146502) ((|PrimeField| . |Module|) 146456) ((|PrimeField| . |Monoid|) T) ((|PrimeField| . |PrincipalIdealDomain|) T) ((|PrimeField| . |RightLinearSet|) 146410) ((|PrimeField| . |RightModule|) 146364) ((|PrimeField| . |Ring|) T) ((|PrimeField| . |Rng|) T) ((|PrimeField| . |SemiGroup|) T) ((|PrimeField| . |SemiRing|) T) ((|PrimeField| . |SetCategory|) T) ((|PrimeField| . |StepThrough|) T) ((|PrimeField| . |Type|) T) ((|PrimeField| . |UniqueFactorizationDomain|) T) ((|PrimeField| . |FiniteAlgebraicExtensionField|) 146351) ((|PrimeField| . |CharacteristicZero|) 146317) ((|PrimeField| . |ExtensionField|) 146304) ((|PrimeField| . |RetractableTo|) 146291) ((|PrimeField| . |VectorSpace|) 146278) ((|PrimeField| . |ConvertibleTo|) 146255) ((|PermutationGroup| . |SetCategory|) T) ((|PermutationGroup| . |BasicType|) T) ((|PermutationGroup| . |CoercibleTo|) 146191) ((|PermutationGroup| . |Type|) T) ((|PermutationGroup| . |HomotopicTo|) 146150) ((|PermutationGroup| . |CoercibleFrom|) 146109) ((|Permutation| . |PermutationCategory|) 146093) ((|Permutation| . |BasicType|) T) ((|Permutation| . |CoercibleTo|) 146067) ((|Permutation| . |Eltable|) 146046) ((|Permutation| . |Group|) T) ((|Permutation| . |Monoid|) T) ((|Permutation| . |OrderedSet|) 145988) ((|Permutation| . |OrderedType|) 145930) ((|Permutation| . |SemiGroup|) T) ((|Permutation| . |SetCategory|) T) ((|Permutation| . |Type|) T) ((|PendantTree| . |BinaryRecursiveAggregate|) 145914) ((|PendantTree| . |Aggregate|) T) ((|PendantTree| . |BasicType|) 145886) ((|PendantTree| . |CoercibleTo|) 145800) ((|PendantTree| . |Evalable|) 145724) ((|PendantTree| . |Functorial|) 145708) ((|PendantTree| . |HomogeneousAggregate|) 145692) ((|PendantTree| . |InnerEvalable|) 145611) ((|PendantTree| . |RecursiveAggregate|) 145595) ((|PendantTree| . |SetCategory|) 145565) ((|PendantTree| . |Type|) T) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedSet|) T) ((|PoincareBirkhoffWittLyndonBasis| . |BasicType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleTo|) 145504) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |SetCategory|) T) ((|PoincareBirkhoffWittLyndonBasis| . |Type|) T) ((|PoincareBirkhoffWittLyndonBasis| . |RetractableTo|) 145473) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleFrom|) 145442) ((|Pattern| . |SetCategory|) T) ((|Pattern| . |BasicType|) T) ((|Pattern| . |CoercibleTo|) 145416) ((|Pattern| . |Type|) T) ((|Pattern| . |RetractableTo|) 145381) ((|Pattern| . |CoercibleFrom|) 145346) ((|PatternMatchResult| . |SetCategory|) T) ((|PatternMatchResult| . |BasicType|) T) ((|PatternMatchResult| . |CoercibleTo|) 145320) ((|PatternMatchResult| . |Type|) T) ((|PatternMatchListResult| . |SetCategory|) T) ((|PatternMatchListResult| . |BasicType|) T) ((|PatternMatchListResult| . |CoercibleTo|) 145294) ((|PatternMatchListResult| . |Type|) T) ((|ParameterAst| . |SpadSyntaxCategory|) T) ((|ParameterAst| . |AbstractSyntaxCategory|) T) ((|ParameterAst| . |BasicType|) T) ((|ParameterAst| . |CoercibleFrom|) 145272) ((|ParameterAst| . |CoercibleTo|) 145227) ((|ParameterAst| . |HomotopicTo|) 145205) ((|ParameterAst| . |SetCategory|) T) ((|ParameterAst| . |Type|) T) ((|ParameterAst| . |UnionType|) T) ((|Palette| . |SetCategory|) T) ((|Palette| . |BasicType|) T) ((|Palette| . |CoercibleTo|) 145179) ((|Palette| . |Type|) T) ((|Palette| . |CoercibleFrom|) 145158) ((|Pair| . |Type|) T) ((|Pair| . |Join|) T) ((|Pair| . |CoercibleTo|) 144975) ((|Pair| . |SetCategory|) 144910) ((|Pair| . |BasicType|) 144845) ((|PAdicRationalConstructor| . |QuotientFieldCategory|) 144829) ((|PAdicRationalConstructor| . |AbelianGroup|) T) ((|PAdicRationalConstructor| . |AbelianMonoid|) T) ((|PAdicRationalConstructor| . |AbelianSemiGroup|) T) ((|PAdicRationalConstructor| . |Algebra|) 144770) ((|PAdicRationalConstructor| . |BasicType|) T) ((|PAdicRationalConstructor| . |BiModule|) 144697) ((|PAdicRationalConstructor| . |CancellationAbelianMonoid|) T) ((|PAdicRationalConstructor| . |CharacteristicNonZero|) 144657) ((|PAdicRationalConstructor| . |CharacteristicZero|) 144620) ((|PAdicRationalConstructor| . |CoercibleFrom|) 144491) ((|PAdicRationalConstructor| . |CoercibleTo|) 144465) ((|PAdicRationalConstructor| . |CommutativeRing|) T) ((|PAdicRationalConstructor| . |ConvertibleTo|) 144156) ((|PAdicRationalConstructor| . |DifferentialDomain|) 144114) ((|PAdicRationalConstructor| . |DifferentialExtension|) 144098) ((|PAdicRationalConstructor| . |DifferentialRing|) 144063) ((|PAdicRationalConstructor| . |DifferentialSpace|) 144027) ((|PAdicRationalConstructor| . |DifferentialSpaceExtension|) 144011) ((|PAdicRationalConstructor| . |DivisionRing|) T) ((|PAdicRationalConstructor| . |Eltable|) 143964) ((|PAdicRationalConstructor| . |EntireRing|) T) ((|PAdicRationalConstructor| . |EuclideanDomain|) T) ((|PAdicRationalConstructor| . |Evalable|) 143923) ((|PAdicRationalConstructor| . |Field|) T) ((|PAdicRationalConstructor| . |FullyEvalableOver|) 143907) ((|PAdicRationalConstructor| . |FullyLinearlyExplicitRingOver|) 143891) ((|PAdicRationalConstructor| . |FullyPatternMatchable|) 143875) ((|PAdicRationalConstructor| . |Functorial|) 143859) ((|PAdicRationalConstructor| . |GcdDomain|) T) ((|PAdicRationalConstructor| . |InnerEvalable|) 143748) ((|PAdicRationalConstructor| . |IntegralDomain|) T) ((|PAdicRationalConstructor| . |LeftLinearSet|) 143674) ((|PAdicRationalConstructor| . |LeftModule|) 143552) ((|PAdicRationalConstructor| . |LinearSet|) 143493) ((|PAdicRationalConstructor| . |LinearlyExplicitRingOver|) 143409) ((|PAdicRationalConstructor| . |Module|) 143350) ((|PAdicRationalConstructor| . |Monoid|) T) ((|PAdicRationalConstructor| . |OrderedAbelianGroup|) 143310) ((|PAdicRationalConstructor| . |OrderedAbelianMonoid|) 143270) ((|PAdicRationalConstructor| . |OrderedAbelianSemiGroup|) 143230) ((|PAdicRationalConstructor| . |OrderedCancellationAbelianMonoid|) 143190) ((|PAdicRationalConstructor| . |OrderedIntegralDomain|) 143150) ((|PAdicRationalConstructor| . |OrderedRing|) 143110) ((|PAdicRationalConstructor| . |OrderedSet|) 143081) ((|PAdicRationalConstructor| . |OrderedType|) 143052) ((|PAdicRationalConstructor| . |PartialDifferentialDomain|) 142924) ((|PAdicRationalConstructor| . |PartialDifferentialRing|) 142856) ((|PAdicRationalConstructor| . |PartialDifferentialSpace|) 142730) ((|PAdicRationalConstructor| . |PatternMatchable|) 142611) ((|PAdicRationalConstructor| . |Patternable|) 142595) ((|PAdicRationalConstructor| . |PolynomialFactorizationExplicit|) 142545) ((|PAdicRationalConstructor| . |PrincipalIdealDomain|) T) ((|PAdicRationalConstructor| . |RealConstant|) 142514) ((|PAdicRationalConstructor| . |RetractableTo|) 142321) ((|PAdicRationalConstructor| . |RightLinearSet|) 142262) ((|PAdicRationalConstructor| . |RightModule|) 142203) ((|PAdicRationalConstructor| . |Ring|) T) ((|PAdicRationalConstructor| . |Rng|) T) ((|PAdicRationalConstructor| . |SemiGroup|) T) ((|PAdicRationalConstructor| . |SemiRing|) T) ((|PAdicRationalConstructor| . |SetCategory|) T) ((|PAdicRationalConstructor| . |StepThrough|) 142173) ((|PAdicRationalConstructor| . |Type|) T) ((|PAdicRationalConstructor| . |UniqueFactorizationDomain|) T) ((|PAdicRational| . |QuotientFieldCategory|) 142140) ((|PAdicRational| . |AbelianGroup|) T) ((|PAdicRational| . |AbelianMonoid|) T) ((|PAdicRational| . |AbelianSemiGroup|) T) ((|PAdicRational| . |Algebra|) 142064) ((|PAdicRational| . |BasicType|) T) ((|PAdicRational| . |BiModule|) 141972) ((|PAdicRational| . |CancellationAbelianMonoid|) T) ((|PAdicRational| . |CharacteristicNonZero|) NIL) ((|PAdicRational| . |CharacteristicZero|) T) ((|PAdicRational| . |CoercibleFrom|) 141881) ((|PAdicRational| . |CoercibleTo|) 141855) ((|PAdicRational| . |CommutativeRing|) T) ((|PAdicRational| . |ConvertibleTo|) NIL) ((|PAdicRational| . |DifferentialDomain|) NIL) ((|PAdicRational| . |DifferentialExtension|) 141822) ((|PAdicRational| . |DifferentialRing|) NIL) ((|PAdicRational| . |DifferentialSpace|) NIL) ((|PAdicRational| . |DifferentialSpaceExtension|) 141789) ((|PAdicRational| . |DivisionRing|) T) ((|PAdicRational| . |Eltable|) 141725) ((|PAdicRational| . |EntireRing|) T) ((|PAdicRational| . |EuclideanDomain|) T) ((|PAdicRational| . |Evalable|) 141666) ((|PAdicRational| . |Field|) T) ((|PAdicRational| . |FullyEvalableOver|) 141633) ((|PAdicRational| . |FullyLinearlyExplicitRingOver|) 141600) ((|PAdicRational| . |FullyPatternMatchable|) 141567) ((|PAdicRational| . |Functorial|) 141534) ((|PAdicRational| . |GcdDomain|) T) ((|PAdicRational| . |InnerEvalable|) 141409) ((|PAdicRational| . |IntegralDomain|) T) ((|PAdicRational| . |LeftLinearSet|) 141318) ((|PAdicRational| . |LeftModule|) 141242) ((|PAdicRational| . |LinearSet|) 141166) ((|PAdicRational| . |LinearlyExplicitRingOver|) 141133) ((|PAdicRational| . |Module|) 141057) ((|PAdicRational| . |Monoid|) T) ((|PAdicRational| . |OrderedAbelianGroup|) NIL) ((|PAdicRational| . |OrderedAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|PAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedIntegralDomain|) NIL) ((|PAdicRational| . |OrderedRing|) NIL) ((|PAdicRational| . |OrderedSet|) NIL) ((|PAdicRational| . |OrderedType|) NIL) ((|PAdicRational| . |PartialDifferentialDomain|) NIL) ((|PAdicRational| . |PartialDifferentialRing|) NIL) ((|PAdicRational| . |PartialDifferentialSpace|) NIL) ((|PAdicRational| . |PatternMatchable|) NIL) ((|PAdicRational| . |Patternable|) 141024) ((|PAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|PAdicRational| . |PrincipalIdealDomain|) T) ((|PAdicRational| . |RealConstant|) NIL) ((|PAdicRational| . |RetractableTo|) 140991) ((|PAdicRational| . |RightLinearSet|) 140915) ((|PAdicRational| . |RightModule|) 140839) ((|PAdicRational| . |Ring|) T) ((|PAdicRational| . |Rng|) T) ((|PAdicRational| . |SemiGroup|) T) ((|PAdicRational| . |SemiRing|) T) ((|PAdicRational| . |SetCategory|) T) ((|PAdicRational| . |StepThrough|) NIL) ((|PAdicRational| . |Type|) T) ((|PAdicRational| . |UniqueFactorizationDomain|) T) ((|PAdicInteger| . |PAdicIntegerCategory|) 140823) ((|PAdicInteger| . |AbelianGroup|) T) ((|PAdicInteger| . |AbelianMonoid|) T) ((|PAdicInteger| . |AbelianSemiGroup|) T) ((|PAdicInteger| . |Algebra|) 140810) ((|PAdicInteger| . |BasicType|) T) ((|PAdicInteger| . |BiModule|) 140795) ((|PAdicInteger| . |CancellationAbelianMonoid|) T) ((|PAdicInteger| . |CharacteristicZero|) T) ((|PAdicInteger| . |CoercibleFrom|) 140762) ((|PAdicInteger| . |CoercibleTo|) 140736) ((|PAdicInteger| . |CommutativeRing|) T) ((|PAdicInteger| . |EntireRing|) T) ((|PAdicInteger| . |EuclideanDomain|) T) ((|PAdicInteger| . |GcdDomain|) T) ((|PAdicInteger| . |IntegralDomain|) T) ((|PAdicInteger| . |LeftLinearSet|) 140703) ((|PAdicInteger| . |LeftModule|) 140690) ((|PAdicInteger| . |LinearSet|) 140677) ((|PAdicInteger| . |Module|) 140664) ((|PAdicInteger| . |Monoid|) T) ((|PAdicInteger| . |PrincipalIdealDomain|) T) ((|PAdicInteger| . |RightLinearSet|) 140651) ((|PAdicInteger| . |RightModule|) 140638) ((|PAdicInteger| . |Ring|) T) ((|PAdicInteger| . |Rng|) T) ((|PAdicInteger| . |SemiGroup|) T) ((|PAdicInteger| . |SemiRing|) T) ((|PAdicInteger| . |SetCategory|) T) ((|PAdicInteger| . |Type|) T) ((|OrdinaryWeightedPolynomials| . |Ring|) T) ((|OrdinaryWeightedPolynomials| . |AbelianGroup|) T) ((|OrdinaryWeightedPolynomials| . |AbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |AbelianSemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |BasicType|) T) ((|OrdinaryWeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |CoercibleFrom|) 140547) ((|OrdinaryWeightedPolynomials| . |CoercibleTo|) 140493) ((|OrdinaryWeightedPolynomials| . |LeftLinearSet|) 140420) ((|OrdinaryWeightedPolynomials| . |LeftModule|) 140367) ((|OrdinaryWeightedPolynomials| . |Monoid|) T) ((|OrdinaryWeightedPolynomials| . |Rng|) T) ((|OrdinaryWeightedPolynomials| . |SemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |SemiRing|) T) ((|OrdinaryWeightedPolynomials| . |SetCategory|) T) ((|OrdinaryWeightedPolynomials| . |Type|) T) ((|OrdinaryWeightedPolynomials| . |HomotopicTo|) 140336) ((|OrdinaryWeightedPolynomials| . |Algebra|) 140293) ((|OrdinaryWeightedPolynomials| . |BiModule|) 140245) ((|OrdinaryWeightedPolynomials| . |LinearSet|) 140202) ((|OrdinaryWeightedPolynomials| . |Module|) 140159) ((|OrdinaryWeightedPolynomials| . |RightLinearSet|) 140116) ((|OrdinaryWeightedPolynomials| . |RightModule|) 140073) ((|OverloadSet| . |SetCategory|) T) ((|OverloadSet| . |BasicType|) T) ((|OverloadSet| . |CoercibleTo|) 140047) ((|OverloadSet| . |Type|) T) ((|OrderedVariableList| . |OrderedFinite|) T) ((|OrderedVariableList| . |BasicType|) T) ((|OrderedVariableList| . |CoercibleTo|) 140021) ((|OrderedVariableList| . |Finite|) T) ((|OrderedVariableList| . |OrderedSet|) T) ((|OrderedVariableList| . |OrderedType|) T) ((|OrderedVariableList| . |SetCategory|) T) ((|OrderedVariableList| . |Type|) T) ((|OrderedVariableList| . |ConvertibleTo|) 139915) ((|OutputForm| . |SetCategory|) T) ((|OutputForm| . |BasicType|) T) ((|OutputForm| . |CoercibleTo|) 139889) ((|OutputForm| . |Type|) T) ((|OutputBinaryFile| . |OutputByteConduit|) T) ((|OutputBinaryFile| . |Conduit|) T) ((|OutputBinaryFile| . |CoercibleTo|) 139863) ((|OrdSetInts| . |OrderedSet|) T) ((|OrdSetInts| . |BasicType|) T) ((|OrdSetInts| . |CoercibleTo|) 139837) ((|OrdSetInts| . |OrderedType|) T) ((|OrdSetInts| . |SetCategory|) T) ((|OrdSetInts| . |Type|) T) ((|UnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 139821) ((|UnivariateSkewPolynomial| . |AbelianGroup|) T) ((|UnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|UnivariateSkewPolynomial| . |Algebra|) 139778) ((|UnivariateSkewPolynomial| . |BasicType|) T) ((|UnivariateSkewPolynomial| . |BiModule|) 139757) ((|UnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |CoercibleFrom|) 139617) ((|UnivariateSkewPolynomial| . |CoercibleTo|) 139591) ((|UnivariateSkewPolynomial| . |FullyRetractableTo|) 139575) ((|UnivariateSkewPolynomial| . |LeftLinearSet|) 139529) ((|UnivariateSkewPolynomial| . |LeftModule|) 139503) ((|UnivariateSkewPolynomial| . |LinearSet|) 139460) ((|UnivariateSkewPolynomial| . |Module|) 139417) ((|UnivariateSkewPolynomial| . |Monoid|) T) ((|UnivariateSkewPolynomial| . |RetractableTo|) 139266) ((|UnivariateSkewPolynomial| . |RightLinearSet|) 139250) ((|UnivariateSkewPolynomial| . |RightModule|) 139234) ((|UnivariateSkewPolynomial| . |Ring|) T) ((|UnivariateSkewPolynomial| . |Rng|) T) ((|UnivariateSkewPolynomial| . |SemiGroup|) T) ((|UnivariateSkewPolynomial| . |SemiRing|) T) ((|UnivariateSkewPolynomial| . |SetCategory|) T) ((|UnivariateSkewPolynomial| . |Type|) T) ((|SparseUnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 139218) ((|SparseUnivariateSkewPolynomial| . |AbelianGroup|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |Algebra|) 139175) ((|SparseUnivariateSkewPolynomial| . |BasicType|) T) ((|SparseUnivariateSkewPolynomial| . |BiModule|) 139154) ((|SparseUnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |CoercibleFrom|) 139040) ((|SparseUnivariateSkewPolynomial| . |CoercibleTo|) 139014) ((|SparseUnivariateSkewPolynomial| . |FullyRetractableTo|) 138998) ((|SparseUnivariateSkewPolynomial| . |LeftLinearSet|) 138952) ((|SparseUnivariateSkewPolynomial| . |LeftModule|) 138926) ((|SparseUnivariateSkewPolynomial| . |LinearSet|) 138883) ((|SparseUnivariateSkewPolynomial| . |Module|) 138840) ((|SparseUnivariateSkewPolynomial| . |Monoid|) T) ((|SparseUnivariateSkewPolynomial| . |RetractableTo|) 138689) ((|SparseUnivariateSkewPolynomial| . |RightLinearSet|) 138673) ((|SparseUnivariateSkewPolynomial| . |RightModule|) 138657) ((|SparseUnivariateSkewPolynomial| . |Ring|) T) ((|SparseUnivariateSkewPolynomial| . |Rng|) T) ((|SparseUnivariateSkewPolynomial| . |SemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |SemiRing|) T) ((|SparseUnivariateSkewPolynomial| . |SetCategory|) T) ((|SparseUnivariateSkewPolynomial| . |Type|) T) ((|OrderedStructure| . |OrderedType|) T) ((|OrderedStructure| . |BasicType|) T) ((|OrderedStructure| . |Type|) T) ((|OrderedStructure| . |HomotopicTo|) 138641) ((|OrderedStructure| . |CoercibleFrom|) 138625) ((|OrderedStructure| . |CoercibleTo|) 138554) ((|OrderedCompletion| . |SetCategory|) T) ((|OrderedCompletion| . |BasicType|) T) ((|OrderedCompletion| . |CoercibleTo|) 138528) ((|OrderedCompletion| . |Type|) T) ((|OrderedCompletion| . |FullyRetractableTo|) 138512) ((|OrderedCompletion| . |CoercibleFrom|) 138327) ((|OrderedCompletion| . |RetractableTo|) 138176) ((|OrderedCompletion| . |AbelianGroup|) 138145) ((|OrderedCompletion| . |AbelianMonoid|) 138114) ((|OrderedCompletion| . |AbelianSemiGroup|) 138083) ((|OrderedCompletion| . |CancellationAbelianMonoid|) 138052) ((|OrderedCompletion| . |LeftLinearSet|) 137972) ((|OrderedCompletion| . |OrderedRing|) 137942) ((|OrderedCompletion| . |CharacteristicZero|) 137912) ((|OrderedCompletion| . |LeftModule|) 137876) ((|OrderedCompletion| . |Monoid|) 137846) ((|OrderedCompletion| . |OrderedAbelianGroup|) 137816) ((|OrderedCompletion| . |OrderedAbelianMonoid|) 137786) ((|OrderedCompletion| . |OrderedAbelianSemiGroup|) 137756) ((|OrderedCompletion| . |OrderedCancellationAbelianMonoid|) 137726) ((|OrderedCompletion| . |OrderedSet|) 137696) ((|OrderedCompletion| . |OrderedType|) 137666) ((|OrderedCompletion| . |Ring|) 137636) ((|OrderedCompletion| . |Rng|) 137606) ((|OrderedCompletion| . |SemiGroup|) 137576) ((|OrderedCompletion| . |SemiRing|) 137546) ((|OperatorSignature| . |OperatorCategory|) 137520) ((|OperatorSignature| . |BasicType|) T) ((|OperatorSignature| . |CoercibleTo|) 137494) ((|OperatorSignature| . |SetCategory|) T) ((|OperatorSignature| . |Type|) T) ((|Operator| . |Ring|) T) ((|Operator| . |AbelianGroup|) T) ((|Operator| . |AbelianMonoid|) T) ((|Operator| . |AbelianSemiGroup|) T) ((|Operator| . |BasicType|) T) ((|Operator| . |CancellationAbelianMonoid|) T) ((|Operator| . |CoercibleFrom|) 137432) ((|Operator| . |CoercibleTo|) 137406) ((|Operator| . |LeftLinearSet|) 137333) ((|Operator| . |LeftModule|) 137280) ((|Operator| . |Monoid|) T) ((|Operator| . |Rng|) T) ((|Operator| . |SemiGroup|) T) ((|Operator| . |SemiRing|) T) ((|Operator| . |SetCategory|) T) ((|Operator| . |Type|) T) ((|Operator| . |RetractableTo|) 137238) ((|Operator| . |Eltable|) 137217) ((|Operator| . |CharacteristicZero|) 137180) ((|Operator| . |CharacteristicNonZero|) 137140) ((|Operator| . |Algebra|) 137097) ((|Operator| . |BiModule|) 137049) ((|Operator| . |LinearSet|) 137006) ((|Operator| . |Module|) 136963) ((|Operator| . |RightLinearSet|) 136920) ((|Operator| . |RightModule|) 136877) ((|OnePointCompletion| . |SetCategory|) T) ((|OnePointCompletion| . |BasicType|) T) ((|OnePointCompletion| . |CoercibleTo|) 136851) ((|OnePointCompletion| . |Type|) T) ((|OnePointCompletion| . |FullyRetractableTo|) 136835) ((|OnePointCompletion| . |CoercibleFrom|) 136650) ((|OnePointCompletion| . |RetractableTo|) 136499) ((|OnePointCompletion| . |AbelianGroup|) 136468) ((|OnePointCompletion| . |AbelianMonoid|) 136437) ((|OnePointCompletion| . |AbelianSemiGroup|) 136406) ((|OnePointCompletion| . |CancellationAbelianMonoid|) 136375) ((|OnePointCompletion| . |LeftLinearSet|) 136295) ((|OnePointCompletion| . |OrderedRing|) 136265) ((|OnePointCompletion| . |CharacteristicZero|) 136235) ((|OnePointCompletion| . |LeftModule|) 136199) ((|OnePointCompletion| . |Monoid|) 136169) ((|OnePointCompletion| . |OrderedAbelianGroup|) 136139) ((|OnePointCompletion| . |OrderedAbelianMonoid|) 136109) ((|OnePointCompletion| . |OrderedAbelianSemiGroup|) 136079) ((|OnePointCompletion| . |OrderedCancellationAbelianMonoid|) 136049) ((|OnePointCompletion| . |OrderedSet|) 136019) ((|OnePointCompletion| . |OrderedType|) 135989) ((|OnePointCompletion| . |Ring|) 135959) ((|OnePointCompletion| . |Rng|) 135929) ((|OnePointCompletion| . |SemiGroup|) 135899) ((|OnePointCompletion| . |SemiRing|) 135869) ((|OppositeMonogenicLinearOperator| . |MonogenicLinearOperator|) 135853) ((|OppositeMonogenicLinearOperator| . |AbelianGroup|) T) ((|OppositeMonogenicLinearOperator| . |AbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |AbelianSemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |Algebra|) 135810) ((|OppositeMonogenicLinearOperator| . |BasicType|) T) ((|OppositeMonogenicLinearOperator| . |BiModule|) 135789) ((|OppositeMonogenicLinearOperator| . |CancellationAbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |CoercibleFrom|) 135726) ((|OppositeMonogenicLinearOperator| . |CoercibleTo|) 135700) ((|OppositeMonogenicLinearOperator| . |LeftLinearSet|) 135654) ((|OppositeMonogenicLinearOperator| . |LeftModule|) 135628) ((|OppositeMonogenicLinearOperator| . |LinearSet|) 135585) ((|OppositeMonogenicLinearOperator| . |Module|) 135542) ((|OppositeMonogenicLinearOperator| . |Monoid|) T) ((|OppositeMonogenicLinearOperator| . |RightLinearSet|) 135526) ((|OppositeMonogenicLinearOperator| . |RightModule|) 135510) ((|OppositeMonogenicLinearOperator| . |Ring|) T) ((|OppositeMonogenicLinearOperator| . |Rng|) T) ((|OppositeMonogenicLinearOperator| . |SemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |SemiRing|) T) ((|OppositeMonogenicLinearOperator| . |SetCategory|) T) ((|OppositeMonogenicLinearOperator| . |Type|) T) ((|OppositeMonogenicLinearOperator| . |DifferentialRing|) 135475) ((|OppositeMonogenicLinearOperator| . |DifferentialDomain|) 135434) ((|OppositeMonogenicLinearOperator| . |DifferentialSpace|) 135399) ((|OrderedFreeMonoid| . |FreeMonoidCategory|) 135383) ((|OrderedFreeMonoid| . |BasicType|) T) ((|OrderedFreeMonoid| . |CoercibleFrom|) 135367) ((|OrderedFreeMonoid| . |CoercibleTo|) 135341) ((|OrderedFreeMonoid| . |Monoid|) T) ((|OrderedFreeMonoid| . |OrderedSet|) T) ((|OrderedFreeMonoid| . |OrderedType|) T) ((|OrderedFreeMonoid| . |RetractableTo|) 135325) ((|OrderedFreeMonoid| . |SemiGroup|) T) ((|OrderedFreeMonoid| . |SetCategory|) T) ((|OrderedFreeMonoid| . |Type|) T) ((|OrderedFreeMonoid| . |OrderedMonoid|) T) ((|OrderedFreeMonoid| . |OrderedSemiGroup|) T) ((|OrderlyDifferentialVariable| . |DifferentialVariableCategory|) 135309) ((|OrderlyDifferentialVariable| . |BasicType|) T) ((|OrderlyDifferentialVariable| . |CoercibleFrom|) 135293) ((|OrderlyDifferentialVariable| . |CoercibleTo|) 135267) ((|OrderlyDifferentialVariable| . |DifferentialDomain|) 135254) ((|OrderlyDifferentialVariable| . |DifferentialSpace|) T) ((|OrderlyDifferentialVariable| . |OrderedSet|) T) ((|OrderlyDifferentialVariable| . |OrderedType|) T) ((|OrderlyDifferentialVariable| . |RetractableTo|) 135238) ((|OrderlyDifferentialVariable| . |SetCategory|) T) ((|OrderlyDifferentialVariable| . |Type|) T) ((|OrdinaryDifferentialRing| . |BiModule|) 135166) ((|OrdinaryDifferentialRing| . |AbelianGroup|) T) ((|OrdinaryDifferentialRing| . |AbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |AbelianSemiGroup|) T) ((|OrdinaryDifferentialRing| . |BasicType|) T) ((|OrdinaryDifferentialRing| . |CancellationAbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |CoercibleTo|) 135127) ((|OrdinaryDifferentialRing| . |LeftLinearSet|) 135044) ((|OrdinaryDifferentialRing| . |LeftModule|) 134981) ((|OrdinaryDifferentialRing| . |RightLinearSet|) 134918) ((|OrdinaryDifferentialRing| . |RightModule|) 134855) ((|OrdinaryDifferentialRing| . |SetCategory|) T) ((|OrdinaryDifferentialRing| . |Type|) T) ((|OrdinaryDifferentialRing| . |DifferentialRing|) T) ((|OrdinaryDifferentialRing| . |CoercibleFrom|) 134750) ((|OrdinaryDifferentialRing| . |DifferentialDomain|) 134737) ((|OrdinaryDifferentialRing| . |DifferentialSpace|) T) ((|OrdinaryDifferentialRing| . |Monoid|) T) ((|OrdinaryDifferentialRing| . |Ring|) T) ((|OrdinaryDifferentialRing| . |Rng|) T) ((|OrdinaryDifferentialRing| . |SemiGroup|) T) ((|OrdinaryDifferentialRing| . |SemiRing|) T) ((|OrdinaryDifferentialRing| . |HomotopicTo|) 134721) ((|OrdinaryDifferentialRing| . |Field|) 134697) ((|OrdinaryDifferentialRing| . |Algebra|) 134625) ((|OrdinaryDifferentialRing| . |CommutativeRing|) 134601) ((|OrdinaryDifferentialRing| . |DivisionRing|) 134577) ((|OrdinaryDifferentialRing| . |EntireRing|) 134553) ((|OrdinaryDifferentialRing| . |EuclideanDomain|) 134529) ((|OrdinaryDifferentialRing| . |GcdDomain|) 134505) ((|OrdinaryDifferentialRing| . |IntegralDomain|) 134481) ((|OrdinaryDifferentialRing| . |LinearSet|) 134409) ((|OrdinaryDifferentialRing| . |Module|) 134337) ((|OrdinaryDifferentialRing| . |PrincipalIdealDomain|) 134313) ((|OrdinaryDifferentialRing| . |UniqueFactorizationDomain|) 134289) ((|OrderlyDifferentialPolynomial| . |DifferentialPolynomialCategory|) 134195) ((|OrderlyDifferentialPolynomial| . |AbelianGroup|) T) ((|OrderlyDifferentialPolynomial| . |AbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |AbelianMonoidRing|) 134115) ((|OrderlyDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |Algebra|) 133959) ((|OrderlyDifferentialPolynomial| . |BasicType|) T) ((|OrderlyDifferentialPolynomial| . |BiModule|) 133815) ((|OrderlyDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |CharacteristicNonZero|) 133775) ((|OrderlyDifferentialPolynomial| . |CharacteristicZero|) 133738) ((|OrderlyDifferentialPolynomial| . |CoercibleFrom|) 133417) ((|OrderlyDifferentialPolynomial| . |CoercibleTo|) 133391) ((|OrderlyDifferentialPolynomial| . |CommutativeRing|) 133357) ((|OrderlyDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|OrderlyDifferentialPolynomial| . |DifferentialDomain|) 133315) ((|OrderlyDifferentialPolynomial| . |DifferentialExtension|) 133299) ((|OrderlyDifferentialPolynomial| . |DifferentialRing|) 133264) ((|OrderlyDifferentialPolynomial| . |DifferentialSpace|) 133228) ((|OrderlyDifferentialPolynomial| . |DifferentialSpaceExtension|) 133212) ((|OrderlyDifferentialPolynomial| . |EntireRing|) 133179) ((|OrderlyDifferentialPolynomial| . |Evalable|) 133166) ((|OrderlyDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 133086) ((|OrderlyDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 133070) ((|OrderlyDifferentialPolynomial| . |FullyRetractableTo|) 133054) ((|OrderlyDifferentialPolynomial| . |Functorial|) 133038) ((|OrderlyDifferentialPolynomial| . |GcdDomain|) 133010) ((|OrderlyDifferentialPolynomial| . |InnerEvalable|) 132832) ((|OrderlyDifferentialPolynomial| . |IntegralDomain|) 132799) ((|OrderlyDifferentialPolynomial| . |LeftLinearSet|) 132681) ((|OrderlyDifferentialPolynomial| . |LeftModule|) 132515) ((|OrderlyDifferentialPolynomial| . |LinearSet|) 132359) ((|OrderlyDifferentialPolynomial| . |LinearlyExplicitRingOver|) 132275) ((|OrderlyDifferentialPolynomial| . |Module|) 132119) ((|OrderlyDifferentialPolynomial| . |Monoid|) T) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialDomain|) 131938) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialRing|) 131819) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialSpace|) 131642) ((|OrderlyDifferentialPolynomial| . |PatternMatchable|) NIL) ((|OrderlyDifferentialPolynomial| . |PolynomialCategory|) 131555) ((|OrderlyDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 131505) ((|OrderlyDifferentialPolynomial| . |RetractableTo|) 131238) ((|OrderlyDifferentialPolynomial| . |RightLinearSet|) 131108) ((|OrderlyDifferentialPolynomial| . |RightModule|) 130978) ((|OrderlyDifferentialPolynomial| . |Ring|) T) ((|OrderlyDifferentialPolynomial| . |Rng|) T) ((|OrderlyDifferentialPolynomial| . |SemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |SemiRing|) T) ((|OrderlyDifferentialPolynomial| . |SetCategory|) T) ((|OrderlyDifferentialPolynomial| . |Type|) T) ((|OrderlyDifferentialPolynomial| . |UniqueFactorizationDomain|) 130928) ((|OrderedDirectProduct| . |DirectProductCategory|) 130907) ((|OrderedDirectProduct| . |AbelianGroup|) 130876) ((|OrderedDirectProduct| . |AbelianMonoid|) 130844) ((|OrderedDirectProduct| . |AbelianSemiGroup|) 130809) ((|OrderedDirectProduct| . |Aggregate|) T) ((|OrderedDirectProduct| . |BasicType|) 130552) ((|OrderedDirectProduct| . |BiModule|) 130515) ((|OrderedDirectProduct| . |CancellationAbelianMonoid|) 130471) ((|OrderedDirectProduct| . |CoercibleFrom|) 130200) ((|OrderedDirectProduct| . |CoercibleTo|) 129883) ((|OrderedDirectProduct| . |DifferentialDomain|) 129746) ((|OrderedDirectProduct| . |DifferentialExtension|) 129714) ((|OrderedDirectProduct| . |DifferentialRing|) 129651) ((|OrderedDirectProduct| . |DifferentialSpace|) 129520) ((|OrderedDirectProduct| . |DifferentialSpaceExtension|) 129488) ((|OrderedDirectProduct| . |Eltable|) 129460) ((|OrderedDirectProduct| . |EltableAggregate|) 129432) ((|OrderedDirectProduct| . |Evalable|) 129356) ((|OrderedDirectProduct| . |Finite|) 129331) ((|OrderedDirectProduct| . |FiniteAggregate|) 129315) ((|OrderedDirectProduct| . |FullyLinearlyExplicitRingOver|) 129283) ((|OrderedDirectProduct| . |FullyRetractableTo|) 129244) ((|OrderedDirectProduct| . |Functorial|) 129228) ((|OrderedDirectProduct| . |HomogeneousAggregate|) 129212) ((|OrderedDirectProduct| . |IndexedAggregate|) 129184) ((|OrderedDirectProduct| . |InnerEvalable|) 129103) ((|OrderedDirectProduct| . |LeftLinearSet|) 128999) ((|OrderedDirectProduct| . |LeftModule|) 128845) ((|OrderedDirectProduct| . |LinearSet|) 128811) ((|OrderedDirectProduct| . |LinearlyExplicitRingOver|) 128683) ((|OrderedDirectProduct| . |Module|) 128640) ((|OrderedDirectProduct| . |Monoid|) 128617) ((|OrderedDirectProduct| . |OrderedAbelianMonoid|) 128575) ((|OrderedDirectProduct| . |OrderedAbelianMonoidSup|) 128533) ((|OrderedDirectProduct| . |OrderedAbelianSemiGroup|) 128491) ((|OrderedDirectProduct| . |OrderedCancellationAbelianMonoid|) 128449) ((|OrderedDirectProduct| . |OrderedSet|) 128420) ((|OrderedDirectProduct| . |OrderedType|) 128391) ((|OrderedDirectProduct| . |PartialDifferentialDomain|) 128207) ((|OrderedDirectProduct| . |PartialDifferentialRing|) 128111) ((|OrderedDirectProduct| . |PartialDifferentialSpace|) 127929) ((|OrderedDirectProduct| . |RetractableTo|) 127685) ((|OrderedDirectProduct| . |RightLinearSet|) 127651) ((|OrderedDirectProduct| . |RightModule|) 127619) ((|OrderedDirectProduct| . |Ring|) 127596) ((|OrderedDirectProduct| . |Rng|) 127573) ((|OrderedDirectProduct| . |SemiGroup|) 127550) ((|OrderedDirectProduct| . |SemiRing|) 127527) ((|OrderedDirectProduct| . |SetCategory|) 127268) ((|OrderedDirectProduct| . |Type|) T) ((|OrderedDirectProduct| . |VectorSpace|) 127235) ((|Octonion| . |OctonionCategory|) 127219) ((|Octonion| . |AbelianGroup|) T) ((|Octonion| . |AbelianMonoid|) T) ((|Octonion| . |AbelianSemiGroup|) T) ((|Octonion| . |Algebra|) 127203) ((|Octonion| . |BasicType|) T) ((|Octonion| . |BiModule|) 127182) ((|Octonion| . |CancellationAbelianMonoid|) T) ((|Octonion| . |CharacteristicNonZero|) 127142) ((|Octonion| . |CharacteristicZero|) 127105) ((|Octonion| . |CoercibleFrom|) 126887) ((|Octonion| . |CoercibleTo|) 126861) ((|Octonion| . |ConvertibleTo|) 126797) ((|Octonion| . |Eltable|) 126750) ((|Octonion| . |Evalable|) 126709) ((|Octonion| . |Finite|) 126684) ((|Octonion| . |FullyEvalableOver|) 126668) ((|Octonion| . |FullyRetractableTo|) 126624) ((|Octonion| . |Functorial|) 126608) ((|Octonion| . |InnerEvalable|) 126497) ((|Octonion| . |LeftLinearSet|) 126451) ((|Octonion| . |LeftModule|) 126425) ((|Octonion| . |LinearSet|) 126409) ((|Octonion| . |Module|) 126393) ((|Octonion| . |Monoid|) T) ((|Octonion| . |OrderedSet|) 126364) ((|Octonion| . |OrderedType|) 126335) ((|Octonion| . |RetractableTo|) 126017) ((|Octonion| . |RightLinearSet|) 126001) ((|Octonion| . |RightModule|) 125985) ((|Octonion| . |Ring|) T) ((|Octonion| . |Rng|) T) ((|Octonion| . |SemiGroup|) T) ((|Octonion| . |SemiRing|) T) ((|Octonion| . |SetCategory|) T) ((|Octonion| . |Type|) T) ((|NewSparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 125969) ((|NewSparseUnivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |AbelianMonoidRing|) 125930) ((|NewSparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |Algebra|) 125774) ((|NewSparseUnivariatePolynomial| . |BasicType|) T) ((|NewSparseUnivariatePolynomial| . |BiModule|) 125630) ((|NewSparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |CharacteristicNonZero|) 125590) ((|NewSparseUnivariatePolynomial| . |CharacteristicZero|) 125553) ((|NewSparseUnivariatePolynomial| . |CoercibleFrom|) 125270) ((|NewSparseUnivariatePolynomial| . |CoercibleTo|) 125200) ((|NewSparseUnivariatePolynomial| . |CommutativeRing|) 125166) ((|NewSparseUnivariatePolynomial| . |DifferentialDomain|) 125153) ((|NewSparseUnivariatePolynomial| . |DifferentialExtension|) 125137) ((|NewSparseUnivariatePolynomial| . |DifferentialRing|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 125121) ((|NewSparseUnivariatePolynomial| . |Eltable|) 125032) ((|NewSparseUnivariatePolynomial| . |EntireRing|) 124999) ((|NewSparseUnivariatePolynomial| . |EuclideanDomain|) 124975) ((|NewSparseUnivariatePolynomial| . |Evalable|) 124962) ((|NewSparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 124923) ((|NewSparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 124907) ((|NewSparseUnivariatePolynomial| . |FullyRetractableTo|) 124891) ((|NewSparseUnivariatePolynomial| . |Functorial|) 124875) ((|NewSparseUnivariatePolynomial| . |GcdDomain|) 124847) ((|NewSparseUnivariatePolynomial| . |InnerEvalable|) 124776) ((|NewSparseUnivariatePolynomial| . |IntegralDomain|) 124743) ((|NewSparseUnivariatePolynomial| . |LeftLinearSet|) 124625) ((|NewSparseUnivariatePolynomial| . |LeftModule|) 124459) ((|NewSparseUnivariatePolynomial| . |LinearSet|) 124303) ((|NewSparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 124219) ((|NewSparseUnivariatePolynomial| . |Module|) 124063) ((|NewSparseUnivariatePolynomial| . |Monoid|) T) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialDomain|) 123899) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialRing|) 123797) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialSpace|) 123637) ((|NewSparseUnivariatePolynomial| . |PolynomialCategory|) 123572) ((|NewSparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 123522) ((|NewSparseUnivariatePolynomial| . |PrincipalIdealDomain|) 123498) ((|NewSparseUnivariatePolynomial| . |RetractableTo|) 123269) ((|NewSparseUnivariatePolynomial| . |RightLinearSet|) 123139) ((|NewSparseUnivariatePolynomial| . |RightModule|) 123009) ((|NewSparseUnivariatePolynomial| . |Ring|) T) ((|NewSparseUnivariatePolynomial| . |Rng|) T) ((|NewSparseUnivariatePolynomial| . |SemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |SemiRing|) T) ((|NewSparseUnivariatePolynomial| . |SetCategory|) T) ((|NewSparseUnivariatePolynomial| . |StepThrough|) 122979) ((|NewSparseUnivariatePolynomial| . |Type|) T) ((|NewSparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 122929) ((|NewSparseMultivariatePolynomial| . |RecursivePolynomialCategory|) 122882) ((|NewSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |AbelianMonoidRing|) 122840) ((|NewSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |Algebra|) 122684) ((|NewSparseMultivariatePolynomial| . |BasicType|) T) ((|NewSparseMultivariatePolynomial| . |BiModule|) 122540) ((|NewSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |CharacteristicNonZero|) 122500) ((|NewSparseMultivariatePolynomial| . |CharacteristicZero|) 122463) ((|NewSparseMultivariatePolynomial| . |CoercibleFrom|) 122194) ((|NewSparseMultivariatePolynomial| . |CoercibleTo|) 122053) ((|NewSparseMultivariatePolynomial| . |CommutativeRing|) 122019) ((|NewSparseMultivariatePolynomial| . |ConvertibleTo|) 121458) ((|NewSparseMultivariatePolynomial| . |EntireRing|) 121425) ((|NewSparseMultivariatePolynomial| . |Evalable|) 121412) ((|NewSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 121370) ((|NewSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 121354) ((|NewSparseMultivariatePolynomial| . |FullyRetractableTo|) 121338) ((|NewSparseMultivariatePolynomial| . |Functorial|) 121322) ((|NewSparseMultivariatePolynomial| . |GcdDomain|) 121294) ((|NewSparseMultivariatePolynomial| . |InnerEvalable|) 121246) ((|NewSparseMultivariatePolynomial| . |IntegralDomain|) 121213) ((|NewSparseMultivariatePolynomial| . |LeftLinearSet|) 121095) ((|NewSparseMultivariatePolynomial| . |LeftModule|) 120929) ((|NewSparseMultivariatePolynomial| . |LinearSet|) 120773) ((|NewSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 120689) ((|NewSparseMultivariatePolynomial| . |Module|) 120533) ((|NewSparseMultivariatePolynomial| . |Monoid|) T) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 120515) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialRing|) 120499) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 120483) ((|NewSparseMultivariatePolynomial| . |PatternMatchable|) 120262) ((|NewSparseMultivariatePolynomial| . |PolynomialCategory|) 120215) ((|NewSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 120165) ((|NewSparseMultivariatePolynomial| . |RetractableTo|) 119950) ((|NewSparseMultivariatePolynomial| . |RightLinearSet|) 119820) ((|NewSparseMultivariatePolynomial| . |RightModule|) 119690) ((|NewSparseMultivariatePolynomial| . |Ring|) T) ((|NewSparseMultivariatePolynomial| . |Rng|) T) ((|NewSparseMultivariatePolynomial| . |SemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |SemiRing|) T) ((|NewSparseMultivariatePolynomial| . |SetCategory|) T) ((|NewSparseMultivariatePolynomial| . |Type|) T) ((|NewSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 119640) ((|None| . |SetCategory|) T) ((|None| . |BasicType|) T) ((|None| . |CoercibleTo|) 119614) ((|None| . |Type|) T) ((|NonNegativeInteger| . |OrderedAbelianMonoidSup|) T) ((|NonNegativeInteger| . |AbelianMonoid|) T) ((|NonNegativeInteger| . |AbelianSemiGroup|) T) ((|NonNegativeInteger| . |BasicType|) T) ((|NonNegativeInteger| . |CancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |CoercibleTo|) 119588) ((|NonNegativeInteger| . |OrderedAbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedAbelianSemiGroup|) T) ((|NonNegativeInteger| . |OrderedCancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedSet|) T) ((|NonNegativeInteger| . |OrderedType|) T) ((|NonNegativeInteger| . |SetCategory|) T) ((|NonNegativeInteger| . |Type|) T) ((|NonNegativeInteger| . |Monoid|) T) ((|NonNegativeInteger| . |SemiGroup|) T) ((|Multiset| . |MultisetAggregate|) 119572) ((|Multiset| . |Aggregate|) T) ((|Multiset| . |BagAggregate|) 119556) ((|Multiset| . |BasicType|) T) ((|Multiset| . |CoercibleTo|) 119530) ((|Multiset| . |Collection|) 119514) ((|Multiset| . |ConvertibleTo|) 119450) ((|Multiset| . |DictionaryOperations|) 119434) ((|Multiset| . |Evalable|) 119358) ((|Multiset| . |Functorial|) 119342) ((|Multiset| . |HomogeneousAggregate|) 119326) ((|Multiset| . |InnerEvalable|) 119245) ((|Multiset| . |MultiDictionary|) 119229) ((|Multiset| . |SetAggregate|) 119213) ((|Multiset| . |SetCategory|) T) ((|Multiset| . |ShallowlyMutableAggregate|) 119197) ((|Multiset| . |Type|) T) ((|Multiset| . |FiniteAggregate|) 119181) ((|MonoidRing| . |Ring|) T) ((|MonoidRing| . |AbelianGroup|) T) ((|MonoidRing| . |AbelianMonoid|) T) ((|MonoidRing| . |AbelianSemiGroup|) T) ((|MonoidRing| . |BasicType|) T) ((|MonoidRing| . |CancellationAbelianMonoid|) T) ((|MonoidRing| . |CoercibleFrom|) 119132) ((|MonoidRing| . |CoercibleTo|) 119106) ((|MonoidRing| . |LeftLinearSet|) 119033) ((|MonoidRing| . |LeftModule|) 118980) ((|MonoidRing| . |Monoid|) T) ((|MonoidRing| . |Rng|) T) ((|MonoidRing| . |SemiGroup|) T) ((|MonoidRing| . |SemiRing|) T) ((|MonoidRing| . |SetCategory|) T) ((|MonoidRing| . |Type|) T) ((|MonoidRing| . |RetractableTo|) 118951) ((|MonoidRing| . |Functorial|) 118935) ((|MonoidRing| . |CharacteristicZero|) 118898) ((|MonoidRing| . |CharacteristicNonZero|) 118858) ((|MonoidRing| . |Algebra|) 118815) ((|MonoidRing| . |BiModule|) 118767) ((|MonoidRing| . |LinearSet|) 118724) ((|MonoidRing| . |Module|) 118681) ((|MonoidRing| . |RightLinearSet|) 118638) ((|MonoidRing| . |RightModule|) 118595) ((|MonoidRing| . |Finite|) 118540) ((|MultivariatePolynomial| . |PolynomialCategory|) 118467) ((|MultivariatePolynomial| . |AbelianGroup|) T) ((|MultivariatePolynomial| . |AbelianMonoid|) T) ((|MultivariatePolynomial| . |AbelianMonoidRing|) 118401) ((|MultivariatePolynomial| . |AbelianSemiGroup|) T) ((|MultivariatePolynomial| . |Algebra|) 118245) ((|MultivariatePolynomial| . |BasicType|) T) ((|MultivariatePolynomial| . |BiModule|) 118101) ((|MultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|MultivariatePolynomial| . |CharacteristicNonZero|) 118061) ((|MultivariatePolynomial| . |CharacteristicZero|) 118024) ((|MultivariatePolynomial| . |CoercibleFrom|) 117782) ((|MultivariatePolynomial| . |CoercibleTo|) 117756) ((|MultivariatePolynomial| . |CommutativeRing|) 117722) ((|MultivariatePolynomial| . |ConvertibleTo|) 117500) ((|MultivariatePolynomial| . |EntireRing|) 117467) ((|MultivariatePolynomial| . |Evalable|) 117454) ((|MultivariatePolynomial| . |FiniteAbelianMonoidRing|) 117388) ((|MultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 117372) ((|MultivariatePolynomial| . |FullyRetractableTo|) 117356) ((|MultivariatePolynomial| . |Functorial|) 117340) ((|MultivariatePolynomial| . |GcdDomain|) 117312) ((|MultivariatePolynomial| . |InnerEvalable|) 117238) ((|MultivariatePolynomial| . |IntegralDomain|) 117205) ((|MultivariatePolynomial| . |LeftLinearSet|) 117087) ((|MultivariatePolynomial| . |LeftModule|) 116921) ((|MultivariatePolynomial| . |LinearSet|) 116765) ((|MultivariatePolynomial| . |LinearlyExplicitRingOver|) 116681) ((|MultivariatePolynomial| . |Module|) 116525) ((|MultivariatePolynomial| . |Monoid|) T) ((|MultivariatePolynomial| . |PartialDifferentialDomain|) 116483) ((|MultivariatePolynomial| . |PartialDifferentialRing|) 116443) ((|MultivariatePolynomial| . |PartialDifferentialSpace|) 116403) ((|MultivariatePolynomial| . |PatternMatchable|) NIL) ((|MultivariatePolynomial| . |PolynomialFactorizationExplicit|) 116353) ((|MultivariatePolynomial| . |RetractableTo|) 116165) ((|MultivariatePolynomial| . |RightLinearSet|) 116035) ((|MultivariatePolynomial| . |RightModule|) 115905) ((|MultivariatePolynomial| . |Ring|) T) ((|MultivariatePolynomial| . |Rng|) T) ((|MultivariatePolynomial| . |SemiGroup|) T) ((|MultivariatePolynomial| . |SemiRing|) T) ((|MultivariatePolynomial| . |SetCategory|) T) ((|MultivariatePolynomial| . |Type|) T) ((|MultivariatePolynomial| . |UniqueFactorizationDomain|) 115855) ((|MonoidOperation| . |MonoidOperatorCategory|) 115839) ((|MonoidOperation| . |BinaryOperatorCategory|) 115823) ((|MonoidOperation| . |MappingCategory|) 115797) ((|MonoidOperation| . |SemiGroupOperatorCategory|) 115781) ((|MonoidOperation| . |SetCategory|) T) ((|MonoidOperation| . |BasicType|) T) ((|MonoidOperation| . |CoercibleTo|) 115719) ((|MonoidOperation| . |Type|) T) ((|MoebiusTransform| . |Group|) T) ((|MoebiusTransform| . |BasicType|) T) ((|MoebiusTransform| . |CoercibleTo|) 115693) ((|MoebiusTransform| . |Monoid|) T) ((|MoebiusTransform| . |SemiGroup|) T) ((|MoebiusTransform| . |SetCategory|) T) ((|MoebiusTransform| . |Type|) T) ((|ModularRing| . |Ring|) T) ((|ModularRing| . |AbelianGroup|) T) ((|ModularRing| . |AbelianMonoid|) T) ((|ModularRing| . |AbelianSemiGroup|) T) ((|ModularRing| . |BasicType|) T) ((|ModularRing| . |CancellationAbelianMonoid|) T) ((|ModularRing| . |CoercibleFrom|) 115670) ((|ModularRing| . |CoercibleTo|) 115631) ((|ModularRing| . |LeftLinearSet|) 115598) ((|ModularRing| . |LeftModule|) 115585) ((|ModularRing| . |Monoid|) T) ((|ModularRing| . |Rng|) T) ((|ModularRing| . |SemiGroup|) T) ((|ModularRing| . |SemiRing|) T) ((|ModularRing| . |SetCategory|) T) ((|ModularRing| . |Type|) T) ((|ModuleOperator| . |Ring|) T) ((|ModuleOperator| . |AbelianGroup|) T) ((|ModuleOperator| . |AbelianMonoid|) T) ((|ModuleOperator| . |AbelianSemiGroup|) T) ((|ModuleOperator| . |BasicType|) T) ((|ModuleOperator| . |CancellationAbelianMonoid|) T) ((|ModuleOperator| . |CoercibleFrom|) 115523) ((|ModuleOperator| . |CoercibleTo|) 115497) ((|ModuleOperator| . |LeftLinearSet|) 115424) ((|ModuleOperator| . |LeftModule|) 115371) ((|ModuleOperator| . |Monoid|) T) ((|ModuleOperator| . |Rng|) T) ((|ModuleOperator| . |SemiGroup|) T) ((|ModuleOperator| . |SemiRing|) T) ((|ModuleOperator| . |SetCategory|) T) ((|ModuleOperator| . |Type|) T) ((|ModuleOperator| . |RetractableTo|) 115329) ((|ModuleOperator| . |Eltable|) 115308) ((|ModuleOperator| . |CharacteristicZero|) 115271) ((|ModuleOperator| . |CharacteristicNonZero|) 115231) ((|ModuleOperator| . |Algebra|) 115188) ((|ModuleOperator| . |BiModule|) 115140) ((|ModuleOperator| . |LinearSet|) 115097) ((|ModuleOperator| . |Module|) 115054) ((|ModuleOperator| . |RightLinearSet|) 115011) ((|ModuleOperator| . |RightModule|) 114968) ((|ModuleMonomial| . |OrderedSet|) T) ((|ModuleMonomial| . |BasicType|) T) ((|ModuleMonomial| . |CoercibleTo|) 114882) ((|ModuleMonomial| . |OrderedType|) T) ((|ModuleMonomial| . |SetCategory|) T) ((|ModuleMonomial| . |Type|) T) ((|ModuleMonomial| . |HomotopicTo|) 114819) ((|ModuleMonomial| . |CoercibleFrom|) 114756) ((|ModMonic| . |UnivariatePolynomialCategory|) 114740) ((|ModMonic| . |AbelianGroup|) T) ((|ModMonic| . |AbelianMonoid|) T) ((|ModMonic| . |AbelianMonoidRing|) 114701) ((|ModMonic| . |AbelianSemiGroup|) T) ((|ModMonic| . |Algebra|) 114545) ((|ModMonic| . |BasicType|) T) ((|ModMonic| . |BiModule|) 114401) ((|ModMonic| . |CancellationAbelianMonoid|) T) ((|ModMonic| . |CharacteristicNonZero|) 114361) ((|ModMonic| . |CharacteristicZero|) 114324) ((|ModMonic| . |CoercibleFrom|) 114072) ((|ModMonic| . |CoercibleTo|) 114046) ((|ModMonic| . |CommutativeRing|) 114012) ((|ModMonic| . |DifferentialDomain|) 113999) ((|ModMonic| . |DifferentialExtension|) 113983) ((|ModMonic| . |DifferentialRing|) T) ((|ModMonic| . |DifferentialSpace|) T) ((|ModMonic| . |DifferentialSpaceExtension|) 113967) ((|ModMonic| . |Eltable|) 113878) ((|ModMonic| . |EntireRing|) 113845) ((|ModMonic| . |EuclideanDomain|) 113821) ((|ModMonic| . |Evalable|) 113808) ((|ModMonic| . |FiniteAbelianMonoidRing|) 113769) ((|ModMonic| . |FullyLinearlyExplicitRingOver|) 113753) ((|ModMonic| . |FullyRetractableTo|) 113737) ((|ModMonic| . |Functorial|) 113721) ((|ModMonic| . |GcdDomain|) 113693) ((|ModMonic| . |InnerEvalable|) 113622) ((|ModMonic| . |IntegralDomain|) 113589) ((|ModMonic| . |LeftLinearSet|) 113471) ((|ModMonic| . |LeftModule|) 113305) ((|ModMonic| . |LinearSet|) 113149) ((|ModMonic| . |LinearlyExplicitRingOver|) 113065) ((|ModMonic| . |Module|) 112909) ((|ModMonic| . |Monoid|) T) ((|ModMonic| . |PartialDifferentialDomain|) 112745) ((|ModMonic| . |PartialDifferentialRing|) 112643) ((|ModMonic| . |PartialDifferentialSpace|) 112483) ((|ModMonic| . |PolynomialCategory|) 112418) ((|ModMonic| . |PolynomialFactorizationExplicit|) 112368) ((|ModMonic| . |PrincipalIdealDomain|) 112344) ((|ModMonic| . |RetractableTo|) 112159) ((|ModMonic| . |RightLinearSet|) 112029) ((|ModMonic| . |RightModule|) 111899) ((|ModMonic| . |Ring|) T) ((|ModMonic| . |Rng|) T) ((|ModMonic| . |SemiGroup|) T) ((|ModMonic| . |SemiRing|) T) ((|ModMonic| . |SetCategory|) T) ((|ModMonic| . |StepThrough|) 111869) ((|ModMonic| . |Type|) T) ((|ModMonic| . |UniqueFactorizationDomain|) 111819) ((|ModMonic| . |Finite|) 111794) ((|ModularField| . |Field|) T) ((|ModularField| . |AbelianGroup|) T) ((|ModularField| . |AbelianMonoid|) T) ((|ModularField| . |AbelianSemiGroup|) T) ((|ModularField| . |Algebra|) 111748) ((|ModularField| . |BasicType|) T) ((|ModularField| . |BiModule|) 111693) ((|ModularField| . |CancellationAbelianMonoid|) T) ((|ModularField| . |CoercibleFrom|) 111632) ((|ModularField| . |CoercibleTo|) 111593) ((|ModularField| . |CommutativeRing|) T) ((|ModularField| . |DivisionRing|) T) ((|ModularField| . |EntireRing|) T) ((|ModularField| . |EuclideanDomain|) T) ((|ModularField| . |GcdDomain|) T) ((|ModularField| . |IntegralDomain|) T) ((|ModularField| . |LeftLinearSet|) 111532) ((|ModularField| . |LeftModule|) 111486) ((|ModularField| . |LinearSet|) 111440) ((|ModularField| . |Module|) 111394) ((|ModularField| . |Monoid|) T) ((|ModularField| . |PrincipalIdealDomain|) T) ((|ModularField| . |RightLinearSet|) 111348) ((|ModularField| . |RightModule|) 111302) ((|ModularField| . |Ring|) T) ((|ModularField| . |Rng|) T) ((|ModularField| . |SemiGroup|) T) ((|ModularField| . |SemiRing|) T) ((|ModularField| . |SetCategory|) T) ((|ModularField| . |Type|) T) ((|ModularField| . |UniqueFactorizationDomain|) T) ((|MathMLFormat| . |SetCategory|) T) ((|MathMLFormat| . |BasicType|) T) ((|MathMLFormat| . |CoercibleTo|) 111276) ((|MathMLFormat| . |Type|) T) ((|Maybe| . |UnionType|) T) ((|Maybe| . |RetractableTo|) 111260) ((|Maybe| . |CoercibleFrom|) 111244) ((|Maybe| . |CoercibleTo|) 111186) ((|Matrix| . |MatrixCategory|) 111147) ((|Matrix| . |Aggregate|) T) ((|Matrix| . |BasicType|) 111119) ((|Matrix| . |CoercibleTo|) 111055) ((|Matrix| . |Evalable|) 110979) ((|Matrix| . |FiniteAggregate|) 110963) ((|Matrix| . |Functorial|) 110947) ((|Matrix| . |HomogeneousAggregate|) 110931) ((|Matrix| . |InnerEvalable|) 110850) ((|Matrix| . |SetCategory|) 110820) ((|Matrix| . |ShallowlyMutableAggregate|) 110804) ((|Matrix| . |TwoDimensionalArrayCategory|) 110765) ((|Matrix| . |Type|) T) ((|Matrix| . |ConvertibleTo|) 110706) ((|MappingAst| . |SpadSyntaxCategory|) T) ((|MappingAst| . |AbstractSyntaxCategory|) T) ((|MappingAst| . |BasicType|) T) ((|MappingAst| . |CoercibleFrom|) 110684) ((|MappingAst| . |CoercibleTo|) 110619) ((|MappingAst| . |HomotopicTo|) 110597) ((|MappingAst| . |SetCategory|) T) ((|MappingAst| . |Type|) T) ((|MacroAst| . |SpadSyntaxCategory|) T) ((|MacroAst| . |AbstractSyntaxCategory|) T) ((|MacroAst| . |BasicType|) T) ((|MacroAst| . |CoercibleFrom|) 110575) ((|MacroAst| . |CoercibleTo|) 110530) ((|MacroAst| . |HomotopicTo|) 110508) ((|MacroAst| . |SetCategory|) T) ((|MacroAst| . |Type|) T) ((|LyndonWord| . |OrderedSet|) T) ((|LyndonWord| . |BasicType|) T) ((|LyndonWord| . |CoercibleTo|) 110420) ((|LyndonWord| . |OrderedType|) T) ((|LyndonWord| . |SetCategory|) T) ((|LyndonWord| . |Type|) T) ((|LyndonWord| . |RetractableTo|) 110404) ((|LyndonWord| . |CoercibleFrom|) 110388) ((|ConstructAst| . |SpadSyntaxCategory|) T) ((|ConstructAst| . |AbstractSyntaxCategory|) T) ((|ConstructAst| . |BasicType|) T) ((|ConstructAst| . |CoercibleFrom|) 110366) ((|ConstructAst| . |CoercibleTo|) 110321) ((|ConstructAst| . |HomotopicTo|) 110299) ((|ConstructAst| . |SetCategory|) T) ((|ConstructAst| . |Type|) T) ((|LieSquareMatrix| . |SquareMatrixCategory|) 110243) ((|LieSquareMatrix| . |AbelianGroup|) T) ((|LieSquareMatrix| . |AbelianMonoid|) T) ((|LieSquareMatrix| . |AbelianSemiGroup|) T) ((|LieSquareMatrix| . |Aggregate|) T) ((|LieSquareMatrix| . |Algebra|) 110188) ((|LieSquareMatrix| . |BasicType|) T) ((|LieSquareMatrix| . |BiModule|) 110167) ((|LieSquareMatrix| . |CancellationAbelianMonoid|) T) ((|LieSquareMatrix| . |CoercibleFrom|) 110053) ((|LieSquareMatrix| . |CoercibleTo|) 110003) ((|LieSquareMatrix| . |DifferentialDomain|) 109961) ((|LieSquareMatrix| . |DifferentialExtension|) 109945) ((|LieSquareMatrix| . |DifferentialRing|) 109910) ((|LieSquareMatrix| . |DifferentialSpace|) 109874) ((|LieSquareMatrix| . |DifferentialSpaceExtension|) 109858) ((|LieSquareMatrix| . |Evalable|) 109782) ((|LieSquareMatrix| . |FiniteAggregate|) 109766) ((|LieSquareMatrix| . |FullyLinearlyExplicitRingOver|) 109750) ((|LieSquareMatrix| . |FullyRetractableTo|) 109734) ((|LieSquareMatrix| . |Functorial|) 109718) ((|LieSquareMatrix| . |HomogeneousAggregate|) 109702) ((|LieSquareMatrix| . |InnerEvalable|) 109621) ((|LieSquareMatrix| . |LeftLinearSet|) 109575) ((|LieSquareMatrix| . |LeftModule|) 109481) ((|LieSquareMatrix| . |LinearSet|) 109465) ((|LieSquareMatrix| . |LinearlyExplicitRingOver|) 109381) ((|LieSquareMatrix| . |Module|) 109365) ((|LieSquareMatrix| . |Monoid|) T) ((|LieSquareMatrix| . |PartialDifferentialDomain|) 109237) ((|LieSquareMatrix| . |PartialDifferentialRing|) 109169) ((|LieSquareMatrix| . |PartialDifferentialSpace|) 109043) ((|LieSquareMatrix| . |RectangularMatrixCategory|) 108982) ((|LieSquareMatrix| . |RetractableTo|) 108831) ((|LieSquareMatrix| . |RightLinearSet|) 108815) ((|LieSquareMatrix| . |RightModule|) 108799) ((|LieSquareMatrix| . |Ring|) T) ((|LieSquareMatrix| . |Rng|) T) ((|LieSquareMatrix| . |SemiGroup|) T) ((|LieSquareMatrix| . |SemiRing|) T) ((|LieSquareMatrix| . |SetCategory|) T) ((|LieSquareMatrix| . |Type|) T) ((|LieSquareMatrix| . |FramedNonAssociativeAlgebra|) 108783) ((|LieSquareMatrix| . |Eltable|) 108755) ((|LieSquareMatrix| . |FiniteRankNonAssociativeAlgebra|) 108739) ((|LieSquareMatrix| . |Monad|) T) ((|LieSquareMatrix| . |NonAssociativeAlgebra|) 108723) ((|LieSquareMatrix| . |NonAssociativeRng|) T) ((|LiePolynomial| . |FreeLieAlgebra|) 108702) ((|LiePolynomial| . |AbelianGroup|) T) ((|LiePolynomial| . |AbelianMonoid|) T) ((|LiePolynomial| . |AbelianSemiGroup|) T) ((|LiePolynomial| . |BasicType|) T) ((|LiePolynomial| . |BiModule|) 108681) ((|LiePolynomial| . |CancellationAbelianMonoid|) T) ((|LiePolynomial| . |CoercibleTo|) 108567) ((|LiePolynomial| . |LeftLinearSet|) 108531) ((|LiePolynomial| . |LeftModule|) 108515) ((|LiePolynomial| . |LieAlgebra|) 108499) ((|LiePolynomial| . |LinearSet|) 108483) ((|LiePolynomial| . |Module|) 108467) ((|LiePolynomial| . |RightLinearSet|) 108451) ((|LiePolynomial| . |RightModule|) 108435) ((|LiePolynomial| . |SetCategory|) T) ((|LiePolynomial| . |Type|) T) ((|LiePolynomial| . |FreeModuleCat|) 108399) ((|LiePolynomial| . |CoercibleFrom|) 108368) ((|LiePolynomial| . |Functorial|) 108352) ((|LiePolynomial| . |RetractableTo|) 108321) ((|LinearOrdinaryDifferentialOperator2| . |LinearOrdinaryDifferentialOperatorCategory|) 108305) ((|LinearOrdinaryDifferentialOperator2| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |Algebra|) 108262) ((|LinearOrdinaryDifferentialOperator2| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator2| . |BiModule|) 108241) ((|LinearOrdinaryDifferentialOperator2| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleFrom|) 108127) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleTo|) 108101) ((|LinearOrdinaryDifferentialOperator2| . |Eltable|) 108062) ((|LinearOrdinaryDifferentialOperator2| . |FullyRetractableTo|) 108046) ((|LinearOrdinaryDifferentialOperator2| . |LeftLinearSet|) 108000) ((|LinearOrdinaryDifferentialOperator2| . |LeftModule|) 107974) ((|LinearOrdinaryDifferentialOperator2| . |LinearSet|) 107931) ((|LinearOrdinaryDifferentialOperator2| . |Module|) 107888) ((|LinearOrdinaryDifferentialOperator2| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |RetractableTo|) 107737) ((|LinearOrdinaryDifferentialOperator2| . |RightLinearSet|) 107721) ((|LinearOrdinaryDifferentialOperator2| . |RightModule|) 107705) ((|LinearOrdinaryDifferentialOperator2| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator2| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator2| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator2| . |Type|) T) ((|LinearOrdinaryDifferentialOperator2| . |UnivariateSkewPolynomialCategory|) 107689) ((|LinearOrdinaryDifferentialOperator1| . |LinearOrdinaryDifferentialOperatorCategory|) 107673) ((|LinearOrdinaryDifferentialOperator1| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |Algebra|) 107630) ((|LinearOrdinaryDifferentialOperator1| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator1| . |BiModule|) 107609) ((|LinearOrdinaryDifferentialOperator1| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleFrom|) 107495) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleTo|) 107469) ((|LinearOrdinaryDifferentialOperator1| . |Eltable|) 107448) ((|LinearOrdinaryDifferentialOperator1| . |FullyRetractableTo|) 107432) ((|LinearOrdinaryDifferentialOperator1| . |LeftLinearSet|) 107386) ((|LinearOrdinaryDifferentialOperator1| . |LeftModule|) 107360) ((|LinearOrdinaryDifferentialOperator1| . |LinearSet|) 107317) ((|LinearOrdinaryDifferentialOperator1| . |Module|) 107274) ((|LinearOrdinaryDifferentialOperator1| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |RetractableTo|) 107123) ((|LinearOrdinaryDifferentialOperator1| . |RightLinearSet|) 107107) ((|LinearOrdinaryDifferentialOperator1| . |RightModule|) 107091) ((|LinearOrdinaryDifferentialOperator1| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator1| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator1| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator1| . |Type|) T) ((|LinearOrdinaryDifferentialOperator1| . |UnivariateSkewPolynomialCategory|) 107075) ((|LinearOrdinaryDifferentialOperator| . |LinearOrdinaryDifferentialOperatorCategory|) 107059) ((|LinearOrdinaryDifferentialOperator| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |Algebra|) 107016) ((|LinearOrdinaryDifferentialOperator| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator| . |BiModule|) 106995) ((|LinearOrdinaryDifferentialOperator| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |CoercibleFrom|) 106881) ((|LinearOrdinaryDifferentialOperator| . |CoercibleTo|) 106855) ((|LinearOrdinaryDifferentialOperator| . |Eltable|) 106834) ((|LinearOrdinaryDifferentialOperator| . |FullyRetractableTo|) 106818) ((|LinearOrdinaryDifferentialOperator| . |LeftLinearSet|) 106772) ((|LinearOrdinaryDifferentialOperator| . |LeftModule|) 106746) ((|LinearOrdinaryDifferentialOperator| . |LinearSet|) 106703) ((|LinearOrdinaryDifferentialOperator| . |Module|) 106660) ((|LinearOrdinaryDifferentialOperator| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator| . |RetractableTo|) 106509) ((|LinearOrdinaryDifferentialOperator| . |RightLinearSet|) 106493) ((|LinearOrdinaryDifferentialOperator| . |RightModule|) 106477) ((|LinearOrdinaryDifferentialOperator| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator| . |Type|) T) ((|LinearOrdinaryDifferentialOperator| . |UnivariateSkewPolynomialCategory|) 106461) ((|Localize| . |Module|) 106445) ((|Localize| . |AbelianGroup|) T) ((|Localize| . |AbelianMonoid|) T) ((|Localize| . |AbelianSemiGroup|) T) ((|Localize| . |BasicType|) T) ((|Localize| . |BiModule|) 106424) ((|Localize| . |CancellationAbelianMonoid|) T) ((|Localize| . |CoercibleTo|) 106398) ((|Localize| . |LeftLinearSet|) 106362) ((|Localize| . |LeftModule|) 106346) ((|Localize| . |LinearSet|) 106330) ((|Localize| . |RightLinearSet|) 106314) ((|Localize| . |RightModule|) 106298) ((|Localize| . |SetCategory|) T) ((|Localize| . |Type|) T) ((|Localize| . |OrderedAbelianGroup|) 106260) ((|Localize| . |OrderedAbelianMonoid|) 106222) ((|Localize| . |OrderedAbelianSemiGroup|) 106184) ((|Localize| . |OrderedCancellationAbelianMonoid|) 106146) ((|Localize| . |OrderedSet|) 106108) ((|Localize| . |OrderedType|) 106070) ((|ListMonoidOps| . |SetCategory|) T) ((|ListMonoidOps| . |BasicType|) T) ((|ListMonoidOps| . |CoercibleTo|) 106044) ((|ListMonoidOps| . |Type|) T) ((|ListMonoidOps| . |RetractableTo|) 106028) ((|ListMonoidOps| . |CoercibleFrom|) 106012) ((|ListMultiDictionary| . |MultiDictionary|) 105996) ((|ListMultiDictionary| . |Aggregate|) T) ((|ListMultiDictionary| . |BagAggregate|) 105980) ((|ListMultiDictionary| . |BasicType|) 105952) ((|ListMultiDictionary| . |CoercibleTo|) 105888) ((|ListMultiDictionary| . |Collection|) 105872) ((|ListMultiDictionary| . |ConvertibleTo|) 105808) ((|ListMultiDictionary| . |DictionaryOperations|) 105792) ((|ListMultiDictionary| . |Evalable|) 105716) ((|ListMultiDictionary| . |Functorial|) 105700) ((|ListMultiDictionary| . |HomogeneousAggregate|) 105684) ((|ListMultiDictionary| . |InnerEvalable|) 105603) ((|ListMultiDictionary| . |SetCategory|) 105573) ((|ListMultiDictionary| . |ShallowlyMutableAggregate|) 105557) ((|ListMultiDictionary| . |Type|) T) ((|ListMultiDictionary| . |FiniteAggregate|) 105541) ((|Literal| . |SpadSyntaxCategory|) T) ((|Literal| . |AbstractSyntaxCategory|) T) ((|Literal| . |BasicType|) T) ((|Literal| . |CoercibleFrom|) 105519) ((|Literal| . |CoercibleTo|) 105461) ((|Literal| . |HomotopicTo|) 105439) ((|Literal| . |SetCategory|) T) ((|Literal| . |Type|) T) ((|List| . |ListAggregate|) 105423) ((|List| . |Aggregate|) T) ((|List| . |BasicType|) 105395) ((|List| . |CoercibleTo|) 105331) ((|List| . |Collection|) 105315) ((|List| . |ConvertibleTo|) 105251) ((|List| . |Eltable|) 105185) ((|List| . |EltableAggregate|) 105157) ((|List| . |Evalable|) 105081) ((|List| . |ExtensibleLinearAggregate|) 105065) ((|List| . |FiniteAggregate|) 105049) ((|List| . |FiniteLinearAggregate|) 105033) ((|List| . |Functorial|) 105017) ((|List| . |HomogeneousAggregate|) 105001) ((|List| . |IndexedAggregate|) 104973) ((|List| . |InnerEvalable|) 104892) ((|List| . |LinearAggregate|) 104876) ((|List| . |OrderedSet|) 104847) ((|List| . |OrderedType|) 104818) ((|List| . |RecursiveAggregate|) 104802) ((|List| . |SetCategory|) 104772) ((|List| . |ShallowlyMutableAggregate|) 104756) ((|List| . |StreamAggregate|) 104740) ((|List| . |Type|) T) ((|List| . |UnaryRecursiveAggregate|) 104724) ((|LinearForm| . |VectorSpace|) 104708) ((|LinearForm| . |AbelianGroup|) T) ((|LinearForm| . |AbelianMonoid|) T) ((|LinearForm| . |AbelianSemiGroup|) T) ((|LinearForm| . |BasicType|) T) ((|LinearForm| . |BiModule|) 104687) ((|LinearForm| . |CancellationAbelianMonoid|) T) ((|LinearForm| . |CoercibleTo|) 104661) ((|LinearForm| . |LeftLinearSet|) 104625) ((|LinearForm| . |LeftModule|) 104609) ((|LinearForm| . |LinearSet|) 104593) ((|LinearForm| . |Module|) 104577) ((|LinearForm| . |RightLinearSet|) 104561) ((|LinearForm| . |RightModule|) 104545) ((|LinearForm| . |SetCategory|) T) ((|LinearForm| . |Type|) T) ((|LinearForm| . |Eltable|) 104501) ((|LinearElement| . |VectorSpace|) 104485) ((|LinearElement| . |AbelianGroup|) T) ((|LinearElement| . |AbelianMonoid|) T) ((|LinearElement| . |AbelianSemiGroup|) T) ((|LinearElement| . |BasicType|) T) ((|LinearElement| . |BiModule|) 104464) ((|LinearElement| . |CancellationAbelianMonoid|) T) ((|LinearElement| . |CoercibleTo|) 104438) ((|LinearElement| . |LeftLinearSet|) 104402) ((|LinearElement| . |LeftModule|) 104386) ((|LinearElement| . |LinearSet|) 104370) ((|LinearElement| . |Module|) 104354) ((|LinearElement| . |RightLinearSet|) 104338) ((|LinearElement| . |RightModule|) 104322) ((|LinearElement| . |SetCategory|) T) ((|LinearElement| . |Type|) T) ((|LinearElement| . |CoercibleFrom|) 104290) ((|LinearElement| . |IndexedDirectProductCategory|) 104253) ((|LinearElement| . |ConvertibleFrom|) 104184) ((|LinearElement| . |Functorial|) 104168) ((|LinearBasis| . |OrderedFinite|) T) ((|LinearBasis| . |BasicType|) T) ((|LinearBasis| . |CoercibleTo|) 104142) ((|LinearBasis| . |Finite|) T) ((|LinearBasis| . |OrderedSet|) T) ((|LinearBasis| . |OrderedType|) T) ((|LinearBasis| . |SetCategory|) T) ((|LinearBasis| . |Type|) T) ((|LinearBasis| . |CoercibleFrom|) 104102) ((|AssociatedLieAlgebra| . |NonAssociativeAlgebra|) 104086) ((|AssociatedLieAlgebra| . |AbelianGroup|) T) ((|AssociatedLieAlgebra| . |AbelianMonoid|) T) ((|AssociatedLieAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedLieAlgebra| . |BasicType|) T) ((|AssociatedLieAlgebra| . |BiModule|) 104065) ((|AssociatedLieAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedLieAlgebra| . |CoercibleTo|) 104026) ((|AssociatedLieAlgebra| . |LeftLinearSet|) 103990) ((|AssociatedLieAlgebra| . |LeftModule|) 103974) ((|AssociatedLieAlgebra| . |LinearSet|) 103958) ((|AssociatedLieAlgebra| . |Module|) 103942) ((|AssociatedLieAlgebra| . |Monad|) T) ((|AssociatedLieAlgebra| . |NonAssociativeRng|) T) ((|AssociatedLieAlgebra| . |RightLinearSet|) 103926) ((|AssociatedLieAlgebra| . |RightModule|) 103910) ((|AssociatedLieAlgebra| . |SetCategory|) T) ((|AssociatedLieAlgebra| . |Type|) T) ((|AssociatedLieAlgebra| . |FramedNonAssociativeAlgebra|) 103846) ((|AssociatedLieAlgebra| . |Eltable|) 103774) ((|AssociatedLieAlgebra| . |FiniteRankNonAssociativeAlgebra|) 103710) ((|Library| . |TableAggregate|) 103680) ((|Library| . |Aggregate|) T) ((|Library| . |BagAggregate|) 103613) ((|Library| . |BasicType|) T) ((|Library| . |CoercibleTo|) 103587) ((|Library| . |Collection|) 103520) ((|Library| . |Dictionary|) 103453) ((|Library| . |DictionaryOperations|) 103386) ((|Library| . |Eltable|) 103330) ((|Library| . |EltableAggregate|) 103300) ((|Library| . |Evalable|) 103122) ((|Library| . |FiniteAggregate|) 103055) ((|Library| . |Functorial|) 102973) ((|Library| . |HomogeneousAggregate|) 102891) ((|Library| . |IndexedAggregate|) 102861) ((|Library| . |InnerEvalable|) 102638) ((|Library| . |KeyedDictionary|) 102608) ((|Library| . |SetCategory|) T) ((|Library| . |ShallowlyMutableAggregate|) 102526) ((|Library| . |Type|) T) ((|LieExponentials| . |Group|) T) ((|LieExponentials| . |BasicType|) T) ((|LieExponentials| . |CoercibleTo|) 102418) ((|LieExponentials| . |Monoid|) T) ((|LieExponentials| . |SemiGroup|) T) ((|LieExponentials| . |SetCategory|) T) ((|LieExponentials| . |Type|) T) ((|LetAst| . |SpadSyntaxCategory|) T) ((|LetAst| . |AbstractSyntaxCategory|) T) ((|LetAst| . |BasicType|) T) ((|LetAst| . |CoercibleFrom|) 102396) ((|LetAst| . |CoercibleTo|) 102351) ((|LetAst| . |HomotopicTo|) 102329) ((|LetAst| . |SetCategory|) T) ((|LetAst| . |Type|) T) ((|LaurentPolynomial| . |DifferentialExtension|) 102313) ((|LaurentPolynomial| . |AbelianGroup|) T) ((|LaurentPolynomial| . |AbelianMonoid|) T) ((|LaurentPolynomial| . |AbelianSemiGroup|) T) ((|LaurentPolynomial| . |BasicType|) T) ((|LaurentPolynomial| . |CancellationAbelianMonoid|) T) ((|LaurentPolynomial| . |CoercibleFrom|) 102171) ((|LaurentPolynomial| . |CoercibleTo|) 102145) ((|LaurentPolynomial| . |DifferentialDomain|) 102103) ((|LaurentPolynomial| . |DifferentialRing|) 102068) ((|LaurentPolynomial| . |DifferentialSpace|) 102032) ((|LaurentPolynomial| . |DifferentialSpaceExtension|) 102016) ((|LaurentPolynomial| . |LeftLinearSet|) 101983) ((|LaurentPolynomial| . |LeftModule|) 101970) ((|LaurentPolynomial| . |Monoid|) T) ((|LaurentPolynomial| . |PartialDifferentialDomain|) 101842) ((|LaurentPolynomial| . |PartialDifferentialRing|) 101774) ((|LaurentPolynomial| . |PartialDifferentialSpace|) 101648) ((|LaurentPolynomial| . |Ring|) T) ((|LaurentPolynomial| . |Rng|) T) ((|LaurentPolynomial| . |SemiGroup|) T) ((|LaurentPolynomial| . |SemiRing|) T) ((|LaurentPolynomial| . |SetCategory|) T) ((|LaurentPolynomial| . |Type|) T) ((|LaurentPolynomial| . |IntegralDomain|) T) ((|LaurentPolynomial| . |Algebra|) 101635) ((|LaurentPolynomial| . |BiModule|) 101620) ((|LaurentPolynomial| . |CommutativeRing|) T) ((|LaurentPolynomial| . |EntireRing|) T) ((|LaurentPolynomial| . |LinearSet|) 101607) ((|LaurentPolynomial| . |Module|) 101594) ((|LaurentPolynomial| . |RightLinearSet|) 101581) ((|LaurentPolynomial| . |RightModule|) 101568) ((|LaurentPolynomial| . |ConvertibleTo|) 101539) ((|LaurentPolynomial| . |FullyRetractableTo|) 101523) ((|LaurentPolynomial| . |RetractableTo|) 101359) ((|LaurentPolynomial| . |CharacteristicZero|) 101322) ((|LaurentPolynomial| . |CharacteristicNonZero|) 101282) ((|LaurentPolynomial| . |EuclideanDomain|) 101258) ((|LaurentPolynomial| . |GcdDomain|) 101234) ((|LaurentPolynomial| . |PrincipalIdealDomain|) 101210) ((|LocalAlgebra| . |Algebra|) 101194) ((|LocalAlgebra| . |AbelianGroup|) T) ((|LocalAlgebra| . |AbelianMonoid|) T) ((|LocalAlgebra| . |AbelianSemiGroup|) T) ((|LocalAlgebra| . |BasicType|) T) ((|LocalAlgebra| . |BiModule|) 101173) ((|LocalAlgebra| . |CancellationAbelianMonoid|) T) ((|LocalAlgebra| . |CoercibleFrom|) 101137) ((|LocalAlgebra| . |CoercibleTo|) 101111) ((|LocalAlgebra| . |LeftLinearSet|) 101065) ((|LocalAlgebra| . |LeftModule|) 101039) ((|LocalAlgebra| . |LinearSet|) 101023) ((|LocalAlgebra| . |Module|) 101007) ((|LocalAlgebra| . |Monoid|) T) ((|LocalAlgebra| . |RightLinearSet|) 100991) ((|LocalAlgebra| . |RightModule|) 100975) ((|LocalAlgebra| . |Ring|) T) ((|LocalAlgebra| . |Rng|) T) ((|LocalAlgebra| . |SemiGroup|) T) ((|LocalAlgebra| . |SemiRing|) T) ((|LocalAlgebra| . |SetCategory|) T) ((|LocalAlgebra| . |Type|) T) ((|LocalAlgebra| . |OrderedRing|) 100945) ((|LocalAlgebra| . |CharacteristicZero|) 100915) ((|LocalAlgebra| . |OrderedAbelianGroup|) 100885) ((|LocalAlgebra| . |OrderedAbelianMonoid|) 100855) ((|LocalAlgebra| . |OrderedAbelianSemiGroup|) 100825) ((|LocalAlgebra| . |OrderedCancellationAbelianMonoid|) 100795) ((|LocalAlgebra| . |OrderedSet|) 100765) ((|LocalAlgebra| . |OrderedType|) 100735) ((|KleeneTrivalentLogic| . |PropositionalLogic|) T) ((|KleeneTrivalentLogic| . |BasicType|) T) ((|KleeneTrivalentLogic| . |BooleanLogic|) T) ((|KleeneTrivalentLogic| . |CoercibleTo|) 100709) ((|KleeneTrivalentLogic| . |Logic|) T) ((|KleeneTrivalentLogic| . |SetCategory|) T) ((|KleeneTrivalentLogic| . |Type|) T) ((|KleeneTrivalentLogic| . |Finite|) T) ((|Kernel| . |CachableSet|) T) ((|Kernel| . |BasicType|) T) ((|Kernel| . |CoercibleTo|) 100683) ((|Kernel| . |SetCategory|) T) ((|Kernel| . |Type|) T) ((|Kernel| . |OrderedSet|) T) ((|Kernel| . |OrderedType|) T) ((|Kernel| . |Patternable|) 100667) ((|Kernel| . |ConvertibleTo|) 100450) ((|KeyedAccessFile| . |FileCategory|) 100373) ((|KeyedAccessFile| . |BasicType|) T) ((|KeyedAccessFile| . |CoercibleTo|) 100347) ((|KeyedAccessFile| . |SetCategory|) T) ((|KeyedAccessFile| . |Type|) T) ((|KeyedAccessFile| . |TableAggregate|) 100320) ((|KeyedAccessFile| . |Aggregate|) T) ((|KeyedAccessFile| . |BagAggregate|) 100256) ((|KeyedAccessFile| . |Collection|) 100192) ((|KeyedAccessFile| . |Dictionary|) 100128) ((|KeyedAccessFile| . |DictionaryOperations|) 100064) ((|KeyedAccessFile| . |Eltable|) 100037) ((|KeyedAccessFile| . |EltableAggregate|) 100010) ((|KeyedAccessFile| . |Evalable|) 99763) ((|KeyedAccessFile| . |FiniteAggregate|) 99699) ((|KeyedAccessFile| . |Functorial|) 99622) ((|KeyedAccessFile| . |HomogeneousAggregate|) 99545) ((|KeyedAccessFile| . |IndexedAggregate|) 99518) ((|KeyedAccessFile| . |InnerEvalable|) 99220) ((|KeyedAccessFile| . |KeyedDictionary|) 99193) ((|KeyedAccessFile| . |ShallowlyMutableAggregate|) 99116) ((|JVMOpcode| . |SetCategory|) T) ((|JVMOpcode| . |BasicType|) T) ((|JVMOpcode| . |CoercibleTo|) 99049) ((|JVMOpcode| . |Type|) T) ((|JVMOpcode| . |HomotopicTo|) 99005) ((|JVMOpcode| . |CoercibleFrom|) 98961) ((|JVMMethodAccess| . |SetCategory|) T) ((|JVMMethodAccess| . |BasicType|) T) ((|JVMMethodAccess| . |CoercibleTo|) 98935) ((|JVMMethodAccess| . |Type|) T) ((|JVMMethodAccess| . |Logic|) T) ((|JVMFieldAccess| . |SetCategory|) T) ((|JVMFieldAccess| . |BasicType|) T) ((|JVMFieldAccess| . |CoercibleTo|) 98909) ((|JVMFieldAccess| . |Type|) T) ((|JVMFieldAccess| . |Logic|) T) ((|JVMConstantTag| . |SetCategory|) T) ((|JVMConstantTag| . |BasicType|) T) ((|JVMConstantTag| . |CoercibleTo|) 98866) ((|JVMConstantTag| . |Type|) T) ((|JVMClassFileAccess| . |SetCategory|) T) ((|JVMClassFileAccess| . |BasicType|) T) ((|JVMClassFileAccess| . |CoercibleTo|) 98840) ((|JVMClassFileAccess| . |Type|) T) ((|JVMClassFileAccess| . |Logic|) T) ((|JVMBytecode| . |SetCategory|) T) ((|JVMBytecode| . |BasicType|) T) ((|JVMBytecode| . |CoercibleTo|) 98797) ((|JVMBytecode| . |Type|) T) ((|JVMBytecode| . |HomotopicTo|) 98777) ((|JVMBytecode| . |CoercibleFrom|) 98757) ((|AssociatedJordanAlgebra| . |NonAssociativeAlgebra|) 98741) ((|AssociatedJordanAlgebra| . |AbelianGroup|) T) ((|AssociatedJordanAlgebra| . |AbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedJordanAlgebra| . |BasicType|) T) ((|AssociatedJordanAlgebra| . |BiModule|) 98720) ((|AssociatedJordanAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |CoercibleTo|) 98681) ((|AssociatedJordanAlgebra| . |LeftLinearSet|) 98645) ((|AssociatedJordanAlgebra| . |LeftModule|) 98629) ((|AssociatedJordanAlgebra| . |LinearSet|) 98613) ((|AssociatedJordanAlgebra| . |Module|) 98597) ((|AssociatedJordanAlgebra| . |Monad|) T) ((|AssociatedJordanAlgebra| . |NonAssociativeRng|) T) ((|AssociatedJordanAlgebra| . |RightLinearSet|) 98581) ((|AssociatedJordanAlgebra| . |RightModule|) 98565) ((|AssociatedJordanAlgebra| . |SetCategory|) T) ((|AssociatedJordanAlgebra| . |Type|) T) ((|AssociatedJordanAlgebra| . |FramedNonAssociativeAlgebra|) 98501) ((|AssociatedJordanAlgebra| . |Eltable|) 98429) ((|AssociatedJordanAlgebra| . |FiniteRankNonAssociativeAlgebra|) 98365) ((|JoinAst| . |SpadSyntaxCategory|) T) ((|JoinAst| . |AbstractSyntaxCategory|) T) ((|JoinAst| . |BasicType|) T) ((|JoinAst| . |CoercibleFrom|) 98343) ((|JoinAst| . |CoercibleTo|) 98278) ((|JoinAst| . |HomotopicTo|) 98256) ((|JoinAst| . |SetCategory|) T) ((|JoinAst| . |Type|) T) ((|InfiniteTuple| . |Functorial|) 98240) ((|InfiniteTuple| . |Type|) T) ((|InfiniteTuple| . |CoercibleTo|) 98214) ((|InternalTypeForm| . |SetCategory|) T) ((|InternalTypeForm| . |BasicType|) T) ((|InternalTypeForm| . |CoercibleTo|) 98169) ((|InternalTypeForm| . |Type|) T) ((|InternalTypeForm| . |HomotopicTo|) 98147) ((|InternalTypeForm| . |CoercibleFrom|) 98125) ((|InnerTaylorSeries| . |Ring|) T) ((|InnerTaylorSeries| . |AbelianGroup|) T) ((|InnerTaylorSeries| . |AbelianMonoid|) T) ((|InnerTaylorSeries| . |AbelianSemiGroup|) T) ((|InnerTaylorSeries| . |BasicType|) T) ((|InnerTaylorSeries| . |CancellationAbelianMonoid|) T) ((|InnerTaylorSeries| . |CoercibleFrom|) 98066) ((|InnerTaylorSeries| . |CoercibleTo|) 98040) ((|InnerTaylorSeries| . |LeftLinearSet|) 97994) ((|InnerTaylorSeries| . |LeftModule|) 97968) ((|InnerTaylorSeries| . |Monoid|) T) ((|InnerTaylorSeries| . |Rng|) T) ((|InnerTaylorSeries| . |SemiGroup|) T) ((|InnerTaylorSeries| . |SemiRing|) T) ((|InnerTaylorSeries| . |SetCategory|) T) ((|InnerTaylorSeries| . |Type|) T) ((|InnerTaylorSeries| . |BiModule|) 97909) ((|InnerTaylorSeries| . |RightLinearSet|) 97857) ((|InnerTaylorSeries| . |RightModule|) 97805) ((|InnerTaylorSeries| . |IntegralDomain|) 97772) ((|InnerTaylorSeries| . |Algebra|) 97733) ((|InnerTaylorSeries| . |CommutativeRing|) 97700) ((|InnerTaylorSeries| . |EntireRing|) 97667) ((|InnerTaylorSeries| . |LinearSet|) 97628) ((|InnerTaylorSeries| . |Module|) 97589) ((|InnerSparseUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 97561) ((|InnerSparseUnivariatePowerSeries| . |AbelianGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoidRing|) 97533) ((|InnerSparseUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |Algebra|) 97377) ((|InnerSparseUnivariatePowerSeries| . |BasicType|) T) ((|InnerSparseUnivariatePowerSeries| . |BiModule|) 97233) ((|InnerSparseUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicNonZero|) 97193) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicZero|) 97156) ((|InnerSparseUnivariatePowerSeries| . |CoercibleFrom|) 96985) ((|InnerSparseUnivariatePowerSeries| . |CoercibleTo|) 96959) ((|InnerSparseUnivariatePowerSeries| . |CommutativeRing|) 96925) ((|InnerSparseUnivariatePowerSeries| . |DifferentialDomain|) 96867) ((|InnerSparseUnivariatePowerSeries| . |DifferentialRing|) 96815) ((|InnerSparseUnivariatePowerSeries| . |DifferentialSpace|) 96763) ((|InnerSparseUnivariatePowerSeries| . |Eltable|) 96723) ((|InnerSparseUnivariatePowerSeries| . |EntireRing|) 96690) ((|InnerSparseUnivariatePowerSeries| . |Functorial|) 96674) ((|InnerSparseUnivariatePowerSeries| . |IntegralDomain|) 96641) ((|InnerSparseUnivariatePowerSeries| . |LeftLinearSet|) 96523) ((|InnerSparseUnivariatePowerSeries| . |LeftModule|) 96420) ((|InnerSparseUnivariatePowerSeries| . |LinearSet|) 96264) ((|InnerSparseUnivariatePowerSeries| . |Module|) 96108) ((|InnerSparseUnivariatePowerSeries| . |Monoid|) T) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialDomain|) 95981) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialRing|) 95856) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialSpace|) 95731) ((|InnerSparseUnivariatePowerSeries| . |PowerSeriesCategory|) 95677) ((|InnerSparseUnivariatePowerSeries| . |RightLinearSet|) 95547) ((|InnerSparseUnivariatePowerSeries| . |RightModule|) 95417) ((|InnerSparseUnivariatePowerSeries| . |Ring|) T) ((|InnerSparseUnivariatePowerSeries| . |Rng|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiRing|) T) ((|InnerSparseUnivariatePowerSeries| . |SetCategory|) T) ((|InnerSparseUnivariatePowerSeries| . |Type|) T) ((|IsAst| . |SpadSyntaxCategory|) T) ((|IsAst| . |AbstractSyntaxCategory|) T) ((|IsAst| . |BasicType|) T) ((|IsAst| . |CoercibleFrom|) 95395) ((|IsAst| . |CoercibleTo|) 95350) ((|IsAst| . |HomotopicTo|) 95328) ((|IsAst| . |SetCategory|) T) ((|IsAst| . |Type|) T) ((|InternalRepresentationForm| . |SetCategory|) T) ((|InternalRepresentationForm| . |BasicType|) T) ((|InternalRepresentationForm| . |CoercibleTo|) 95283) ((|InternalRepresentationForm| . |Type|) T) ((|InternalRepresentationForm| . |HomotopicTo|) 95261) ((|InternalRepresentationForm| . |CoercibleFrom|) 95239) ((|IntegrationResult| . |Module|) 95203) ((|IntegrationResult| . |AbelianGroup|) T) ((|IntegrationResult| . |AbelianMonoid|) T) ((|IntegrationResult| . |AbelianSemiGroup|) T) ((|IntegrationResult| . |BasicType|) T) ((|IntegrationResult| . |BiModule|) 95160) ((|IntegrationResult| . |CancellationAbelianMonoid|) T) ((|IntegrationResult| . |CoercibleTo|) 95134) ((|IntegrationResult| . |LeftLinearSet|) 95078) ((|IntegrationResult| . |LeftModule|) 95042) ((|IntegrationResult| . |LinearSet|) 95006) ((|IntegrationResult| . |RightLinearSet|) 94970) ((|IntegrationResult| . |RightModule|) 94934) ((|IntegrationResult| . |SetCategory|) T) ((|IntegrationResult| . |Type|) T) ((|IntegrationResult| . |RetractableTo|) 94918) ((|IntegrationResult| . |CoercibleFrom|) 94902) ((|InnerPrimeField| . |FiniteFieldCategory|) T) ((|InnerPrimeField| . |AbelianGroup|) T) ((|InnerPrimeField| . |AbelianMonoid|) T) ((|InnerPrimeField| . |AbelianSemiGroup|) T) ((|InnerPrimeField| . |Algebra|) 94856) ((|InnerPrimeField| . |BasicType|) T) ((|InnerPrimeField| . |BiModule|) 94801) ((|InnerPrimeField| . |CancellationAbelianMonoid|) T) ((|InnerPrimeField| . |CharacteristicNonZero|) T) ((|InnerPrimeField| . |CoercibleFrom|) 94740) ((|InnerPrimeField| . |CoercibleTo|) 94714) ((|InnerPrimeField| . |CommutativeRing|) T) ((|InnerPrimeField| . |DifferentialDomain|) 94701) ((|InnerPrimeField| . |DifferentialRing|) T) ((|InnerPrimeField| . |DifferentialSpace|) T) ((|InnerPrimeField| . |DivisionRing|) T) ((|InnerPrimeField| . |EntireRing|) T) ((|InnerPrimeField| . |EuclideanDomain|) T) ((|InnerPrimeField| . |Field|) T) ((|InnerPrimeField| . |FieldOfPrimeCharacteristic|) T) ((|InnerPrimeField| . |Finite|) T) ((|InnerPrimeField| . |GcdDomain|) T) ((|InnerPrimeField| . |IntegralDomain|) T) ((|InnerPrimeField| . |LeftLinearSet|) 94640) ((|InnerPrimeField| . |LeftModule|) 94594) ((|InnerPrimeField| . |LinearSet|) 94548) ((|InnerPrimeField| . |Module|) 94502) ((|InnerPrimeField| . |Monoid|) T) ((|InnerPrimeField| . |PrincipalIdealDomain|) T) ((|InnerPrimeField| . |RightLinearSet|) 94456) ((|InnerPrimeField| . |RightModule|) 94410) ((|InnerPrimeField| . |Ring|) T) ((|InnerPrimeField| . |Rng|) T) ((|InnerPrimeField| . |SemiGroup|) T) ((|InnerPrimeField| . |SemiRing|) T) ((|InnerPrimeField| . |SetCategory|) T) ((|InnerPrimeField| . |StepThrough|) T) ((|InnerPrimeField| . |Type|) T) ((|InnerPrimeField| . |UniqueFactorizationDomain|) T) ((|InnerPrimeField| . |FiniteAlgebraicExtensionField|) 94397) ((|InnerPrimeField| . |CharacteristicZero|) 94363) ((|InnerPrimeField| . |ExtensionField|) 94350) ((|InnerPrimeField| . |RetractableTo|) 94337) ((|InnerPrimeField| . |VectorSpace|) 94324) ((|InnerPrimeField| . |ConvertibleTo|) 94301) ((|InnerPAdicInteger| . |PAdicIntegerCategory|) 94285) ((|InnerPAdicInteger| . |AbelianGroup|) T) ((|InnerPAdicInteger| . |AbelianMonoid|) T) ((|InnerPAdicInteger| . |AbelianSemiGroup|) T) ((|InnerPAdicInteger| . |Algebra|) 94272) ((|InnerPAdicInteger| . |BasicType|) T) ((|InnerPAdicInteger| . |BiModule|) 94257) ((|InnerPAdicInteger| . |CancellationAbelianMonoid|) T) ((|InnerPAdicInteger| . |CharacteristicZero|) T) ((|InnerPAdicInteger| . |CoercibleFrom|) 94224) ((|InnerPAdicInteger| . |CoercibleTo|) 94198) ((|InnerPAdicInteger| . |CommutativeRing|) T) ((|InnerPAdicInteger| . |EntireRing|) T) ((|InnerPAdicInteger| . |EuclideanDomain|) T) ((|InnerPAdicInteger| . |GcdDomain|) T) ((|InnerPAdicInteger| . |IntegralDomain|) T) ((|InnerPAdicInteger| . |LeftLinearSet|) 94165) ((|InnerPAdicInteger| . |LeftModule|) 94152) ((|InnerPAdicInteger| . |LinearSet|) 94139) ((|InnerPAdicInteger| . |Module|) 94126) ((|InnerPAdicInteger| . |Monoid|) T) ((|InnerPAdicInteger| . |PrincipalIdealDomain|) T) ((|InnerPAdicInteger| . |RightLinearSet|) 94113) ((|InnerPAdicInteger| . |RightModule|) 94100) ((|InnerPAdicInteger| . |Ring|) T) ((|InnerPAdicInteger| . |Rng|) T) ((|InnerPAdicInteger| . |SemiGroup|) T) ((|InnerPAdicInteger| . |SemiRing|) T) ((|InnerPAdicInteger| . |SetCategory|) T) ((|InnerPAdicInteger| . |Type|) T) ((|IP4Address| . |SetCategory|) T) ((|IP4Address| . |BasicType|) T) ((|IP4Address| . |CoercibleTo|) 94074) ((|IP4Address| . |Type|) T) ((|IOMode| . |SetCategory|) T) ((|IOMode| . |BasicType|) T) ((|IOMode| . |CoercibleTo|) 94048) ((|IOMode| . |Type|) T) ((|InputOutputBinaryFile| . |InputOutputByteConduit|) T) ((|InputOutputBinaryFile| . |Conduit|) T) ((|InputOutputBinaryFile| . |InputByteConduit|) T) ((|InputOutputBinaryFile| . |OutputByteConduit|) T) ((|InputOutputBinaryFile| . |CoercibleTo|) 94022) ((|Interval| . |IntervalCategory|) 94006) ((|Interval| . |AbelianGroup|) T) ((|Interval| . |AbelianMonoid|) T) ((|Interval| . |AbelianSemiGroup|) T) ((|Interval| . |Algebra|) 93993) ((|Interval| . |ArcHyperbolicFunctionCategory|) T) ((|Interval| . |ArcTrigonometricFunctionCategory|) T) ((|Interval| . |BasicType|) T) ((|Interval| . |BiModule|) 93978) ((|Interval| . |CancellationAbelianMonoid|) T) ((|Interval| . |CoercibleFrom|) 93945) ((|Interval| . |CoercibleTo|) 93919) ((|Interval| . |CommutativeRing|) T) ((|Interval| . |ElementaryFunctionCategory|) T) ((|Interval| . |EntireRing|) T) ((|Interval| . |GcdDomain|) T) ((|Interval| . |HyperbolicFunctionCategory|) T) ((|Interval| . |IntegralDomain|) T) ((|Interval| . |LeftLinearSet|) 93886) ((|Interval| . |LeftModule|) 93873) ((|Interval| . |LinearSet|) 93860) ((|Interval| . |Module|) 93847) ((|Interval| . |Monoid|) T) ((|Interval| . |OrderedSet|) T) ((|Interval| . |OrderedType|) T) ((|Interval| . |RadicalCategory|) T) ((|Interval| . |RetractableTo|) 93824) ((|Interval| . |RightLinearSet|) 93811) ((|Interval| . |RightModule|) 93798) ((|Interval| . |Ring|) T) ((|Interval| . |Rng|) T) ((|Interval| . |SemiGroup|) T) ((|Interval| . |SemiRing|) T) ((|Interval| . |SetCategory|) T) ((|Interval| . |TranscendentalFunctionCategory|) T) ((|Interval| . |TrigonometricFunctionCategory|) T) ((|Interval| . |Type|) T) ((|InnerTable| . |TableAggregate|) 93777) ((|InnerTable| . |Aggregate|) T) ((|InnerTable| . |BagAggregate|) 93719) ((|InnerTable| . |BasicType|) T) ((|InnerTable| . |CoercibleTo|) 93693) ((|InnerTable| . |Collection|) 93635) ((|InnerTable| . |Dictionary|) 93577) ((|InnerTable| . |DictionaryOperations|) 93519) ((|InnerTable| . |Eltable|) 93498) ((|InnerTable| . |EltableAggregate|) 93477) ((|InnerTable| . |Evalable|) 93237) ((|InnerTable| . |FiniteAggregate|) 93179) ((|InnerTable| . |Functorial|) 93108) ((|InnerTable| . |HomogeneousAggregate|) 93037) ((|InnerTable| . |IndexedAggregate|) 93016) ((|InnerTable| . |InnerEvalable|) 92764) ((|InnerTable| . |KeyedDictionary|) 92743) ((|InnerTable| . |SetCategory|) T) ((|InnerTable| . |ShallowlyMutableAggregate|) 92672) ((|InnerTable| . |Type|) T) ((|Int8| . |OrderedFinite|) T) ((|Int8| . |BasicType|) T) ((|Int8| . |CoercibleTo|) 92646) ((|Int8| . |Finite|) T) ((|Int8| . |OrderedSet|) T) ((|Int8| . |OrderedType|) T) ((|Int8| . |SetCategory|) T) ((|Int8| . |Type|) T) ((|Int64| . |OrderedFinite|) T) ((|Int64| . |BasicType|) T) ((|Int64| . |CoercibleTo|) 92620) ((|Int64| . |Finite|) T) ((|Int64| . |OrderedSet|) T) ((|Int64| . |OrderedType|) T) ((|Int64| . |SetCategory|) T) ((|Int64| . |Type|) T) ((|Int32| . |OrderedFinite|) T) ((|Int32| . |BasicType|) T) ((|Int32| . |CoercibleTo|) 92594) ((|Int32| . |Finite|) T) ((|Int32| . |OrderedSet|) T) ((|Int32| . |OrderedType|) T) ((|Int32| . |SetCategory|) T) ((|Int32| . |Type|) T) ((|Int16| . |OrderedFinite|) T) ((|Int16| . |BasicType|) T) ((|Int16| . |CoercibleTo|) 92568) ((|Int16| . |Finite|) T) ((|Int16| . |OrderedSet|) T) ((|Int16| . |OrderedType|) T) ((|Int16| . |SetCategory|) T) ((|Int16| . |Type|) T) ((|Integer| . |IntegerNumberSystem|) T) ((|Integer| . |AbelianGroup|) T) ((|Integer| . |AbelianMonoid|) T) ((|Integer| . |AbelianSemiGroup|) T) ((|Integer| . |Algebra|) 92555) ((|Integer| . |BasicType|) T) ((|Integer| . |BiModule|) 92540) ((|Integer| . |CancellationAbelianMonoid|) T) ((|Integer| . |CharacteristicZero|) T) ((|Integer| . |CoercibleFrom|) 92507) ((|Integer| . |CoercibleTo|) 92481) ((|Integer| . |CombinatorialFunctionCategory|) T) ((|Integer| . |CommutativeRing|) T) ((|Integer| . |ConvertibleTo|) 92367) ((|Integer| . |DifferentialDomain|) 92354) ((|Integer| . |DifferentialRing|) T) ((|Integer| . |DifferentialSpace|) T) ((|Integer| . |EntireRing|) T) ((|Integer| . |EuclideanDomain|) T) ((|Integer| . |GcdDomain|) T) ((|Integer| . |IntegralDomain|) T) ((|Integer| . |LeftLinearSet|) 92321) ((|Integer| . |LeftModule|) 92288) ((|Integer| . |LinearSet|) 92275) ((|Integer| . |LinearlyExplicitRingOver|) 92252) ((|Integer| . |Module|) 92239) ((|Integer| . |Monoid|) T) ((|Integer| . |OrderedAbelianGroup|) T) ((|Integer| . |OrderedAbelianMonoid|) T) ((|Integer| . |OrderedAbelianSemiGroup|) T) ((|Integer| . |OrderedCancellationAbelianMonoid|) T) ((|Integer| . |OrderedIntegralDomain|) T) ((|Integer| . |OrderedRing|) T) ((|Integer| . |OrderedSet|) T) ((|Integer| . |OrderedType|) T) ((|Integer| . |PatternMatchable|) 92216) ((|Integer| . |PrincipalIdealDomain|) T) ((|Integer| . |RealConstant|) T) ((|Integer| . |RetractableTo|) 92193) ((|Integer| . |RightLinearSet|) 92180) ((|Integer| . |RightModule|) 92167) ((|Integer| . |Ring|) T) ((|Integer| . |Rng|) T) ((|Integer| . |SemiGroup|) T) ((|Integer| . |SemiRing|) T) ((|Integer| . |SetCategory|) T) ((|Integer| . |StepThrough|) T) ((|Integer| . |Type|) T) ((|Integer| . |UniqueFactorizationDomain|) T) ((|InputForm| . |SExpressionCategory|) 92091) ((|InputForm| . |BasicType|) T) ((|InputForm| . |CoercibleTo|) 92065) ((|InputForm| . |ConvertibleFrom|) 91938) ((|InputForm| . |Eltable|) 91887) ((|InputForm| . |SetCategory|) T) ((|InputForm| . |Type|) T) ((|InputForm| . |ConvertibleTo|) 91860) ((|InetClientStreamSocket| . |NetworkClientSocket|) 91834) ((|InetClientStreamSocket| . |Conduit|) T) ((|InetClientStreamSocket| . |InputByteConduit|) T) ((|InetClientStreamSocket| . |InputOutputByteConduit|) T) ((|InetClientStreamSocket| . |OutputByteConduit|) T) ((|InetClientStreamSocket| . |CoercibleTo|) 91808) ((|IndexedExponents| . |OrderedAbelianMonoidSup|) T) ((|IndexedExponents| . |AbelianMonoid|) T) ((|IndexedExponents| . |AbelianSemiGroup|) T) ((|IndexedExponents| . |BasicType|) T) ((|IndexedExponents| . |CancellationAbelianMonoid|) T) ((|IndexedExponents| . |CoercibleTo|) 91782) ((|IndexedExponents| . |OrderedAbelianMonoid|) T) ((|IndexedExponents| . |OrderedAbelianSemiGroup|) T) ((|IndexedExponents| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedExponents| . |OrderedSet|) T) ((|IndexedExponents| . |OrderedType|) T) ((|IndexedExponents| . |SetCategory|) T) ((|IndexedExponents| . |Type|) T) ((|IndexedExponents| . |IndexedDirectProductCategory|) 91743) ((|IndexedExponents| . |ConvertibleFrom|) 91672) ((|IndexedExponents| . |Functorial|) 91638) ((|InputBinaryFile| . |InputByteConduit|) T) ((|InputBinaryFile| . |Conduit|) T) ((|InputBinaryFile| . |CoercibleTo|) 91612) ((|InAst| . |SpadSyntaxCategory|) T) ((|InAst| . |AbstractSyntaxCategory|) T) ((|InAst| . |BasicType|) T) ((|InAst| . |CoercibleFrom|) 91590) ((|InAst| . |CoercibleTo|) 91545) ((|InAst| . |HomotopicTo|) 91523) ((|InAst| . |SetCategory|) T) ((|InAst| . |Type|) T) ((|ImportAst| . |SpadSyntaxCategory|) T) ((|ImportAst| . |AbstractSyntaxCategory|) T) ((|ImportAst| . |BasicType|) T) ((|ImportAst| . |CoercibleFrom|) 91501) ((|ImportAst| . |CoercibleTo|) 91456) ((|ImportAst| . |HomotopicTo|) 91434) ((|ImportAst| . |SetCategory|) T) ((|ImportAst| . |Type|) T) ((|InnerFiniteField| . |FiniteAlgebraicExtensionField|) 91398) ((|InnerFiniteField| . |AbelianGroup|) T) ((|InnerFiniteField| . |AbelianMonoid|) T) ((|InnerFiniteField| . |AbelianSemiGroup|) T) ((|InnerFiniteField| . |Algebra|) 91352) ((|InnerFiniteField| . |BasicType|) T) ((|InnerFiniteField| . |BiModule|) 91257) ((|InnerFiniteField| . |CancellationAbelianMonoid|) T) ((|InnerFiniteField| . |CharacteristicNonZero|) T) ((|InnerFiniteField| . |CharacteristicZero|) 91223) ((|InnerFiniteField| . |CoercibleFrom|) 91129) ((|InnerFiniteField| . |CoercibleTo|) 91103) ((|InnerFiniteField| . |CommutativeRing|) T) ((|InnerFiniteField| . |DifferentialDomain|) 91090) ((|InnerFiniteField| . |DifferentialRing|) T) ((|InnerFiniteField| . |DifferentialSpace|) T) ((|InnerFiniteField| . |DivisionRing|) T) ((|InnerFiniteField| . |EntireRing|) T) ((|InnerFiniteField| . |EuclideanDomain|) T) ((|InnerFiniteField| . |ExtensionField|) 91054) ((|InnerFiniteField| . |Field|) T) ((|InnerFiniteField| . |FieldOfPrimeCharacteristic|) T) ((|InnerFiniteField| . |Finite|) T) ((|InnerFiniteField| . |FiniteFieldCategory|) T) ((|InnerFiniteField| . |GcdDomain|) T) ((|InnerFiniteField| . |IntegralDomain|) T) ((|InnerFiniteField| . |LeftLinearSet|) 90960) ((|InnerFiniteField| . |LeftModule|) 90881) ((|InnerFiniteField| . |LinearSet|) 90802) ((|InnerFiniteField| . |Module|) 90723) ((|InnerFiniteField| . |Monoid|) T) ((|InnerFiniteField| . |PrincipalIdealDomain|) T) ((|InnerFiniteField| . |RetractableTo|) 90687) ((|InnerFiniteField| . |RightLinearSet|) 90608) ((|InnerFiniteField| . |RightModule|) 90529) ((|InnerFiniteField| . |Ring|) T) ((|InnerFiniteField| . |Rng|) T) ((|InnerFiniteField| . |SemiGroup|) T) ((|InnerFiniteField| . |SemiRing|) T) ((|InnerFiniteField| . |SetCategory|) T) ((|InnerFiniteField| . |StepThrough|) T) ((|InnerFiniteField| . |Type|) T) ((|InnerFiniteField| . |UniqueFactorizationDomain|) T) ((|InnerFiniteField| . |VectorSpace|) 90493) ((|IfAst| . |SpadSyntaxCategory|) T) ((|IfAst| . |AbstractSyntaxCategory|) T) ((|IfAst| . |BasicType|) T) ((|IfAst| . |CoercibleFrom|) 90471) ((|IfAst| . |CoercibleTo|) 90426) ((|IfAst| . |HomotopicTo|) 90404) ((|IfAst| . |SetCategory|) T) ((|IfAst| . |Type|) T) ((|IndexedFlexibleArray| . |OneDimensionalArrayAggregate|) 90388) ((|IndexedFlexibleArray| . |Aggregate|) T) ((|IndexedFlexibleArray| . |BasicType|) 90360) ((|IndexedFlexibleArray| . |CoercibleTo|) 90296) ((|IndexedFlexibleArray| . |Collection|) 90280) ((|IndexedFlexibleArray| . |ConvertibleTo|) 90216) ((|IndexedFlexibleArray| . |Eltable|) 90150) ((|IndexedFlexibleArray| . |EltableAggregate|) 90122) ((|IndexedFlexibleArray| . |Evalable|) 90046) ((|IndexedFlexibleArray| . |FiniteAggregate|) 90030) ((|IndexedFlexibleArray| . |FiniteLinearAggregate|) 90014) ((|IndexedFlexibleArray| . |Functorial|) 89998) ((|IndexedFlexibleArray| . |HomogeneousAggregate|) 89982) ((|IndexedFlexibleArray| . |IndexedAggregate|) 89954) ((|IndexedFlexibleArray| . |InnerEvalable|) 89873) ((|IndexedFlexibleArray| . |LinearAggregate|) 89857) ((|IndexedFlexibleArray| . |OrderedSet|) 89828) ((|IndexedFlexibleArray| . |OrderedType|) 89799) ((|IndexedFlexibleArray| . |SetCategory|) 89769) ((|IndexedFlexibleArray| . |ShallowlyMutableAggregate|) 89753) ((|IndexedFlexibleArray| . |Type|) T) ((|IndexedFlexibleArray| . |ExtensibleLinearAggregate|) 89737) ((|InnerFreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 89716) ((|InnerFreeAbelianMonoid| . |AbelianMonoid|) T) ((|InnerFreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|InnerFreeAbelianMonoid| . |BasicType|) T) ((|InnerFreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|InnerFreeAbelianMonoid| . |CoercibleFrom|) 89700) ((|InnerFreeAbelianMonoid| . |CoercibleTo|) 89674) ((|InnerFreeAbelianMonoid| . |RetractableTo|) 89658) ((|InnerFreeAbelianMonoid| . |SetCategory|) T) ((|InnerFreeAbelianMonoid| . |Type|) T) ((|IndexedProductTerm| . |BasicType|) T) ((|IndexedProductTerm| . |Type|) T) ((|IndexedProductTerm| . |CoercibleTo|) 89628) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoidSup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CoercibleTo|) 89602) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |IndexedDirectProductCategory|) 89581) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |ConvertibleFrom|) 89528) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Functorial|) 89512) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |CoercibleTo|) 89486) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |IndexedDirectProductCategory|) 89465) ((|IndexedDirectProductOrderedAbelianMonoid| . |ConvertibleFrom|) 89412) ((|IndexedDirectProductOrderedAbelianMonoid| . |Functorial|) 89396) ((|IndexedDirectProductObject| . |IndexedDirectProductCategory|) 89375) ((|IndexedDirectProductObject| . |BasicType|) T) ((|IndexedDirectProductObject| . |CoercibleTo|) 89291) ((|IndexedDirectProductObject| . |ConvertibleFrom|) 89238) ((|IndexedDirectProductObject| . |Functorial|) 89222) ((|IndexedDirectProductObject| . |SetCategory|) 89157) ((|IndexedDirectProductObject| . |Type|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductAbelianMonoid| . |CoercibleTo|) 89131) ((|IndexedDirectProductAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductAbelianMonoid| . |Type|) T) ((|IndexedDirectProductAbelianMonoid| . |IndexedDirectProductCategory|) 89110) ((|IndexedDirectProductAbelianMonoid| . |ConvertibleFrom|) 89057) ((|IndexedDirectProductAbelianMonoid| . |Functorial|) 89041) ((|IndexedDirectProductAbelianGroup| . |AbelianGroup|) T) ((|IndexedDirectProductAbelianGroup| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianGroup| . |BasicType|) T) ((|IndexedDirectProductAbelianGroup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |CoercibleTo|) 89015) ((|IndexedDirectProductAbelianGroup| . |LeftLinearSet|) 88992) ((|IndexedDirectProductAbelianGroup| . |SetCategory|) T) ((|IndexedDirectProductAbelianGroup| . |Type|) T) ((|IndexedDirectProductAbelianGroup| . |IndexedDirectProductCategory|) 88971) ((|IndexedDirectProductAbelianGroup| . |ConvertibleFrom|) 88918) ((|IndexedDirectProductAbelianGroup| . |Functorial|) 88902) ((|Identifier| . |SetCategory|) T) ((|Identifier| . |BasicType|) T) ((|Identifier| . |CoercibleTo|) 88876) ((|Identifier| . |Type|) T) ((|PolynomialIdeals| . |SetCategory|) T) ((|PolynomialIdeals| . |BasicType|) T) ((|PolynomialIdeals| . |CoercibleTo|) 88850) ((|PolynomialIdeals| . |Type|) T) ((|IndexCard| . |OrderedSet|) T) ((|IndexCard| . |BasicType|) T) ((|IndexCard| . |CoercibleTo|) 88824) ((|IndexCard| . |OrderedType|) T) ((|IndexCard| . |SetCategory|) T) ((|IndexCard| . |Type|) T) ((|IndexCard| . |CoercibleFrom|) 88802) ((|IndexedBits| . |BitAggregate|) T) ((|IndexedBits| . |Aggregate|) T) ((|IndexedBits| . |BasicType|) T) ((|IndexedBits| . |BooleanLogic|) T) ((|IndexedBits| . |CoercibleTo|) 88776) ((|IndexedBits| . |Collection|) 88753) ((|IndexedBits| . |ConvertibleTo|) 88728) ((|IndexedBits| . |Eltable|) 88655) ((|IndexedBits| . |EltableAggregate|) 88620) ((|IndexedBits| . |FiniteAggregate|) 88597) ((|IndexedBits| . |FiniteLinearAggregate|) 88574) ((|IndexedBits| . |Functorial|) 88551) ((|IndexedBits| . |HomogeneousAggregate|) 88528) ((|IndexedBits| . |IndexedAggregate|) 88493) ((|IndexedBits| . |LinearAggregate|) 88470) ((|IndexedBits| . |Logic|) T) ((|IndexedBits| . |OneDimensionalArrayAggregate|) 88447) ((|IndexedBits| . |OrderedSet|) T) ((|IndexedBits| . |OrderedType|) T) ((|IndexedBits| . |SetCategory|) T) ((|IndexedBits| . |ShallowlyMutableAggregate|) 88424) ((|IndexedBits| . |Type|) T) ((|InnerTwoDimensionalArray| . |TwoDimensionalArrayCategory|) 88398) ((|InnerTwoDimensionalArray| . |Aggregate|) T) ((|InnerTwoDimensionalArray| . |BasicType|) 88370) ((|InnerTwoDimensionalArray| . |CoercibleTo|) 88306) ((|InnerTwoDimensionalArray| . |Evalable|) 88230) ((|InnerTwoDimensionalArray| . |FiniteAggregate|) 88214) ((|InnerTwoDimensionalArray| . |Functorial|) 88198) ((|InnerTwoDimensionalArray| . |HomogeneousAggregate|) 88182) ((|InnerTwoDimensionalArray| . |InnerEvalable|) 88101) ((|InnerTwoDimensionalArray| . |SetCategory|) 88071) ((|InnerTwoDimensionalArray| . |ShallowlyMutableAggregate|) 88055) ((|InnerTwoDimensionalArray| . |Type|) T) ((|IndexedOneDimensionalArray| . |OneDimensionalArrayAggregate|) 88039) ((|IndexedOneDimensionalArray| . |Aggregate|) T) ((|IndexedOneDimensionalArray| . |BasicType|) 88011) ((|IndexedOneDimensionalArray| . |CoercibleTo|) 87947) ((|IndexedOneDimensionalArray| . |Collection|) 87931) ((|IndexedOneDimensionalArray| . |ConvertibleTo|) 87867) ((|IndexedOneDimensionalArray| . |Eltable|) 87801) ((|IndexedOneDimensionalArray| . |EltableAggregate|) 87773) ((|IndexedOneDimensionalArray| . |Evalable|) 87697) ((|IndexedOneDimensionalArray| . |FiniteAggregate|) 87681) ((|IndexedOneDimensionalArray| . |FiniteLinearAggregate|) 87665) ((|IndexedOneDimensionalArray| . |Functorial|) 87649) ((|IndexedOneDimensionalArray| . |HomogeneousAggregate|) 87633) ((|IndexedOneDimensionalArray| . |IndexedAggregate|) 87605) ((|IndexedOneDimensionalArray| . |InnerEvalable|) 87524) ((|IndexedOneDimensionalArray| . |LinearAggregate|) 87508) ((|IndexedOneDimensionalArray| . |OrderedSet|) 87479) ((|IndexedOneDimensionalArray| . |OrderedType|) 87450) ((|IndexedOneDimensionalArray| . |SetCategory|) 87420) ((|IndexedOneDimensionalArray| . |ShallowlyMutableAggregate|) 87404) ((|IndexedOneDimensionalArray| . |Type|) T) ((|InnerAlgebraicNumber| . |ExpressionSpace|) T) ((|InnerAlgebraicNumber| . |BasicType|) T) ((|InnerAlgebraicNumber| . |CoercibleFrom|) 87256) ((|InnerAlgebraicNumber| . |CoercibleTo|) 87230) ((|InnerAlgebraicNumber| . |Evalable|) 87217) ((|InnerAlgebraicNumber| . |InnerEvalable|) 87179) ((|InnerAlgebraicNumber| . |RetractableTo|) 87107) ((|InnerAlgebraicNumber| . |SetCategory|) T) ((|InnerAlgebraicNumber| . |Type|) T) ((|InnerAlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|InnerAlgebraicNumber| . |AbelianGroup|) T) ((|InnerAlgebraicNumber| . |AbelianMonoid|) T) ((|InnerAlgebraicNumber| . |AbelianSemiGroup|) T) ((|InnerAlgebraicNumber| . |Algebra|) 87061) ((|InnerAlgebraicNumber| . |BiModule|) 87006) ((|InnerAlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|InnerAlgebraicNumber| . |CommutativeRing|) T) ((|InnerAlgebraicNumber| . |DivisionRing|) T) ((|InnerAlgebraicNumber| . |EntireRing|) T) ((|InnerAlgebraicNumber| . |EuclideanDomain|) T) ((|InnerAlgebraicNumber| . |Field|) T) ((|InnerAlgebraicNumber| . |GcdDomain|) T) ((|InnerAlgebraicNumber| . |IntegralDomain|) T) ((|InnerAlgebraicNumber| . |LeftLinearSet|) 86945) ((|InnerAlgebraicNumber| . |LeftModule|) 86879) ((|InnerAlgebraicNumber| . |LinearSet|) 86833) ((|InnerAlgebraicNumber| . |Module|) 86787) ((|InnerAlgebraicNumber| . |Monoid|) T) ((|InnerAlgebraicNumber| . |PrincipalIdealDomain|) T) ((|InnerAlgebraicNumber| . |RadicalCategory|) T) ((|InnerAlgebraicNumber| . |RightLinearSet|) 86741) ((|InnerAlgebraicNumber| . |RightModule|) 86695) ((|InnerAlgebraicNumber| . |Ring|) T) ((|InnerAlgebraicNumber| . |Rng|) T) ((|InnerAlgebraicNumber| . |SemiGroup|) T) ((|InnerAlgebraicNumber| . |SemiRing|) T) ((|InnerAlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|InnerAlgebraicNumber| . |LinearlyExplicitRingOver|) 86644) ((|InnerAlgebraicNumber| . |RealConstant|) T) ((|InnerAlgebraicNumber| . |ConvertibleTo|) 86593) ((|InnerAlgebraicNumber| . |CharacteristicZero|) T) ((|InnerAlgebraicNumber| . |DifferentialRing|) T) ((|InnerAlgebraicNumber| . |DifferentialDomain|) 86580) ((|InnerAlgebraicNumber| . |DifferentialSpace|) T) ((|Hostname| . |SetCategory|) T) ((|Hostname| . |BasicType|) T) ((|Hostname| . |CoercibleTo|) 86535) ((|Hostname| . |Type|) T) ((|HexadecimalExpansion| . |QuotientFieldCategory|) 86512) ((|HexadecimalExpansion| . |AbelianGroup|) T) ((|HexadecimalExpansion| . |AbelianMonoid|) T) ((|HexadecimalExpansion| . |AbelianSemiGroup|) T) ((|HexadecimalExpansion| . |Algebra|) 86446) ((|HexadecimalExpansion| . |BasicType|) T) ((|HexadecimalExpansion| . |BiModule|) 86364) ((|HexadecimalExpansion| . |CancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |CharacteristicNonZero|) NIL) ((|HexadecimalExpansion| . |CharacteristicZero|) T) ((|HexadecimalExpansion| . |CoercibleFrom|) 86303) ((|HexadecimalExpansion| . |CoercibleTo|) 86214) ((|HexadecimalExpansion| . |CommutativeRing|) T) ((|HexadecimalExpansion| . |ConvertibleTo|) 86115) ((|HexadecimalExpansion| . |DifferentialDomain|) 86102) ((|HexadecimalExpansion| . |DifferentialExtension|) 86079) ((|HexadecimalExpansion| . |DifferentialRing|) T) ((|HexadecimalExpansion| . |DifferentialSpace|) T) ((|HexadecimalExpansion| . |DifferentialSpaceExtension|) 86056) ((|HexadecimalExpansion| . |DivisionRing|) T) ((|HexadecimalExpansion| . |Eltable|) NIL) ((|HexadecimalExpansion| . |EntireRing|) T) ((|HexadecimalExpansion| . |EuclideanDomain|) T) ((|HexadecimalExpansion| . |Evalable|) NIL) ((|HexadecimalExpansion| . |Field|) T) ((|HexadecimalExpansion| . |FullyEvalableOver|) 86033) ((|HexadecimalExpansion| . |FullyLinearlyExplicitRingOver|) 86010) ((|HexadecimalExpansion| . |FullyPatternMatchable|) 85987) ((|HexadecimalExpansion| . |Functorial|) 85964) ((|HexadecimalExpansion| . |GcdDomain|) T) ((|HexadecimalExpansion| . |InnerEvalable|) NIL) ((|HexadecimalExpansion| . |IntegralDomain|) T) ((|HexadecimalExpansion| . |LeftLinearSet|) 85903) ((|HexadecimalExpansion| . |LeftModule|) 85842) ((|HexadecimalExpansion| . |LinearSet|) 85776) ((|HexadecimalExpansion| . |LinearlyExplicitRingOver|) 85753) ((|HexadecimalExpansion| . |Module|) 85687) ((|HexadecimalExpansion| . |Monoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianGroup|) T) ((|HexadecimalExpansion| . |OrderedAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|HexadecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedIntegralDomain|) T) ((|HexadecimalExpansion| . |OrderedRing|) T) ((|HexadecimalExpansion| . |OrderedSet|) T) ((|HexadecimalExpansion| . |OrderedType|) T) ((|HexadecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialRing|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|HexadecimalExpansion| . |PatternMatchable|) 85664) ((|HexadecimalExpansion| . |Patternable|) 85641) ((|HexadecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|HexadecimalExpansion| . |PrincipalIdealDomain|) T) ((|HexadecimalExpansion| . |RealConstant|) T) ((|HexadecimalExpansion| . |RetractableTo|) 85590) ((|HexadecimalExpansion| . |RightLinearSet|) 85524) ((|HexadecimalExpansion| . |RightModule|) 85458) ((|HexadecimalExpansion| . |Ring|) T) ((|HexadecimalExpansion| . |Rng|) T) ((|HexadecimalExpansion| . |SemiGroup|) T) ((|HexadecimalExpansion| . |SemiRing|) T) ((|HexadecimalExpansion| . |SetCategory|) T) ((|HexadecimalExpansion| . |StepThrough|) T) ((|HexadecimalExpansion| . |Type|) T) ((|HexadecimalExpansion| . |UniqueFactorizationDomain|) T) ((|HyperellipticFiniteDivisor| . |FiniteDivisorCategory|) 85427) ((|HyperellipticFiniteDivisor| . |AbelianGroup|) T) ((|HyperellipticFiniteDivisor| . |AbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |AbelianSemiGroup|) T) ((|HyperellipticFiniteDivisor| . |BasicType|) T) ((|HyperellipticFiniteDivisor| . |CancellationAbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |CoercibleTo|) 85401) ((|HyperellipticFiniteDivisor| . |LeftLinearSet|) 85378) ((|HyperellipticFiniteDivisor| . |SetCategory|) T) ((|HyperellipticFiniteDivisor| . |Type|) T) ((|Heap| . |PriorityQueueAggregate|) 85362) ((|Heap| . |Aggregate|) T) ((|Heap| . |BagAggregate|) 85346) ((|Heap| . |BasicType|) 85318) ((|Heap| . |CoercibleTo|) 85254) ((|Heap| . |Evalable|) 85178) ((|Heap| . |FiniteAggregate|) 85162) ((|Heap| . |Functorial|) 85146) ((|Heap| . |HomogeneousAggregate|) 85130) ((|Heap| . |InnerEvalable|) 85049) ((|Heap| . |SetCategory|) 85019) ((|Heap| . |ShallowlyMutableAggregate|) 85003) ((|Heap| . |Type|) T) ((|HeadAst| . |SpadSyntaxCategory|) T) ((|HeadAst| . |AbstractSyntaxCategory|) T) ((|HeadAst| . |BasicType|) T) ((|HeadAst| . |CoercibleFrom|) 84981) ((|HeadAst| . |CoercibleTo|) 84936) ((|HeadAst| . |HomotopicTo|) 84914) ((|HeadAst| . |SetCategory|) T) ((|HeadAst| . |Type|) T) ((|HomogeneousDirectProduct| . |DirectProductCategory|) 84893) ((|HomogeneousDirectProduct| . |AbelianGroup|) 84862) ((|HomogeneousDirectProduct| . |AbelianMonoid|) 84830) ((|HomogeneousDirectProduct| . |AbelianSemiGroup|) 84795) ((|HomogeneousDirectProduct| . |Aggregate|) T) ((|HomogeneousDirectProduct| . |BasicType|) 84538) ((|HomogeneousDirectProduct| . |BiModule|) 84501) ((|HomogeneousDirectProduct| . |CancellationAbelianMonoid|) 84457) ((|HomogeneousDirectProduct| . |CoercibleFrom|) 84186) ((|HomogeneousDirectProduct| . |CoercibleTo|) 83869) ((|HomogeneousDirectProduct| . |DifferentialDomain|) 83732) ((|HomogeneousDirectProduct| . |DifferentialExtension|) 83700) ((|HomogeneousDirectProduct| . |DifferentialRing|) 83637) ((|HomogeneousDirectProduct| . |DifferentialSpace|) 83506) ((|HomogeneousDirectProduct| . |DifferentialSpaceExtension|) 83474) ((|HomogeneousDirectProduct| . |Eltable|) 83446) ((|HomogeneousDirectProduct| . |EltableAggregate|) 83418) ((|HomogeneousDirectProduct| . |Evalable|) 83342) ((|HomogeneousDirectProduct| . |Finite|) 83317) ((|HomogeneousDirectProduct| . |FiniteAggregate|) 83301) ((|HomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 83269) ((|HomogeneousDirectProduct| . |FullyRetractableTo|) 83230) ((|HomogeneousDirectProduct| . |Functorial|) 83214) ((|HomogeneousDirectProduct| . |HomogeneousAggregate|) 83198) ((|HomogeneousDirectProduct| . |IndexedAggregate|) 83170) ((|HomogeneousDirectProduct| . |InnerEvalable|) 83089) ((|HomogeneousDirectProduct| . |LeftLinearSet|) 82985) ((|HomogeneousDirectProduct| . |LeftModule|) 82831) ((|HomogeneousDirectProduct| . |LinearSet|) 82797) ((|HomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 82669) ((|HomogeneousDirectProduct| . |Module|) 82626) ((|HomogeneousDirectProduct| . |Monoid|) 82603) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoid|) 82561) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 82519) ((|HomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 82477) ((|HomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 82435) ((|HomogeneousDirectProduct| . |OrderedSet|) 82406) ((|HomogeneousDirectProduct| . |OrderedType|) 82377) ((|HomogeneousDirectProduct| . |PartialDifferentialDomain|) 82193) ((|HomogeneousDirectProduct| . |PartialDifferentialRing|) 82097) ((|HomogeneousDirectProduct| . |PartialDifferentialSpace|) 81915) ((|HomogeneousDirectProduct| . |RetractableTo|) 81671) ((|HomogeneousDirectProduct| . |RightLinearSet|) 81637) ((|HomogeneousDirectProduct| . |RightModule|) 81605) ((|HomogeneousDirectProduct| . |Ring|) 81582) ((|HomogeneousDirectProduct| . |Rng|) 81559) ((|HomogeneousDirectProduct| . |SemiGroup|) 81536) ((|HomogeneousDirectProduct| . |SemiRing|) 81513) ((|HomogeneousDirectProduct| . |SetCategory|) 81254) ((|HomogeneousDirectProduct| . |Type|) T) ((|HomogeneousDirectProduct| . |VectorSpace|) 81221) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialCategory|) 81113) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 81034) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Algebra|) 80878) ((|HomogeneousDistributedMultivariatePolynomial| . |BasicType|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |BiModule|) 80734) ((|HomogeneousDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 80694) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicZero|) 80657) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleFrom|) 80415) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleTo|) 80389) ((|HomogeneousDistributedMultivariatePolynomial| . |CommutativeRing|) 80355) ((|HomogeneousDistributedMultivariatePolynomial| . |ConvertibleTo|) 80133) ((|HomogeneousDistributedMultivariatePolynomial| . |EntireRing|) 80100) ((|HomogeneousDistributedMultivariatePolynomial| . |Evalable|) 80087) ((|HomogeneousDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 80008) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 79992) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyRetractableTo|) 79976) ((|HomogeneousDistributedMultivariatePolynomial| . |Functorial|) 79960) ((|HomogeneousDistributedMultivariatePolynomial| . |GcdDomain|) 79932) ((|HomogeneousDistributedMultivariatePolynomial| . |InnerEvalable|) 79858) ((|HomogeneousDistributedMultivariatePolynomial| . |IntegralDomain|) 79825) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftLinearSet|) 79707) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftModule|) 79541) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearSet|) 79385) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 79301) ((|HomogeneousDistributedMultivariatePolynomial| . |Module|) 79145) ((|HomogeneousDistributedMultivariatePolynomial| . |Monoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 79103) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 79063) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 79023) ((|HomogeneousDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 78973) ((|HomogeneousDistributedMultivariatePolynomial| . |RetractableTo|) 78785) ((|HomogeneousDistributedMultivariatePolynomial| . |RightLinearSet|) 78655) ((|HomogeneousDistributedMultivariatePolynomial| . |RightModule|) 78525) ((|HomogeneousDistributedMultivariatePolynomial| . |Ring|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Rng|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiRing|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SetCategory|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Type|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 78475) ((|HashTable| . |TableAggregate|) 78454) ((|HashTable| . |Aggregate|) T) ((|HashTable| . |BagAggregate|) 78396) ((|HashTable| . |BasicType|) T) ((|HashTable| . |CoercibleTo|) 78370) ((|HashTable| . |Collection|) 78312) ((|HashTable| . |Dictionary|) 78254) ((|HashTable| . |DictionaryOperations|) 78196) ((|HashTable| . |Eltable|) 78175) ((|HashTable| . |EltableAggregate|) 78154) ((|HashTable| . |Evalable|) 77914) ((|HashTable| . |FiniteAggregate|) 77856) ((|HashTable| . |Functorial|) 77785) ((|HashTable| . |HomogeneousAggregate|) 77714) ((|HashTable| . |IndexedAggregate|) 77693) ((|HashTable| . |InnerEvalable|) 77441) ((|HashTable| . |KeyedDictionary|) 77420) ((|HashTable| . |SetCategory|) T) ((|HashTable| . |ShallowlyMutableAggregate|) 77349) ((|HashTable| . |Type|) T) ((|HasAst| . |SpadSyntaxCategory|) T) ((|HasAst| . |AbstractSyntaxCategory|) T) ((|HasAst| . |BasicType|) T) ((|HasAst| . |CoercibleFrom|) 77327) ((|HasAst| . |CoercibleTo|) 77282) ((|HasAst| . |HomotopicTo|) 77260) ((|HasAst| . |SetCategory|) T) ((|HasAst| . |Type|) T) ((|Pi| . |Field|) T) ((|Pi| . |AbelianGroup|) T) ((|Pi| . |AbelianMonoid|) T) ((|Pi| . |AbelianSemiGroup|) T) ((|Pi| . |Algebra|) 77214) ((|Pi| . |BasicType|) T) ((|Pi| . |BiModule|) 77159) ((|Pi| . |CancellationAbelianMonoid|) T) ((|Pi| . |CoercibleFrom|) 77098) ((|Pi| . |CoercibleTo|) 77030) ((|Pi| . |CommutativeRing|) T) ((|Pi| . |DivisionRing|) T) ((|Pi| . |EntireRing|) T) ((|Pi| . |EuclideanDomain|) T) ((|Pi| . |GcdDomain|) T) ((|Pi| . |IntegralDomain|) T) ((|Pi| . |LeftLinearSet|) 76969) ((|Pi| . |LeftModule|) 76923) ((|Pi| . |LinearSet|) 76877) ((|Pi| . |Module|) 76831) ((|Pi| . |Monoid|) T) ((|Pi| . |PrincipalIdealDomain|) T) ((|Pi| . |RightLinearSet|) 76785) ((|Pi| . |RightModule|) 76739) ((|Pi| . |Ring|) T) ((|Pi| . |Rng|) T) ((|Pi| . |SemiGroup|) T) ((|Pi| . |SemiRing|) T) ((|Pi| . |SetCategory|) T) ((|Pi| . |Type|) T) ((|Pi| . |UniqueFactorizationDomain|) T) ((|Pi| . |CharacteristicZero|) T) ((|Pi| . |RetractableTo|) 76688) ((|Pi| . |RealConstant|) T) ((|Pi| . |ConvertibleTo|) 76581) ((|GeneralTriangularSet| . |TriangularSetCategory|) 76550) ((|GeneralTriangularSet| . |Aggregate|) T) ((|GeneralTriangularSet| . |BasicType|) T) ((|GeneralTriangularSet| . |CoercibleTo|) 76502) ((|GeneralTriangularSet| . |Collection|) 76486) ((|GeneralTriangularSet| . |ConvertibleTo|) 76422) ((|GeneralTriangularSet| . |Evalable|) 76346) ((|GeneralTriangularSet| . |FiniteAggregate|) 76330) ((|GeneralTriangularSet| . |Functorial|) 76314) ((|GeneralTriangularSet| . |HomogeneousAggregate|) 76298) ((|GeneralTriangularSet| . |InnerEvalable|) 76217) ((|GeneralTriangularSet| . |PolynomialSetCategory|) 76186) ((|GeneralTriangularSet| . |SetCategory|) T) ((|GeneralTriangularSet| . |ShallowlyMutableAggregate|) 76170) ((|GeneralTriangularSet| . |Type|) T) ((|GeneralSparseTable| . |TableAggregate|) 76149) ((|GeneralSparseTable| . |Aggregate|) T) ((|GeneralSparseTable| . |BagAggregate|) 76091) ((|GeneralSparseTable| . |BasicType|) T) ((|GeneralSparseTable| . |CoercibleTo|) 76065) ((|GeneralSparseTable| . |Collection|) 76007) ((|GeneralSparseTable| . |Dictionary|) 75949) ((|GeneralSparseTable| . |DictionaryOperations|) 75891) ((|GeneralSparseTable| . |Eltable|) 75870) ((|GeneralSparseTable| . |EltableAggregate|) 75849) ((|GeneralSparseTable| . |Evalable|) 75609) ((|GeneralSparseTable| . |FiniteAggregate|) 75551) ((|GeneralSparseTable| . |Functorial|) 75480) ((|GeneralSparseTable| . |HomogeneousAggregate|) 75409) ((|GeneralSparseTable| . |IndexedAggregate|) 75388) ((|GeneralSparseTable| . |InnerEvalable|) 75136) ((|GeneralSparseTable| . |KeyedDictionary|) 75115) ((|GeneralSparseTable| . |SetCategory|) T) ((|GeneralSparseTable| . |ShallowlyMutableAggregate|) 75044) ((|GeneralSparseTable| . |Type|) T) ((|GeneralUnivariatePowerSeries| . |UnivariatePuiseuxSeriesCategory|) 75028) ((|GeneralUnivariatePowerSeries| . |AbelianGroup|) T) ((|GeneralUnivariatePowerSeries| . |AbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |AbelianMonoidRing|) 74987) ((|GeneralUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |Algebra|) 74831) ((|GeneralUnivariatePowerSeries| . |ArcHyperbolicFunctionCategory|) 74780) ((|GeneralUnivariatePowerSeries| . |ArcTrigonometricFunctionCategory|) 74729) ((|GeneralUnivariatePowerSeries| . |BasicType|) T) ((|GeneralUnivariatePowerSeries| . |BiModule|) 74585) ((|GeneralUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |CharacteristicNonZero|) 74545) ((|GeneralUnivariatePowerSeries| . |CharacteristicZero|) 74508) ((|GeneralUnivariatePowerSeries| . |CoercibleFrom|) 74337) ((|GeneralUnivariatePowerSeries| . |CoercibleTo|) 74311) ((|GeneralUnivariatePowerSeries| . |CommutativeRing|) 74277) ((|GeneralUnivariatePowerSeries| . |DifferentialDomain|) 74206) ((|GeneralUnivariatePowerSeries| . |DifferentialRing|) 74141) ((|GeneralUnivariatePowerSeries| . |DifferentialSpace|) 74076) ((|GeneralUnivariatePowerSeries| . |DivisionRing|) 74052) ((|GeneralUnivariatePowerSeries| . |ElementaryFunctionCategory|) 74001) ((|GeneralUnivariatePowerSeries| . |Eltable|) 73948) ((|GeneralUnivariatePowerSeries| . |EntireRing|) 73915) ((|GeneralUnivariatePowerSeries| . |EuclideanDomain|) 73891) ((|GeneralUnivariatePowerSeries| . |Field|) 73867) ((|GeneralUnivariatePowerSeries| . |Functorial|) 73851) ((|GeneralUnivariatePowerSeries| . |GcdDomain|) 73827) ((|GeneralUnivariatePowerSeries| . |HyperbolicFunctionCategory|) 73776) ((|GeneralUnivariatePowerSeries| . |IntegralDomain|) 73743) ((|GeneralUnivariatePowerSeries| . |LeftLinearSet|) 73625) ((|GeneralUnivariatePowerSeries| . |LeftModule|) 73522) ((|GeneralUnivariatePowerSeries| . |LinearSet|) 73366) ((|GeneralUnivariatePowerSeries| . |Module|) 73210) ((|GeneralUnivariatePowerSeries| . |Monoid|) T) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialDomain|) 73042) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialRing|) 72904) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialSpace|) 72766) ((|GeneralUnivariatePowerSeries| . |PowerSeriesCategory|) 72699) ((|GeneralUnivariatePowerSeries| . |PrincipalIdealDomain|) 72675) ((|GeneralUnivariatePowerSeries| . |RadicalCategory|) 72624) ((|GeneralUnivariatePowerSeries| . |RightLinearSet|) 72494) ((|GeneralUnivariatePowerSeries| . |RightModule|) 72364) ((|GeneralUnivariatePowerSeries| . |Ring|) T) ((|GeneralUnivariatePowerSeries| . |Rng|) T) ((|GeneralUnivariatePowerSeries| . |SemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |SemiRing|) T) ((|GeneralUnivariatePowerSeries| . |SetCategory|) T) ((|GeneralUnivariatePowerSeries| . |TranscendentalFunctionCategory|) 72313) ((|GeneralUnivariatePowerSeries| . |TrigonometricFunctionCategory|) 72262) ((|GeneralUnivariatePowerSeries| . |Type|) T) ((|GeneralUnivariatePowerSeries| . |UniqueFactorizationDomain|) 72238) ((|GeneralUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 72197) ((|GraphImage| . |SetCategory|) T) ((|GraphImage| . |BasicType|) T) ((|GraphImage| . |CoercibleTo|) 72171) ((|GraphImage| . |Type|) T) ((|GeneralPolynomialSet| . |PolynomialSetCategory|) 72140) ((|GeneralPolynomialSet| . |Aggregate|) T) ((|GeneralPolynomialSet| . |BasicType|) T) ((|GeneralPolynomialSet| . |CoercibleTo|) 72092) ((|GeneralPolynomialSet| . |Collection|) 72076) ((|GeneralPolynomialSet| . |ConvertibleTo|) 72012) ((|GeneralPolynomialSet| . |Evalable|) 71936) ((|GeneralPolynomialSet| . |FiniteAggregate|) 71920) ((|GeneralPolynomialSet| . |Functorial|) 71904) ((|GeneralPolynomialSet| . |HomogeneousAggregate|) 71888) ((|GeneralPolynomialSet| . |InnerEvalable|) 71807) ((|GeneralPolynomialSet| . |SetCategory|) T) ((|GeneralPolynomialSet| . |Type|) T) ((|GeneralPolynomialSet| . |ShallowlyMutableAggregate|) 71791) ((|GeneralModulePolynomial| . |Module|) 71762) ((|GeneralModulePolynomial| . |AbelianGroup|) T) ((|GeneralModulePolynomial| . |AbelianMonoid|) T) ((|GeneralModulePolynomial| . |AbelianSemiGroup|) T) ((|GeneralModulePolynomial| . |BasicType|) T) ((|GeneralModulePolynomial| . |BiModule|) 71723) ((|GeneralModulePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralModulePolynomial| . |CoercibleTo|) 71697) ((|GeneralModulePolynomial| . |LeftLinearSet|) 71648) ((|GeneralModulePolynomial| . |LeftModule|) 71619) ((|GeneralModulePolynomial| . |LinearSet|) 71590) ((|GeneralModulePolynomial| . |RightLinearSet|) 71561) ((|GeneralModulePolynomial| . |RightModule|) 71532) ((|GeneralModulePolynomial| . |SetCategory|) T) ((|GeneralModulePolynomial| . |Type|) T) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialCategory|) 71482) ((|GeneralDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 71461) ((|GeneralDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |Algebra|) 71305) ((|GeneralDistributedMultivariatePolynomial| . |BasicType|) T) ((|GeneralDistributedMultivariatePolynomial| . |BiModule|) 71161) ((|GeneralDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 71121) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicZero|) 71084) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleFrom|) 70842) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleTo|) 70816) ((|GeneralDistributedMultivariatePolynomial| . |CommutativeRing|) 70782) ((|GeneralDistributedMultivariatePolynomial| . |ConvertibleTo|) 70560) ((|GeneralDistributedMultivariatePolynomial| . |EntireRing|) 70527) ((|GeneralDistributedMultivariatePolynomial| . |Evalable|) 70514) ((|GeneralDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 70493) ((|GeneralDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 70477) ((|GeneralDistributedMultivariatePolynomial| . |FullyRetractableTo|) 70461) ((|GeneralDistributedMultivariatePolynomial| . |Functorial|) 70445) ((|GeneralDistributedMultivariatePolynomial| . |GcdDomain|) 70417) ((|GeneralDistributedMultivariatePolynomial| . |InnerEvalable|) 70343) ((|GeneralDistributedMultivariatePolynomial| . |IntegralDomain|) 70310) ((|GeneralDistributedMultivariatePolynomial| . |LeftLinearSet|) 70192) ((|GeneralDistributedMultivariatePolynomial| . |LeftModule|) 70026) ((|GeneralDistributedMultivariatePolynomial| . |LinearSet|) 69870) ((|GeneralDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 69786) ((|GeneralDistributedMultivariatePolynomial| . |Module|) 69630) ((|GeneralDistributedMultivariatePolynomial| . |Monoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 69588) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 69548) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 69508) ((|GeneralDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 69458) ((|GeneralDistributedMultivariatePolynomial| . |RetractableTo|) 69270) ((|GeneralDistributedMultivariatePolynomial| . |RightLinearSet|) 69140) ((|GeneralDistributedMultivariatePolynomial| . |RightModule|) 69010) ((|GeneralDistributedMultivariatePolynomial| . |Ring|) T) ((|GeneralDistributedMultivariatePolynomial| . |Rng|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiRing|) T) ((|GeneralDistributedMultivariatePolynomial| . |SetCategory|) T) ((|GeneralDistributedMultivariatePolynomial| . |Type|) T) ((|GeneralDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 68960) ((|GenericNonAssociativeAlgebra| . |FramedNonAssociativeAlgebra|) 68916) ((|GenericNonAssociativeAlgebra| . |AbelianGroup|) T) ((|GenericNonAssociativeAlgebra| . |AbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |AbelianSemiGroup|) T) ((|GenericNonAssociativeAlgebra| . |BasicType|) T) ((|GenericNonAssociativeAlgebra| . |BiModule|) 68865) ((|GenericNonAssociativeAlgebra| . |CancellationAbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |CoercibleTo|) 68839) ((|GenericNonAssociativeAlgebra| . |Eltable|) 68783) ((|GenericNonAssociativeAlgebra| . |FiniteRankNonAssociativeAlgebra|) 68739) ((|GenericNonAssociativeAlgebra| . |LeftLinearSet|) 68638) ((|GenericNonAssociativeAlgebra| . |LeftModule|) 68557) ((|GenericNonAssociativeAlgebra| . |LinearSet|) 68513) ((|GenericNonAssociativeAlgebra| . |Module|) 68469) ((|GenericNonAssociativeAlgebra| . |Monad|) T) ((|GenericNonAssociativeAlgebra| . |NonAssociativeAlgebra|) 68425) ((|GenericNonAssociativeAlgebra| . |NonAssociativeRng|) T) ((|GenericNonAssociativeAlgebra| . |RightLinearSet|) 68381) ((|GenericNonAssociativeAlgebra| . |RightModule|) 68337) ((|GenericNonAssociativeAlgebra| . |SetCategory|) T) ((|GenericNonAssociativeAlgebra| . |Type|) T) ((|FunctionDescriptor| . |SetCategory|) T) ((|FunctionDescriptor| . |BasicType|) T) ((|FunctionDescriptor| . |CoercibleTo|) 68311) ((|FunctionDescriptor| . |Type|) T) ((|FunctionCalled| . |SetCategory|) T) ((|FunctionCalled| . |BasicType|) T) ((|FunctionCalled| . |CoercibleTo|) 68285) ((|FunctionCalled| . |Type|) T) ((|FortranType| . |SetCategory|) T) ((|FortranType| . |BasicType|) T) ((|FortranType| . |CoercibleTo|) 68259) ((|FortranType| . |Type|) T) ((|FortranScalarType| . |CoercibleTo|) 68190) ((|FourierSeries| . |Algebra|) 68174) ((|FourierSeries| . |AbelianGroup|) T) ((|FourierSeries| . |AbelianMonoid|) T) ((|FourierSeries| . |AbelianSemiGroup|) T) ((|FourierSeries| . |BasicType|) T) ((|FourierSeries| . |BiModule|) 68153) ((|FourierSeries| . |CancellationAbelianMonoid|) T) ((|FourierSeries| . |CoercibleFrom|) 68117) ((|FourierSeries| . |CoercibleTo|) 68091) ((|FourierSeries| . |LeftLinearSet|) 68045) ((|FourierSeries| . |LeftModule|) 68019) ((|FourierSeries| . |LinearSet|) 68003) ((|FourierSeries| . |Module|) 67987) ((|FourierSeries| . |Monoid|) T) ((|FourierSeries| . |RightLinearSet|) 67971) ((|FourierSeries| . |RightModule|) 67955) ((|FourierSeries| . |Ring|) T) ((|FourierSeries| . |Rng|) T) ((|FourierSeries| . |SemiGroup|) T) ((|FourierSeries| . |SemiRing|) T) ((|FourierSeries| . |SetCategory|) T) ((|FourierSeries| . |Type|) T) ((|FramedModule| . |Monoid|) T) ((|FramedModule| . |BasicType|) T) ((|FramedModule| . |CoercibleTo|) 67929) ((|FramedModule| . |SemiGroup|) T) ((|FramedModule| . |SetCategory|) T) ((|FramedModule| . |Type|) T) ((|FractionalIdeal| . |Group|) T) ((|FractionalIdeal| . |BasicType|) T) ((|FractionalIdeal| . |CoercibleTo|) 67903) ((|FractionalIdeal| . |Monoid|) T) ((|FractionalIdeal| . |SemiGroup|) T) ((|FractionalIdeal| . |SetCategory|) T) ((|FractionalIdeal| . |Type|) T) ((|Fraction| . |QuotientFieldCategory|) 67887) ((|Fraction| . |AbelianGroup|) T) ((|Fraction| . |AbelianMonoid|) T) ((|Fraction| . |AbelianSemiGroup|) T) ((|Fraction| . |Algebra|) 67828) ((|Fraction| . |BasicType|) T) ((|Fraction| . |BiModule|) 67755) ((|Fraction| . |CancellationAbelianMonoid|) T) ((|Fraction| . |CharacteristicNonZero|) 67715) ((|Fraction| . |CharacteristicZero|) 67678) ((|Fraction| . |CoercibleFrom|) 67549) ((|Fraction| . |CoercibleTo|) 67523) ((|Fraction| . |CommutativeRing|) T) ((|Fraction| . |ConvertibleTo|) 67214) ((|Fraction| . |DifferentialDomain|) 67172) ((|Fraction| . |DifferentialExtension|) 67156) ((|Fraction| . |DifferentialRing|) 67121) ((|Fraction| . |DifferentialSpace|) 67085) ((|Fraction| . |DifferentialSpaceExtension|) 67069) ((|Fraction| . |DivisionRing|) T) ((|Fraction| . |Eltable|) 67022) ((|Fraction| . |EntireRing|) T) ((|Fraction| . |EuclideanDomain|) T) ((|Fraction| . |Evalable|) 66981) ((|Fraction| . |Field|) T) ((|Fraction| . |FullyEvalableOver|) 66965) ((|Fraction| . |FullyLinearlyExplicitRingOver|) 66949) ((|Fraction| . |FullyPatternMatchable|) 66933) ((|Fraction| . |Functorial|) 66917) ((|Fraction| . |GcdDomain|) T) ((|Fraction| . |InnerEvalable|) 66806) ((|Fraction| . |IntegralDomain|) T) ((|Fraction| . |LeftLinearSet|) 66732) ((|Fraction| . |LeftModule|) 66610) ((|Fraction| . |LinearSet|) 66551) ((|Fraction| . |LinearlyExplicitRingOver|) 66467) ((|Fraction| . |Module|) 66408) ((|Fraction| . |Monoid|) T) ((|Fraction| . |OrderedAbelianGroup|) 66368) ((|Fraction| . |OrderedAbelianMonoid|) 66328) ((|Fraction| . |OrderedAbelianSemiGroup|) 66288) ((|Fraction| . |OrderedCancellationAbelianMonoid|) 66248) ((|Fraction| . |OrderedIntegralDomain|) 66208) ((|Fraction| . |OrderedRing|) 66168) ((|Fraction| . |OrderedSet|) 66139) ((|Fraction| . |OrderedType|) 66110) ((|Fraction| . |PartialDifferentialDomain|) 65982) ((|Fraction| . |PartialDifferentialRing|) 65914) ((|Fraction| . |PartialDifferentialSpace|) 65788) ((|Fraction| . |PatternMatchable|) 65669) ((|Fraction| . |Patternable|) 65653) ((|Fraction| . |PolynomialFactorizationExplicit|) 65603) ((|Fraction| . |PrincipalIdealDomain|) T) ((|Fraction| . |RealConstant|) 65572) ((|Fraction| . |RetractableTo|) 65379) ((|Fraction| . |RightLinearSet|) 65320) ((|Fraction| . |RightModule|) 65261) ((|Fraction| . |Ring|) T) ((|Fraction| . |Rng|) T) ((|Fraction| . |SemiGroup|) T) ((|Fraction| . |SemiRing|) T) ((|Fraction| . |SetCategory|) T) ((|Fraction| . |StepThrough|) 65231) ((|Fraction| . |Type|) T) ((|Fraction| . |UniqueFactorizationDomain|) T) ((|Factored| . |IntegralDomain|) T) ((|Factored| . |AbelianGroup|) T) ((|Factored| . |AbelianMonoid|) T) ((|Factored| . |AbelianSemiGroup|) T) ((|Factored| . |Algebra|) 65205) ((|Factored| . |BasicType|) T) ((|Factored| . |BiModule|) 65172) ((|Factored| . |CancellationAbelianMonoid|) T) ((|Factored| . |CoercibleFrom|) 65043) ((|Factored| . |CoercibleTo|) 65017) ((|Factored| . |CommutativeRing|) T) ((|Factored| . |EntireRing|) T) ((|Factored| . |LeftLinearSet|) 64971) ((|Factored| . |LeftModule|) 64945) ((|Factored| . |LinearSet|) 64919) ((|Factored| . |Module|) 64893) ((|Factored| . |Monoid|) T) ((|Factored| . |RightLinearSet|) 64867) ((|Factored| . |RightModule|) 64841) ((|Factored| . |Ring|) T) ((|Factored| . |Rng|) T) ((|Factored| . |SemiGroup|) T) ((|Factored| . |SemiRing|) T) ((|Factored| . |SetCategory|) T) ((|Factored| . |Type|) T) ((|Factored| . |DifferentialExtension|) 64825) ((|Factored| . |DifferentialDomain|) 64783) ((|Factored| . |DifferentialRing|) 64748) ((|Factored| . |DifferentialSpace|) 64712) ((|Factored| . |DifferentialSpaceExtension|) 64696) ((|Factored| . |PartialDifferentialDomain|) 64568) ((|Factored| . |PartialDifferentialRing|) 64500) ((|Factored| . |PartialDifferentialSpace|) 64374) ((|Factored| . |FullyEvalableOver|) 64358) ((|Factored| . |Eltable|) 64271) ((|Factored| . |Evalable|) 64191) ((|Factored| . |Functorial|) 64175) ((|Factored| . |InnerEvalable|) 63975) ((|Factored| . |FullyRetractableTo|) 63959) ((|Factored| . |RetractableTo|) 63808) ((|Factored| . |GcdDomain|) 63780) ((|Factored| . |RealConstant|) 63749) ((|Factored| . |ConvertibleTo|) 63648) ((|Factored| . |UniqueFactorizationDomain|) 63604) ((|FullPartialFractionExpansion| . |SetCategory|) T) ((|FullPartialFractionExpansion| . |BasicType|) T) ((|FullPartialFractionExpansion| . |CoercibleTo|) 63578) ((|FullPartialFractionExpansion| . |Type|) T) ((|FullPartialFractionExpansion| . |DifferentialSpace|) T) ((|FullPartialFractionExpansion| . |DifferentialDomain|) 63565) ((|FullPartialFractionExpansion| . |ConvertibleTo|) 63536) ((|FreeNilpotentLie| . |NonAssociativeAlgebra|) 63520) ((|FreeNilpotentLie| . |AbelianGroup|) T) ((|FreeNilpotentLie| . |AbelianMonoid|) T) ((|FreeNilpotentLie| . |AbelianSemiGroup|) T) ((|FreeNilpotentLie| . |BasicType|) T) ((|FreeNilpotentLie| . |BiModule|) 63499) ((|FreeNilpotentLie| . |CancellationAbelianMonoid|) T) ((|FreeNilpotentLie| . |CoercibleTo|) 63473) ((|FreeNilpotentLie| . |LeftLinearSet|) 63437) ((|FreeNilpotentLie| . |LeftModule|) 63421) ((|FreeNilpotentLie| . |LinearSet|) 63405) ((|FreeNilpotentLie| . |Module|) 63389) ((|FreeNilpotentLie| . |Monad|) T) ((|FreeNilpotentLie| . |NonAssociativeRng|) T) ((|FreeNilpotentLie| . |RightLinearSet|) 63373) ((|FreeNilpotentLie| . |RightModule|) 63357) ((|FreeNilpotentLie| . |SetCategory|) T) ((|FreeNilpotentLie| . |Type|) T) ((|FileName| . |FileNameCategory|) T) ((|FileName| . |BasicType|) T) ((|FileName| . |CoercibleFrom|) 63335) ((|FileName| . |CoercibleTo|) 63290) ((|FileName| . |HomotopicTo|) 63268) ((|FileName| . |SetCategory|) T) ((|FileName| . |Type|) T) ((|FreeMonoid| . |FreeMonoidCategory|) 63252) ((|FreeMonoid| . |BasicType|) T) ((|FreeMonoid| . |CoercibleFrom|) 63236) ((|FreeMonoid| . |CoercibleTo|) 63210) ((|FreeMonoid| . |Monoid|) T) ((|FreeMonoid| . |OrderedSet|) 63181) ((|FreeMonoid| . |OrderedType|) 63152) ((|FreeMonoid| . |RetractableTo|) 63136) ((|FreeMonoid| . |SemiGroup|) T) ((|FreeMonoid| . |SetCategory|) T) ((|FreeMonoid| . |Type|) T) ((|FreeMagma| . |OrderedSet|) T) ((|FreeMagma| . |BasicType|) T) ((|FreeMagma| . |CoercibleTo|) 63075) ((|FreeMagma| . |OrderedType|) T) ((|FreeMagma| . |SetCategory|) T) ((|FreeMagma| . |Type|) T) ((|FreeMagma| . |RetractableTo|) 63059) ((|FreeMagma| . |CoercibleFrom|) 63043) ((|FreeModule1| . |FreeModuleCat|) 63022) ((|FreeModule1| . |AbelianGroup|) T) ((|FreeModule1| . |AbelianMonoid|) T) ((|FreeModule1| . |AbelianSemiGroup|) T) ((|FreeModule1| . |BasicType|) T) ((|FreeModule1| . |BiModule|) 63001) ((|FreeModule1| . |CancellationAbelianMonoid|) T) ((|FreeModule1| . |CoercibleFrom|) 62985) ((|FreeModule1| . |CoercibleTo|) 62959) ((|FreeModule1| . |Functorial|) 62943) ((|FreeModule1| . |LeftLinearSet|) 62907) ((|FreeModule1| . |LeftModule|) 62891) ((|FreeModule1| . |LinearSet|) 62848) ((|FreeModule1| . |Module|) 62805) ((|FreeModule1| . |RetractableTo|) 62789) ((|FreeModule1| . |RightLinearSet|) 62773) ((|FreeModule1| . |RightModule|) 62757) ((|FreeModule1| . |SetCategory|) T) ((|FreeModule1| . |Type|) T) ((|FreeModule| . |BiModule|) 62736) ((|FreeModule| . |AbelianGroup|) T) ((|FreeModule| . |AbelianMonoid|) T) ((|FreeModule| . |AbelianSemiGroup|) T) ((|FreeModule| . |BasicType|) T) ((|FreeModule| . |CancellationAbelianMonoid|) T) ((|FreeModule| . |CoercibleTo|) 62710) ((|FreeModule| . |LeftLinearSet|) 62674) ((|FreeModule| . |LeftModule|) 62658) ((|FreeModule| . |RightLinearSet|) 62642) ((|FreeModule| . |RightModule|) 62626) ((|FreeModule| . |SetCategory|) T) ((|FreeModule| . |Type|) T) ((|FreeModule| . |IndexedDirectProductCategory|) 62605) ((|FreeModule| . |ConvertibleFrom|) 62552) ((|FreeModule| . |Functorial|) 62536) ((|FreeModule| . |Module|) 62493) ((|FreeModule| . |LinearSet|) 62450) ((|Float| . |FloatingPointSystem|) T) ((|Float| . |AbelianGroup|) T) ((|Float| . |AbelianMonoid|) T) ((|Float| . |AbelianSemiGroup|) T) ((|Float| . |Algebra|) 62404) ((|Float| . |BasicType|) T) ((|Float| . |BiModule|) 62349) ((|Float| . |CancellationAbelianMonoid|) T) ((|Float| . |CharacteristicZero|) T) ((|Float| . |CoercibleFrom|) 62288) ((|Float| . |CoercibleTo|) 62238) ((|Float| . |CommutativeRing|) T) ((|Float| . |ConvertibleTo|) 62125) ((|Float| . |DivisionRing|) T) ((|Float| . |EntireRing|) T) ((|Float| . |EuclideanDomain|) T) ((|Float| . |Field|) T) ((|Float| . |GcdDomain|) T) ((|Float| . |IntegralDomain|) T) ((|Float| . |LeftLinearSet|) 62064) ((|Float| . |LeftModule|) 62018) ((|Float| . |LinearSet|) 61972) ((|Float| . |Module|) 61926) ((|Float| . |Monoid|) T) ((|Float| . |OrderedAbelianGroup|) T) ((|Float| . |OrderedAbelianMonoid|) T) ((|Float| . |OrderedAbelianSemiGroup|) T) ((|Float| . |OrderedCancellationAbelianMonoid|) T) ((|Float| . |OrderedRing|) T) ((|Float| . |OrderedSet|) T) ((|Float| . |OrderedType|) T) ((|Float| . |PatternMatchable|) 61905) ((|Float| . |PrincipalIdealDomain|) T) ((|Float| . |RadicalCategory|) T) ((|Float| . |RealConstant|) T) ((|Float| . |RealNumberSystem|) T) ((|Float| . |RetractableTo|) 61854) ((|Float| . |RightLinearSet|) 61808) ((|Float| . |RightModule|) 61762) ((|Float| . |Ring|) T) ((|Float| . |Rng|) T) ((|Float| . |SemiGroup|) T) ((|Float| . |SemiRing|) T) ((|Float| . |SetCategory|) T) ((|Float| . |Type|) T) ((|Float| . |UniqueFactorizationDomain|) T) ((|Float| . |DifferentialRing|) T) ((|Float| . |DifferentialDomain|) 61749) ((|Float| . |DifferentialSpace|) T) ((|Float| . |TranscendentalFunctionCategory|) T) ((|Float| . |ArcHyperbolicFunctionCategory|) T) ((|Float| . |ArcTrigonometricFunctionCategory|) T) ((|Float| . |ElementaryFunctionCategory|) T) ((|Float| . |HyperbolicFunctionCategory|) T) ((|Float| . |TrigonometricFunctionCategory|) T) ((|Float| . |ConvertibleFrom|) 61722) ((|File| . |FileCategory|) 61693) ((|File| . |BasicType|) T) ((|File| . |CoercibleTo|) 61667) ((|File| . |SetCategory|) T) ((|File| . |Type|) T) ((|FreeGroup| . |Group|) T) ((|FreeGroup| . |BasicType|) T) ((|FreeGroup| . |CoercibleTo|) 61641) ((|FreeGroup| . |Monoid|) T) ((|FreeGroup| . |SemiGroup|) T) ((|FreeGroup| . |SetCategory|) T) ((|FreeGroup| . |Type|) T) ((|FreeGroup| . |RetractableTo|) 61625) ((|FreeGroup| . |CoercibleFrom|) 61609) ((|FiniteFieldExtension| . |FiniteAlgebraicExtensionField|) 61593) ((|FiniteFieldExtension| . |AbelianGroup|) T) ((|FiniteFieldExtension| . |AbelianMonoid|) T) ((|FiniteFieldExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldExtension| . |Algebra|) 61547) ((|FiniteFieldExtension| . |BasicType|) T) ((|FiniteFieldExtension| . |BiModule|) 61474) ((|FiniteFieldExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtension| . |CharacteristicNonZero|) 61405) ((|FiniteFieldExtension| . |CharacteristicZero|) 61368) ((|FiniteFieldExtension| . |CoercibleFrom|) 61294) ((|FiniteFieldExtension| . |CoercibleTo|) 61268) ((|FiniteFieldExtension| . |CommutativeRing|) T) ((|FiniteFieldExtension| . |DifferentialDomain|) 61237) ((|FiniteFieldExtension| . |DifferentialRing|) 61212) ((|FiniteFieldExtension| . |DifferentialSpace|) 61187) ((|FiniteFieldExtension| . |DivisionRing|) T) ((|FiniteFieldExtension| . |EntireRing|) T) ((|FiniteFieldExtension| . |EuclideanDomain|) T) ((|FiniteFieldExtension| . |ExtensionField|) 61171) ((|FiniteFieldExtension| . |Field|) T) ((|FiniteFieldExtension| . |FieldOfPrimeCharacteristic|) 61102) ((|FiniteFieldExtension| . |Finite|) 61077) ((|FiniteFieldExtension| . |FiniteFieldCategory|) 61052) ((|FiniteFieldExtension| . |GcdDomain|) T) ((|FiniteFieldExtension| . |IntegralDomain|) T) ((|FiniteFieldExtension| . |LeftLinearSet|) 60978) ((|FiniteFieldExtension| . |LeftModule|) 60919) ((|FiniteFieldExtension| . |LinearSet|) 60860) ((|FiniteFieldExtension| . |Module|) 60801) ((|FiniteFieldExtension| . |Monoid|) T) ((|FiniteFieldExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtension| . |RetractableTo|) 60785) ((|FiniteFieldExtension| . |RightLinearSet|) 60726) ((|FiniteFieldExtension| . |RightModule|) 60667) ((|FiniteFieldExtension| . |Ring|) T) ((|FiniteFieldExtension| . |Rng|) T) ((|FiniteFieldExtension| . |SemiGroup|) T) ((|FiniteFieldExtension| . |SemiRing|) T) ((|FiniteFieldExtension| . |SetCategory|) T) ((|FiniteFieldExtension| . |StepThrough|) 60642) ((|FiniteFieldExtension| . |Type|) T) ((|FiniteFieldExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtension| . |VectorSpace|) 60626) ((|FiniteFieldExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 60610) ((|FiniteFieldExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |Algebra|) 60564) ((|FiniteFieldExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldExtensionByPolynomial| . |BiModule|) 60491) ((|FiniteFieldExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicNonZero|) 60422) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicZero|) 60385) ((|FiniteFieldExtensionByPolynomial| . |CoercibleFrom|) 60311) ((|FiniteFieldExtensionByPolynomial| . |CoercibleTo|) 60285) ((|FiniteFieldExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldExtensionByPolynomial| . |DifferentialDomain|) 60254) ((|FiniteFieldExtensionByPolynomial| . |DifferentialRing|) 60229) ((|FiniteFieldExtensionByPolynomial| . |DifferentialSpace|) 60204) ((|FiniteFieldExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |ExtensionField|) 60188) ((|FiniteFieldExtensionByPolynomial| . |Field|) T) ((|FiniteFieldExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 60119) ((|FiniteFieldExtensionByPolynomial| . |Finite|) 60094) ((|FiniteFieldExtensionByPolynomial| . |FiniteFieldCategory|) 60069) ((|FiniteFieldExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |LeftLinearSet|) 59995) ((|FiniteFieldExtensionByPolynomial| . |LeftModule|) 59936) ((|FiniteFieldExtensionByPolynomial| . |LinearSet|) 59877) ((|FiniteFieldExtensionByPolynomial| . |Module|) 59818) ((|FiniteFieldExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |RetractableTo|) 59802) ((|FiniteFieldExtensionByPolynomial| . |RightLinearSet|) 59743) ((|FiniteFieldExtensionByPolynomial| . |RightModule|) 59684) ((|FiniteFieldExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldExtensionByPolynomial| . |StepThrough|) 59659) ((|FiniteFieldExtensionByPolynomial| . |Type|) T) ((|FiniteFieldExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |VectorSpace|) 59643) ((|FiniteFieldNormalBasisExtension| . |FiniteAlgebraicExtensionField|) 59627) ((|FiniteFieldNormalBasisExtension| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |Algebra|) 59581) ((|FiniteFieldNormalBasisExtension| . |BasicType|) T) ((|FiniteFieldNormalBasisExtension| . |BiModule|) 59508) ((|FiniteFieldNormalBasisExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |CharacteristicNonZero|) 59439) ((|FiniteFieldNormalBasisExtension| . |CharacteristicZero|) 59402) ((|FiniteFieldNormalBasisExtension| . |CoercibleFrom|) 59328) ((|FiniteFieldNormalBasisExtension| . |CoercibleTo|) 59302) ((|FiniteFieldNormalBasisExtension| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtension| . |DifferentialDomain|) 59271) ((|FiniteFieldNormalBasisExtension| . |DifferentialRing|) 59246) ((|FiniteFieldNormalBasisExtension| . |DifferentialSpace|) 59221) ((|FiniteFieldNormalBasisExtension| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtension| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtension| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtension| . |ExtensionField|) 59205) ((|FiniteFieldNormalBasisExtension| . |Field|) T) ((|FiniteFieldNormalBasisExtension| . |FieldOfPrimeCharacteristic|) 59136) ((|FiniteFieldNormalBasisExtension| . |Finite|) 59111) ((|FiniteFieldNormalBasisExtension| . |FiniteFieldCategory|) 59086) ((|FiniteFieldNormalBasisExtension| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtension| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtension| . |LeftLinearSet|) 59012) ((|FiniteFieldNormalBasisExtension| . |LeftModule|) 58953) ((|FiniteFieldNormalBasisExtension| . |LinearSet|) 58894) ((|FiniteFieldNormalBasisExtension| . |Module|) 58835) ((|FiniteFieldNormalBasisExtension| . |Monoid|) T) ((|FiniteFieldNormalBasisExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtension| . |RetractableTo|) 58819) ((|FiniteFieldNormalBasisExtension| . |RightLinearSet|) 58760) ((|FiniteFieldNormalBasisExtension| . |RightModule|) 58701) ((|FiniteFieldNormalBasisExtension| . |Ring|) T) ((|FiniteFieldNormalBasisExtension| . |Rng|) T) ((|FiniteFieldNormalBasisExtension| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtension| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtension| . |StepThrough|) 58676) ((|FiniteFieldNormalBasisExtension| . |Type|) T) ((|FiniteFieldNormalBasisExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtension| . |VectorSpace|) 58660) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 58644) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Algebra|) 58598) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BiModule|) 58525) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicNonZero|) 58456) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicZero|) 58419) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleFrom|) 58345) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleTo|) 58319) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialDomain|) 58288) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialRing|) 58263) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialSpace|) 58238) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |ExtensionField|) 58222) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Field|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 58153) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Finite|) 58128) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteFieldCategory|) 58103) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftLinearSet|) 58029) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftModule|) 57970) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LinearSet|) 57911) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Module|) 57852) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RetractableTo|) 57836) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightLinearSet|) 57777) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightModule|) 57718) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |StepThrough|) 57693) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Type|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |VectorSpace|) 57677) ((|FiniteFieldNormalBasis| . |FiniteAlgebraicExtensionField|) 57646) ((|FiniteFieldNormalBasis| . |AbelianGroup|) T) ((|FiniteFieldNormalBasis| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasis| . |Algebra|) 57600) ((|FiniteFieldNormalBasis| . |BasicType|) T) ((|FiniteFieldNormalBasis| . |BiModule|) 57510) ((|FiniteFieldNormalBasis| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |CharacteristicNonZero|) T) ((|FiniteFieldNormalBasis| . |CharacteristicZero|) 57476) ((|FiniteFieldNormalBasis| . |CoercibleFrom|) 57387) ((|FiniteFieldNormalBasis| . |CoercibleTo|) 57361) ((|FiniteFieldNormalBasis| . |CommutativeRing|) T) ((|FiniteFieldNormalBasis| . |DifferentialDomain|) 57348) ((|FiniteFieldNormalBasis| . |DifferentialRing|) T) ((|FiniteFieldNormalBasis| . |DifferentialSpace|) T) ((|FiniteFieldNormalBasis| . |DivisionRing|) T) ((|FiniteFieldNormalBasis| . |EntireRing|) T) ((|FiniteFieldNormalBasis| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasis| . |ExtensionField|) 57317) ((|FiniteFieldNormalBasis| . |Field|) T) ((|FiniteFieldNormalBasis| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldNormalBasis| . |Finite|) T) ((|FiniteFieldNormalBasis| . |FiniteFieldCategory|) T) ((|FiniteFieldNormalBasis| . |GcdDomain|) T) ((|FiniteFieldNormalBasis| . |IntegralDomain|) T) ((|FiniteFieldNormalBasis| . |LeftLinearSet|) 57228) ((|FiniteFieldNormalBasis| . |LeftModule|) 57154) ((|FiniteFieldNormalBasis| . |LinearSet|) 57080) ((|FiniteFieldNormalBasis| . |Module|) 57006) ((|FiniteFieldNormalBasis| . |Monoid|) T) ((|FiniteFieldNormalBasis| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasis| . |RetractableTo|) 56975) ((|FiniteFieldNormalBasis| . |RightLinearSet|) 56901) ((|FiniteFieldNormalBasis| . |RightModule|) 56827) ((|FiniteFieldNormalBasis| . |Ring|) T) ((|FiniteFieldNormalBasis| . |Rng|) T) ((|FiniteFieldNormalBasis| . |SemiGroup|) T) ((|FiniteFieldNormalBasis| . |SemiRing|) T) ((|FiniteFieldNormalBasis| . |SetCategory|) T) ((|FiniteFieldNormalBasis| . |StepThrough|) T) ((|FiniteFieldNormalBasis| . |Type|) T) ((|FiniteFieldNormalBasis| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasis| . |VectorSpace|) 56796) ((|FiniteFieldCyclicGroupExtension| . |FiniteAlgebraicExtensionField|) 56780) ((|FiniteFieldCyclicGroupExtension| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |Algebra|) 56734) ((|FiniteFieldCyclicGroupExtension| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtension| . |BiModule|) 56661) ((|FiniteFieldCyclicGroupExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicNonZero|) 56592) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicZero|) 56555) ((|FiniteFieldCyclicGroupExtension| . |CoercibleFrom|) 56481) ((|FiniteFieldCyclicGroupExtension| . |CoercibleTo|) 56455) ((|FiniteFieldCyclicGroupExtension| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtension| . |DifferentialDomain|) 56424) ((|FiniteFieldCyclicGroupExtension| . |DifferentialRing|) 56399) ((|FiniteFieldCyclicGroupExtension| . |DifferentialSpace|) 56374) ((|FiniteFieldCyclicGroupExtension| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtension| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtension| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |ExtensionField|) 56358) ((|FiniteFieldCyclicGroupExtension| . |Field|) T) ((|FiniteFieldCyclicGroupExtension| . |FieldOfPrimeCharacteristic|) 56289) ((|FiniteFieldCyclicGroupExtension| . |Finite|) 56264) ((|FiniteFieldCyclicGroupExtension| . |FiniteFieldCategory|) 56239) ((|FiniteFieldCyclicGroupExtension| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |LeftLinearSet|) 56165) ((|FiniteFieldCyclicGroupExtension| . |LeftModule|) 56106) ((|FiniteFieldCyclicGroupExtension| . |LinearSet|) 56047) ((|FiniteFieldCyclicGroupExtension| . |Module|) 55988) ((|FiniteFieldCyclicGroupExtension| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |RetractableTo|) 55972) ((|FiniteFieldCyclicGroupExtension| . |RightLinearSet|) 55913) ((|FiniteFieldCyclicGroupExtension| . |RightModule|) 55854) ((|FiniteFieldCyclicGroupExtension| . |Ring|) T) ((|FiniteFieldCyclicGroupExtension| . |Rng|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtension| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtension| . |StepThrough|) 55829) ((|FiniteFieldCyclicGroupExtension| . |Type|) T) ((|FiniteFieldCyclicGroupExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |VectorSpace|) 55813) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 55797) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Algebra|) 55751) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BiModule|) 55678) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicNonZero|) 55609) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicZero|) 55572) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleFrom|) 55498) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleTo|) 55472) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialDomain|) 55441) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialRing|) 55416) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialSpace|) 55391) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |ExtensionField|) 55375) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Field|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 55306) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Finite|) 55281) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteFieldCategory|) 55256) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftLinearSet|) 55182) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftModule|) 55123) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LinearSet|) 55064) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Module|) 55005) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RetractableTo|) 54989) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightLinearSet|) 54930) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightModule|) 54871) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |StepThrough|) 54846) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Type|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |VectorSpace|) 54830) ((|FiniteFieldCyclicGroup| . |FiniteAlgebraicExtensionField|) 54799) ((|FiniteFieldCyclicGroup| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroup| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroup| . |Algebra|) 54753) ((|FiniteFieldCyclicGroup| . |BasicType|) T) ((|FiniteFieldCyclicGroup| . |BiModule|) 54663) ((|FiniteFieldCyclicGroup| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicNonZero|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicZero|) 54629) ((|FiniteFieldCyclicGroup| . |CoercibleFrom|) 54540) ((|FiniteFieldCyclicGroup| . |CoercibleTo|) 54514) ((|FiniteFieldCyclicGroup| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroup| . |DifferentialDomain|) 54501) ((|FiniteFieldCyclicGroup| . |DifferentialRing|) T) ((|FiniteFieldCyclicGroup| . |DifferentialSpace|) T) ((|FiniteFieldCyclicGroup| . |DivisionRing|) T) ((|FiniteFieldCyclicGroup| . |EntireRing|) T) ((|FiniteFieldCyclicGroup| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroup| . |ExtensionField|) 54470) ((|FiniteFieldCyclicGroup| . |Field|) T) ((|FiniteFieldCyclicGroup| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldCyclicGroup| . |Finite|) T) ((|FiniteFieldCyclicGroup| . |FiniteFieldCategory|) T) ((|FiniteFieldCyclicGroup| . |GcdDomain|) T) ((|FiniteFieldCyclicGroup| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroup| . |LeftLinearSet|) 54381) ((|FiniteFieldCyclicGroup| . |LeftModule|) 54307) ((|FiniteFieldCyclicGroup| . |LinearSet|) 54233) ((|FiniteFieldCyclicGroup| . |Module|) 54159) ((|FiniteFieldCyclicGroup| . |Monoid|) T) ((|FiniteFieldCyclicGroup| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroup| . |RetractableTo|) 54128) ((|FiniteFieldCyclicGroup| . |RightLinearSet|) 54054) ((|FiniteFieldCyclicGroup| . |RightModule|) 53980) ((|FiniteFieldCyclicGroup| . |Ring|) T) ((|FiniteFieldCyclicGroup| . |Rng|) T) ((|FiniteFieldCyclicGroup| . |SemiGroup|) T) ((|FiniteFieldCyclicGroup| . |SemiRing|) T) ((|FiniteFieldCyclicGroup| . |SetCategory|) T) ((|FiniteFieldCyclicGroup| . |StepThrough|) T) ((|FiniteFieldCyclicGroup| . |Type|) T) ((|FiniteFieldCyclicGroup| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroup| . |VectorSpace|) 53949) ((|FiniteField| . |FiniteAlgebraicExtensionField|) 53918) ((|FiniteField| . |AbelianGroup|) T) ((|FiniteField| . |AbelianMonoid|) T) ((|FiniteField| . |AbelianSemiGroup|) T) ((|FiniteField| . |Algebra|) 53872) ((|FiniteField| . |BasicType|) T) ((|FiniteField| . |BiModule|) 53782) ((|FiniteField| . |CancellationAbelianMonoid|) T) ((|FiniteField| . |CharacteristicNonZero|) T) ((|FiniteField| . |CharacteristicZero|) 53748) ((|FiniteField| . |CoercibleFrom|) 53659) ((|FiniteField| . |CoercibleTo|) 53633) ((|FiniteField| . |CommutativeRing|) T) ((|FiniteField| . |DifferentialDomain|) 53620) ((|FiniteField| . |DifferentialRing|) T) ((|FiniteField| . |DifferentialSpace|) T) ((|FiniteField| . |DivisionRing|) T) ((|FiniteField| . |EntireRing|) T) ((|FiniteField| . |EuclideanDomain|) T) ((|FiniteField| . |ExtensionField|) 53589) ((|FiniteField| . |Field|) T) ((|FiniteField| . |FieldOfPrimeCharacteristic|) T) ((|FiniteField| . |Finite|) T) ((|FiniteField| . |FiniteFieldCategory|) T) ((|FiniteField| . |GcdDomain|) T) ((|FiniteField| . |IntegralDomain|) T) ((|FiniteField| . |LeftLinearSet|) 53500) ((|FiniteField| . |LeftModule|) 53426) ((|FiniteField| . |LinearSet|) 53352) ((|FiniteField| . |Module|) 53278) ((|FiniteField| . |Monoid|) T) ((|FiniteField| . |PrincipalIdealDomain|) T) ((|FiniteField| . |RetractableTo|) 53247) ((|FiniteField| . |RightLinearSet|) 53173) ((|FiniteField| . |RightModule|) 53099) ((|FiniteField| . |Ring|) T) ((|FiniteField| . |Rng|) T) ((|FiniteField| . |SemiGroup|) T) ((|FiniteField| . |SemiRing|) T) ((|FiniteField| . |SetCategory|) T) ((|FiniteField| . |StepThrough|) T) ((|FiniteField| . |Type|) T) ((|FiniteField| . |UniqueFactorizationDomain|) T) ((|FiniteField| . |VectorSpace|) 53068) ((|FiniteDivisor| . |FiniteDivisorCategory|) 53037) ((|FiniteDivisor| . |AbelianGroup|) T) ((|FiniteDivisor| . |AbelianMonoid|) T) ((|FiniteDivisor| . |AbelianSemiGroup|) T) ((|FiniteDivisor| . |BasicType|) T) ((|FiniteDivisor| . |CancellationAbelianMonoid|) T) ((|FiniteDivisor| . |CoercibleTo|) 53011) ((|FiniteDivisor| . |LeftLinearSet|) 52988) ((|FiniteDivisor| . |SetCategory|) T) ((|FiniteDivisor| . |Type|) T) ((|FunctorData| . |SetCategory|) T) ((|FunctorData| . |BasicType|) T) ((|FunctorData| . |CoercibleTo|) 52962) ((|FunctorData| . |Type|) T) ((|FourierComponent| . |OrderedSet|) T) ((|FourierComponent| . |BasicType|) T) ((|FourierComponent| . |CoercibleTo|) 52936) ((|FourierComponent| . |OrderedType|) T) ((|FourierComponent| . |SetCategory|) T) ((|FourierComponent| . |Type|) T) ((|FlexibleArray| . |OneDimensionalArrayAggregate|) 52920) ((|FlexibleArray| . |Aggregate|) T) ((|FlexibleArray| . |BasicType|) 52892) ((|FlexibleArray| . |CoercibleTo|) 52828) ((|FlexibleArray| . |Collection|) 52812) ((|FlexibleArray| . |ConvertibleTo|) 52748) ((|FlexibleArray| . |Eltable|) 52682) ((|FlexibleArray| . |EltableAggregate|) 52654) ((|FlexibleArray| . |Evalable|) 52578) ((|FlexibleArray| . |FiniteAggregate|) 52562) ((|FlexibleArray| . |FiniteLinearAggregate|) 52546) ((|FlexibleArray| . |Functorial|) 52530) ((|FlexibleArray| . |HomogeneousAggregate|) 52514) ((|FlexibleArray| . |IndexedAggregate|) 52486) ((|FlexibleArray| . |InnerEvalable|) 52405) ((|FlexibleArray| . |LinearAggregate|) 52389) ((|FlexibleArray| . |OrderedSet|) 52360) ((|FlexibleArray| . |OrderedType|) 52331) ((|FlexibleArray| . |SetCategory|) 52301) ((|FlexibleArray| . |ShallowlyMutableAggregate|) 52285) ((|FlexibleArray| . |Type|) T) ((|FlexibleArray| . |ExtensibleLinearAggregate|) 52269) ((|FreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 52230) ((|FreeAbelianMonoid| . |AbelianMonoid|) T) ((|FreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|FreeAbelianMonoid| . |BasicType|) T) ((|FreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|FreeAbelianMonoid| . |CoercibleFrom|) 52214) ((|FreeAbelianMonoid| . |CoercibleTo|) 52188) ((|FreeAbelianMonoid| . |RetractableTo|) 52172) ((|FreeAbelianMonoid| . |SetCategory|) T) ((|FreeAbelianMonoid| . |Type|) T) ((|FreeAbelianGroup| . |AbelianGroup|) T) ((|FreeAbelianGroup| . |AbelianMonoid|) T) ((|FreeAbelianGroup| . |AbelianSemiGroup|) T) ((|FreeAbelianGroup| . |BasicType|) T) ((|FreeAbelianGroup| . |CancellationAbelianMonoid|) T) ((|FreeAbelianGroup| . |CoercibleTo|) 52146) ((|FreeAbelianGroup| . |LeftLinearSet|) 52123) ((|FreeAbelianGroup| . |SetCategory|) T) ((|FreeAbelianGroup| . |Type|) T) ((|FreeAbelianGroup| . |Module|) 52100) ((|FreeAbelianGroup| . |BiModule|) 52070) ((|FreeAbelianGroup| . |LeftModule|) 52047) ((|FreeAbelianGroup| . |LinearSet|) 52024) ((|FreeAbelianGroup| . |RightLinearSet|) 52001) ((|FreeAbelianGroup| . |RightModule|) 51978) ((|FreeAbelianGroup| . |FreeAbelianMonoidCategory|) 51950) ((|FreeAbelianGroup| . |CoercibleFrom|) 51934) ((|FreeAbelianGroup| . |RetractableTo|) 51918) ((|FreeAbelianGroup| . |OrderedSet|) 51889) ((|FreeAbelianGroup| . |OrderedType|) 51860) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 51844) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 51803) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Algebra|) 51647) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 51596) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 51545) ((|ExponentialOfUnivariatePuiseuxSeries| . |BasicType|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |BiModule|) 51401) ((|ExponentialOfUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 51361) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicZero|) 51324) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleFrom|) 51153) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleTo|) 51127) ((|ExponentialOfUnivariatePuiseuxSeries| . |CommutativeRing|) 51093) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialDomain|) 51022) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialRing|) 50957) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialSpace|) 50892) ((|ExponentialOfUnivariatePuiseuxSeries| . |DivisionRing|) 50868) ((|ExponentialOfUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 50817) ((|ExponentialOfUnivariatePuiseuxSeries| . |Eltable|) 50764) ((|ExponentialOfUnivariatePuiseuxSeries| . |EntireRing|) 50731) ((|ExponentialOfUnivariatePuiseuxSeries| . |EuclideanDomain|) 50707) ((|ExponentialOfUnivariatePuiseuxSeries| . |Field|) 50683) ((|ExponentialOfUnivariatePuiseuxSeries| . |Functorial|) 50667) ((|ExponentialOfUnivariatePuiseuxSeries| . |GcdDomain|) 50643) ((|ExponentialOfUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 50592) ((|ExponentialOfUnivariatePuiseuxSeries| . |IntegralDomain|) 50559) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftLinearSet|) 50441) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftModule|) 50338) ((|ExponentialOfUnivariatePuiseuxSeries| . |LinearSet|) 50182) ((|ExponentialOfUnivariatePuiseuxSeries| . |Module|) 50026) ((|ExponentialOfUnivariatePuiseuxSeries| . |Monoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 49886) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 49748) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 49610) ((|ExponentialOfUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 49543) ((|ExponentialOfUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 49519) ((|ExponentialOfUnivariatePuiseuxSeries| . |RadicalCategory|) 49468) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightLinearSet|) 49338) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightModule|) 49208) ((|ExponentialOfUnivariatePuiseuxSeries| . |Ring|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Rng|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiRing|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SetCategory|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 49157) ((|ExponentialOfUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 49106) ((|ExponentialOfUnivariatePuiseuxSeries| . |Type|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 49082) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 49041) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianSemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedSet|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedType|) T) ((|Expression| . |FunctionSpace|) 49025) ((|Expression| . |AbelianGroup|) 48907) ((|Expression| . |AbelianMonoid|) 48785) ((|Expression| . |AbelianSemiGroup|) 48663) ((|Expression| . |Algebra|) 48525) ((|Expression| . |BasicType|) T) ((|Expression| . |BiModule|) 48373) ((|Expression| . |CancellationAbelianMonoid|) 48255) ((|Expression| . |CharacteristicNonZero|) 48215) ((|Expression| . |CharacteristicZero|) 48178) ((|Expression| . |CoercibleFrom|) 47686) ((|Expression| . |CoercibleTo|) 47660) ((|Expression| . |CommutativeRing|) 47627) ((|Expression| . |ConvertibleTo|) 47405) ((|Expression| . |DivisionRing|) 47372) ((|Expression| . |EntireRing|) 47339) ((|Expression| . |EuclideanDomain|) 47306) ((|Expression| . |Evalable|) 47293) ((|Expression| . |ExpressionSpace|) T) ((|Expression| . |Field|) 47260) ((|Expression| . |FullyLinearlyExplicitRingOver|) 47228) ((|Expression| . |FullyPatternMatchable|) 47212) ((|Expression| . |FullyRetractableTo|) 47196) ((|Expression| . |GcdDomain|) 47163) ((|Expression| . |Group|) 47139) ((|Expression| . |InnerEvalable|) 47101) ((|Expression| . |IntegralDomain|) 47068) ((|Expression| . |LeftLinearSet|) 46825) ((|Expression| . |LeftModule|) 46617) ((|Expression| . |LinearSet|) 46479) ((|Expression| . |LinearlyExplicitRingOver|) 46351) ((|Expression| . |Module|) 46213) ((|Expression| . |Monoid|) 46185) ((|Expression| . |PartialDifferentialDomain|) 46145) ((|Expression| . |PartialDifferentialRing|) 46107) ((|Expression| . |PartialDifferentialSpace|) 46069) ((|Expression| . |PatternMatchable|) 45950) ((|Expression| . |Patternable|) 45934) ((|Expression| . |PrincipalIdealDomain|) 45901) ((|Expression| . |RetractableTo|) 45423) ((|Expression| . |RightLinearSet|) 45285) ((|Expression| . |RightModule|) 45147) ((|Expression| . |Ring|) 45124) ((|Expression| . |Rng|) 45101) ((|Expression| . |SemiGroup|) 45073) ((|Expression| . |SemiRing|) 45050) ((|Expression| . |SetCategory|) T) ((|Expression| . |Type|) T) ((|Expression| . |UniqueFactorizationDomain|) 45017) ((|Expression| . |AlgebraicallyClosedFunctionSpace|) 44975) ((|Expression| . |AlgebraicallyClosedField|) 44942) ((|Expression| . |RadicalCategory|) 44909) ((|Expression| . |TranscendentalFunctionCategory|) 44876) ((|Expression| . |ArcHyperbolicFunctionCategory|) 44843) ((|Expression| . |ArcTrigonometricFunctionCategory|) 44810) ((|Expression| . |ElementaryFunctionCategory|) 44777) ((|Expression| . |HyperbolicFunctionCategory|) 44744) ((|Expression| . |TrigonometricFunctionCategory|) 44711) ((|Expression| . |CombinatorialOpsCategory|) 44678) ((|Expression| . |CombinatorialFunctionCategory|) 44645) ((|Expression| . |LiouvillianFunctionCategory|) 44612) ((|Expression| . |PrimitiveFunctionCategory|) 44579) ((|Expression| . |SpecialFunctionCategory|) 44546) ((|ExponentialExpansion| . |QuotientFieldCategory|) 44461) ((|ExponentialExpansion| . |AbelianGroup|) T) ((|ExponentialExpansion| . |AbelianMonoid|) T) ((|ExponentialExpansion| . |AbelianSemiGroup|) T) ((|ExponentialExpansion| . |Algebra|) 44333) ((|ExponentialExpansion| . |BasicType|) T) ((|ExponentialExpansion| . |BiModule|) 44189) ((|ExponentialExpansion| . |CancellationAbelianMonoid|) T) ((|ExponentialExpansion| . |CharacteristicNonZero|) 44080) ((|ExponentialExpansion| . |CharacteristicZero|) 43974) ((|ExponentialExpansion| . |CoercibleFrom|) 43780) ((|ExponentialExpansion| . |CoercibleTo|) 43754) ((|ExponentialExpansion| . |CommutativeRing|) T) ((|ExponentialExpansion| . |ConvertibleTo|) NIL) ((|ExponentialExpansion| . |DifferentialDomain|) NIL) ((|ExponentialExpansion| . |DifferentialExtension|) 43669) ((|ExponentialExpansion| . |DifferentialRing|) NIL) ((|ExponentialExpansion| . |DifferentialSpace|) NIL) ((|ExponentialExpansion| . |DifferentialSpaceExtension|) 43584) ((|ExponentialExpansion| . |DivisionRing|) T) ((|ExponentialExpansion| . |Eltable|) 43468) ((|ExponentialExpansion| . |EntireRing|) T) ((|ExponentialExpansion| . |EuclideanDomain|) T) ((|ExponentialExpansion| . |Evalable|) 43357) ((|ExponentialExpansion| . |Field|) T) ((|ExponentialExpansion| . |FullyEvalableOver|) 43272) ((|ExponentialExpansion| . |FullyLinearlyExplicitRingOver|) 43187) ((|ExponentialExpansion| . |FullyPatternMatchable|) 43102) ((|ExponentialExpansion| . |Functorial|) 43017) ((|ExponentialExpansion| . |GcdDomain|) T) ((|ExponentialExpansion| . |InnerEvalable|) 42840) ((|ExponentialExpansion| . |IntegralDomain|) T) ((|ExponentialExpansion| . |LeftLinearSet|) 42697) ((|ExponentialExpansion| . |LeftModule|) 42569) ((|ExponentialExpansion| . |LinearSet|) 42441) ((|ExponentialExpansion| . |LinearlyExplicitRingOver|) 42356) ((|ExponentialExpansion| . |Module|) 42228) ((|ExponentialExpansion| . |Monoid|) T) ((|ExponentialExpansion| . |OrderedAbelianGroup|) NIL) ((|ExponentialExpansion| . |OrderedAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedAbelianSemiGroup|) NIL) ((|ExponentialExpansion| . |OrderedCancellationAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedIntegralDomain|) NIL) ((|ExponentialExpansion| . |OrderedRing|) NIL) ((|ExponentialExpansion| . |OrderedSet|) NIL) ((|ExponentialExpansion| . |OrderedType|) NIL) ((|ExponentialExpansion| . |PartialDifferentialDomain|) NIL) ((|ExponentialExpansion| . |PartialDifferentialRing|) NIL) ((|ExponentialExpansion| . |PartialDifferentialSpace|) NIL) ((|ExponentialExpansion| . |PatternMatchable|) NIL) ((|ExponentialExpansion| . |Patternable|) 42143) ((|ExponentialExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|ExponentialExpansion| . |PrincipalIdealDomain|) T) ((|ExponentialExpansion| . |RealConstant|) NIL) ((|ExponentialExpansion| . |RetractableTo|) 42007) ((|ExponentialExpansion| . |RightLinearSet|) 41879) ((|ExponentialExpansion| . |RightModule|) 41751) ((|ExponentialExpansion| . |Ring|) T) ((|ExponentialExpansion| . |Rng|) T) ((|ExponentialExpansion| . |SemiGroup|) T) ((|ExponentialExpansion| . |SemiRing|) T) ((|ExponentialExpansion| . |SetCategory|) T) ((|ExponentialExpansion| . |StepThrough|) NIL) ((|ExponentialExpansion| . |Type|) T) ((|ExponentialExpansion| . |UniqueFactorizationDomain|) T) ((|ExitAst| . |SpadSyntaxCategory|) T) ((|ExitAst| . |AbstractSyntaxCategory|) T) ((|ExitAst| . |BasicType|) T) ((|ExitAst| . |CoercibleFrom|) 41729) ((|ExitAst| . |CoercibleTo|) 41684) ((|ExitAst| . |HomotopicTo|) 41662) ((|ExitAst| . |SetCategory|) T) ((|ExitAst| . |Type|) T) ((|Exit| . |SetCategory|) T) ((|Exit| . |BasicType|) T) ((|Exit| . |CoercibleTo|) 41636) ((|Exit| . |Type|) T) ((|EqTable| . |TableAggregate|) 41615) ((|EqTable| . |Aggregate|) T) ((|EqTable| . |BagAggregate|) 41557) ((|EqTable| . |BasicType|) T) ((|EqTable| . |CoercibleTo|) 41531) ((|EqTable| . |Collection|) 41473) ((|EqTable| . |Dictionary|) 41415) ((|EqTable| . |DictionaryOperations|) 41357) ((|EqTable| . |Eltable|) 41336) ((|EqTable| . |EltableAggregate|) 41315) ((|EqTable| . |Evalable|) 41075) ((|EqTable| . |FiniteAggregate|) 41017) ((|EqTable| . |Functorial|) 40946) ((|EqTable| . |HomogeneousAggregate|) 40875) ((|EqTable| . |IndexedAggregate|) 40854) ((|EqTable| . |InnerEvalable|) 40602) ((|EqTable| . |KeyedDictionary|) 40581) ((|EqTable| . |SetCategory|) T) ((|EqTable| . |ShallowlyMutableAggregate|) 40510) ((|EqTable| . |Type|) T) ((|Equation| . |Functorial|) 40494) ((|Equation| . |Type|) T) ((|Equation| . |InnerEvalable|) 40433) ((|Equation| . |SetCategory|) 40403) ((|Equation| . |BasicType|) 40373) ((|Equation| . |CoercibleTo|) 40290) ((|Equation| . |AbelianSemiGroup|) 40255) ((|Equation| . |AbelianGroup|) 40224) ((|Equation| . |AbelianMonoid|) 40193) ((|Equation| . |CancellationAbelianMonoid|) 40162) ((|Equation| . |LeftLinearSet|) 40062) ((|Equation| . |SemiGroup|) 40034) ((|Equation| . |Monoid|) 40009) ((|Equation| . |Group|) 39985) ((|Equation| . |Ring|) 39962) ((|Equation| . |CoercibleFrom|) 39923) ((|Equation| . |LeftModule|) 39867) ((|Equation| . |Rng|) 39844) ((|Equation| . |SemiRing|) 39821) ((|Equation| . |BiModule|) 39784) ((|Equation| . |RightLinearSet|) 39752) ((|Equation| . |RightModule|) 39720) ((|Equation| . |Module|) 39677) ((|Equation| . |LinearSet|) 39634) ((|Equation| . |PartialDifferentialRing|) 39568) ((|Equation| . |PartialDifferentialDomain|) 39502) ((|Equation| . |PartialDifferentialSpace|) 39438) ((|Equation| . |VectorSpace|) 39405) ((|Environment| . |CoercibleTo|) 39379) ((|EuclideanModularRing| . |EuclideanDomain|) T) ((|EuclideanModularRing| . |AbelianGroup|) T) ((|EuclideanModularRing| . |AbelianMonoid|) T) ((|EuclideanModularRing| . |AbelianSemiGroup|) T) ((|EuclideanModularRing| . |Algebra|) 39366) ((|EuclideanModularRing| . |BasicType|) T) ((|EuclideanModularRing| . |BiModule|) 39351) ((|EuclideanModularRing| . |CancellationAbelianMonoid|) T) ((|EuclideanModularRing| . |CoercibleFrom|) 39318) ((|EuclideanModularRing| . |CoercibleTo|) 39279) ((|EuclideanModularRing| . |CommutativeRing|) T) ((|EuclideanModularRing| . |EntireRing|) T) ((|EuclideanModularRing| . |GcdDomain|) T) ((|EuclideanModularRing| . |IntegralDomain|) T) ((|EuclideanModularRing| . |LeftLinearSet|) 39246) ((|EuclideanModularRing| . |LeftModule|) 39233) ((|EuclideanModularRing| . |LinearSet|) 39220) ((|EuclideanModularRing| . |Module|) 39207) ((|EuclideanModularRing| . |Monoid|) T) ((|EuclideanModularRing| . |PrincipalIdealDomain|) T) ((|EuclideanModularRing| . |RightLinearSet|) 39194) ((|EuclideanModularRing| . |RightModule|) 39181) ((|EuclideanModularRing| . |Ring|) T) ((|EuclideanModularRing| . |Rng|) T) ((|EuclideanModularRing| . |SemiGroup|) T) ((|EuclideanModularRing| . |SemiRing|) T) ((|EuclideanModularRing| . |SetCategory|) T) ((|EuclideanModularRing| . |Type|) T) ((|EuclideanModularRing| . |Eltable|) 39160) ((|Elaboration| . |CoercibleTo|) 39134) ((|ElaboratedExpression| . |CoercibleTo|) 39108) ((|ExtAlgBasis| . |OrderedSet|) T) ((|ExtAlgBasis| . |BasicType|) T) ((|ExtAlgBasis| . |CoercibleTo|) 39082) ((|ExtAlgBasis| . |OrderedType|) T) ((|ExtAlgBasis| . |SetCategory|) T) ((|ExtAlgBasis| . |Type|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialPolynomialCategory|) 39030) ((|DifferentialSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoidRing|) 38988) ((|DifferentialSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |Algebra|) 38832) ((|DifferentialSparseMultivariatePolynomial| . |BasicType|) T) ((|DifferentialSparseMultivariatePolynomial| . |BiModule|) 38688) ((|DifferentialSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicNonZero|) 38648) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicZero|) 38611) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleFrom|) 38329) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleTo|) 38303) ((|DifferentialSparseMultivariatePolynomial| . |CommutativeRing|) 38269) ((|DifferentialSparseMultivariatePolynomial| . |ConvertibleTo|) 37876) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialDomain|) 37834) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialExtension|) 37818) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialRing|) 37783) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpace|) 37747) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpaceExtension|) 37731) ((|DifferentialSparseMultivariatePolynomial| . |EntireRing|) 37698) ((|DifferentialSparseMultivariatePolynomial| . |Evalable|) 37685) ((|DifferentialSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 37643) ((|DifferentialSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 37627) ((|DifferentialSparseMultivariatePolynomial| . |FullyRetractableTo|) 37611) ((|DifferentialSparseMultivariatePolynomial| . |Functorial|) 37595) ((|DifferentialSparseMultivariatePolynomial| . |GcdDomain|) 37567) ((|DifferentialSparseMultivariatePolynomial| . |InnerEvalable|) 37430) ((|DifferentialSparseMultivariatePolynomial| . |IntegralDomain|) 37397) ((|DifferentialSparseMultivariatePolynomial| . |LeftLinearSet|) 37279) ((|DifferentialSparseMultivariatePolynomial| . |LeftModule|) 37113) ((|DifferentialSparseMultivariatePolynomial| . |LinearSet|) 36957) ((|DifferentialSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 36873) ((|DifferentialSparseMultivariatePolynomial| . |Module|) 36717) ((|DifferentialSparseMultivariatePolynomial| . |Monoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 36574) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialRing|) 36493) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 36354) ((|DifferentialSparseMultivariatePolynomial| . |PatternMatchable|) 36133) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialCategory|) 36086) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 36036) ((|DifferentialSparseMultivariatePolynomial| . |RetractableTo|) 35808) ((|DifferentialSparseMultivariatePolynomial| . |RightLinearSet|) 35678) ((|DifferentialSparseMultivariatePolynomial| . |RightModule|) 35548) ((|DifferentialSparseMultivariatePolynomial| . |Ring|) T) ((|DifferentialSparseMultivariatePolynomial| . |Rng|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiRing|) T) ((|DifferentialSparseMultivariatePolynomial| . |SetCategory|) T) ((|DifferentialSparseMultivariatePolynomial| . |Type|) T) ((|DifferentialSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 35498) ((|DrawOption| . |SetCategory|) T) ((|DrawOption| . |BasicType|) T) ((|DrawOption| . |CoercibleTo|) 35472) ((|DrawOption| . |Type|) T) ((|DirectProductModule| . |DirectProductCategory|) 35451) ((|DirectProductModule| . |AbelianGroup|) T) ((|DirectProductModule| . |AbelianMonoid|) T) ((|DirectProductModule| . |AbelianSemiGroup|) T) ((|DirectProductModule| . |Aggregate|) T) ((|DirectProductModule| . |BasicType|) T) ((|DirectProductModule| . |BiModule|) 35414) ((|DirectProductModule| . |CancellationAbelianMonoid|) T) ((|DirectProductModule| . |CoercibleFrom|) 35143) ((|DirectProductModule| . |CoercibleTo|) 35093) ((|DirectProductModule| . |DifferentialDomain|) 34956) ((|DirectProductModule| . |DifferentialExtension|) 34924) ((|DirectProductModule| . |DifferentialRing|) 34861) ((|DirectProductModule| . |DifferentialSpace|) 34730) ((|DirectProductModule| . |DifferentialSpaceExtension|) 34698) ((|DirectProductModule| . |Eltable|) 34670) ((|DirectProductModule| . |EltableAggregate|) 34642) ((|DirectProductModule| . |Evalable|) 34566) ((|DirectProductModule| . |Finite|) 34541) ((|DirectProductModule| . |FiniteAggregate|) 34525) ((|DirectProductModule| . |FullyLinearlyExplicitRingOver|) 34493) ((|DirectProductModule| . |FullyRetractableTo|) 34454) ((|DirectProductModule| . |Functorial|) 34438) ((|DirectProductModule| . |HomogeneousAggregate|) 34422) ((|DirectProductModule| . |IndexedAggregate|) 34394) ((|DirectProductModule| . |InnerEvalable|) 34313) ((|DirectProductModule| . |LeftLinearSet|) 34220) ((|DirectProductModule| . |LeftModule|) 34053) ((|DirectProductModule| . |LinearSet|) 34019) ((|DirectProductModule| . |LinearlyExplicitRingOver|) 33891) ((|DirectProductModule| . |Module|) 33848) ((|DirectProductModule| . |Monoid|) 33825) ((|DirectProductModule| . |OrderedAbelianMonoid|) 33783) ((|DirectProductModule| . |OrderedAbelianMonoidSup|) 33741) ((|DirectProductModule| . |OrderedAbelianSemiGroup|) 33699) ((|DirectProductModule| . |OrderedCancellationAbelianMonoid|) 33657) ((|DirectProductModule| . |OrderedSet|) 33628) ((|DirectProductModule| . |OrderedType|) 33599) ((|DirectProductModule| . |PartialDifferentialDomain|) 33415) ((|DirectProductModule| . |PartialDifferentialRing|) 33319) ((|DirectProductModule| . |PartialDifferentialSpace|) 33137) ((|DirectProductModule| . |RetractableTo|) 32893) ((|DirectProductModule| . |RightLinearSet|) 32859) ((|DirectProductModule| . |RightModule|) 32827) ((|DirectProductModule| . |Ring|) 32804) ((|DirectProductModule| . |Rng|) 32781) ((|DirectProductModule| . |SemiGroup|) 32758) ((|DirectProductModule| . |SemiRing|) 32735) ((|DirectProductModule| . |SetCategory|) T) ((|DirectProductModule| . |Type|) T) ((|DirectProductModule| . |VectorSpace|) 32702) ((|DirectProductMatrixModule| . |DirectProductCategory|) 32681) ((|DirectProductMatrixModule| . |AbelianGroup|) T) ((|DirectProductMatrixModule| . |AbelianMonoid|) T) ((|DirectProductMatrixModule| . |AbelianSemiGroup|) T) ((|DirectProductMatrixModule| . |Aggregate|) T) ((|DirectProductMatrixModule| . |BasicType|) T) ((|DirectProductMatrixModule| . |BiModule|) 32644) ((|DirectProductMatrixModule| . |CancellationAbelianMonoid|) T) ((|DirectProductMatrixModule| . |CoercibleFrom|) 32373) ((|DirectProductMatrixModule| . |CoercibleTo|) 32323) ((|DirectProductMatrixModule| . |DifferentialDomain|) 32186) ((|DirectProductMatrixModule| . |DifferentialExtension|) 32154) ((|DirectProductMatrixModule| . |DifferentialRing|) 32091) ((|DirectProductMatrixModule| . |DifferentialSpace|) 31960) ((|DirectProductMatrixModule| . |DifferentialSpaceExtension|) 31928) ((|DirectProductMatrixModule| . |Eltable|) 31900) ((|DirectProductMatrixModule| . |EltableAggregate|) 31872) ((|DirectProductMatrixModule| . |Evalable|) 31796) ((|DirectProductMatrixModule| . |Finite|) 31771) ((|DirectProductMatrixModule| . |FiniteAggregate|) 31755) ((|DirectProductMatrixModule| . |FullyLinearlyExplicitRingOver|) 31723) ((|DirectProductMatrixModule| . |FullyRetractableTo|) 31684) ((|DirectProductMatrixModule| . |Functorial|) 31668) ((|DirectProductMatrixModule| . |HomogeneousAggregate|) 31652) ((|DirectProductMatrixModule| . |IndexedAggregate|) 31624) ((|DirectProductMatrixModule| . |InnerEvalable|) 31543) ((|DirectProductMatrixModule| . |LeftLinearSet|) 31437) ((|DirectProductMatrixModule| . |LeftModule|) 31257) ((|DirectProductMatrixModule| . |LinearSet|) 31223) ((|DirectProductMatrixModule| . |LinearlyExplicitRingOver|) 31095) ((|DirectProductMatrixModule| . |Module|) 31052) ((|DirectProductMatrixModule| . |Monoid|) 31029) ((|DirectProductMatrixModule| . |OrderedAbelianMonoid|) 30987) ((|DirectProductMatrixModule| . |OrderedAbelianMonoidSup|) 30945) ((|DirectProductMatrixModule| . |OrderedAbelianSemiGroup|) 30903) ((|DirectProductMatrixModule| . |OrderedCancellationAbelianMonoid|) 30861) ((|DirectProductMatrixModule| . |OrderedSet|) 30832) ((|DirectProductMatrixModule| . |OrderedType|) 30803) ((|DirectProductMatrixModule| . |PartialDifferentialDomain|) 30619) ((|DirectProductMatrixModule| . |PartialDifferentialRing|) 30523) ((|DirectProductMatrixModule| . |PartialDifferentialSpace|) 30341) ((|DirectProductMatrixModule| . |RetractableTo|) 30097) ((|DirectProductMatrixModule| . |RightLinearSet|) 30063) ((|DirectProductMatrixModule| . |RightModule|) 30031) ((|DirectProductMatrixModule| . |Ring|) 30008) ((|DirectProductMatrixModule| . |Rng|) 29985) ((|DirectProductMatrixModule| . |SemiGroup|) 29962) ((|DirectProductMatrixModule| . |SemiRing|) 29939) ((|DirectProductMatrixModule| . |SetCategory|) T) ((|DirectProductMatrixModule| . |Type|) T) ((|DirectProductMatrixModule| . |VectorSpace|) 29906) ((|DomainTemplate| . |SetCategory|) T) ((|DomainTemplate| . |BasicType|) T) ((|DomainTemplate| . |CoercibleTo|) 29880) ((|DomainTemplate| . |Type|) T) ((|DomainTemplate| . |Eltable|) 29835) ((|DomainConstructor| . |ConstructorCategory|) T) ((|DomainConstructor| . |BasicType|) T) ((|DomainConstructor| . |CoercibleTo|) 29785) ((|DomainConstructor| . |OperatorCategory|) 29759) ((|DomainConstructor| . |SetCategory|) T) ((|DomainConstructor| . |Type|) T) ((|Domain| . |SetCategory|) T) ((|Domain| . |BasicType|) T) ((|Domain| . |CoercibleTo|) 29733) ((|Domain| . |Type|) T) ((|DistributedMultivariatePolynomial| . |PolynomialCategory|) 29636) ((|DistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|DistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |AbelianMonoidRing|) 29568) ((|DistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DistributedMultivariatePolynomial| . |Algebra|) 29412) ((|DistributedMultivariatePolynomial| . |BasicType|) T) ((|DistributedMultivariatePolynomial| . |BiModule|) 29268) ((|DistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |CharacteristicNonZero|) 29228) ((|DistributedMultivariatePolynomial| . |CharacteristicZero|) 29191) ((|DistributedMultivariatePolynomial| . |CoercibleFrom|) 28949) ((|DistributedMultivariatePolynomial| . |CoercibleTo|) 28923) ((|DistributedMultivariatePolynomial| . |CommutativeRing|) 28889) ((|DistributedMultivariatePolynomial| . |ConvertibleTo|) 28667) ((|DistributedMultivariatePolynomial| . |EntireRing|) 28634) ((|DistributedMultivariatePolynomial| . |Evalable|) 28621) ((|DistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 28553) ((|DistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 28537) ((|DistributedMultivariatePolynomial| . |FullyRetractableTo|) 28521) ((|DistributedMultivariatePolynomial| . |Functorial|) 28505) ((|DistributedMultivariatePolynomial| . |GcdDomain|) 28477) ((|DistributedMultivariatePolynomial| . |InnerEvalable|) 28403) ((|DistributedMultivariatePolynomial| . |IntegralDomain|) 28370) ((|DistributedMultivariatePolynomial| . |LeftLinearSet|) 28252) ((|DistributedMultivariatePolynomial| . |LeftModule|) 28086) ((|DistributedMultivariatePolynomial| . |LinearSet|) 27930) ((|DistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 27846) ((|DistributedMultivariatePolynomial| . |Module|) 27690) ((|DistributedMultivariatePolynomial| . |Monoid|) T) ((|DistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 27648) ((|DistributedMultivariatePolynomial| . |PartialDifferentialRing|) 27608) ((|DistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 27568) ((|DistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|DistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 27518) ((|DistributedMultivariatePolynomial| . |RetractableTo|) 27330) ((|DistributedMultivariatePolynomial| . |RightLinearSet|) 27200) ((|DistributedMultivariatePolynomial| . |RightModule|) 27070) ((|DistributedMultivariatePolynomial| . |Ring|) T) ((|DistributedMultivariatePolynomial| . |Rng|) T) ((|DistributedMultivariatePolynomial| . |SemiGroup|) T) ((|DistributedMultivariatePolynomial| . |SemiRing|) T) ((|DistributedMultivariatePolynomial| . |SetCategory|) T) ((|DistributedMultivariatePolynomial| . |Type|) T) ((|DistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 27020) ((|DataList| . |ListAggregate|) 27004) ((|DataList| . |Aggregate|) T) ((|DataList| . |BasicType|) 26976) ((|DataList| . |CoercibleTo|) 26890) ((|DataList| . |Collection|) 26874) ((|DataList| . |ConvertibleTo|) 26810) ((|DataList| . |Eltable|) 26744) ((|DataList| . |EltableAggregate|) 26716) ((|DataList| . |Evalable|) 26640) ((|DataList| . |ExtensibleLinearAggregate|) 26624) ((|DataList| . |FiniteAggregate|) 26608) ((|DataList| . |FiniteLinearAggregate|) 26592) ((|DataList| . |Functorial|) 26576) ((|DataList| . |HomogeneousAggregate|) 26560) ((|DataList| . |IndexedAggregate|) 26532) ((|DataList| . |InnerEvalable|) 26451) ((|DataList| . |LinearAggregate|) 26435) ((|DataList| . |OrderedSet|) 26406) ((|DataList| . |OrderedType|) 26377) ((|DataList| . |RecursiveAggregate|) 26361) ((|DataList| . |SetCategory|) 26331) ((|DataList| . |ShallowlyMutableAggregate|) 26315) ((|DataList| . |StreamAggregate|) 26299) ((|DataList| . |Type|) T) ((|DataList| . |UnaryRecursiveAggregate|) 26283) ((|DataList| . |HomotopicTo|) 26258) ((|DataList| . |CoercibleFrom|) 26233) ((|DirectProduct| . |DirectProductCategory|) 26212) ((|DirectProduct| . |AbelianGroup|) 26181) ((|DirectProduct| . |AbelianMonoid|) 26149) ((|DirectProduct| . |AbelianSemiGroup|) 26114) ((|DirectProduct| . |Aggregate|) T) ((|DirectProduct| . |BasicType|) 25857) ((|DirectProduct| . |BiModule|) 25820) ((|DirectProduct| . |CancellationAbelianMonoid|) 25776) ((|DirectProduct| . |CoercibleFrom|) 25505) ((|DirectProduct| . |CoercibleTo|) 25188) ((|DirectProduct| . |DifferentialDomain|) 25051) ((|DirectProduct| . |DifferentialExtension|) 25019) ((|DirectProduct| . |DifferentialRing|) 24956) ((|DirectProduct| . |DifferentialSpace|) 24825) ((|DirectProduct| . |DifferentialSpaceExtension|) 24793) ((|DirectProduct| . |Eltable|) 24765) ((|DirectProduct| . |EltableAggregate|) 24737) ((|DirectProduct| . |Evalable|) 24661) ((|DirectProduct| . |Finite|) 24636) ((|DirectProduct| . |FiniteAggregate|) 24620) ((|DirectProduct| . |FullyLinearlyExplicitRingOver|) 24588) ((|DirectProduct| . |FullyRetractableTo|) 24549) ((|DirectProduct| . |Functorial|) 24533) ((|DirectProduct| . |HomogeneousAggregate|) 24517) ((|DirectProduct| . |IndexedAggregate|) 24489) ((|DirectProduct| . |InnerEvalable|) 24408) ((|DirectProduct| . |LeftLinearSet|) 24304) ((|DirectProduct| . |LeftModule|) 24150) ((|DirectProduct| . |LinearSet|) 24116) ((|DirectProduct| . |LinearlyExplicitRingOver|) 23988) ((|DirectProduct| . |Module|) 23945) ((|DirectProduct| . |Monoid|) 23922) ((|DirectProduct| . |OrderedAbelianMonoid|) 23880) ((|DirectProduct| . |OrderedAbelianMonoidSup|) 23838) ((|DirectProduct| . |OrderedAbelianSemiGroup|) 23796) ((|DirectProduct| . |OrderedCancellationAbelianMonoid|) 23754) ((|DirectProduct| . |OrderedSet|) 23725) ((|DirectProduct| . |OrderedType|) 23696) ((|DirectProduct| . |PartialDifferentialDomain|) 23512) ((|DirectProduct| . |PartialDifferentialRing|) 23416) ((|DirectProduct| . |PartialDifferentialSpace|) 23234) ((|DirectProduct| . |RetractableTo|) 22990) ((|DirectProduct| . |RightLinearSet|) 22956) ((|DirectProduct| . |RightModule|) 22924) ((|DirectProduct| . |Ring|) 22901) ((|DirectProduct| . |Rng|) 22878) ((|DirectProduct| . |SemiGroup|) 22855) ((|DirectProduct| . |SemiRing|) 22832) ((|DirectProduct| . |SetCategory|) 22573) ((|DirectProduct| . |Type|) T) ((|DirectProduct| . |VectorSpace|) 22540) ((|DenavitHartenbergMatrix| . |MatrixCategory|) 22501) ((|DenavitHartenbergMatrix| . |Aggregate|) T) ((|DenavitHartenbergMatrix| . |BasicType|) 22473) ((|DenavitHartenbergMatrix| . |CoercibleTo|) 22409) ((|DenavitHartenbergMatrix| . |Evalable|) 22333) ((|DenavitHartenbergMatrix| . |FiniteAggregate|) 22317) ((|DenavitHartenbergMatrix| . |Functorial|) 22301) ((|DenavitHartenbergMatrix| . |HomogeneousAggregate|) 22285) ((|DenavitHartenbergMatrix| . |InnerEvalable|) 22204) ((|DenavitHartenbergMatrix| . |SetCategory|) 22174) ((|DenavitHartenbergMatrix| . |ShallowlyMutableAggregate|) 22158) ((|DenavitHartenbergMatrix| . |TwoDimensionalArrayCategory|) 22119) ((|DenavitHartenbergMatrix| . |Type|) T) ((|DoubleFloat| . |FloatingPointSystem|) T) ((|DoubleFloat| . |AbelianGroup|) T) ((|DoubleFloat| . |AbelianMonoid|) T) ((|DoubleFloat| . |AbelianSemiGroup|) T) ((|DoubleFloat| . |Algebra|) 22073) ((|DoubleFloat| . |BasicType|) T) ((|DoubleFloat| . |BiModule|) 22018) ((|DoubleFloat| . |CancellationAbelianMonoid|) T) ((|DoubleFloat| . |CharacteristicZero|) T) ((|DoubleFloat| . |CoercibleFrom|) 21957) ((|DoubleFloat| . |CoercibleTo|) 21931) ((|DoubleFloat| . |CommutativeRing|) T) ((|DoubleFloat| . |ConvertibleTo|) 21837) ((|DoubleFloat| . |DivisionRing|) T) ((|DoubleFloat| . |EntireRing|) T) ((|DoubleFloat| . |EuclideanDomain|) T) ((|DoubleFloat| . |Field|) T) ((|DoubleFloat| . |GcdDomain|) T) ((|DoubleFloat| . |IntegralDomain|) T) ((|DoubleFloat| . |LeftLinearSet|) 21776) ((|DoubleFloat| . |LeftModule|) 21730) ((|DoubleFloat| . |LinearSet|) 21684) ((|DoubleFloat| . |Module|) 21638) ((|DoubleFloat| . |Monoid|) T) ((|DoubleFloat| . |OrderedAbelianGroup|) T) ((|DoubleFloat| . |OrderedAbelianMonoid|) T) ((|DoubleFloat| . |OrderedAbelianSemiGroup|) T) ((|DoubleFloat| . |OrderedCancellationAbelianMonoid|) T) ((|DoubleFloat| . |OrderedRing|) T) ((|DoubleFloat| . |OrderedSet|) T) ((|DoubleFloat| . |OrderedType|) T) ((|DoubleFloat| . |PatternMatchable|) 21617) ((|DoubleFloat| . |PrincipalIdealDomain|) T) ((|DoubleFloat| . |RadicalCategory|) T) ((|DoubleFloat| . |RealConstant|) T) ((|DoubleFloat| . |RealNumberSystem|) T) ((|DoubleFloat| . |RetractableTo|) 21566) ((|DoubleFloat| . |RightLinearSet|) 21520) ((|DoubleFloat| . |RightModule|) 21474) ((|DoubleFloat| . |Ring|) T) ((|DoubleFloat| . |Rng|) T) ((|DoubleFloat| . |SemiGroup|) T) ((|DoubleFloat| . |SemiRing|) T) ((|DoubleFloat| . |SetCategory|) T) ((|DoubleFloat| . |Type|) T) ((|DoubleFloat| . |UniqueFactorizationDomain|) T) ((|DoubleFloat| . |DifferentialRing|) T) ((|DoubleFloat| . |DifferentialDomain|) 21461) ((|DoubleFloat| . |DifferentialSpace|) T) ((|DoubleFloat| . |TranscendentalFunctionCategory|) T) ((|DoubleFloat| . |ArcHyperbolicFunctionCategory|) T) ((|DoubleFloat| . |ArcTrigonometricFunctionCategory|) T) ((|DoubleFloat| . |ElementaryFunctionCategory|) T) ((|DoubleFloat| . |HyperbolicFunctionCategory|) T) ((|DoubleFloat| . |TrigonometricFunctionCategory|) T) ((|DeRhamComplex| . |LeftAlgebra|) 21430) ((|DeRhamComplex| . |AbelianGroup|) T) ((|DeRhamComplex| . |AbelianMonoid|) T) ((|DeRhamComplex| . |AbelianSemiGroup|) T) ((|DeRhamComplex| . |BasicType|) T) ((|DeRhamComplex| . |CancellationAbelianMonoid|) T) ((|DeRhamComplex| . |CoercibleFrom|) 21379) ((|DeRhamComplex| . |CoercibleTo|) 21353) ((|DeRhamComplex| . |LeftLinearSet|) 21292) ((|DeRhamComplex| . |LeftModule|) 21251) ((|DeRhamComplex| . |Monoid|) T) ((|DeRhamComplex| . |Ring|) T) ((|DeRhamComplex| . |Rng|) T) ((|DeRhamComplex| . |SemiGroup|) T) ((|DeRhamComplex| . |SemiRing|) T) ((|DeRhamComplex| . |SetCategory|) T) ((|DeRhamComplex| . |Type|) T) ((|DeRhamComplex| . |RetractableTo|) 21220) ((|DeRhamComplex| . |Functorial|) 21189) ((|Dequeue| . |DequeueAggregate|) 21173) ((|Dequeue| . |Aggregate|) T) ((|Dequeue| . |BagAggregate|) 21157) ((|Dequeue| . |BasicType|) 21129) ((|Dequeue| . |CoercibleTo|) 21065) ((|Dequeue| . |Evalable|) 20989) ((|Dequeue| . |FiniteAggregate|) 20973) ((|Dequeue| . |Functorial|) 20957) ((|Dequeue| . |HomogeneousAggregate|) 20941) ((|Dequeue| . |InnerEvalable|) 20860) ((|Dequeue| . |QueueAggregate|) 20844) ((|Dequeue| . |SetCategory|) 20814) ((|Dequeue| . |ShallowlyMutableAggregate|) 20798) ((|Dequeue| . |StackAggregate|) 20782) ((|Dequeue| . |Type|) T) ((|DefinitionAst| . |SpadSyntaxCategory|) T) ((|DefinitionAst| . |AbstractSyntaxCategory|) T) ((|DefinitionAst| . |BasicType|) T) ((|DefinitionAst| . |CoercibleFrom|) 20760) ((|DefinitionAst| . |CoercibleTo|) 20715) ((|DefinitionAst| . |HomotopicTo|) 20693) ((|DefinitionAst| . |SetCategory|) T) ((|DefinitionAst| . |Type|) T) ((|DecimalExpansion| . |QuotientFieldCategory|) 20670) ((|DecimalExpansion| . |AbelianGroup|) T) ((|DecimalExpansion| . |AbelianMonoid|) T) ((|DecimalExpansion| . |AbelianSemiGroup|) T) ((|DecimalExpansion| . |Algebra|) 20604) ((|DecimalExpansion| . |BasicType|) T) ((|DecimalExpansion| . |BiModule|) 20522) ((|DecimalExpansion| . |CancellationAbelianMonoid|) T) ((|DecimalExpansion| . |CharacteristicNonZero|) NIL) ((|DecimalExpansion| . |CharacteristicZero|) T) ((|DecimalExpansion| . |CoercibleFrom|) 20461) ((|DecimalExpansion| . |CoercibleTo|) 20372) ((|DecimalExpansion| . |CommutativeRing|) T) ((|DecimalExpansion| . |ConvertibleTo|) 20273) ((|DecimalExpansion| . |DifferentialDomain|) 20260) ((|DecimalExpansion| . |DifferentialExtension|) 20237) ((|DecimalExpansion| . |DifferentialRing|) T) ((|DecimalExpansion| . |DifferentialSpace|) T) ((|DecimalExpansion| . |DifferentialSpaceExtension|) 20214) ((|DecimalExpansion| . |DivisionRing|) T) ((|DecimalExpansion| . |Eltable|) NIL) ((|DecimalExpansion| . |EntireRing|) T) ((|DecimalExpansion| . |EuclideanDomain|) T) ((|DecimalExpansion| . |Evalable|) NIL) ((|DecimalExpansion| . |Field|) T) ((|DecimalExpansion| . |FullyEvalableOver|) 20191) ((|DecimalExpansion| . |FullyLinearlyExplicitRingOver|) 20168) ((|DecimalExpansion| . |FullyPatternMatchable|) 20145) ((|DecimalExpansion| . |Functorial|) 20122) ((|DecimalExpansion| . |GcdDomain|) T) ((|DecimalExpansion| . |InnerEvalable|) NIL) ((|DecimalExpansion| . |IntegralDomain|) T) ((|DecimalExpansion| . |LeftLinearSet|) 20061) ((|DecimalExpansion| . |LeftModule|) 20000) ((|DecimalExpansion| . |LinearSet|) 19934) ((|DecimalExpansion| . |LinearlyExplicitRingOver|) 19911) ((|DecimalExpansion| . |Module|) 19845) ((|DecimalExpansion| . |Monoid|) T) ((|DecimalExpansion| . |OrderedAbelianGroup|) T) ((|DecimalExpansion| . |OrderedAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|DecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedIntegralDomain|) T) ((|DecimalExpansion| . |OrderedRing|) T) ((|DecimalExpansion| . |OrderedSet|) T) ((|DecimalExpansion| . |OrderedType|) T) ((|DecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|DecimalExpansion| . |PartialDifferentialRing|) NIL) ((|DecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|DecimalExpansion| . |PatternMatchable|) 19822) ((|DecimalExpansion| . |Patternable|) 19799) ((|DecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|DecimalExpansion| . |PrincipalIdealDomain|) T) ((|DecimalExpansion| . |RealConstant|) T) ((|DecimalExpansion| . |RetractableTo|) 19748) ((|DecimalExpansion| . |RightLinearSet|) 19682) ((|DecimalExpansion| . |RightModule|) 19616) ((|DecimalExpansion| . |Ring|) T) ((|DecimalExpansion| . |Rng|) T) ((|DecimalExpansion| . |SemiGroup|) T) ((|DecimalExpansion| . |SemiRing|) T) ((|DecimalExpansion| . |SetCategory|) T) ((|DecimalExpansion| . |StepThrough|) T) ((|DecimalExpansion| . |Type|) T) ((|DecimalExpansion| . |UniqueFactorizationDomain|) T) ((|DualBasis| . |OrderedFinite|) T) ((|DualBasis| . |BasicType|) T) ((|DualBasis| . |CoercibleTo|) 19590) ((|DualBasis| . |Finite|) T) ((|DualBasis| . |OrderedSet|) T) ((|DualBasis| . |OrderedType|) T) ((|DualBasis| . |SetCategory|) T) ((|DualBasis| . |Type|) T) ((|Database| . |SetCategory|) T) ((|Database| . |BasicType|) T) ((|Database| . |CoercibleTo|) 19564) ((|Database| . |Type|) T) ((|Database| . |CoercibleFrom|) 19539) ((|DataArray| . |SetCategory|) T) ((|DataArray| . |BasicType|) T) ((|DataArray| . |CoercibleTo|) 19513) ((|DataArray| . |Type|) T) ((|ConstructorKind| . |SetCategory|) T) ((|ConstructorKind| . |BasicType|) T) ((|ConstructorKind| . |CoercibleTo|) 19487) ((|ConstructorKind| . |Type|) T) ((|ConstructorCall| . |SetCategory|) T) ((|ConstructorCall| . |BasicType|) T) ((|ConstructorCall| . |CoercibleTo|) 19461) ((|ConstructorCall| . |Type|) T) ((|Constructor| . |ConstructorCategory|) T) ((|Constructor| . |BasicType|) T) ((|Constructor| . |CoercibleTo|) 19435) ((|Constructor| . |OperatorCategory|) 19409) ((|Constructor| . |SetCategory|) T) ((|Constructor| . |Type|) T) ((|CoerceAst| . |SpadSyntaxCategory|) T) ((|CoerceAst| . |AbstractSyntaxCategory|) T) ((|CoerceAst| . |BasicType|) T) ((|CoerceAst| . |CoercibleFrom|) 19387) ((|CoerceAst| . |CoercibleTo|) 19342) ((|CoerceAst| . |HomotopicTo|) 19320) ((|CoerceAst| . |SetCategory|) T) ((|CoerceAst| . |Type|) T) ((|Contour| . |CoercibleTo|) 19294) ((|ContinuedFraction| . |Algebra|) 19209) ((|ContinuedFraction| . |AbelianGroup|) T) ((|ContinuedFraction| . |AbelianMonoid|) T) ((|ContinuedFraction| . |AbelianSemiGroup|) T) ((|ContinuedFraction| . |BasicType|) T) ((|ContinuedFraction| . |BiModule|) 19103) ((|ContinuedFraction| . |CancellationAbelianMonoid|) T) ((|ContinuedFraction| . |CoercibleFrom|) 18998) ((|ContinuedFraction| . |CoercibleTo|) 18972) ((|ContinuedFraction| . |LeftLinearSet|) 18867) ((|ContinuedFraction| . |LeftModule|) 18782) ((|ContinuedFraction| . |LinearSet|) 18697) ((|ContinuedFraction| . |Module|) 18612) ((|ContinuedFraction| . |Monoid|) T) ((|ContinuedFraction| . |RightLinearSet|) 18527) ((|ContinuedFraction| . |RightModule|) 18442) ((|ContinuedFraction| . |Ring|) T) ((|ContinuedFraction| . |Rng|) T) ((|ContinuedFraction| . |SemiGroup|) T) ((|ContinuedFraction| . |SemiRing|) T) ((|ContinuedFraction| . |SetCategory|) T) ((|ContinuedFraction| . |Type|) T) ((|ContinuedFraction| . |Field|) T) ((|ContinuedFraction| . |CommutativeRing|) T) ((|ContinuedFraction| . |DivisionRing|) T) ((|ContinuedFraction| . |EntireRing|) T) ((|ContinuedFraction| . |EuclideanDomain|) T) ((|ContinuedFraction| . |GcdDomain|) T) ((|ContinuedFraction| . |IntegralDomain|) T) ((|ContinuedFraction| . |PrincipalIdealDomain|) T) ((|ContinuedFraction| . |UniqueFactorizationDomain|) T) ((|SubSpaceComponentProperty| . |SetCategory|) T) ((|SubSpaceComponentProperty| . |BasicType|) T) ((|SubSpaceComponentProperty| . |CoercibleTo|) 18416) ((|SubSpaceComponentProperty| . |Type|) T) ((|Complex| . |ComplexCategory|) 18400) ((|Complex| . |AbelianGroup|) T) ((|Complex| . |AbelianMonoid|) T) ((|Complex| . |AbelianSemiGroup|) T) ((|Complex| . |Algebra|) 18205) ((|Complex| . |ArcHyperbolicFunctionCategory|) 18156) ((|Complex| . |ArcTrigonometricFunctionCategory|) 18107) ((|Complex| . |BasicType|) T) ((|Complex| . |BiModule|) 18017) ((|Complex| . |CancellationAbelianMonoid|) T) ((|Complex| . |CharacteristicNonZero|) 17977) ((|Complex| . |CharacteristicZero|) 17940) ((|Complex| . |CoercibleFrom|) 17669) ((|Complex| . |CoercibleTo|) 17643) ((|Complex| . |CommutativeRing|) T) ((|Complex| . |ConvertibleTo|) 17266) ((|Complex| . |DifferentialDomain|) 17224) ((|Complex| . |DifferentialExtension|) 17208) ((|Complex| . |DifferentialRing|) 17173) ((|Complex| . |DifferentialSpace|) 17137) ((|Complex| . |DifferentialSpaceExtension|) 17121) ((|Complex| . |DivisionRing|) 17097) ((|Complex| . |ElementaryFunctionCategory|) 17048) ((|Complex| . |Eltable|) 17001) ((|Complex| . |EntireRing|) 16875) ((|Complex| . |EuclideanDomain|) 16841) ((|Complex| . |Evalable|) 16800) ((|Complex| . |Field|) 16776) ((|Complex| . |FieldOfPrimeCharacteristic|) 16738) ((|Complex| . |Finite|) 16713) ((|Complex| . |FiniteFieldCategory|) 16675) ((|Complex| . |FiniteRankAlgebra|) 16623) ((|Complex| . |FramedAlgebra|) 16571) ((|Complex| . |FullyEvalableOver|) 16555) ((|Complex| . |FullyLinearlyExplicitRingOver|) 16539) ((|Complex| . |FullyPatternMatchable|) 16523) ((|Complex| . |FullyRetractableTo|) 16507) ((|Complex| . |Functorial|) 16491) ((|Complex| . |GcdDomain|) 16457) ((|Complex| . |HyperbolicFunctionCategory|) 16408) ((|Complex| . |InnerEvalable|) 16297) ((|Complex| . |IntegralDomain|) 16171) ((|Complex| . |LeftLinearSet|) 16080) ((|Complex| . |LeftModule|) 15941) ((|Complex| . |LinearSet|) 15746) ((|Complex| . |LinearlyExplicitRingOver|) 15662) ((|Complex| . |Module|) 15467) ((|Complex| . |MonogenicAlgebra|) 15415) ((|Complex| . |Monoid|) T) ((|Complex| . |PartialDifferentialDomain|) 15287) ((|Complex| . |PartialDifferentialRing|) 15219) ((|Complex| . |PartialDifferentialSpace|) 15093) ((|Complex| . |PatternMatchable|) 14974) ((|Complex| . |Patternable|) 14958) ((|Complex| . |PolynomialFactorizationExplicit|) 14869) ((|Complex| . |PrincipalIdealDomain|) 14835) ((|Complex| . |RadicalCategory|) 14747) ((|Complex| . |RetractableTo|) 14596) ((|Complex| . |RightLinearSet|) 14520) ((|Complex| . |RightModule|) 14444) ((|Complex| . |Ring|) T) ((|Complex| . |Rng|) T) ((|Complex| . |SemiGroup|) T) ((|Complex| . |SemiRing|) T) ((|Complex| . |SetCategory|) T) ((|Complex| . |StepThrough|) 14406) ((|Complex| . |TranscendentalFunctionCategory|) 14357) ((|Complex| . |TrigonometricFunctionCategory|) 14308) ((|Complex| . |Type|) T) ((|Complex| . |UniqueFactorizationDomain|) 14191) ((|CommutativeOperation| . |CommutativeOperatorCategory|) 14175) ((|CommutativeOperation| . |BinaryOperatorCategory|) 14159) ((|CommutativeOperation| . |MappingCategory|) 14133) ((|CommutativeOperation| . |CoercibleTo|) 14097) ((|CommaAst| . |SpadSyntaxCategory|) T) ((|CommaAst| . |AbstractSyntaxCategory|) T) ((|CommaAst| . |BasicType|) T) ((|CommaAst| . |CoercibleFrom|) 14075) ((|CommaAst| . |CoercibleTo|) 14030) ((|CommaAst| . |HomotopicTo|) 14008) ((|CommaAst| . |SetCategory|) T) ((|CommaAst| . |Type|) T) ((|Commutator| . |SetCategory|) T) ((|Commutator| . |BasicType|) T) ((|Commutator| . |CoercibleTo|) 13982) ((|Commutator| . |Type|) T) ((|Color| . |AbelianSemiGroup|) T) ((|Color| . |BasicType|) T) ((|Color| . |CoercibleTo|) 13956) ((|Color| . |SetCategory|) T) ((|Color| . |Type|) T) ((|ColonAst| . |SpadSyntaxCategory|) T) ((|ColonAst| . |AbstractSyntaxCategory|) T) ((|ColonAst| . |BasicType|) T) ((|ColonAst| . |CoercibleFrom|) 13934) ((|ColonAst| . |CoercibleTo|) 13889) ((|ColonAst| . |HomotopicTo|) 13867) ((|ColonAst| . |SetCategory|) T) ((|ColonAst| . |Type|) T) ((|CollectAst| . |SpadSyntaxCategory|) T) ((|CollectAst| . |AbstractSyntaxCategory|) T) ((|CollectAst| . |BasicType|) T) ((|CollectAst| . |CoercibleFrom|) 13845) ((|CollectAst| . |CoercibleTo|) 13800) ((|CollectAst| . |HomotopicTo|) 13778) ((|CollectAst| . |SetCategory|) T) ((|CollectAst| . |Type|) T) ((|CliffordAlgebra| . |Ring|) T) ((|CliffordAlgebra| . |AbelianGroup|) T) ((|CliffordAlgebra| . |AbelianMonoid|) T) ((|CliffordAlgebra| . |AbelianSemiGroup|) T) ((|CliffordAlgebra| . |BasicType|) T) ((|CliffordAlgebra| . |CancellationAbelianMonoid|) T) ((|CliffordAlgebra| . |CoercibleFrom|) 13742) ((|CliffordAlgebra| . |CoercibleTo|) 13716) ((|CliffordAlgebra| . |LeftLinearSet|) 13670) ((|CliffordAlgebra| . |LeftModule|) 13644) ((|CliffordAlgebra| . |Monoid|) T) ((|CliffordAlgebra| . |Rng|) T) ((|CliffordAlgebra| . |SemiGroup|) T) ((|CliffordAlgebra| . |SemiRing|) T) ((|CliffordAlgebra| . |SetCategory|) T) ((|CliffordAlgebra| . |Type|) T) ((|CliffordAlgebra| . |Algebra|) 13628) ((|CliffordAlgebra| . |BiModule|) 13607) ((|CliffordAlgebra| . |LinearSet|) 13591) ((|CliffordAlgebra| . |Module|) 13575) ((|CliffordAlgebra| . |RightLinearSet|) 13559) ((|CliffordAlgebra| . |RightModule|) 13543) ((|CliffordAlgebra| . |VectorSpace|) 13527) ((|Character| . |OrderedFinite|) T) ((|Character| . |BasicType|) T) ((|Character| . |CoercibleTo|) 13501) ((|Character| . |Finite|) T) ((|Character| . |OrderedSet|) T) ((|Character| . |OrderedType|) T) ((|Character| . |SetCategory|) T) ((|Character| . |Type|) T) ((|CharacterClass| . |SetCategory|) T) ((|CharacterClass| . |BasicType|) T) ((|CharacterClass| . |CoercibleTo|) 13475) ((|CharacterClass| . |Type|) T) ((|CharacterClass| . |ConvertibleTo|) 13422) ((|CharacterClass| . |FiniteSetAggregate|) 13397) ((|CharacterClass| . |Aggregate|) T) ((|CharacterClass| . |BagAggregate|) 13372) ((|CharacterClass| . |Collection|) 13347) ((|CharacterClass| . |Dictionary|) 13322) ((|CharacterClass| . |DictionaryOperations|) 13297) ((|CharacterClass| . |Evalable|) NIL) ((|CharacterClass| . |Finite|) T) ((|CharacterClass| . |FiniteAggregate|) 13272) ((|CharacterClass| . |Functorial|) 13247) ((|CharacterClass| . |HomogeneousAggregate|) 13222) ((|CharacterClass| . |InnerEvalable|) NIL) ((|CharacterClass| . |SetAggregate|) 13197) ((|CharacterClass| . |ShallowlyMutableAggregate|) 13172) ((|Category| . |CoercibleTo|) 13146) ((|CategoryConstructor| . |ConstructorCategory|) T) ((|CategoryConstructor| . |BasicType|) T) ((|CategoryConstructor| . |CoercibleTo|) 13096) ((|CategoryConstructor| . |OperatorCategory|) 13070) ((|CategoryConstructor| . |SetCategory|) T) ((|CategoryConstructor| . |Type|) T) ((|CategoryAst| . |SpadSyntaxCategory|) T) ((|CategoryAst| . |AbstractSyntaxCategory|) T) ((|CategoryAst| . |BasicType|) T) ((|CategoryAst| . |CoercibleFrom|) 13048) ((|CategoryAst| . |CoercibleTo|) 13003) ((|CategoryAst| . |HomotopicTo|) 12981) ((|CategoryAst| . |SetCategory|) T) ((|CategoryAst| . |Type|) T) ((|CaseAst| . |SpadSyntaxCategory|) T) ((|CaseAst| . |AbstractSyntaxCategory|) T) ((|CaseAst| . |BasicType|) T) ((|CaseAst| . |CoercibleFrom|) 12959) ((|CaseAst| . |CoercibleTo|) 12914) ((|CaseAst| . |HomotopicTo|) 12892) ((|CaseAst| . |SetCategory|) T) ((|CaseAst| . |Type|) T) ((|CartesianTensor| . |GradedAlgebra|) 12853) ((|CartesianTensor| . |BasicType|) T) ((|CartesianTensor| . |CoercibleFrom|) 12725) ((|CartesianTensor| . |CoercibleTo|) 12699) ((|CartesianTensor| . |GradedModule|) 12633) ((|CartesianTensor| . |RetractableTo|) 12617) ((|CartesianTensor| . |SetCategory|) T) ((|CartesianTensor| . |Type|) T) ((|CartesianTensor| . |Eltable|) 12589) ((|CardinalNumber| . |OrderedSet|) T) ((|CardinalNumber| . |BasicType|) T) ((|CardinalNumber| . |CoercibleTo|) 12563) ((|CardinalNumber| . |OrderedType|) T) ((|CardinalNumber| . |SetCategory|) T) ((|CardinalNumber| . |Type|) T) ((|CardinalNumber| . |AbelianMonoid|) T) ((|CardinalNumber| . |AbelianSemiGroup|) T) ((|CardinalNumber| . |Monoid|) T) ((|CardinalNumber| . |SemiGroup|) T) ((|CardinalNumber| . |RetractableTo|) 12529) ((|CardinalNumber| . |CoercibleFrom|) 12495) ((|CapsuleAst| . |SpadSyntaxCategory|) T) ((|CapsuleAst| . |AbstractSyntaxCategory|) T) ((|CapsuleAst| . |BasicType|) T) ((|CapsuleAst| . |CoercibleFrom|) 12473) ((|CapsuleAst| . |CoercibleTo|) 12428) ((|CapsuleAst| . |HomotopicTo|) 12406) ((|CapsuleAst| . |SetCategory|) T) ((|CapsuleAst| . |Type|) T) ((|ByteOrder| . |SetCategory|) T) ((|ByteOrder| . |BasicType|) T) ((|ByteOrder| . |CoercibleTo|) 12380) ((|ByteOrder| . |Type|) T) ((|ByteBuffer| . |OneDimensionalArrayAggregate|) 12360) ((|ByteBuffer| . |Aggregate|) T) ((|ByteBuffer| . |BasicType|) T) ((|ByteBuffer| . |CoercibleTo|) 12279) ((|ByteBuffer| . |Collection|) 12259) ((|ByteBuffer| . |ConvertibleTo|) NIL) ((|ByteBuffer| . |Eltable|) 12189) ((|ByteBuffer| . |EltableAggregate|) 12157) ((|ByteBuffer| . |Evalable|) NIL) ((|ByteBuffer| . |FiniteAggregate|) 12137) ((|ByteBuffer| . |FiniteLinearAggregate|) 12117) ((|ByteBuffer| . |Functorial|) 12097) ((|ByteBuffer| . |HomogeneousAggregate|) 12077) ((|ByteBuffer| . |IndexedAggregate|) 12045) ((|ByteBuffer| . |InnerEvalable|) NIL) ((|ByteBuffer| . |LinearAggregate|) 12025) ((|ByteBuffer| . |OrderedSet|) T) ((|ByteBuffer| . |OrderedType|) T) ((|ByteBuffer| . |SetCategory|) T) ((|ByteBuffer| . |ShallowlyMutableAggregate|) 12005) ((|ByteBuffer| . |Type|) T) ((|Byte| . |OrderedFinite|) T) ((|Byte| . |BasicType|) T) ((|Byte| . |CoercibleTo|) 11979) ((|Byte| . |Finite|) T) ((|Byte| . |OrderedSet|) T) ((|Byte| . |OrderedType|) T) ((|Byte| . |SetCategory|) T) ((|Byte| . |Type|) T) ((|Byte| . |Logic|) T) ((|BinaryTree| . |BinaryTreeCategory|) 11963) ((|BinaryTree| . |Aggregate|) T) ((|BinaryTree| . |BasicType|) 11935) ((|BinaryTree| . |BinaryRecursiveAggregate|) 11919) ((|BinaryTree| . |CoercibleTo|) 11855) ((|BinaryTree| . |Evalable|) 11779) ((|BinaryTree| . |FiniteAggregate|) 11763) ((|BinaryTree| . |Functorial|) 11747) ((|BinaryTree| . |HomogeneousAggregate|) 11731) ((|BinaryTree| . |InnerEvalable|) 11650) ((|BinaryTree| . |RecursiveAggregate|) 11634) ((|BinaryTree| . |SetCategory|) 11604) ((|BinaryTree| . |ShallowlyMutableAggregate|) 11588) ((|BinaryTree| . |Type|) T) ((|BinaryTournament| . |BinaryTreeCategory|) 11572) ((|BinaryTournament| . |Aggregate|) T) ((|BinaryTournament| . |BasicType|) 11544) ((|BinaryTournament| . |BinaryRecursiveAggregate|) 11528) ((|BinaryTournament| . |CoercibleTo|) 11464) ((|BinaryTournament| . |Evalable|) 11388) ((|BinaryTournament| . |FiniteAggregate|) 11372) ((|BinaryTournament| . |Functorial|) 11356) ((|BinaryTournament| . |HomogeneousAggregate|) 11340) ((|BinaryTournament| . |InnerEvalable|) 11259) ((|BinaryTournament| . |RecursiveAggregate|) 11243) ((|BinaryTournament| . |SetCategory|) 11213) ((|BinaryTournament| . |ShallowlyMutableAggregate|) 11197) ((|BinaryTournament| . |Type|) T) ((|BinarySearchTree| . |BinaryTreeCategory|) 11181) ((|BinarySearchTree| . |Aggregate|) T) ((|BinarySearchTree| . |BasicType|) 11153) ((|BinarySearchTree| . |BinaryRecursiveAggregate|) 11137) ((|BinarySearchTree| . |CoercibleTo|) 11073) ((|BinarySearchTree| . |Evalable|) 10997) ((|BinarySearchTree| . |FiniteAggregate|) 10981) ((|BinarySearchTree| . |Functorial|) 10965) ((|BinarySearchTree| . |HomogeneousAggregate|) 10949) ((|BinarySearchTree| . |InnerEvalable|) 10868) ((|BinarySearchTree| . |RecursiveAggregate|) 10852) ((|BinarySearchTree| . |SetCategory|) 10822) ((|BinarySearchTree| . |ShallowlyMutableAggregate|) 10806) ((|BinarySearchTree| . |Type|) T) ((|BalancedPAdicRational| . |QuotientFieldCategory|) 10765) ((|BalancedPAdicRational| . |AbelianGroup|) T) ((|BalancedPAdicRational| . |AbelianMonoid|) T) ((|BalancedPAdicRational| . |AbelianSemiGroup|) T) ((|BalancedPAdicRational| . |Algebra|) 10681) ((|BalancedPAdicRational| . |BasicType|) T) ((|BalancedPAdicRational| . |BiModule|) 10581) ((|BalancedPAdicRational| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicRational| . |CharacteristicNonZero|) NIL) ((|BalancedPAdicRational| . |CharacteristicZero|) T) ((|BalancedPAdicRational| . |CoercibleFrom|) 10482) ((|BalancedPAdicRational| . |CoercibleTo|) 10456) ((|BalancedPAdicRational| . |CommutativeRing|) T) ((|BalancedPAdicRational| . |ConvertibleTo|) NIL) ((|BalancedPAdicRational| . |DifferentialDomain|) NIL) ((|BalancedPAdicRational| . |DifferentialExtension|) 10415) ((|BalancedPAdicRational| . |DifferentialRing|) NIL) ((|BalancedPAdicRational| . |DifferentialSpace|) NIL) ((|BalancedPAdicRational| . |DifferentialSpaceExtension|) 10374) ((|BalancedPAdicRational| . |DivisionRing|) T) ((|BalancedPAdicRational| . |Eltable|) 10302) ((|BalancedPAdicRational| . |EntireRing|) T) ((|BalancedPAdicRational| . |EuclideanDomain|) T) ((|BalancedPAdicRational| . |Evalable|) 10235) ((|BalancedPAdicRational| . |Field|) T) ((|BalancedPAdicRational| . |FullyEvalableOver|) 10194) ((|BalancedPAdicRational| . |FullyLinearlyExplicitRingOver|) 10153) ((|BalancedPAdicRational| . |FullyPatternMatchable|) 10112) ((|BalancedPAdicRational| . |Functorial|) 10071) ((|BalancedPAdicRational| . |GcdDomain|) T) ((|BalancedPAdicRational| . |InnerEvalable|) 9938) ((|BalancedPAdicRational| . |IntegralDomain|) T) ((|BalancedPAdicRational| . |LeftLinearSet|) 9839) ((|BalancedPAdicRational| . |LeftModule|) 9755) ((|BalancedPAdicRational| . |LinearSet|) 9671) ((|BalancedPAdicRational| . |LinearlyExplicitRingOver|) 9630) ((|BalancedPAdicRational| . |Module|) 9546) ((|BalancedPAdicRational| . |Monoid|) T) ((|BalancedPAdicRational| . |OrderedAbelianGroup|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|BalancedPAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedIntegralDomain|) NIL) ((|BalancedPAdicRational| . |OrderedRing|) NIL) ((|BalancedPAdicRational| . |OrderedSet|) NIL) ((|BalancedPAdicRational| . |OrderedType|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialDomain|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialRing|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialSpace|) NIL) ((|BalancedPAdicRational| . |PatternMatchable|) NIL) ((|BalancedPAdicRational| . |Patternable|) 9505) ((|BalancedPAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|BalancedPAdicRational| . |PrincipalIdealDomain|) T) ((|BalancedPAdicRational| . |RealConstant|) NIL) ((|BalancedPAdicRational| . |RetractableTo|) 9464) ((|BalancedPAdicRational| . |RightLinearSet|) 9380) ((|BalancedPAdicRational| . |RightModule|) 9296) ((|BalancedPAdicRational| . |Ring|) T) ((|BalancedPAdicRational| . |Rng|) T) ((|BalancedPAdicRational| . |SemiGroup|) T) ((|BalancedPAdicRational| . |SemiRing|) T) ((|BalancedPAdicRational| . |SetCategory|) T) ((|BalancedPAdicRational| . |StepThrough|) NIL) ((|BalancedPAdicRational| . |Type|) T) ((|BalancedPAdicRational| . |UniqueFactorizationDomain|) T) ((|BalancedPAdicInteger| . |PAdicIntegerCategory|) 9280) ((|BalancedPAdicInteger| . |AbelianGroup|) T) ((|BalancedPAdicInteger| . |AbelianMonoid|) T) ((|BalancedPAdicInteger| . |AbelianSemiGroup|) T) ((|BalancedPAdicInteger| . |Algebra|) 9267) ((|BalancedPAdicInteger| . |BasicType|) T) ((|BalancedPAdicInteger| . |BiModule|) 9252) ((|BalancedPAdicInteger| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicInteger| . |CharacteristicZero|) T) ((|BalancedPAdicInteger| . |CoercibleFrom|) 9219) ((|BalancedPAdicInteger| . |CoercibleTo|) 9193) ((|BalancedPAdicInteger| . |CommutativeRing|) T) ((|BalancedPAdicInteger| . |EntireRing|) T) ((|BalancedPAdicInteger| . |EuclideanDomain|) T) ((|BalancedPAdicInteger| . |GcdDomain|) T) ((|BalancedPAdicInteger| . |IntegralDomain|) T) ((|BalancedPAdicInteger| . |LeftLinearSet|) 9160) ((|BalancedPAdicInteger| . |LeftModule|) 9147) ((|BalancedPAdicInteger| . |LinearSet|) 9134) ((|BalancedPAdicInteger| . |Module|) 9121) ((|BalancedPAdicInteger| . |Monoid|) T) ((|BalancedPAdicInteger| . |PrincipalIdealDomain|) T) ((|BalancedPAdicInteger| . |RightLinearSet|) 9108) ((|BalancedPAdicInteger| . |RightModule|) 9095) ((|BalancedPAdicInteger| . |Ring|) T) ((|BalancedPAdicInteger| . |Rng|) T) ((|BalancedPAdicInteger| . |SemiGroup|) T) ((|BalancedPAdicInteger| . |SemiRing|) T) ((|BalancedPAdicInteger| . |SetCategory|) T) ((|BalancedPAdicInteger| . |Type|) T) ((|BasicOperator| . |OrderedSet|) T) ((|BasicOperator| . |BasicType|) T) ((|BasicOperator| . |CoercibleTo|) 9069) ((|BasicOperator| . |OrderedType|) T) ((|BasicOperator| . |SetCategory|) T) ((|BasicOperator| . |Type|) T) ((|BasicOperator| . |OperatorCategory|) 9047) ((|Boolean| . |OrderedFinite|) T) ((|Boolean| . |BasicType|) T) ((|Boolean| . |CoercibleTo|) 9021) ((|Boolean| . |Finite|) T) ((|Boolean| . |OrderedSet|) T) ((|Boolean| . |OrderedType|) T) ((|Boolean| . |SetCategory|) T) ((|Boolean| . |Type|) T) ((|Boolean| . |PropositionalLogic|) T) ((|Boolean| . |BooleanLogic|) T) ((|Boolean| . |Logic|) T) ((|Boolean| . |ConvertibleTo|) 8996) ((|Bits| . |BitAggregate|) T) ((|Bits| . |Aggregate|) T) ((|Bits| . |BasicType|) T) ((|Bits| . |BooleanLogic|) T) ((|Bits| . |CoercibleTo|) 8970) ((|Bits| . |Collection|) 8947) ((|Bits| . |ConvertibleTo|) 8922) ((|Bits| . |Eltable|) 8849) ((|Bits| . |EltableAggregate|) 8814) ((|Bits| . |FiniteAggregate|) 8791) ((|Bits| . |FiniteLinearAggregate|) 8768) ((|Bits| . |Functorial|) 8745) ((|Bits| . |HomogeneousAggregate|) 8722) ((|Bits| . |IndexedAggregate|) 8687) ((|Bits| . |LinearAggregate|) 8664) ((|Bits| . |Logic|) T) ((|Bits| . |OneDimensionalArrayAggregate|) 8641) ((|Bits| . |OrderedSet|) T) ((|Bits| . |OrderedType|) T) ((|Bits| . |SetCategory|) T) ((|Bits| . |ShallowlyMutableAggregate|) 8618) ((|Bits| . |Type|) T) ((|BinaryOperation| . |BinaryOperatorCategory|) 8602) ((|BinaryOperation| . |MappingCategory|) 8576) ((|BinaryOperation| . |SetCategory|) T) ((|BinaryOperation| . |BasicType|) T) ((|BinaryOperation| . |CoercibleTo|) 8550) ((|BinaryOperation| . |Type|) T) ((|Binding| . |CoercibleTo|) 8524) ((|BinaryExpansion| . |QuotientFieldCategory|) 8501) ((|BinaryExpansion| . |AbelianGroup|) T) ((|BinaryExpansion| . |AbelianMonoid|) T) ((|BinaryExpansion| . |AbelianSemiGroup|) T) ((|BinaryExpansion| . |Algebra|) 8435) ((|BinaryExpansion| . |BasicType|) T) ((|BinaryExpansion| . |BiModule|) 8353) ((|BinaryExpansion| . |CancellationAbelianMonoid|) T) ((|BinaryExpansion| . |CharacteristicNonZero|) NIL) ((|BinaryExpansion| . |CharacteristicZero|) T) ((|BinaryExpansion| . |CoercibleFrom|) 8292) ((|BinaryExpansion| . |CoercibleTo|) 8204) ((|BinaryExpansion| . |CommutativeRing|) T) ((|BinaryExpansion| . |ConvertibleTo|) 8105) ((|BinaryExpansion| . |DifferentialDomain|) 8092) ((|BinaryExpansion| . |DifferentialExtension|) 8069) ((|BinaryExpansion| . |DifferentialRing|) T) ((|BinaryExpansion| . |DifferentialSpace|) T) ((|BinaryExpansion| . |DifferentialSpaceExtension|) 8046) ((|BinaryExpansion| . |DivisionRing|) T) ((|BinaryExpansion| . |Eltable|) NIL) ((|BinaryExpansion| . |EntireRing|) T) ((|BinaryExpansion| . |EuclideanDomain|) T) ((|BinaryExpansion| . |Evalable|) NIL) ((|BinaryExpansion| . |Field|) T) ((|BinaryExpansion| . |FullyEvalableOver|) 8023) ((|BinaryExpansion| . |FullyLinearlyExplicitRingOver|) 8000) ((|BinaryExpansion| . |FullyPatternMatchable|) 7977) ((|BinaryExpansion| . |Functorial|) 7954) ((|BinaryExpansion| . |GcdDomain|) T) ((|BinaryExpansion| . |InnerEvalable|) NIL) ((|BinaryExpansion| . |IntegralDomain|) T) ((|BinaryExpansion| . |LeftLinearSet|) 7893) ((|BinaryExpansion| . |LeftModule|) 7832) ((|BinaryExpansion| . |LinearSet|) 7766) ((|BinaryExpansion| . |LinearlyExplicitRingOver|) 7743) ((|BinaryExpansion| . |Module|) 7677) ((|BinaryExpansion| . |Monoid|) T) ((|BinaryExpansion| . |OrderedAbelianGroup|) T) ((|BinaryExpansion| . |OrderedAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedAbelianSemiGroup|) T) ((|BinaryExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedIntegralDomain|) T) ((|BinaryExpansion| . |OrderedRing|) T) ((|BinaryExpansion| . |OrderedSet|) T) ((|BinaryExpansion| . |OrderedType|) T) ((|BinaryExpansion| . |PartialDifferentialDomain|) NIL) ((|BinaryExpansion| . |PartialDifferentialRing|) NIL) ((|BinaryExpansion| . |PartialDifferentialSpace|) NIL) ((|BinaryExpansion| . |PatternMatchable|) 7654) ((|BinaryExpansion| . |Patternable|) 7631) ((|BinaryExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|BinaryExpansion| . |PrincipalIdealDomain|) T) ((|BinaryExpansion| . |RealConstant|) T) ((|BinaryExpansion| . |RetractableTo|) 7580) ((|BinaryExpansion| . |RightLinearSet|) 7514) ((|BinaryExpansion| . |RightModule|) 7448) ((|BinaryExpansion| . |Ring|) T) ((|BinaryExpansion| . |Rng|) T) ((|BinaryExpansion| . |SemiGroup|) T) ((|BinaryExpansion| . |SemiRing|) T) ((|BinaryExpansion| . |SetCategory|) T) ((|BinaryExpansion| . |StepThrough|) T) ((|BinaryExpansion| . |Type|) T) ((|BinaryExpansion| . |UniqueFactorizationDomain|) T) ((|BalancedBinaryTree| . |BinaryTreeCategory|) 7432) ((|BalancedBinaryTree| . |Aggregate|) T) ((|BalancedBinaryTree| . |BasicType|) 7404) ((|BalancedBinaryTree| . |BinaryRecursiveAggregate|) 7388) ((|BalancedBinaryTree| . |CoercibleTo|) 7324) ((|BalancedBinaryTree| . |Evalable|) 7248) ((|BalancedBinaryTree| . |FiniteAggregate|) 7232) ((|BalancedBinaryTree| . |Functorial|) 7216) ((|BalancedBinaryTree| . |HomogeneousAggregate|) 7200) ((|BalancedBinaryTree| . |InnerEvalable|) 7119) ((|BalancedBinaryTree| . |RecursiveAggregate|) 7103) ((|BalancedBinaryTree| . |SetCategory|) 7073) ((|BalancedBinaryTree| . |ShallowlyMutableAggregate|) 7057) ((|BalancedBinaryTree| . |Type|) T) ((|Automorphism| . |Group|) T) ((|Automorphism| . |BasicType|) T) ((|Automorphism| . |CoercibleTo|) 7031) ((|Automorphism| . |Monoid|) T) ((|Automorphism| . |SemiGroup|) T) ((|Automorphism| . |SetCategory|) T) ((|Automorphism| . |Type|) T) ((|Automorphism| . |Eltable|) 7010) ((|AttributeAst| . |SpadSyntaxCategory|) T) ((|AttributeAst| . |AbstractSyntaxCategory|) T) ((|AttributeAst| . |BasicType|) T) ((|AttributeAst| . |CoercibleFrom|) 6988) ((|AttributeAst| . |CoercibleTo|) 6943) ((|AttributeAst| . |HomotopicTo|) 6921) ((|AttributeAst| . |SetCategory|) T) ((|AttributeAst| . |Type|) T) ((|ArrayStack| . |StackAggregate|) 6905) ((|ArrayStack| . |Aggregate|) T) ((|ArrayStack| . |BagAggregate|) 6889) ((|ArrayStack| . |BasicType|) 6861) ((|ArrayStack| . |CoercibleTo|) 6797) ((|ArrayStack| . |Evalable|) 6721) ((|ArrayStack| . |FiniteAggregate|) 6705) ((|ArrayStack| . |Functorial|) 6689) ((|ArrayStack| . |HomogeneousAggregate|) 6673) ((|ArrayStack| . |InnerEvalable|) 6592) ((|ArrayStack| . |SetCategory|) 6562) ((|ArrayStack| . |ShallowlyMutableAggregate|) 6546) ((|ArrayStack| . |Type|) T) ((|TwoDimensionalArray| . |TwoDimensionalArrayCategory|) 6494) ((|TwoDimensionalArray| . |Aggregate|) T) ((|TwoDimensionalArray| . |BasicType|) 6466) ((|TwoDimensionalArray| . |CoercibleTo|) 6402) ((|TwoDimensionalArray| . |Evalable|) 6326) ((|TwoDimensionalArray| . |FiniteAggregate|) 6310) ((|TwoDimensionalArray| . |Functorial|) 6294) ((|TwoDimensionalArray| . |HomogeneousAggregate|) 6278) ((|TwoDimensionalArray| . |InnerEvalable|) 6197) ((|TwoDimensionalArray| . |SetCategory|) 6167) ((|TwoDimensionalArray| . |ShallowlyMutableAggregate|) 6151) ((|TwoDimensionalArray| . |Type|) T) ((|OneDimensionalArray| . |OneDimensionalArrayAggregate|) 6135) ((|OneDimensionalArray| . |Aggregate|) T) ((|OneDimensionalArray| . |BasicType|) 6107) ((|OneDimensionalArray| . |CoercibleTo|) 6043) ((|OneDimensionalArray| . |Collection|) 6027) ((|OneDimensionalArray| . |ConvertibleTo|) 5963) ((|OneDimensionalArray| . |Eltable|) 5897) ((|OneDimensionalArray| . |EltableAggregate|) 5869) ((|OneDimensionalArray| . |Evalable|) 5793) ((|OneDimensionalArray| . |FiniteAggregate|) 5777) ((|OneDimensionalArray| . |FiniteLinearAggregate|) 5761) ((|OneDimensionalArray| . |Functorial|) 5745) ((|OneDimensionalArray| . |HomogeneousAggregate|) 5729) ((|OneDimensionalArray| . |IndexedAggregate|) 5701) ((|OneDimensionalArray| . |InnerEvalable|) 5620) ((|OneDimensionalArray| . |LinearAggregate|) 5604) ((|OneDimensionalArray| . |OrderedSet|) 5575) ((|OneDimensionalArray| . |OrderedType|) 5546) ((|OneDimensionalArray| . |SetCategory|) 5516) ((|OneDimensionalArray| . |ShallowlyMutableAggregate|) 5500) ((|OneDimensionalArray| . |Type|) T) ((|Arity| . |SetCategory|) T) ((|Arity| . |BasicType|) T) ((|Arity| . |CoercibleTo|) 5474) ((|Arity| . |Type|) T) ((|Arity| . |RetractableTo|) 5440) ((|Arity| . |CoercibleFrom|) 5406) ((|Any| . |SetCategory|) T) ((|Any| . |BasicType|) T) ((|Any| . |CoercibleTo|) 5380) ((|Any| . |Type|) T) ((|AntiSymm| . |LeftAlgebra|) 5364) ((|AntiSymm| . |AbelianGroup|) T) ((|AntiSymm| . |AbelianMonoid|) T) ((|AntiSymm| . |AbelianSemiGroup|) T) ((|AntiSymm| . |BasicType|) T) ((|AntiSymm| . |CancellationAbelianMonoid|) T) ((|AntiSymm| . |CoercibleFrom|) 5328) ((|AntiSymm| . |CoercibleTo|) 5302) ((|AntiSymm| . |LeftLinearSet|) 5256) ((|AntiSymm| . |LeftModule|) 5230) ((|AntiSymm| . |Monoid|) T) ((|AntiSymm| . |Ring|) T) ((|AntiSymm| . |Rng|) T) ((|AntiSymm| . |SemiGroup|) T) ((|AntiSymm| . |SemiRing|) T) ((|AntiSymm| . |SetCategory|) T) ((|AntiSymm| . |Type|) T) ((|AntiSymm| . |RetractableTo|) 5214) ((|AntiSymm| . |Functorial|) 5198) ((|AnonymousFunction| . |SetCategory|) T) ((|AnonymousFunction| . |BasicType|) T) ((|AnonymousFunction| . |CoercibleTo|) 5172) ((|AnonymousFunction| . |Type|) T) ((|AlgebraicNumber| . |ExpressionSpace|) T) ((|AlgebraicNumber| . |BasicType|) T) ((|AlgebraicNumber| . |CoercibleFrom|) 5024) ((|AlgebraicNumber| . |CoercibleTo|) 4998) ((|AlgebraicNumber| . |Evalable|) 4985) ((|AlgebraicNumber| . |InnerEvalable|) 4947) ((|AlgebraicNumber| . |RetractableTo|) 4875) ((|AlgebraicNumber| . |SetCategory|) T) ((|AlgebraicNumber| . |Type|) T) ((|AlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|AlgebraicNumber| . |AbelianGroup|) T) ((|AlgebraicNumber| . |AbelianMonoid|) T) ((|AlgebraicNumber| . |AbelianSemiGroup|) T) ((|AlgebraicNumber| . |Algebra|) 4829) ((|AlgebraicNumber| . |BiModule|) 4774) ((|AlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|AlgebraicNumber| . |CommutativeRing|) T) ((|AlgebraicNumber| . |DivisionRing|) T) ((|AlgebraicNumber| . |EntireRing|) T) ((|AlgebraicNumber| . |EuclideanDomain|) T) ((|AlgebraicNumber| . |Field|) T) ((|AlgebraicNumber| . |GcdDomain|) T) ((|AlgebraicNumber| . |IntegralDomain|) T) ((|AlgebraicNumber| . |LeftLinearSet|) 4713) ((|AlgebraicNumber| . |LeftModule|) 4647) ((|AlgebraicNumber| . |LinearSet|) 4601) ((|AlgebraicNumber| . |Module|) 4555) ((|AlgebraicNumber| . |Monoid|) T) ((|AlgebraicNumber| . |PrincipalIdealDomain|) T) ((|AlgebraicNumber| . |RadicalCategory|) T) ((|AlgebraicNumber| . |RightLinearSet|) 4509) ((|AlgebraicNumber| . |RightModule|) 4463) ((|AlgebraicNumber| . |Ring|) T) ((|AlgebraicNumber| . |Rng|) T) ((|AlgebraicNumber| . |SemiGroup|) T) ((|AlgebraicNumber| . |SemiRing|) T) ((|AlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|AlgebraicNumber| . |LinearlyExplicitRingOver|) 4412) ((|AlgebraicNumber| . |RealConstant|) T) ((|AlgebraicNumber| . |ConvertibleTo|) 4361) ((|AlgebraicNumber| . |CharacteristicZero|) T) ((|AlgebraicNumber| . |DifferentialRing|) T) ((|AlgebraicNumber| . |DifferentialDomain|) 4348) ((|AlgebraicNumber| . |DifferentialSpace|) T) ((|AssociationList| . |AssociationListAggregate|) 4327) ((|AssociationList| . |Aggregate|) T) ((|AssociationList| . |BagAggregate|) 4269) ((|AssociationList| . |BasicType|) T) ((|AssociationList| . |CoercibleTo|) 4243) ((|AssociationList| . |Collection|) 4185) ((|AssociationList| . |Dictionary|) 4127) ((|AssociationList| . |DictionaryOperations|) 4069) ((|AssociationList| . |Eltable|) 3943) ((|AssociationList| . |EltableAggregate|) 3855) ((|AssociationList| . |Evalable|) 3615) ((|AssociationList| . |ExtensibleLinearAggregate|) 3557) ((|AssociationList| . |FiniteAggregate|) 3499) ((|AssociationList| . |FiniteLinearAggregate|) 3441) ((|AssociationList| . |Functorial|) 3370) ((|AssociationList| . |HomogeneousAggregate|) 3299) ((|AssociationList| . |IndexedAggregate|) 3211) ((|AssociationList| . |InnerEvalable|) 2959) ((|AssociationList| . |KeyedDictionary|) 2938) ((|AssociationList| . |LinearAggregate|) 2880) ((|AssociationList| . |ListAggregate|) 2822) ((|AssociationList| . |RecursiveAggregate|) 2764) ((|AssociationList| . |SetCategory|) T) ((|AssociationList| . |ShallowlyMutableAggregate|) 2693) ((|AssociationList| . |StreamAggregate|) 2635) ((|AssociationList| . |TableAggregate|) 2614) ((|AssociationList| . |Type|) T) ((|AssociationList| . |UnaryRecursiveAggregate|) 2556) ((|AlgebraGivenByStructuralConstants| . |FramedNonAssociativeAlgebra|) 2540) ((|AlgebraGivenByStructuralConstants| . |AbelianGroup|) T) ((|AlgebraGivenByStructuralConstants| . |AbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |AbelianSemiGroup|) T) ((|AlgebraGivenByStructuralConstants| . |BasicType|) T) ((|AlgebraGivenByStructuralConstants| . |BiModule|) 2519) ((|AlgebraGivenByStructuralConstants| . |CancellationAbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |CoercibleTo|) 2493) ((|AlgebraGivenByStructuralConstants| . |Eltable|) 2465) ((|AlgebraGivenByStructuralConstants| . |FiniteRankNonAssociativeAlgebra|) 2449) ((|AlgebraGivenByStructuralConstants| . |LeftLinearSet|) 2378) ((|AlgebraGivenByStructuralConstants| . |LeftModule|) 2327) ((|AlgebraGivenByStructuralConstants| . |LinearSet|) 2311) ((|AlgebraGivenByStructuralConstants| . |Module|) 2295) ((|AlgebraGivenByStructuralConstants| . |Monad|) T) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeAlgebra|) 2279) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeRng|) T) ((|AlgebraGivenByStructuralConstants| . |RightLinearSet|) 2263) ((|AlgebraGivenByStructuralConstants| . |RightModule|) 2247) ((|AlgebraGivenByStructuralConstants| . |SetCategory|) T) ((|AlgebraGivenByStructuralConstants| . |Type|) T) ((|AlgebraicFunctionField| . |FunctionFieldCategory|) 2221) ((|AlgebraicFunctionField| . |AbelianGroup|) T) ((|AlgebraicFunctionField| . |AbelianMonoid|) T) ((|AlgebraicFunctionField| . |AbelianSemiGroup|) T) ((|AlgebraicFunctionField| . |Algebra|) 2149) ((|AlgebraicFunctionField| . |BasicType|) T) ((|AlgebraicFunctionField| . |BiModule|) 2061) ((|AlgebraicFunctionField| . |CancellationAbelianMonoid|) T) ((|AlgebraicFunctionField| . |CharacteristicNonZero|) 2008) ((|AlgebraicFunctionField| . |CharacteristicZero|) 1958) ((|AlgebraicFunctionField| . |CoercibleFrom|) 1871) ((|AlgebraicFunctionField| . |CoercibleTo|) 1845) ((|AlgebraicFunctionField| . |CommutativeRing|) T) ((|AlgebraicFunctionField| . |ConvertibleTo|) 1829) ((|AlgebraicFunctionField| . |DifferentialDomain|) 1774) ((|AlgebraicFunctionField| . |DifferentialExtension|) 1745) ((|AlgebraicFunctionField| . |DifferentialRing|) 1697) ((|AlgebraicFunctionField| . |DifferentialSpace|) 1648) ((|AlgebraicFunctionField| . |DifferentialSpaceExtension|) 1619) ((|AlgebraicFunctionField| . |DivisionRing|) T) ((|AlgebraicFunctionField| . |EntireRing|) T) ((|AlgebraicFunctionField| . |EuclideanDomain|) T) ((|AlgebraicFunctionField| . |Field|) T) ((|AlgebraicFunctionField| . |FiniteRankAlgebra|) 1585) ((|AlgebraicFunctionField| . |FramedAlgebra|) 1551) ((|AlgebraicFunctionField| . |FullyLinearlyExplicitRingOver|) 1522) ((|AlgebraicFunctionField| . |FullyRetractableTo|) 1493) ((|AlgebraicFunctionField| . |GcdDomain|) T) ((|AlgebraicFunctionField| . |IntegralDomain|) T) ((|AlgebraicFunctionField| . |LeftLinearSet|) 1406) ((|AlgebraicFunctionField| . |LeftModule|) 1258) ((|AlgebraicFunctionField| . |LinearSet|) 1186) ((|AlgebraicFunctionField| . |LinearlyExplicitRingOver|) 1076) ((|AlgebraicFunctionField| . |Module|) 1004) ((|AlgebraicFunctionField| . |MonogenicAlgebra|) 970) ((|AlgebraicFunctionField| . |Monoid|) T) ((|AlgebraicFunctionField| . |PartialDifferentialDomain|) 816) ((|AlgebraicFunctionField| . |PartialDifferentialRing|) 735) ((|AlgebraicFunctionField| . |PartialDifferentialSpace|) 583) ((|AlgebraicFunctionField| . |PrincipalIdealDomain|) T) ((|AlgebraicFunctionField| . |RetractableTo|) 393) ((|AlgebraicFunctionField| . |RightLinearSet|) 321) ((|AlgebraicFunctionField| . |RightModule|) 249) ((|AlgebraicFunctionField| . |Ring|) T) ((|AlgebraicFunctionField| . |Rng|) T) ((|AlgebraicFunctionField| . |SemiGroup|) T) ((|AlgebraicFunctionField| . |SemiRing|) T) ((|AlgebraicFunctionField| . |SetCategory|) T) ((|AlgebraicFunctionField| . |Type|) T) ((|AlgebraicFunctionField| . |UniqueFactorizationDomain|) T) ((|AddAst| . |SpadSyntaxCategory|) T) ((|AddAst| . |AbstractSyntaxCategory|) T) ((|AddAst| . |BasicType|) T) ((|AddAst| . |CoercibleFrom|) 227) ((|AddAst| . |CoercibleTo|) 182) ((|AddAst| . |HomotopicTo|) 160) ((|AddAst| . |SetCategory|) T) ((|AddAst| . |Type|) T) ((|PlaneAlgebraicCurvePlot| . |PlottablePlaneCurveCategory|) T) ((|PlaneAlgebraicCurvePlot| . |CoercibleTo|) 134) ((|Enumeration| . |EnumerationCategory|) T) ((|Enumeration| . |CoercibleTo|) 108) ((|Enumeration| . |SetCategory|) T) ((|Enumeration| . |BasicType|) T) ((|Enumeration| . |Type|) T) ((|Record| . |RecordCategory|) T) ((|Record| . |CoercibleTo|) 82) ((|Record| . |SetCategory|) T) ((|Record| . |BasicType|) T) ((|Record| . |Type|) T) ((|Union| . |UnionCategory|) T) ((|Union| . |CoercibleTo|) 56) ((|Union| . |SetCategory|) T) ((|Union| . |BasicType|) T) ((|Union| . |Type|) T) ((|Mapping| . |SetCategory|) T) ((|Mapping| . |BasicType|) T) ((|Mapping| . |CoercibleTo|) 30) ((|Mapping| . |Type|) T))