aboutsummaryrefslogtreecommitdiff
path: root/src/share/algebra/category.daase
blob: e1dabd36a3965e8b86dc312ddf273aa1b4e2b17e (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
(283263 . 3581079094)        
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| (|Integer|))) |has| #1=(|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| #1# (|RetractableTo| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((($) OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|)))) 
(OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|))) 
((((|Fraction| |#2|)) . T)) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((((|Fraction| |#2|)) . T)) 
(((|#3|) . T)) 
(((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . 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)) 
((((|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)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#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|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) (((|UniversalSegment| (|Integer|)) $) . T) ((|#1| |#2|) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
((($) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (((|Kernel| $)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| #1=(|OneDimensionalArray| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|RadixExpansion| 2)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|BalancedPAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|Symbol|) #1=(|BalancedPAdicInteger| |#1|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#1=(|BalancedPAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|BalancedPAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|Integer|)) . T) (((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) (|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|String|)) . T) (((|PrimitiveArray| (|Byte|))) . T) (((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) #1=(|NonNegativeInteger|)) . T) ((|#3| #1#) . T)) 
((((|OutputForm|)) . T)) 
(((|#3|) . T)) 
((((|List| $)) . T) (((|List| |#3|)) . T) (((|SquareMatrix| |#2| |#3|)) . T) (((|DirectProduct| |#2| |#3|)) . T) ((|#3|) . T)) 
(((|#3| (|NonNegativeInteger|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . 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) (((|Integer|)) . T)) 
(((|#2|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|BinaryOperation| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|FiniteFieldCategory|))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|FiniteFieldCategory|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|FiniteFieldCategory|)))) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(((|#1|) . T)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|FiniteFieldCategory|))) 
(((|#1|) . T)) 
((((|Complex| (|DoubleFloat|))) |has| |#1| . #1=((|RealConstant|))) (((|Complex| (|Float|))) |has| |#1| . #1#) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|SparseUnivariatePolynomial| |#1|)) . T) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|))))) 
(AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(AND (|has| |#1| (|RadicalCategory|)) (|has| |#1| (|TranscendentalFunctionCategory|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) ((#2=(|Fraction| |#1|) #2#) . T) ((|#1| |#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Identifier|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|RadixExpansion| 10)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Expression| |#1|)) . T)) 
((((|Expression| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Expression| |#1|)) . T) (((|Integer|)) . T) (($) . T)) 
((((|Expression| |#1|)) . T) (($) . T)) 
((((|Expression| |#1|)) . T) (((|Integer|)) . T)) 
((((|Expression| |#1|)) . T)) 
((($) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InputForm|)) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T) (((|Pattern| (|Float|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
((((|List| |#1|)) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|List| |#1|)) . T) (((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Identifier|)) . T)) 
((((|Constructor|)) . T) (((|OutputForm|)) . T)) 
((((|NonNegativeInteger|) (|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#4| |#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)) (|has| |#4| (|Ring|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|)))) 
((((|OutputForm|)) . T) (((|Vector| |#4|)) . T)) 
(((|#4|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#4| (|Ring|))))) 
(((|#4|) |has| |#4| (|Ring|))) 
(OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|)))) 
((($) OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|))))) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(((|#3|) . T) ((|#2|) . T) (((|Integer|)) . T) ((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)) (|has| |#4| (|Ring|))) (($) |has| |#4| (|Ring|))) 
(AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) 
(|has| |#4| (|Finite|)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) |has| |#4| (|Ring|))) 
(((|#3|) . T) ((|#2|) . T) ((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|))) (($) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#4|) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#4|) |has| |#4| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (|has| |#4| (|Ring|))) ((|#4|) |has| |#4| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
(((|#4|) |has| |#4| (|SetCategory|)) (((|Integer|)) AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
((((|Integer|) |#4|) . T)) 
((((|Integer|) |#4|) . T)) 
((((|Integer|) |#4|) . T)) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)))) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#4| (|OrderedAbelianMonoidSup|)) (|has| |#4| (|OrderedSet|))) 
(OR (|has| |#4| (|OrderedAbelianMonoidSup|)) (|has| |#4| (|OrderedSet|))) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(((|#4|) |has| |#4| (|Field|))) 
(((|#1| |#4|) . T)) 
(((|#3| |#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
((((|OutputForm|)) . T) (((|Vector| |#3|)) . T)) 
(((|#3|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(((|#2|) . T) (((|Integer|)) . T) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(|has| |#3| (|Finite|)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#2|) . T) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) ((|#3|) |has| |#3| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(((|#3|) |has| |#3| (|SetCategory|)) (((|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| |#3|) |#3|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#3| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#3| (|PatternMatchable| (|Float|))))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) ((|#3|) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ |#3|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) ((|#3|) . T)) 
((($ $) . T) ((|#2| $) |has| |#1| . #1=((|DifferentialRing|))) ((|#2| |#1|) |has| |#1| . #1#) ((|#3| |#1|) . T) ((|#3| $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
((((|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|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (((|Integer|)) . T) ((|#3|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T)) 
(((|#1| |#2| |#3| (|IndexedExponents| |#3|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2| |#2|) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T) (((|Integer|)) . 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|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
(((|#1| |#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
((((|Integer|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(|has| |#1| (|Group|)) 
(OR (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|))) 
((((|Boolean|)) |has| |#1| (|SetCategory|)) (((|OutputForm|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|))) 
((#1=((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| . #1#))) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicZero|)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|Symbol|) #1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#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)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Integer|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . 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|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Group|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Group|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|Kernel| $) $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
((((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) ((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Ring|))) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|IntegralDomain|)) (($ $) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|Ring|))) 
((($) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) ((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Ring|))) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (((|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(((|#1|) |has| |#1| (|Ring|)) (((|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(((|#1|) . T)) 
(|has| |#1| (|Group|)) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
((($ (|Symbol|)) |has| |#1| (|Ring|))) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|))))) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Kernel| $)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) OR (AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Fraction| (|Polynomial| |#1|))) |has| |#1| (|IntegralDomain|)) (((|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Symbol|)) . T)) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|))) (|has| |#1| (|Ring|))) ((|#1|) . T) (((|Kernel| $)) . T) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Fraction| (|Polynomial| |#1|))) |has| |#1| (|IntegralDomain|)) (((|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Symbol|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#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|))))) 
((((|Fraction| (|Integer|)) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((#1=(|Integer|) #1#) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) |#1|) . T)) 
((((|DoubleFloat|)) . T)) 
((($) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InputForm|)) . T) (((|String|)) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T) (((|Pattern| (|Float|))) . T)) 
((((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|String|)) . T)) 
((((|String|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
((((|OutputForm|)) . T)) 
(((|#3|) . T) (((|Integer|)) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3| |#3|) . T)) 
(((|#3|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|UniqueFactorizationDomain|)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#)) (((|DoubleFloat|)) . #2=(|has| |#1| (|RealConstant|))) (((|Float|)) . #2#)) 
(|has| |#1| (|RealConstant|)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|UniqueFactorizationDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
((#1=($ $) |has| |#1| (|Eltable| . #1#)) ((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
((#1=($) |has| |#1| (|Evalable| . #1#)) ((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#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)) 
(|has| |#1| (|DifferentialRing|)) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
(((|#1|) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(OR (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|OrderedIntegralDomain|))) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(OR (|has| |#1| (|OrderedIntegralDomain|)) (|has| |#1| (|OrderedSet|))) 
(OR (|has| |#1| (|OrderedIntegralDomain|)) (|has| |#1| (|OrderedSet|))) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|RealConstant|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Float|)) . #1=(|has| |#1| (|RealConstant|))) (((|DoubleFloat|)) . #1#)) 
((((|Integer|)) . T) ((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|)))) 
((((|Fraction| (|Integer|))) |has| |#1| . #1=((|RetractableTo| (|Integer|)))) (((|Integer|)) |has| |#1| . #1#) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|))) ((|#1|) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|) (|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)) 
((((|OutputForm|)) . T)) 
((((|SquareMatrix| |#2| #1=(|Fraction| (|Polynomial| |#1|)))) . T) ((#1#) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
(((#1=(|Fraction| (|Polynomial| |#1|)) #1#) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| |#3|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| |#3|) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| |#3| (|OrderedVariableList| |#1|)) . T)) 
(((|#2| |#2|) . T) ((|#6| |#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|List| |#4|)) . T) (((|OutputForm|)) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|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|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Fraction| (|Integer|)) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|InputForm|)) . T) (((|Fraction| (|SparseUnivariatePolynomial| (|Integer|)))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((((|Float|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|RadixExpansion| 16)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
((($) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (((|Kernel| $)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|String|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
((((|OutputForm|)) AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Pair| |#2| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|InnerPrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|InnerPrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| (|NonNegativeInteger|) |#1|))) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|IP4Address|)) . T)) 
((((|SExpression|)) . T)) 
((((|List| $)) . T) (((|String|)) . T) (((|Symbol|)) . T) (((|Integer|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
((($ $) . T) (((|Integer|) |#1|) . 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|))))) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#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)) 
((($) |has| |#1| (|IntegralDomain|)) (((|Integer|)) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
(((|#1|) OR (|has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|)) (|has| |#2| (|FramedNonAssociativeAlgebra| |#1|)))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . 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)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#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| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
(((|#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)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#2|) . T) (($) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
(((|#2|) . T)) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
(((|#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Any|)) . T)) 
((((|String|) (|Any|)) . T)) 
((((|Symbol|) #1=(|Any|)) . T) (((|String|) #1#) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| #1=(|Any|)))) . T) ((#1#) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| #1=(|Any|)))) . T) ((#1#) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))))) 
((((|String|) (|Any|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
(((#1=(|Any|)) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| #1#))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|String|) (|Any|)) . T)) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
(((|#1|) OR (|has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|)) (|has| |#2| (|FramedNonAssociativeAlgebra| |#1|)))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| (|LinearBasis| |#2|)))) . T)) 
(((|#1|) . T)) 
(((|#1| (|LinearBasis| |#2|)) . T)) 
((((|LinearBasis| |#2|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|LinearElement| |#1| |#2|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#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| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2| |#2|) . T) ((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2|) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
(((|#2| (|LyndonWord| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#))) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(((|#2|) . T) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#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)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SemiGroupOperation| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|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|) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|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)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#2|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#2| |#1|) . T) ((|#2| $) . T) (($ $) . T)) 
((($) . T)) 
((((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|String|)) AND (|has| |#1| (|RetractableTo| (|Integer|))) (|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|))))) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T)) 
((((|Quaternion| |#1|)) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T) (((|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderlyDifferentialVariable| (|Symbol|))) #1#) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((($ $) . T) ((#1=(|Symbol|) $) |has| |#1| . #2=((|DifferentialRing|))) ((#1# |#1|) |has| |#1| . #2#) ((#3=(|OrderlyDifferentialVariable| #1#) |#1|) . T) ((#3# $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|OrderlyDifferentialVariable| #1#)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((#1#) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|Integer|)) . T) (((|OrderlyDifferentialVariable| #1#)) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((#1#) . T)) 
(((|#1| #1=(|Symbol|) #2=(|OrderlyDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(((|#2|) . T)) 
((($) . T)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#) ((|#2|) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Field|)) (($ $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|DifferentialRing|)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((((|Integer|)) . 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|)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) ((|#1|) . T)) 
(((|#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)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . 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|)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) ((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
((((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
((((|Variable| |#1|)) . T) (((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#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|)) (((|Polynomial| |#1|)) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|Polynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|PAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|Symbol|) #1=(|PAdicInteger| |#1|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#1=(|PAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|PAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|PAdicInteger| |#1|)) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|Integer|)) . T) (((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(OR (|has| |#2| (|CharacteristicZero|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Symbol|) |#2|) |has| |#2| (|InnerEvalable| (|Symbol|) |#2|)) ((|#2| |#2|) |has| |#2| (|Evalable| |#2|))) 
(((|#2|) |has| |#2| (|Evalable| |#2|))) 
(((|#2| $) |has| |#2| (|Eltable| |#2| |#2|))) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) |has| |#2| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#2| (|PatternMatchable| (|Float|)))) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(OR (|has| |#2| (|OrderedIntegralDomain|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedIntegralDomain|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(((|#2|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|RealConstant|)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Float|)) . #1=(|has| |#2| (|RealConstant|))) (((|DoubleFloat|)) . #1#)) 
((((|Integer|)) . T) ((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|)))) 
((((|Fraction| (|Integer|))) |has| |#2| . #1=((|RetractableTo| (|Integer|)))) (((|Integer|)) |has| |#2| . #1#) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|))) ((|#2|) . T)) 
(|has| |#2| (|StepThrough|)) 
(((|#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)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|Tree| |#1|)) . T) (((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|Symbol|) $) . T) ((#1# |#1|) . T)) 
((((|Symbol|)) . T)) 
((($ (|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
((((|Float|)) |has| |#1| (|PatternMatchable| (|Float|))) (((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|)))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T) (((|Symbol|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|Symbol|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((((|SingleInteger|)) . T) (((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |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|))))) 
((((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(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|))) 
((((|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)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|List| (|PositiveInteger|))) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|DirectProduct| |#1| |#2|) |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(|has| |#1| (|DifferentialRing|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) 
((((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (($) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (($) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|)) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| (|Integer|))) |has| #1=(|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| #1# (|RetractableTo| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((($) OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|)))) 
(OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|))) 
((((|Fraction| |#2|)) . T)) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((((|Fraction| |#2|)) . T)) 
(((|#3|) . T)) 
(((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) ((#2=(|Integer|) #2#) . T) (($ $) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Fraction| (|Integer|)) (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|List| |#4|)) . T) (((|OutputForm|)) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) . T) (((|OutputForm|)) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|Evalable| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))))) 
(((#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)) 
((((|InputForm|)) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|ConvertibleTo| (|InputForm|)))) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((#1=((|InputForm|)) |has| |#3| (|ConvertibleTo| . #1#))) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#3| |#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
((((|Matrix| |#3|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(((|#1| |#2| |#3| (|DirectProduct| |#2| |#3|) (|DirectProduct| |#1| |#3|)) . T)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Equation| |#3|)) . T)) 
((((|Equation| |#3|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#1|) |has| |#1| (|Field|))) 
((((|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|)))))) 
((($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))))) 
(((|#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|))) (AND (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|)))) 
(OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|FiniteFieldCategory|))) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|FiniteFieldCategory|))) 
(|has| |#1| (|FiniteFieldCategory|)) 
(((|#1| |#2|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1| |#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| #1=(|SequentialDifferentialVariable| (|Symbol|))) #1#) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((($ $) . T) ((#1=(|Symbol|) $) |has| |#1| . #2=((|DifferentialRing|))) ((#1# |#1|) |has| |#1| . #2#) ((#3=(|SequentialDifferentialVariable| #1#) |#1|) . T) ((#3# $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|SequentialDifferentialVariable| #1#)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((#1#) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|Integer|)) . T) (((|SequentialDifferentialVariable| #1#)) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((#1#) . T)) 
(((|#1| #1=(|Symbol|) #2=(|SequentialDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|List| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
((((|OutputForm|)) |has| (|Segment| |#1|) (|SetCategory|))) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| $)) . T) (((|String|)) . T) (((|Symbol|)) . T) (((|Integer|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((((|List| $)) . T) ((|#1|) . T) ((|#2|) . T) ((|#3|) . T) ((|#4|) . T) ((|#5|) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4| |#5|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|BasicType|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(((|#3| |#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CoercibleTo| (|OutputForm|))) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) (((|Vector| |#3|)) . T)) 
(((|#3|) |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|))))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
((((|Integer|)) OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(|has| |#3| (|Finite|)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) ((|#3|) |has| |#3| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(((|#3|) |has| |#3| (|SetCategory|)) (((|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#2| (|ConvertibleTo| (|InputForm|)))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))))) 
((($) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T)) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
(((|#2|) . T)) 
((((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#2| (|PatternMatchable| (|Float|)))) (((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#2| (|PatternMatchable| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T) ((|#2|) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#2|) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
((($) . T)) 
((($ $) . T) ((|#2| $) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($ |#2|) . T)) 
(((|#2|) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . 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|)) |has| (|SplittingNode| |#1| |#2|) (|Evalable| (|SplittingNode| |#1| |#2|)))) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((#1=((|InputForm|)) |has| |#2| (|ConvertibleTo| . #1#))) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|Integer|) (|Character|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#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)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(((#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|))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) 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|))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($ (|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|)))))) 
((((|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|)))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(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|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((#2=(|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) #2#) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
((((|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|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Variable| |#2|)) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| (|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |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|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#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|) (|SingletonAsOrderedSet|)) . T)) 
((((|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|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|NonNegativeInteger|) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(((|#1|) . T)) 
((((|Float|)) . T) (((|Integer|)) . T)) 
((((|Identifier|)) . T)) 
((((|Identifier|)) . T) (((|String|)) . T)) 
((((|Pattern| (|Float|))) . T) (((|Pattern| (|Integer|))) . T) (((|Symbol|)) . T) (((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|Partition|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |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|))))) 
((((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|Partition|)) . T)) 
((((|OutputForm|)) . 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)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#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|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#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)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) (|String|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((($) . T)) 
((($ $) . T) (((|Symbol|) $) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($ (|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Symbol|)) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|PrimitiveArray| |#1|)) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) (((|PrimitiveArray| |#1|)) . T)) 
((((|PrimitiveArray| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|UnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(((#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|))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) 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|))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($ (|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|)))))) 
((((|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|)))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(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|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|UnivariateTaylorSeries| |#1| |#2| |#3|)))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((#2=(|UnivariateTaylorSeries| |#1| |#2| |#3|) #2#) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(((|#2|) |has| |#1| (|Field|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|StepThrough|))) 
(((|#2|) . T) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) (((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|))))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(((|#2|) |has| |#1| (|Field|))) 
(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| (|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|))) 
((((|Float|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Float|)))) (((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Integer|))))) 
(((|#2|) |has| |#1| (|Field|))) 
((((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) ((|#2|) |has| |#1| (|Field|))) 
(((|#2|) |has| |#1| (|Field|))) 
(((|#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|)))) 
(((|#2| |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|))) (((|Symbol|) |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|InnerEvalable| (|Symbol|) |#2|)))) 
(((|#2|) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) 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|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(((|#2|) |has| |#1| (|Field|))) 
((($ (|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| (|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|)))))) 
(((|#2|) |has| |#1| (|Field|))) 
((((|DoubleFloat|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) (((|Float|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) (((|Pattern| (|Float|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|InputForm|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|InputForm|))))) 
(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|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#2| $) AND (|has| |#1| (|Field|)) (|has| |#2| (|Eltable| |#2| |#2|))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2| |#2|) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) . T) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| |#2|) . T)) 
(((|#1| (|Stream| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#2| (|IntegralDomain|)) (($ $) . T) ((|#2| |#2|) . T)) 
(|has| |#2| (|Field|)) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(|has| |#2| (|Field|)) 
(((|#2| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|NonNegativeInteger|)) . T)) 
(((|#2|) . T)) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((((|Variable| |#1|)) . T) (((|Integer|)) . T) (($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#2|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#2| (|StepThrough|)) 
(((|#2|) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
((((|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|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Variable| |#2|)) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| (|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#2|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . 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|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#2|) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| |#2|) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicZero|)) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
((($) . 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|))))) 
((((|OutputForm|)) . 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|))))) 
((($ $) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
(((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) . T) (((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |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|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#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|) (|SingletonAsOrderedSet|)) . T)) 
((((|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|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|NonNegativeInteger|) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(((|#1|) . T)) 
((((|Symbol|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . 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|)) ((|#4|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#4|) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| (|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| (|PoincareBirkhoffWittLyndonBasis| |#1|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) ((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Symbol|) |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| (|Symbol|))) . T)) 
((((|OrderedFreeMonoid| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2|) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
(((|IntegerMod| . |CommutativeRing|) T) ((|IntegerMod| . |CoercibleFrom|) 283240) ((|IntegerMod| . |Rng|) T) ((|IntegerMod| . |SemiGroup|) T) ((|IntegerMod| . |SemiRing|) T) ((|IntegerMod| . |Monoid|) T) ((|IntegerMod| . |Ring|) T) ((|IntegerMod| . |LeftModule|) 283227) ((|IntegerMod| . |LeftLinearSet|) 283194) ((|IntegerMod| . |CancellationAbelianMonoid|) T) ((|IntegerMod| . |AbelianSemiGroup|) T) ((|IntegerMod| . |BasicType|) T) ((|IntegerMod| . |Join|) T) ((|IntegerMod| . |Type|) T) ((|IntegerMod| . |CoercibleTo|) 283168) ((|IntegerMod| . |SetCategory|) T) ((|IntegerMod| . |AbelianMonoid|) T) ((|IntegerMod| . |AbelianGroup|) T) ((|IntegerMod| . |RightModule|) 283155) ((|IntegerMod| . |RightLinearSet|) 283142) ((|IntegerMod| . |BiModule|) 283127) ((|IntegerMod| . |Finite|) T) ((|IntegerMod| . |ConvertibleTo|) 283104) ((|IntegerMod| . |StepThrough|) T) ((|YoungDiagram| . |SetCategory|) T) ((|YoungDiagram| . |CoercibleTo|) 283056) ((|YoungDiagram| . |Type|) T) ((|YoungDiagram| . |Join|) T) ((|YoungDiagram| . |BasicType|) T) ((|YoungDiagram| . |HomotopicTo|) 283031) ((|YoungDiagram| . |CoercibleFrom|) 283006) ((|XRecursivePolynomial| . |XPolynomialsCat|) 282985) ((|XRecursivePolynomial| . |Functorial|) 282969) ((|XRecursivePolynomial| . |Join|) T) ((|XRecursivePolynomial| . |Type|) T) ((|XRecursivePolynomial| . |RetractableTo|) 282931) ((|XRecursivePolynomial| . |CoercibleFrom|) 282860) ((|XRecursivePolynomial| . |Ring|) T) ((|XRecursivePolynomial| . |Monoid|) T) ((|XRecursivePolynomial| . |SemiRing|) T) ((|XRecursivePolynomial| . |SemiGroup|) T) ((|XRecursivePolynomial| . |Rng|) T) ((|XRecursivePolynomial| . |AbelianGroup|) T) ((|XRecursivePolynomial| . |LeftLinearSet|) 282814) ((|XRecursivePolynomial| . |AbelianMonoid|) T) ((|XRecursivePolynomial| . |SetCategory|) T) ((|XRecursivePolynomial| . |CoercibleTo|) 282788) ((|XRecursivePolynomial| . |BasicType|) T) ((|XRecursivePolynomial| . |AbelianSemiGroup|) T) ((|XRecursivePolynomial| . |CancellationAbelianMonoid|) T) ((|XRecursivePolynomial| . |LeftModule|) 282762) ((|XRecursivePolynomial| . |XAlgebra|) 282746) ((|XRecursivePolynomial| . |Module|) 282703) ((|XRecursivePolynomial| . |LinearSet|) 282660) ((|XRecursivePolynomial| . |RightModule|) 282644) ((|XRecursivePolynomial| . |RightLinearSet|) 282628) ((|XRecursivePolynomial| . |BiModule|) 282607) ((|XRecursivePolynomial| . |Algebra|) 282564) ((|XRecursivePolynomial| . |XFreeAlgebra|) 282543) ((|XPolynomialRing| . |Ring|) T) ((|XPolynomialRing| . |Monoid|) T) ((|XPolynomialRing| . |SemiRing|) T) ((|XPolynomialRing| . |SemiGroup|) T) ((|XPolynomialRing| . |Rng|) T) ((|XPolynomialRing| . |AbelianGroup|) T) ((|XPolynomialRing| . |LeftLinearSet|) 282497) ((|XPolynomialRing| . |AbelianMonoid|) T) ((|XPolynomialRing| . |SetCategory|) T) ((|XPolynomialRing| . |CoercibleTo|) 282471) ((|XPolynomialRing| . |Type|) T) ((|XPolynomialRing| . |Join|) T) ((|XPolynomialRing| . |BasicType|) T) ((|XPolynomialRing| . |AbelianSemiGroup|) T) ((|XPolynomialRing| . |CancellationAbelianMonoid|) T) ((|XPolynomialRing| . |LeftModule|) 282445) ((|XPolynomialRing| . |CoercibleFrom|) 282396) ((|XPolynomialRing| . |XAlgebra|) 282380) ((|XPolynomialRing| . |Module|) 282337) ((|XPolynomialRing| . |LinearSet|) 282294) ((|XPolynomialRing| . |RightModule|) 282278) ((|XPolynomialRing| . |RightLinearSet|) 282262) ((|XPolynomialRing| . |BiModule|) 282241) ((|XPolynomialRing| . |Algebra|) 282198) ((|XPolynomialRing| . |FreeModuleCat|) 282177) ((|XPolynomialRing| . |RetractableTo|) 282161) ((|XPolynomialRing| . |Functorial|) 282145) ((|XPolynomial| . |XPolynomialsCat|) 282118) ((|XPolynomial| . |Functorial|) 282102) ((|XPolynomial| . |Join|) T) ((|XPolynomial| . |Type|) T) ((|XPolynomial| . |RetractableTo|) 282058) ((|XPolynomial| . |CoercibleFrom|) 281981) ((|XPolynomial| . |Ring|) T) ((|XPolynomial| . |Monoid|) T) ((|XPolynomial| . |SemiRing|) T) ((|XPolynomial| . |SemiGroup|) T) ((|XPolynomial| . |Rng|) T) ((|XPolynomial| . |AbelianGroup|) T) ((|XPolynomial| . |LeftLinearSet|) 281935) ((|XPolynomial| . |AbelianMonoid|) T) ((|XPolynomial| . |SetCategory|) T) ((|XPolynomial| . |CoercibleTo|) 281909) ((|XPolynomial| . |BasicType|) T) ((|XPolynomial| . |AbelianSemiGroup|) T) ((|XPolynomial| . |CancellationAbelianMonoid|) T) ((|XPolynomial| . |LeftModule|) 281883) ((|XPolynomial| . |XAlgebra|) 281867) ((|XPolynomial| . |Module|) 281824) ((|XPolynomial| . |LinearSet|) 281781) ((|XPolynomial| . |RightModule|) 281765) ((|XPolynomial| . |RightLinearSet|) 281749) ((|XPolynomial| . |BiModule|) 281728) ((|XPolynomial| . |Algebra|) 281685) ((|XPolynomial| . |XFreeAlgebra|) 281658) ((|XPBWPolynomial| . |XPolynomialsCat|) 281637) ((|XPBWPolynomial| . |Functorial|) 281621) ((|XPBWPolynomial| . |Join|) T) ((|XPBWPolynomial| . |Type|) T) ((|XPBWPolynomial| . |RetractableTo|) 281534) ((|XPBWPolynomial| . |CoercibleFrom|) 281414) ((|XPBWPolynomial| . |Ring|) T) ((|XPBWPolynomial| . |Monoid|) T) ((|XPBWPolynomial| . |SemiRing|) T) ((|XPBWPolynomial| . |SemiGroup|) T) ((|XPBWPolynomial| . |Rng|) T) ((|XPBWPolynomial| . |AbelianGroup|) T) ((|XPBWPolynomial| . |LeftLinearSet|) 281368) ((|XPBWPolynomial| . |AbelianMonoid|) T) ((|XPBWPolynomial| . |SetCategory|) T) ((|XPBWPolynomial| . |CoercibleTo|) 281342) ((|XPBWPolynomial| . |BasicType|) T) ((|XPBWPolynomial| . |AbelianSemiGroup|) T) ((|XPBWPolynomial| . |CancellationAbelianMonoid|) T) ((|XPBWPolynomial| . |LeftModule|) 281316) ((|XPBWPolynomial| . |XAlgebra|) 281300) ((|XPBWPolynomial| . |Module|) 281257) ((|XPBWPolynomial| . |LinearSet|) 281214) ((|XPBWPolynomial| . |RightModule|) 281198) ((|XPBWPolynomial| . |RightLinearSet|) 281182) ((|XPBWPolynomial| . |BiModule|) 281161) ((|XPBWPolynomial| . |Algebra|) 281118) ((|XPBWPolynomial| . |XFreeAlgebra|) 281097) ((|XPBWPolynomial| . |FreeModuleCat|) 281040) ((|XDistributedPolynomial| . |FreeModuleCat|) 280997) ((|XDistributedPolynomial| . |CoercibleFrom|) 280926) ((|XDistributedPolynomial| . |RetractableTo|) 280888) ((|XDistributedPolynomial| . |LinearSet|) 280845) ((|XDistributedPolynomial| . |Module|) 280802) ((|XDistributedPolynomial| . |Functorial|) 280786) ((|XDistributedPolynomial| . |LeftModule|) 280760) ((|XDistributedPolynomial| . |LeftLinearSet|) 280714) ((|XDistributedPolynomial| . |CancellationAbelianMonoid|) T) ((|XDistributedPolynomial| . |AbelianSemiGroup|) T) ((|XDistributedPolynomial| . |BasicType|) T) ((|XDistributedPolynomial| . |Join|) T) ((|XDistributedPolynomial| . |Type|) T) ((|XDistributedPolynomial| . |CoercibleTo|) 280688) ((|XDistributedPolynomial| . |SetCategory|) T) ((|XDistributedPolynomial| . |AbelianMonoid|) T) ((|XDistributedPolynomial| . |AbelianGroup|) T) ((|XDistributedPolynomial| . |RightModule|) 280672) ((|XDistributedPolynomial| . |RightLinearSet|) 280656) ((|XDistributedPolynomial| . |BiModule|) 280635) ((|XDistributedPolynomial| . |XPolynomialsCat|) 280614) ((|XDistributedPolynomial| . |Ring|) T) ((|XDistributedPolynomial| . |Monoid|) T) ((|XDistributedPolynomial| . |SemiRing|) T) ((|XDistributedPolynomial| . |SemiGroup|) T) ((|XDistributedPolynomial| . |Rng|) T) ((|XDistributedPolynomial| . |XAlgebra|) 280598) ((|XDistributedPolynomial| . |Algebra|) 280555) ((|XDistributedPolynomial| . |XFreeAlgebra|) 280534) ((|WuWenTsunTriangularSet| . |TriangularSetCategory|) 280503) ((|WuWenTsunTriangularSet| . |ShallowlyMutableAggregate|) 280487) ((|WuWenTsunTriangularSet| . |CoercibleTo|) 280439) ((|WuWenTsunTriangularSet| . |Collection|) 280423) ((|WuWenTsunTriangularSet| . |Aggregate|) T) ((|WuWenTsunTriangularSet| . |Join|) T) ((|WuWenTsunTriangularSet| . |Type|) T) ((|WuWenTsunTriangularSet| . |BasicType|) T) ((|WuWenTsunTriangularSet| . |Evalable|) 280347) ((|WuWenTsunTriangularSet| . |InnerEvalable|) 280266) ((|WuWenTsunTriangularSet| . |Functorial|) 280250) ((|WuWenTsunTriangularSet| . |SetCategory|) T) ((|WuWenTsunTriangularSet| . |HomogeneousAggregate|) 280234) ((|WuWenTsunTriangularSet| . |ConvertibleTo|) 280170) ((|WuWenTsunTriangularSet| . |FiniteAggregate|) 280154) ((|WuWenTsunTriangularSet| . |PolynomialSetCategory|) 280123) ((|WeightedPolynomials| . |Ring|) T) ((|WeightedPolynomials| . |Monoid|) T) ((|WeightedPolynomials| . |SemiRing|) T) ((|WeightedPolynomials| . |SemiGroup|) T) ((|WeightedPolynomials| . |Rng|) T) ((|WeightedPolynomials| . |AbelianGroup|) T) ((|WeightedPolynomials| . |LeftLinearSet|) 280050) ((|WeightedPolynomials| . |AbelianMonoid|) T) ((|WeightedPolynomials| . |SetCategory|) T) ((|WeightedPolynomials| . |CoercibleTo|) 280011) ((|WeightedPolynomials| . |Type|) T) ((|WeightedPolynomials| . |Join|) T) ((|WeightedPolynomials| . |BasicType|) T) ((|WeightedPolynomials| . |AbelianSemiGroup|) T) ((|WeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|WeightedPolynomials| . |LeftModule|) 279958) ((|WeightedPolynomials| . |CoercibleFrom|) 279882) ((|WeightedPolynomials| . |HomotopicTo|) 279866) ((|WeightedPolynomials| . |Algebra|) 279823) ((|WeightedPolynomials| . |BiModule|) 279775) ((|WeightedPolynomials| . |RightLinearSet|) 279732) ((|WeightedPolynomials| . |RightModule|) 279689) ((|WeightedPolynomials| . |LinearSet|) 279646) ((|WeightedPolynomials| . |Module|) 279603) ((|WhileAst| . |SpadSyntaxCategory|) T) ((|WhileAst| . |HomotopicTo|) 279581) ((|WhileAst| . |CoercibleTo|) 279536) ((|WhileAst| . |CoercibleFrom|) 279514) ((|WhileAst| . |SetCategory|) T) ((|WhileAst| . |Type|) T) ((|WhileAst| . |Join|) T) ((|WhileAst| . |BasicType|) T) ((|WhileAst| . |AbstractSyntaxCategory|) T) ((|WhereAst| . |SpadSyntaxCategory|) T) ((|WhereAst| . |HomotopicTo|) 279492) ((|WhereAst| . |CoercibleTo|) 279447) ((|WhereAst| . |CoercibleFrom|) 279425) ((|WhereAst| . |SetCategory|) T) ((|WhereAst| . |Type|) T) ((|WhereAst| . |Join|) T) ((|WhereAst| . |BasicType|) T) ((|WhereAst| . |AbstractSyntaxCategory|) T) ((|Void| . |CoercibleTo|) 279399) ((|ThreeDimensionalViewport| . |SetCategory|) T) ((|ThreeDimensionalViewport| . |CoercibleTo|) 279373) ((|ThreeDimensionalViewport| . |Type|) T) ((|ThreeDimensionalViewport| . |Join|) T) ((|ThreeDimensionalViewport| . |BasicType|) T) ((|TwoDimensionalViewport| . |SetCategory|) T) ((|TwoDimensionalViewport| . |CoercibleTo|) 279347) ((|TwoDimensionalViewport| . |Type|) T) ((|TwoDimensionalViewport| . |Join|) T) ((|TwoDimensionalViewport| . |BasicType|) T) ((|Vector| . |VectorCategory|) 279331) ((|Vector| . |FiniteLinearAggregate|) 279315) ((|Vector| . |OrderedType|) 279286) ((|Vector| . |OrderedSet|) 279257) ((|Vector| . |Collection|) 279241) ((|Vector| . |ConvertibleTo|) 279177) ((|Vector| . |Eltable|) 279106) ((|Vector| . |IndexedAggregate|) 279078) ((|Vector| . |EltableAggregate|) 279050) ((|Vector| . |LinearAggregate|) 279034) ((|Vector| . |HomogeneousAggregate|) 279018) ((|Vector| . |SetCategory|) 278955) ((|Vector| . |Functorial|) 278939) ((|Vector| . |InnerEvalable|) 278858) ((|Vector| . |Evalable|) 278782) ((|Vector| . |CoercibleTo|) 278656) ((|Vector| . |BasicType|) 278566) ((|Vector| . |Type|) T) ((|Vector| . |Join|) T) ((|Vector| . |Aggregate|) T) ((|Vector| . |FiniteAggregate|) 278550) ((|Vector| . |ShallowlyMutableAggregate|) 278534) ((|Vector| . |OneDimensionalArrayAggregate|) 278518) ((|Variable| . |SetCategory|) T) ((|Variable| . |CoercibleTo|) 278473) ((|Variable| . |Type|) T) ((|Variable| . |Join|) T) ((|Variable| . |BasicType|) T) ((|UnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 278457) ((|UnivariateTaylorSeries| . |DifferentialRing|) 278394) ((|UnivariateTaylorSeries| . |CoercibleFrom|) 278218) ((|UnivariateTaylorSeries| . |LeftModule|) 278115) ((|UnivariateTaylorSeries| . |LeftLinearSet|) 277992) ((|UnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|UnivariateTaylorSeries| . |BasicType|) T) ((|UnivariateTaylorSeries| . |CoercibleTo|) 277966) ((|UnivariateTaylorSeries| . |SetCategory|) T) ((|UnivariateTaylorSeries| . |AbelianMonoid|) T) ((|UnivariateTaylorSeries| . |AbelianGroup|) T) ((|UnivariateTaylorSeries| . |Rng|) T) ((|UnivariateTaylorSeries| . |SemiGroup|) T) ((|UnivariateTaylorSeries| . |SemiRing|) T) ((|UnivariateTaylorSeries| . |Monoid|) T) ((|UnivariateTaylorSeries| . |Ring|) T) ((|UnivariateTaylorSeries| . |DifferentialDomain|) 277897) ((|UnivariateTaylorSeries| . |Join|) T) ((|UnivariateTaylorSeries| . |Type|) T) ((|UnivariateTaylorSeries| . |DifferentialSpace|) 277834) ((|UnivariateTaylorSeries| . |Eltable|) 277783) ((|UnivariateTaylorSeries| . |PartialDifferentialRing|) 277647) ((|UnivariateTaylorSeries| . |PartialDifferentialDomain|) 277481) ((|UnivariateTaylorSeries| . |PartialDifferentialSpace|) 277345) ((|UnivariateTaylorSeries| . |PowerSeriesCategory|) 277280) ((|UnivariateTaylorSeries| . |Algebra|) 277124) ((|UnivariateTaylorSeries| . |BiModule|) 276943) ((|UnivariateTaylorSeries| . |RightLinearSet|) 276776) ((|UnivariateTaylorSeries| . |RightModule|) 276609) ((|UnivariateTaylorSeries| . |LinearSet|) 276453) ((|UnivariateTaylorSeries| . |Module|) 276297) ((|UnivariateTaylorSeries| . |CharacteristicNonZero|) 276257) ((|UnivariateTaylorSeries| . |CharacteristicZero|) 276220) ((|UnivariateTaylorSeries| . |CommutativeRing|) 276149) ((|UnivariateTaylorSeries| . |Functorial|) 276133) ((|UnivariateTaylorSeries| . |IntegralDomain|) 276100) ((|UnivariateTaylorSeries| . |EntireRing|) 276067) ((|UnivariateTaylorSeries| . |AbelianMonoidRing|) 276028) ((|UnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 275989) ((|UnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 275938) ((|UnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 275887) ((|UnivariateTaylorSeries| . |ElementaryFunctionCategory|) 275836) ((|UnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 275785) ((|UnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 275734) ((|UnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 275683) ((|UnivariateTaylorSeries| . |RadicalCategory|) 275632) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FiniteAbelianMonoidRing|) 275522) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RetractableTo|) 275468) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FullyRetractableTo|) 275414) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Algebra|) 275245) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleFrom|) 275046) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftModule|) 274903) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftLinearSet|) 274740) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Rng|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Monoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Ring|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BiModule|) 274584) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightLinearSet|) 274441) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightModule|) 274298) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleTo|) 274272) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Type|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Join|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BasicType|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LinearSet|) 274103) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Module|) 273934) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicNonZero|) 273856) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicZero|) 273781) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CommutativeRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Functorial|) 273727) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |IntegralDomain|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |EntireRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoidRing|) 273617) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesConstructorCategory|) 273596) ((|UnivariatePuiseuxSeriesConstructor| . |Field|) 273572) ((|UnivariatePuiseuxSeriesConstructor| . |UniqueFactorizationDomain|) 273548) ((|UnivariatePuiseuxSeriesConstructor| . |PrincipalIdealDomain|) 273524) ((|UnivariatePuiseuxSeriesConstructor| . |IntegralDomain|) 273463) ((|UnivariatePuiseuxSeriesConstructor| . |CommutativeRing|) 273369) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleFrom|) 273124) ((|UnivariatePuiseuxSeriesConstructor| . |Module|) 272912) ((|UnivariatePuiseuxSeriesConstructor| . |LinearSet|) 272700) ((|UnivariatePuiseuxSeriesConstructor| . |Algebra|) 272488) ((|UnivariatePuiseuxSeriesConstructor| . |GcdDomain|) 272464) ((|UnivariatePuiseuxSeriesConstructor| . |EuclideanDomain|) 272440) ((|UnivariatePuiseuxSeriesConstructor| . |LeftModule|) 272309) ((|UnivariatePuiseuxSeriesConstructor| . |LeftLinearSet|) 272158) ((|UnivariatePuiseuxSeriesConstructor| . |Rng|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Monoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Ring|) T) ((|UnivariatePuiseuxSeriesConstructor| . |BiModule|) 271926) ((|UnivariatePuiseuxSeriesConstructor| . |RightLinearSet|) 271708) ((|UnivariatePuiseuxSeriesConstructor| . |RightModule|) 271490) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleTo|) 271464) ((|UnivariatePuiseuxSeriesConstructor| . |Type|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Join|) T) ((|UnivariatePuiseuxSeriesConstructor| . |BasicType|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |EntireRing|) 271403) ((|UnivariatePuiseuxSeriesConstructor| . |DivisionRing|) 271379) ((|UnivariatePuiseuxSeriesConstructor| . |RadicalCategory|) 271328) ((|UnivariatePuiseuxSeriesConstructor| . |TranscendentalFunctionCategory|) 271277) ((|UnivariatePuiseuxSeriesConstructor| . |TrigonometricFunctionCategory|) 271226) ((|UnivariatePuiseuxSeriesConstructor| . |HyperbolicFunctionCategory|) 271175) ((|UnivariatePuiseuxSeriesConstructor| . |ElementaryFunctionCategory|) 271124) ((|UnivariatePuiseuxSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 271073) ((|UnivariatePuiseuxSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 271022) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePowerSeriesCategory|) 270981) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoidRing|) 270940) ((|UnivariatePuiseuxSeriesConstructor| . |Functorial|) 270924) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicZero|) 270887) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicNonZero|) 270847) ((|UnivariatePuiseuxSeriesConstructor| . |PowerSeriesCategory|) 270780) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialSpace|) 270642) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialDomain|) 270502) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialRing|) 270364) ((|UnivariatePuiseuxSeriesConstructor| . |Eltable|) 270311) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialSpace|) 270246) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialDomain|) 270175) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialRing|) 270110) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesCategory|) 270094) ((|UnivariatePuiseuxSeriesConstructor| . |RetractableTo|) 270078) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 270019) ((|UnivariatePuiseuxSeries| . |Field|) 269995) ((|UnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 269971) ((|UnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 269947) ((|UnivariatePuiseuxSeries| . |IntegralDomain|) 269886) ((|UnivariatePuiseuxSeries| . |CommutativeRing|) 269792) ((|UnivariatePuiseuxSeries| . |CoercibleFrom|) 269433) ((|UnivariatePuiseuxSeries| . |Module|) 269221) ((|UnivariatePuiseuxSeries| . |LinearSet|) 269009) ((|UnivariatePuiseuxSeries| . |Algebra|) 268797) ((|UnivariatePuiseuxSeries| . |GcdDomain|) 268773) ((|UnivariatePuiseuxSeries| . |EuclideanDomain|) 268749) ((|UnivariatePuiseuxSeries| . |LeftModule|) 268618) ((|UnivariatePuiseuxSeries| . |LeftLinearSet|) 268467) ((|UnivariatePuiseuxSeries| . |Rng|) T) ((|UnivariatePuiseuxSeries| . |SemiGroup|) T) ((|UnivariatePuiseuxSeries| . |SemiRing|) T) ((|UnivariatePuiseuxSeries| . |Monoid|) T) ((|UnivariatePuiseuxSeries| . |Ring|) T) ((|UnivariatePuiseuxSeries| . |BiModule|) 268235) ((|UnivariatePuiseuxSeries| . |RightLinearSet|) 268017) ((|UnivariatePuiseuxSeries| . |RightModule|) 267799) ((|UnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |SetCategory|) T) ((|UnivariatePuiseuxSeries| . |CoercibleTo|) 267773) ((|UnivariatePuiseuxSeries| . |Type|) T) ((|UnivariatePuiseuxSeries| . |Join|) T) ((|UnivariatePuiseuxSeries| . |BasicType|) T) ((|UnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |EntireRing|) 267712) ((|UnivariatePuiseuxSeries| . |DivisionRing|) 267688) ((|UnivariatePuiseuxSeries| . |RadicalCategory|) 267637) ((|UnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 267586) ((|UnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 267535) ((|UnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 267484) ((|UnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 267433) ((|UnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 267382) ((|UnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 267331) ((|UnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 267290) ((|UnivariatePuiseuxSeries| . |AbelianMonoidRing|) 267249) ((|UnivariatePuiseuxSeries| . |Functorial|) 267233) ((|UnivariatePuiseuxSeries| . |CharacteristicZero|) 267196) ((|UnivariatePuiseuxSeries| . |CharacteristicNonZero|) 267156) ((|UnivariatePuiseuxSeries| . |PowerSeriesCategory|) 267089) ((|UnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 266951) ((|UnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 266783) ((|UnivariatePuiseuxSeries| . |PartialDifferentialRing|) 266645) ((|UnivariatePuiseuxSeries| . |Eltable|) 266592) ((|UnivariatePuiseuxSeries| . |DifferentialSpace|) 266527) ((|UnivariatePuiseuxSeries| . |DifferentialDomain|) 266456) ((|UnivariatePuiseuxSeries| . |DifferentialRing|) 266391) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 266375) ((|UnivariatePuiseuxSeries| . |RetractableTo|) 266271) ((|UnivariatePolynomial| . |UnivariatePolynomialCategory|) 266255) ((|UnivariatePolynomial| . |StepThrough|) 266225) ((|UnivariatePolynomial| . |ConvertibleTo|) NIL) ((|UnivariatePolynomial| . |Evalable|) 266212) ((|UnivariatePolynomial| . |InnerEvalable|) 266141) ((|UnivariatePolynomial| . |FiniteAbelianMonoidRing|) 266102) ((|UnivariatePolynomial| . |RetractableTo|) 265912) ((|UnivariatePolynomial| . |FullyRetractableTo|) 265896) ((|UnivariatePolynomial| . |Algebra|) 265636) ((|UnivariatePolynomial| . |BiModule|) 265356) ((|UnivariatePolynomial| . |RightLinearSet|) 265090) ((|UnivariatePolynomial| . |RightModule|) 264824) ((|UnivariatePolynomial| . |LeftLinearSet|) 264701) ((|UnivariatePolynomial| . |LeftModule|) 264530) ((|UnivariatePolynomial| . |LinearSet|) 264270) ((|UnivariatePolynomial| . |Module|) 264010) ((|UnivariatePolynomial| . |CoercibleFrom|) 263636) ((|UnivariatePolynomial| . |CharacteristicNonZero|) 263596) ((|UnivariatePolynomial| . |CharacteristicZero|) 263559) ((|UnivariatePolynomial| . |Functorial|) 263543) ((|UnivariatePolynomial| . |AbelianMonoidRing|) 263504) ((|UnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 263488) ((|UnivariatePolynomial| . |LinearlyExplicitRingOver|) 263404) ((|UnivariatePolynomial| . |PartialDifferentialRing|) 263302) ((|UnivariatePolynomial| . |PartialDifferentialDomain|) 263138) ((|UnivariatePolynomial| . |PartialDifferentialSpace|) 262978) ((|UnivariatePolynomial| . |PatternMatchable|) NIL) ((|UnivariatePolynomial| . |PolynomialFactorizationExplicit|) 262928) ((|UnivariatePolynomial| . |UniqueFactorizationDomain|) 262878) ((|UnivariatePolynomial| . |PolynomialCategory|) 262813) ((|UnivariatePolynomial| . |PrincipalIdealDomain|) 262789) ((|UnivariatePolynomial| . |IntegralDomain|) 262652) ((|UnivariatePolynomial| . |EntireRing|) 262515) ((|UnivariatePolynomial| . |CommutativeRing|) 262345) ((|UnivariatePolynomial| . |GcdDomain|) 262240) ((|UnivariatePolynomial| . |EuclideanDomain|) 262216) ((|UnivariatePolynomial| . |Eltable|) 262119) ((|UnivariatePolynomial| . |DifferentialRing|) T) ((|UnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariatePolynomial| . |AbelianSemiGroup|) T) ((|UnivariatePolynomial| . |BasicType|) T) ((|UnivariatePolynomial| . |CoercibleTo|) 262093) ((|UnivariatePolynomial| . |SetCategory|) T) ((|UnivariatePolynomial| . |AbelianMonoid|) T) ((|UnivariatePolynomial| . |AbelianGroup|) T) ((|UnivariatePolynomial| . |Rng|) T) ((|UnivariatePolynomial| . |SemiGroup|) T) ((|UnivariatePolynomial| . |SemiRing|) T) ((|UnivariatePolynomial| . |Monoid|) T) ((|UnivariatePolynomial| . |Ring|) T) ((|UnivariatePolynomial| . |DifferentialDomain|) 262080) ((|UnivariatePolynomial| . |Join|) T) ((|UnivariatePolynomial| . |Type|) T) ((|UnivariatePolynomial| . |DifferentialSpace|) T) ((|UnivariatePolynomial| . |DifferentialSpaceExtension|) 262064) ((|UnivariatePolynomial| . |DifferentialExtension|) 262048) ((|UniversalSegment| . |SegmentCategory|) 262032) ((|UniversalSegment| . |ConvertibleFrom|) 262016) ((|UniversalSegment| . |SetCategory|) 261986) ((|UniversalSegment| . |CoercibleTo|) 261937) ((|UniversalSegment| . |Type|) 261907) ((|UniversalSegment| . |Join|) 261877) ((|UniversalSegment| . |BasicType|) 261847) ((|UniversalSegment| . |SegmentExpansionCategory|) 261792) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesConstructorCategory|) 261771) ((|UnivariateLaurentSeriesConstructor| . |RadicalCategory|) 261720) ((|UnivariateLaurentSeriesConstructor| . |TranscendentalFunctionCategory|) 261669) ((|UnivariateLaurentSeriesConstructor| . |TrigonometricFunctionCategory|) 261618) ((|UnivariateLaurentSeriesConstructor| . |HyperbolicFunctionCategory|) 261567) ((|UnivariateLaurentSeriesConstructor| . |ElementaryFunctionCategory|) 261516) ((|UnivariateLaurentSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 261465) ((|UnivariateLaurentSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 261414) ((|UnivariateLaurentSeriesConstructor| . |UnivariatePowerSeriesCategory|) 261386) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoidRing|) 261358) ((|UnivariateLaurentSeriesConstructor| . |Functorial|) 261312) ((|UnivariateLaurentSeriesConstructor| . |CoercibleFrom|) 260983) ((|UnivariateLaurentSeriesConstructor| . |Module|) 260741) ((|UnivariateLaurentSeriesConstructor| . |LinearSet|) 260499) ((|UnivariateLaurentSeriesConstructor| . |LeftModule|) 260241) ((|UnivariateLaurentSeriesConstructor| . |LeftLinearSet|) 260060) ((|UnivariateLaurentSeriesConstructor| . |RightModule|) 259812) ((|UnivariateLaurentSeriesConstructor| . |RightLinearSet|) 259564) ((|UnivariateLaurentSeriesConstructor| . |BiModule|) 259297) ((|UnivariateLaurentSeriesConstructor| . |Algebra|) 259055) ((|UnivariateLaurentSeriesConstructor| . |PowerSeriesCategory|) 259001) ((|UnivariateLaurentSeriesConstructor| . |Eltable|) 258888) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesCategory|) 258872) ((|UnivariateLaurentSeriesConstructor| . |Rng|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiRing|) T) ((|UnivariateLaurentSeriesConstructor| . |Monoid|) T) ((|UnivariateLaurentSeriesConstructor| . |Ring|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |SetCategory|) T) ((|UnivariateLaurentSeriesConstructor| . |CoercibleTo|) 258846) ((|UnivariateLaurentSeriesConstructor| . |Type|) T) ((|UnivariateLaurentSeriesConstructor| . |Join|) T) ((|UnivariateLaurentSeriesConstructor| . |BasicType|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicNonZero|) 258733) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicZero|) 258558) ((|UnivariateLaurentSeriesConstructor| . |ConvertibleTo|) 258101) ((|UnivariateLaurentSeriesConstructor| . |DifferentialExtension|) 258068) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialRing|) 257857) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialSpace|) 257564) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialDomain|) 257269) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpaceExtension|) 257236) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpace|) 257052) ((|UnivariateLaurentSeriesConstructor| . |DifferentialDomain|) 256862) ((|UnivariateLaurentSeriesConstructor| . |DifferentialRing|) 256742) ((|UnivariateLaurentSeriesConstructor| . |Field|) 256718) ((|UnivariateLaurentSeriesConstructor| . |UniqueFactorizationDomain|) 256694) ((|UnivariateLaurentSeriesConstructor| . |PrincipalIdealDomain|) 256670) ((|UnivariateLaurentSeriesConstructor| . |IntegralDomain|) 256609) ((|UnivariateLaurentSeriesConstructor| . |CommutativeRing|) 256515) ((|UnivariateLaurentSeriesConstructor| . |GcdDomain|) 256491) ((|UnivariateLaurentSeriesConstructor| . |EuclideanDomain|) 256467) ((|UnivariateLaurentSeriesConstructor| . |EntireRing|) 256406) ((|UnivariateLaurentSeriesConstructor| . |DivisionRing|) 256382) ((|UnivariateLaurentSeriesConstructor| . |FullyEvalableOver|) 256349) ((|UnivariateLaurentSeriesConstructor| . |InnerEvalable|) 256180) ((|UnivariateLaurentSeriesConstructor| . |Evalable|) 256110) ((|UnivariateLaurentSeriesConstructor| . |FullyLinearlyExplicitRingOver|) 256077) ((|UnivariateLaurentSeriesConstructor| . |LinearlyExplicitRingOver|) 255947) ((|UnivariateLaurentSeriesConstructor| . |FullyPatternMatchable|) 255914) ((|UnivariateLaurentSeriesConstructor| . |PatternMatchable|) 255737) ((|UnivariateLaurentSeriesConstructor| . |OrderedIntegralDomain|) 255668) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianGroup|) 255599) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianMonoid|) 255530) ((|UnivariateLaurentSeriesConstructor| . |OrderedSet|) 255399) ((|UnivariateLaurentSeriesConstructor| . |OrderedType|) 255268) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianSemiGroup|) 255199) ((|UnivariateLaurentSeriesConstructor| . |OrderedCancellationAbelianMonoid|) 255130) ((|UnivariateLaurentSeriesConstructor| . |OrderedRing|) 255061) ((|UnivariateLaurentSeriesConstructor| . |Patternable|) 255028) ((|UnivariateLaurentSeriesConstructor| . |PolynomialFactorizationExplicit|) 254949) ((|UnivariateLaurentSeriesConstructor| . |RealConstant|) 254889) ((|UnivariateLaurentSeriesConstructor| . |RetractableTo|) 254604) ((|UnivariateLaurentSeriesConstructor| . |StepThrough|) 254545) ((|UnivariateLaurentSeriesConstructor| . |QuotientFieldCategory|) 254512) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 254454) ((|UnivariateLaurentSeries| . |RadicalCategory|) 254403) ((|UnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 254352) ((|UnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 254301) ((|UnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 254250) ((|UnivariateLaurentSeries| . |ElementaryFunctionCategory|) 254199) ((|UnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 254148) ((|UnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 254097) ((|UnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 254069) ((|UnivariateLaurentSeries| . |AbelianMonoidRing|) 254041) ((|UnivariateLaurentSeries| . |Functorial|) 253958) ((|UnivariateLaurentSeries| . |CoercibleFrom|) 253676) ((|UnivariateLaurentSeries| . |Module|) 253397) ((|UnivariateLaurentSeries| . |LinearSet|) 253118) ((|UnivariateLaurentSeries| . |LeftModule|) 252920) ((|UnivariateLaurentSeries| . |LeftLinearSet|) 252702) ((|UnivariateLaurentSeries| . |RightModule|) 252417) ((|UnivariateLaurentSeries| . |RightLinearSet|) 252132) ((|UnivariateLaurentSeries| . |BiModule|) 251826) ((|UnivariateLaurentSeries| . |Algebra|) 251547) ((|UnivariateLaurentSeries| . |PowerSeriesCategory|) 251493) ((|UnivariateLaurentSeries| . |Eltable|) 251232) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 251216) ((|UnivariateLaurentSeries| . |Rng|) T) ((|UnivariateLaurentSeries| . |SemiGroup|) T) ((|UnivariateLaurentSeries| . |SemiRing|) T) ((|UnivariateLaurentSeries| . |Monoid|) T) ((|UnivariateLaurentSeries| . |Ring|) T) ((|UnivariateLaurentSeries| . |AbelianGroup|) T) ((|UnivariateLaurentSeries| . |AbelianMonoid|) T) ((|UnivariateLaurentSeries| . |SetCategory|) T) ((|UnivariateLaurentSeries| . |CoercibleTo|) 251190) ((|UnivariateLaurentSeries| . |Type|) T) ((|UnivariateLaurentSeries| . |Join|) T) ((|UnivariateLaurentSeries| . |BasicType|) T) ((|UnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeries| . |CharacteristicNonZero|) 251040) ((|UnivariateLaurentSeries| . |CharacteristicZero|) 250896) ((|UnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|UnivariateLaurentSeries| . |DifferentialExtension|) 250826) ((|UnivariateLaurentSeries| . |PartialDifferentialRing|) 250578) ((|UnivariateLaurentSeries| . |PartialDifferentialSpace|) 250211) ((|UnivariateLaurentSeries| . |PartialDifferentialDomain|) 249814) ((|UnivariateLaurentSeries| . |DifferentialSpaceExtension|) 249744) ((|UnivariateLaurentSeries| . |DifferentialSpace|) 249486) ((|UnivariateLaurentSeries| . |DifferentialDomain|) 249222) ((|UnivariateLaurentSeries| . |DifferentialRing|) 249065) ((|UnivariateLaurentSeries| . |Field|) 249041) ((|UnivariateLaurentSeries| . |UniqueFactorizationDomain|) 249017) ((|UnivariateLaurentSeries| . |PrincipalIdealDomain|) 248993) ((|UnivariateLaurentSeries| . |IntegralDomain|) 248932) ((|UnivariateLaurentSeries| . |CommutativeRing|) 248838) ((|UnivariateLaurentSeries| . |GcdDomain|) 248814) ((|UnivariateLaurentSeries| . |EuclideanDomain|) 248790) ((|UnivariateLaurentSeries| . |EntireRing|) 248729) ((|UnivariateLaurentSeries| . |DivisionRing|) 248705) ((|UnivariateLaurentSeries| . |FullyEvalableOver|) 248635) ((|UnivariateLaurentSeries| . |InnerEvalable|) 248280) ((|UnivariateLaurentSeries| . |Evalable|) 248099) ((|UnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 248029) ((|UnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 247959) ((|UnivariateLaurentSeries| . |FullyPatternMatchable|) 247889) ((|UnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|UnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedSet|) NIL) ((|UnivariateLaurentSeries| . |OrderedType|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedRing|) NIL) ((|UnivariateLaurentSeries| . |Patternable|) 247819) ((|UnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|UnivariateLaurentSeries| . |RealConstant|) NIL) ((|UnivariateLaurentSeries| . |RetractableTo|) 247766) ((|UnivariateLaurentSeries| . |StepThrough|) NIL) ((|UnivariateLaurentSeries| . |QuotientFieldCategory|) 247696) ((|UInt8| . |OrderedFinite|) T) ((|UInt8| . |OrderedType|) T) ((|UInt8| . |OrderedSet|) T) ((|UInt8| . |SetCategory|) T) ((|UInt8| . |CoercibleTo|) 247670) ((|UInt8| . |Type|) T) ((|UInt8| . |Join|) T) ((|UInt8| . |BasicType|) T) ((|UInt8| . |Finite|) T) ((|UInt8| . |Logic|) T) ((|UInt64| . |OrderedFinite|) T) ((|UInt64| . |OrderedType|) T) ((|UInt64| . |OrderedSet|) T) ((|UInt64| . |SetCategory|) T) ((|UInt64| . |CoercibleTo|) 247644) ((|UInt64| . |Type|) T) ((|UInt64| . |Join|) T) ((|UInt64| . |BasicType|) T) ((|UInt64| . |Finite|) T) ((|UInt64| . |Logic|) T) ((|UInt32| . |OrderedFinite|) T) ((|UInt32| . |OrderedType|) T) ((|UInt32| . |OrderedSet|) T) ((|UInt32| . |SetCategory|) T) ((|UInt32| . |CoercibleTo|) 247618) ((|UInt32| . |Type|) T) ((|UInt32| . |Join|) T) ((|UInt32| . |BasicType|) T) ((|UInt32| . |Finite|) T) ((|UInt32| . |Logic|) T) ((|UInt16| . |OrderedFinite|) T) ((|UInt16| . |OrderedType|) T) ((|UInt16| . |OrderedSet|) T) ((|UInt16| . |SetCategory|) T) ((|UInt16| . |CoercibleTo|) 247592) ((|UInt16| . |Type|) T) ((|UInt16| . |Join|) T) ((|UInt16| . |BasicType|) T) ((|UInt16| . |Finite|) T) ((|UInt16| . |Logic|) T) ((|TypeAst| . |SpadSyntaxCategory|) T) ((|TypeAst| . |HomotopicTo|) 247570) ((|TypeAst| . |CoercibleTo|) 247525) ((|TypeAst| . |CoercibleFrom|) 247503) ((|TypeAst| . |SetCategory|) T) ((|TypeAst| . |Type|) T) ((|TypeAst| . |Join|) T) ((|TypeAst| . |BasicType|) T) ((|TypeAst| . |AbstractSyntaxCategory|) T) ((|Tuple| . |HomotopicTo|) 247468) ((|Tuple| . |CoercibleTo|) 247378) ((|Tuple| . |CoercibleFrom|) 247343) ((|Tuple| . |SetCategory|) 247313) ((|Tuple| . |Type|) 247283) ((|Tuple| . |Join|) 247253) ((|Tuple| . |BasicType|) 247223) ((|TaylorSeries| . |MultivariateTaylorSeriesCategory|) 247196) ((|TaylorSeries| . |ArcHyperbolicFunctionCategory|) 247145) ((|TaylorSeries| . |ArcTrigonometricFunctionCategory|) 247094) ((|TaylorSeries| . |ElementaryFunctionCategory|) 247043) ((|TaylorSeries| . |HyperbolicFunctionCategory|) 246992) ((|TaylorSeries| . |TrigonometricFunctionCategory|) 246941) ((|TaylorSeries| . |TranscendentalFunctionCategory|) 246890) ((|TaylorSeries| . |RadicalCategory|) 246839) ((|TaylorSeries| . |AbelianMonoidRing|) 246791) ((|TaylorSeries| . |Algebra|) 246635) ((|TaylorSeries| . |LinearSet|) 246479) ((|TaylorSeries| . |Module|) 246323) ((|TaylorSeries| . |CoercibleFrom|) 246147) ((|TaylorSeries| . |EntireRing|) 246114) ((|TaylorSeries| . |IntegralDomain|) 246081) ((|TaylorSeries| . |Functorial|) 246065) ((|TaylorSeries| . |BiModule|) 245884) ((|TaylorSeries| . |RightLinearSet|) 245717) ((|TaylorSeries| . |RightModule|) 245550) ((|TaylorSeries| . |CommutativeRing|) 245479) ((|TaylorSeries| . |CharacteristicZero|) 245442) ((|TaylorSeries| . |CharacteristicNonZero|) 245402) ((|TaylorSeries| . |LeftModule|) 245299) ((|TaylorSeries| . |LeftLinearSet|) 245176) ((|TaylorSeries| . |PowerSeriesCategory|) 245121) ((|TaylorSeries| . |PartialDifferentialSpace|) 245099) ((|TaylorSeries| . |Type|) T) ((|TaylorSeries| . |Join|) T) ((|TaylorSeries| . |PartialDifferentialDomain|) 245075) ((|TaylorSeries| . |Ring|) T) ((|TaylorSeries| . |Monoid|) T) ((|TaylorSeries| . |SemiRing|) T) ((|TaylorSeries| . |SemiGroup|) T) ((|TaylorSeries| . |Rng|) T) ((|TaylorSeries| . |AbelianGroup|) T) ((|TaylorSeries| . |AbelianMonoid|) T) ((|TaylorSeries| . |SetCategory|) T) ((|TaylorSeries| . |CoercibleTo|) 245049) ((|TaylorSeries| . |BasicType|) T) ((|TaylorSeries| . |AbelianSemiGroup|) T) ((|TaylorSeries| . |CancellationAbelianMonoid|) T) ((|TaylorSeries| . |PartialDifferentialRing|) 245027) ((|TaylorSeries| . |InnerEvalable|) 244991) ((|TaylorSeries| . |Evalable|) 244978) ((|Tree| . |RecursiveAggregate|) 244962) ((|Tree| . |Aggregate|) T) ((|Tree| . |Join|) T) ((|Tree| . |Type|) T) ((|Tree| . |BasicType|) 244900) ((|Tree| . |CoercibleTo|) 244802) ((|Tree| . |Evalable|) 244726) ((|Tree| . |InnerEvalable|) 244645) ((|Tree| . |Functorial|) 244629) ((|Tree| . |SetCategory|) 244599) ((|Tree| . |HomogeneousAggregate|) 244583) ((|Tree| . |FiniteAggregate|) 244567) ((|Tree| . |ShallowlyMutableAggregate|) 244551) ((|TextFile| . |FileCategory|) 244516) ((|TextFile| . |BasicType|) T) ((|TextFile| . |Join|) T) ((|TextFile| . |Type|) T) ((|TextFile| . |CoercibleTo|) 244490) ((|TextFile| . |SetCategory|) T) ((|TexFormat| . |SetCategory|) T) ((|TexFormat| . |CoercibleTo|) 244464) ((|TexFormat| . |Type|) T) ((|TexFormat| . |Join|) T) ((|TexFormat| . |BasicType|) T) ((|TexFormat| . |CoercibleFrom|) 244438) ((|TermAlgebraOperator| . |OperatorCategory|) 244422) ((|TermAlgebraOperator| . |BasicType|) T) ((|TermAlgebraOperator| . |Join|) T) ((|TermAlgebraOperator| . |Type|) T) ((|TermAlgebraOperator| . |CoercibleTo|) 244396) ((|TermAlgebraOperator| . |SetCategory|) T) ((|Table| . |TableAggregate|) 244375) ((|Table| . |Dictionary|) 244317) ((|Table| . |BagAggregate|) 244259) ((|Table| . |ShallowlyMutableAggregate|) 244188) ((|Table| . |Collection|) 244130) ((|Table| . |ConvertibleTo|) NIL) ((|Table| . |DictionaryOperations|) 244072) ((|Table| . |IndexedAggregate|) 244051) ((|Table| . |Evalable|) 243811) ((|Table| . |InnerEvalable|) 243559) ((|Table| . |Functorial|) 243488) ((|Table| . |HomogeneousAggregate|) 243417) ((|Table| . |Eltable|) 243396) ((|Table| . |EltableAggregate|) 243375) ((|Table| . |KeyedDictionary|) 243354) ((|Table| . |SetCategory|) T) ((|Table| . |CoercibleTo|) 243328) ((|Table| . |BasicType|) T) ((|Table| . |Type|) T) ((|Table| . |Join|) T) ((|Table| . |Aggregate|) T) ((|Table| . |FiniteAggregate|) 243270) ((|SystemPointer| . |SetCategory|) T) ((|SystemPointer| . |CoercibleTo|) 243244) ((|SystemPointer| . |Type|) T) ((|SystemPointer| . |Join|) T) ((|SystemPointer| . |BasicType|) T) ((|SystemNonNegativeInteger| . |OrderedFinite|) T) ((|SystemNonNegativeInteger| . |OrderedType|) T) ((|SystemNonNegativeInteger| . |OrderedSet|) T) ((|SystemNonNegativeInteger| . |SetCategory|) T) ((|SystemNonNegativeInteger| . |CoercibleTo|) 243218) ((|SystemNonNegativeInteger| . |Type|) T) ((|SystemNonNegativeInteger| . |Join|) T) ((|SystemNonNegativeInteger| . |BasicType|) T) ((|SystemNonNegativeInteger| . |Finite|) T) ((|SystemNonNegativeInteger| . |Logic|) T) ((|SystemInteger| . |OrderedFinite|) T) ((|SystemInteger| . |OrderedType|) T) ((|SystemInteger| . |OrderedSet|) T) ((|SystemInteger| . |SetCategory|) T) ((|SystemInteger| . |CoercibleTo|) 243192) ((|SystemInteger| . |Type|) T) ((|SystemInteger| . |Join|) T) ((|SystemInteger| . |BasicType|) T) ((|SystemInteger| . |Finite|) T) ((|Syntax| . |UnionType|) T) ((|Syntax| . |SetCategory|) T) ((|Syntax| . |CoercibleTo|) 243144) ((|Syntax| . |Type|) T) ((|Syntax| . |Join|) T) ((|Syntax| . |BasicType|) T) ((|Syntax| . |RetractableTo|) 243055) ((|Syntax| . |CoercibleFrom|) 242966) ((|SymbolTable| . |CoercibleTo|) 242940) ((|TheSymbolTable| . |CoercibleTo|) 242914) ((|SymmetricPolynomial| . |FiniteAbelianMonoidRing|) 242884) ((|SymmetricPolynomial| . |RetractableTo|) 242728) ((|SymmetricPolynomial| . |FullyRetractableTo|) 242712) ((|SymmetricPolynomial| . |Algebra|) 242556) ((|SymmetricPolynomial| . |CoercibleFrom|) 242346) ((|SymmetricPolynomial| . |LeftModule|) 242243) ((|SymmetricPolynomial| . |LeftLinearSet|) 242120) ((|SymmetricPolynomial| . |Rng|) T) ((|SymmetricPolynomial| . |SemiGroup|) T) ((|SymmetricPolynomial| . |SemiRing|) T) ((|SymmetricPolynomial| . |Monoid|) T) ((|SymmetricPolynomial| . |Ring|) T) ((|SymmetricPolynomial| . |BiModule|) 241939) ((|SymmetricPolynomial| . |RightLinearSet|) 241772) ((|SymmetricPolynomial| . |RightModule|) 241605) ((|SymmetricPolynomial| . |AbelianGroup|) T) ((|SymmetricPolynomial| . |AbelianMonoid|) T) ((|SymmetricPolynomial| . |SetCategory|) T) ((|SymmetricPolynomial| . |CoercibleTo|) 241579) ((|SymmetricPolynomial| . |Type|) T) ((|SymmetricPolynomial| . |Join|) T) ((|SymmetricPolynomial| . |BasicType|) T) ((|SymmetricPolynomial| . |AbelianSemiGroup|) T) ((|SymmetricPolynomial| . |CancellationAbelianMonoid|) T) ((|SymmetricPolynomial| . |LinearSet|) 241423) ((|SymmetricPolynomial| . |Module|) 241267) ((|SymmetricPolynomial| . |CharacteristicNonZero|) 241227) ((|SymmetricPolynomial| . |CharacteristicZero|) 241190) ((|SymmetricPolynomial| . |CommutativeRing|) 241119) ((|SymmetricPolynomial| . |Functorial|) 241103) ((|SymmetricPolynomial| . |IntegralDomain|) 241070) ((|SymmetricPolynomial| . |EntireRing|) 241037) ((|SymmetricPolynomial| . |AbelianMonoidRing|) 241007) ((|Symbol| . |OrderedSet|) T) ((|Symbol| . |CoercibleTo|) 240981) ((|Symbol| . |SetCategory|) T) ((|Symbol| . |BasicType|) T) ((|Symbol| . |Join|) T) ((|Symbol| . |Type|) T) ((|Symbol| . |OrderedType|) T) ((|Symbol| . |ConvertibleTo|) 240875) ((|Symbol| . |CoercibleFrom|) 240830) ((|Symbol| . |RetractableTo|) 240804) ((|Symbol| . |PatternMatchable|) 240763) ((|SparseUnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 240747) ((|SparseUnivariateTaylorSeries| . |DifferentialRing|) 240684) ((|SparseUnivariateTaylorSeries| . |CoercibleFrom|) 240508) ((|SparseUnivariateTaylorSeries| . |LeftModule|) 240405) ((|SparseUnivariateTaylorSeries| . |LeftLinearSet|) 240282) ((|SparseUnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |BasicType|) T) ((|SparseUnivariateTaylorSeries| . |CoercibleTo|) 240256) ((|SparseUnivariateTaylorSeries| . |SetCategory|) T) ((|SparseUnivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseUnivariateTaylorSeries| . |Rng|) T) ((|SparseUnivariateTaylorSeries| . |SemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |SemiRing|) T) ((|SparseUnivariateTaylorSeries| . |Monoid|) T) ((|SparseUnivariateTaylorSeries| . |Ring|) T) ((|SparseUnivariateTaylorSeries| . |DifferentialDomain|) 240187) ((|SparseUnivariateTaylorSeries| . |Join|) T) ((|SparseUnivariateTaylorSeries| . |Type|) T) ((|SparseUnivariateTaylorSeries| . |DifferentialSpace|) 240124) ((|SparseUnivariateTaylorSeries| . |Eltable|) 240073) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialRing|) 239937) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialDomain|) 239771) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialSpace|) 239635) ((|SparseUnivariateTaylorSeries| . |PowerSeriesCategory|) 239570) ((|SparseUnivariateTaylorSeries| . |Algebra|) 239414) ((|SparseUnivariateTaylorSeries| . |BiModule|) 239233) ((|SparseUnivariateTaylorSeries| . |RightLinearSet|) 239066) ((|SparseUnivariateTaylorSeries| . |RightModule|) 238899) ((|SparseUnivariateTaylorSeries| . |LinearSet|) 238743) ((|SparseUnivariateTaylorSeries| . |Module|) 238587) ((|SparseUnivariateTaylorSeries| . |CharacteristicNonZero|) 238547) ((|SparseUnivariateTaylorSeries| . |CharacteristicZero|) 238510) ((|SparseUnivariateTaylorSeries| . |CommutativeRing|) 238439) ((|SparseUnivariateTaylorSeries| . |Functorial|) 238423) ((|SparseUnivariateTaylorSeries| . |IntegralDomain|) 238390) ((|SparseUnivariateTaylorSeries| . |EntireRing|) 238357) ((|SparseUnivariateTaylorSeries| . |AbelianMonoidRing|) 238318) ((|SparseUnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 238279) ((|SparseUnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 238228) ((|SparseUnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 238177) ((|SparseUnivariateTaylorSeries| . |ElementaryFunctionCategory|) 238126) ((|SparseUnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 238075) ((|SparseUnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 238024) ((|SparseUnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 237973) ((|SparseUnivariateTaylorSeries| . |RadicalCategory|) 237922) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 237857) ((|SparseUnivariatePuiseuxSeries| . |Field|) 237833) ((|SparseUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 237809) ((|SparseUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 237785) ((|SparseUnivariatePuiseuxSeries| . |IntegralDomain|) 237724) ((|SparseUnivariatePuiseuxSeries| . |CommutativeRing|) 237630) ((|SparseUnivariatePuiseuxSeries| . |CoercibleFrom|) 237259) ((|SparseUnivariatePuiseuxSeries| . |Module|) 237047) ((|SparseUnivariatePuiseuxSeries| . |LinearSet|) 236835) ((|SparseUnivariatePuiseuxSeries| . |Algebra|) 236623) ((|SparseUnivariatePuiseuxSeries| . |GcdDomain|) 236599) ((|SparseUnivariatePuiseuxSeries| . |EuclideanDomain|) 236575) ((|SparseUnivariatePuiseuxSeries| . |LeftModule|) 236444) ((|SparseUnivariatePuiseuxSeries| . |LeftLinearSet|) 236293) ((|SparseUnivariatePuiseuxSeries| . |Rng|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiRing|) T) ((|SparseUnivariatePuiseuxSeries| . |Monoid|) T) ((|SparseUnivariatePuiseuxSeries| . |Ring|) T) ((|SparseUnivariatePuiseuxSeries| . |BiModule|) 236061) ((|SparseUnivariatePuiseuxSeries| . |RightLinearSet|) 235843) ((|SparseUnivariatePuiseuxSeries| . |RightModule|) 235625) ((|SparseUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |SetCategory|) T) ((|SparseUnivariatePuiseuxSeries| . |CoercibleTo|) 235599) ((|SparseUnivariatePuiseuxSeries| . |Type|) T) ((|SparseUnivariatePuiseuxSeries| . |Join|) T) ((|SparseUnivariatePuiseuxSeries| . |BasicType|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |EntireRing|) 235538) ((|SparseUnivariatePuiseuxSeries| . |DivisionRing|) 235514) ((|SparseUnivariatePuiseuxSeries| . |RadicalCategory|) 235463) ((|SparseUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 235412) ((|SparseUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 235361) ((|SparseUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 235310) ((|SparseUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 235259) ((|SparseUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 235208) ((|SparseUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 235157) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 235116) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 235075) ((|SparseUnivariatePuiseuxSeries| . |Functorial|) 235059) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicZero|) 235022) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 234982) ((|SparseUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 234915) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 234777) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 234609) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 234471) ((|SparseUnivariatePuiseuxSeries| . |Eltable|) 234418) ((|SparseUnivariatePuiseuxSeries| . |DifferentialSpace|) 234353) ((|SparseUnivariatePuiseuxSeries| . |DifferentialDomain|) 234282) ((|SparseUnivariatePuiseuxSeries| . |DifferentialRing|) 234217) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 234201) ((|SparseUnivariatePuiseuxSeries| . |RetractableTo|) 234085) ((|SparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 234069) ((|SparseUnivariatePolynomial| . |StepThrough|) 234039) ((|SparseUnivariatePolynomial| . |ConvertibleTo|) NIL) ((|SparseUnivariatePolynomial| . |Evalable|) 234026) ((|SparseUnivariatePolynomial| . |InnerEvalable|) 233955) ((|SparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 233916) ((|SparseUnivariatePolynomial| . |RetractableTo|) 233726) ((|SparseUnivariatePolynomial| . |FullyRetractableTo|) 233710) ((|SparseUnivariatePolynomial| . |Algebra|) 233450) ((|SparseUnivariatePolynomial| . |BiModule|) 233170) ((|SparseUnivariatePolynomial| . |RightLinearSet|) 232904) ((|SparseUnivariatePolynomial| . |RightModule|) 232638) ((|SparseUnivariatePolynomial| . |LeftLinearSet|) 232515) ((|SparseUnivariatePolynomial| . |LeftModule|) 232344) ((|SparseUnivariatePolynomial| . |LinearSet|) 232084) ((|SparseUnivariatePolynomial| . |Module|) 231824) ((|SparseUnivariatePolynomial| . |CoercibleFrom|) 231476) ((|SparseUnivariatePolynomial| . |CharacteristicNonZero|) 231436) ((|SparseUnivariatePolynomial| . |CharacteristicZero|) 231399) ((|SparseUnivariatePolynomial| . |Functorial|) 231383) ((|SparseUnivariatePolynomial| . |AbelianMonoidRing|) 231344) ((|SparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 231328) ((|SparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 231244) ((|SparseUnivariatePolynomial| . |PartialDifferentialRing|) 231142) ((|SparseUnivariatePolynomial| . |PartialDifferentialDomain|) 230978) ((|SparseUnivariatePolynomial| . |PartialDifferentialSpace|) 230818) ((|SparseUnivariatePolynomial| . |PatternMatchable|) NIL) ((|SparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 230768) ((|SparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 230718) ((|SparseUnivariatePolynomial| . |PolynomialCategory|) 230653) ((|SparseUnivariatePolynomial| . |PrincipalIdealDomain|) 230629) ((|SparseUnivariatePolynomial| . |IntegralDomain|) 230492) ((|SparseUnivariatePolynomial| . |EntireRing|) 230355) ((|SparseUnivariatePolynomial| . |CommutativeRing|) 230185) ((|SparseUnivariatePolynomial| . |GcdDomain|) 230080) ((|SparseUnivariatePolynomial| . |EuclideanDomain|) 230056) ((|SparseUnivariatePolynomial| . |Eltable|) 229959) ((|SparseUnivariatePolynomial| . |DifferentialRing|) T) ((|SparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariatePolynomial| . |BasicType|) T) ((|SparseUnivariatePolynomial| . |CoercibleTo|) 229933) ((|SparseUnivariatePolynomial| . |SetCategory|) T) ((|SparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |AbelianGroup|) T) ((|SparseUnivariatePolynomial| . |Rng|) T) ((|SparseUnivariatePolynomial| . |SemiGroup|) T) ((|SparseUnivariatePolynomial| . |SemiRing|) T) ((|SparseUnivariatePolynomial| . |Monoid|) T) ((|SparseUnivariatePolynomial| . |Ring|) T) ((|SparseUnivariatePolynomial| . |DifferentialDomain|) 229920) ((|SparseUnivariatePolynomial| . |Join|) T) ((|SparseUnivariatePolynomial| . |Type|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 229904) ((|SparseUnivariatePolynomial| . |DifferentialExtension|) 229888) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 229824) ((|SparseUnivariateLaurentSeries| . |RadicalCategory|) 229773) ((|SparseUnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 229722) ((|SparseUnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 229671) ((|SparseUnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 229620) ((|SparseUnivariateLaurentSeries| . |ElementaryFunctionCategory|) 229569) ((|SparseUnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 229518) ((|SparseUnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 229467) ((|SparseUnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 229439) ((|SparseUnivariateLaurentSeries| . |AbelianMonoidRing|) 229411) ((|SparseUnivariateLaurentSeries| . |Functorial|) 229322) ((|SparseUnivariateLaurentSeries| . |CoercibleFrom|) 229034) ((|SparseUnivariateLaurentSeries| . |Module|) 228749) ((|SparseUnivariateLaurentSeries| . |LinearSet|) 228464) ((|SparseUnivariateLaurentSeries| . |LeftModule|) 228260) ((|SparseUnivariateLaurentSeries| . |LeftLinearSet|) 228036) ((|SparseUnivariateLaurentSeries| . |RightModule|) 227745) ((|SparseUnivariateLaurentSeries| . |RightLinearSet|) 227454) ((|SparseUnivariateLaurentSeries| . |BiModule|) 227142) ((|SparseUnivariateLaurentSeries| . |Algebra|) 226857) ((|SparseUnivariateLaurentSeries| . |PowerSeriesCategory|) 226803) ((|SparseUnivariateLaurentSeries| . |Eltable|) 226518) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 226502) ((|SparseUnivariateLaurentSeries| . |Rng|) T) ((|SparseUnivariateLaurentSeries| . |SemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |SemiRing|) T) ((|SparseUnivariateLaurentSeries| . |Monoid|) T) ((|SparseUnivariateLaurentSeries| . |Ring|) T) ((|SparseUnivariateLaurentSeries| . |AbelianGroup|) T) ((|SparseUnivariateLaurentSeries| . |AbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |SetCategory|) T) ((|SparseUnivariateLaurentSeries| . |CoercibleTo|) 226476) ((|SparseUnivariateLaurentSeries| . |Type|) T) ((|SparseUnivariateLaurentSeries| . |Join|) T) ((|SparseUnivariateLaurentSeries| . |BasicType|) T) ((|SparseUnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |CharacteristicNonZero|) 226320) ((|SparseUnivariateLaurentSeries| . |CharacteristicZero|) 226170) ((|SparseUnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|SparseUnivariateLaurentSeries| . |DifferentialExtension|) 226094) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialRing|) 225840) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialSpace|) 225461) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialDomain|) 225052) ((|SparseUnivariateLaurentSeries| . |DifferentialSpaceExtension|) 224976) ((|SparseUnivariateLaurentSeries| . |DifferentialSpace|) 224706) ((|SparseUnivariateLaurentSeries| . |DifferentialDomain|) 224430) ((|SparseUnivariateLaurentSeries| . |DifferentialRing|) 224267) ((|SparseUnivariateLaurentSeries| . |Field|) 224243) ((|SparseUnivariateLaurentSeries| . |UniqueFactorizationDomain|) 224219) ((|SparseUnivariateLaurentSeries| . |PrincipalIdealDomain|) 224195) ((|SparseUnivariateLaurentSeries| . |IntegralDomain|) 224134) ((|SparseUnivariateLaurentSeries| . |CommutativeRing|) 224040) ((|SparseUnivariateLaurentSeries| . |GcdDomain|) 224016) ((|SparseUnivariateLaurentSeries| . |EuclideanDomain|) 223992) ((|SparseUnivariateLaurentSeries| . |EntireRing|) 223931) ((|SparseUnivariateLaurentSeries| . |DivisionRing|) 223907) ((|SparseUnivariateLaurentSeries| . |FullyEvalableOver|) 223831) ((|SparseUnivariateLaurentSeries| . |InnerEvalable|) 223446) ((|SparseUnivariateLaurentSeries| . |Evalable|) 223247) ((|SparseUnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 223171) ((|SparseUnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 223095) ((|SparseUnivariateLaurentSeries| . |FullyPatternMatchable|) 223019) ((|SparseUnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedSet|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedType|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedRing|) NIL) ((|SparseUnivariateLaurentSeries| . |Patternable|) 222943) ((|SparseUnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|SparseUnivariateLaurentSeries| . |RealConstant|) NIL) ((|SparseUnivariateLaurentSeries| . |RetractableTo|) 222884) ((|SparseUnivariateLaurentSeries| . |StepThrough|) NIL) ((|SparseUnivariateLaurentSeries| . |QuotientFieldCategory|) 222808) ((|SuchThatAst| . |SpadSyntaxCategory|) T) ((|SuchThatAst| . |HomotopicTo|) 222786) ((|SuchThatAst| . |CoercibleTo|) 222741) ((|SuchThatAst| . |CoercibleFrom|) 222719) ((|SuchThatAst| . |SetCategory|) T) ((|SuchThatAst| . |Type|) T) ((|SuchThatAst| . |Join|) T) ((|SuchThatAst| . |BasicType|) T) ((|SuchThatAst| . |AbstractSyntaxCategory|) T) ((|SuchThat| . |SetCategory|) T) ((|SuchThat| . |CoercibleTo|) 222693) ((|SuchThat| . |Type|) T) ((|SuchThat| . |Join|) T) ((|SuchThat| . |BasicType|) T) ((|SubSpace| . |SetCategory|) T) ((|SubSpace| . |CoercibleTo|) 222667) ((|SubSpace| . |Type|) T) ((|SubSpace| . |Join|) T) ((|SubSpace| . |BasicType|) T) ((|StringTable| . |TableAggregate|) 222640) ((|StringTable| . |Dictionary|) 222576) ((|StringTable| . |BagAggregate|) 222512) ((|StringTable| . |ShallowlyMutableAggregate|) 222435) ((|StringTable| . |Collection|) 222371) ((|StringTable| . |ConvertibleTo|) NIL) ((|StringTable| . |DictionaryOperations|) 222307) ((|StringTable| . |IndexedAggregate|) 222280) ((|StringTable| . |Evalable|) 222022) ((|StringTable| . |InnerEvalable|) 221752) ((|StringTable| . |Functorial|) 221675) ((|StringTable| . |HomogeneousAggregate|) 221598) ((|StringTable| . |Eltable|) 221571) ((|StringTable| . |EltableAggregate|) 221544) ((|StringTable| . |KeyedDictionary|) 221517) ((|StringTable| . |SetCategory|) T) ((|StringTable| . |CoercibleTo|) 221491) ((|StringTable| . |BasicType|) T) ((|StringTable| . |Type|) T) ((|StringTable| . |Join|) T) ((|StringTable| . |Aggregate|) T) ((|StringTable| . |FiniteAggregate|) 221427) ((|String| . |StringAggregate|) T) ((|String| . |FiniteLinearAggregate|) 221402) ((|String| . |OrderedType|) T) ((|String| . |OrderedSet|) T) ((|String| . |Collection|) 221377) ((|String| . |ConvertibleTo|) NIL) ((|String| . |Eltable|) 221297) ((|String| . |IndexedAggregate|) 221260) ((|String| . |EltableAggregate|) 221223) ((|String| . |LinearAggregate|) 221198) ((|String| . |HomogeneousAggregate|) 221173) ((|String| . |SetCategory|) T) ((|String| . |Functorial|) 221148) ((|String| . |InnerEvalable|) NIL) ((|String| . |Evalable|) NIL) ((|String| . |CoercibleTo|) 221122) ((|String| . |BasicType|) T) ((|String| . |Type|) T) ((|String| . |Join|) T) ((|String| . |Aggregate|) T) ((|String| . |FiniteAggregate|) 221097) ((|String| . |ShallowlyMutableAggregate|) 221072) ((|String| . |OneDimensionalArrayAggregate|) 221047) ((|Stream| . |LazyStreamAggregate|) 221031) ((|Stream| . |LinearAggregate|) 221015) ((|Stream| . |EltableAggregate|) 220987) ((|Stream| . |Eltable|) 220916) ((|Stream| . |IndexedAggregate|) 220888) ((|Stream| . |ConvertibleTo|) 220824) ((|Stream| . |HomogeneousAggregate|) 220808) ((|Stream| . |SetCategory|) 220778) ((|Stream| . |Functorial|) 220762) ((|Stream| . |InnerEvalable|) 220681) ((|Stream| . |Evalable|) 220605) ((|Stream| . |CoercibleTo|) 220507) ((|Stream| . |BasicType|) 220445) ((|Stream| . |Type|) T) ((|Stream| . |Join|) T) ((|Stream| . |Aggregate|) T) ((|Stream| . |Collection|) 220429) ((|Stream| . |UnaryRecursiveAggregate|) 220413) ((|Stream| . |RecursiveAggregate|) 220397) ((|Stream| . |StreamAggregate|) 220381) ((|Stream| . |CoercibleFrom|) 220356) ((|Stream| . |ShallowlyMutableAggregate|) 220340) ((|StepAst| . |SpadSyntaxCategory|) T) ((|StepAst| . |HomotopicTo|) 220318) ((|StepAst| . |CoercibleTo|) 220273) ((|StepAst| . |CoercibleFrom|) 220251) ((|StepAst| . |SetCategory|) T) ((|StepAst| . |Type|) T) ((|StepAst| . |Join|) T) ((|StepAst| . |BasicType|) T) ((|StepAst| . |AbstractSyntaxCategory|) T) ((|SparseTable| . |TableAggregate|) 220230) ((|SparseTable| . |Dictionary|) 220172) ((|SparseTable| . |BagAggregate|) 220114) ((|SparseTable| . |ShallowlyMutableAggregate|) 220043) ((|SparseTable| . |Collection|) 219985) ((|SparseTable| . |ConvertibleTo|) NIL) ((|SparseTable| . |DictionaryOperations|) 219927) ((|SparseTable| . |IndexedAggregate|) 219906) ((|SparseTable| . |Evalable|) 219666) ((|SparseTable| . |InnerEvalable|) 219414) ((|SparseTable| . |Functorial|) 219343) ((|SparseTable| . |HomogeneousAggregate|) 219272) ((|SparseTable| . |Eltable|) 219251) ((|SparseTable| . |EltableAggregate|) 219230) ((|SparseTable| . |KeyedDictionary|) 219209) ((|SparseTable| . |SetCategory|) T) ((|SparseTable| . |CoercibleTo|) 219183) ((|SparseTable| . |BasicType|) T) ((|SparseTable| . |Type|) T) ((|SparseTable| . |Join|) T) ((|SparseTable| . |Aggregate|) T) ((|SparseTable| . |FiniteAggregate|) 219125) ((|Stack| . |StackAggregate|) 219109) ((|Stack| . |FiniteAggregate|) 219093) ((|Stack| . |HomogeneousAggregate|) 219077) ((|Stack| . |SetCategory|) 219047) ((|Stack| . |Functorial|) 219031) ((|Stack| . |InnerEvalable|) 218950) ((|Stack| . |Evalable|) 218874) ((|Stack| . |CoercibleTo|) 218776) ((|Stack| . |BasicType|) 218714) ((|Stack| . |Type|) T) ((|Stack| . |Join|) T) ((|Stack| . |Aggregate|) T) ((|Stack| . |ShallowlyMutableAggregate|) 218698) ((|Stack| . |BagAggregate|) 218682) ((|SquareFreeRegularTriangularSet| . |SquareFreeRegularTriangularSetCategory|) 218651) ((|SquareFreeRegularTriangularSet| . |TriangularSetCategory|) 218620) ((|SquareFreeRegularTriangularSet| . |ShallowlyMutableAggregate|) 218604) ((|SquareFreeRegularTriangularSet| . |CoercibleTo|) 218556) ((|SquareFreeRegularTriangularSet| . |Collection|) 218540) ((|SquareFreeRegularTriangularSet| . |Aggregate|) T) ((|SquareFreeRegularTriangularSet| . |Join|) T) ((|SquareFreeRegularTriangularSet| . |Type|) T) ((|SquareFreeRegularTriangularSet| . |BasicType|) T) ((|SquareFreeRegularTriangularSet| . |Evalable|) 218464) ((|SquareFreeRegularTriangularSet| . |InnerEvalable|) 218383) ((|SquareFreeRegularTriangularSet| . |Functorial|) 218367) ((|SquareFreeRegularTriangularSet| . |SetCategory|) T) ((|SquareFreeRegularTriangularSet| . |HomogeneousAggregate|) 218351) ((|SquareFreeRegularTriangularSet| . |ConvertibleTo|) 218287) ((|SquareFreeRegularTriangularSet| . |FiniteAggregate|) 218271) ((|SquareFreeRegularTriangularSet| . |PolynomialSetCategory|) 218240) ((|SquareFreeRegularTriangularSet| . |RegularTriangularSetCategory|) 218209) ((|SquareMatrix| . |SquareMatrixCategory|) 218153) ((|SquareMatrix| . |FiniteAggregate|) 218137) ((|SquareMatrix| . |Aggregate|) T) ((|SquareMatrix| . |Evalable|) 218061) ((|SquareMatrix| . |InnerEvalable|) 217980) ((|SquareMatrix| . |Functorial|) 217964) ((|SquareMatrix| . |HomogeneousAggregate|) 217948) ((|SquareMatrix| . |RectangularMatrixCategory|) 217887) ((|SquareMatrix| . |RetractableTo|) 217731) ((|SquareMatrix| . |CoercibleFrom|) 217612) ((|SquareMatrix| . |FullyRetractableTo|) 217596) ((|SquareMatrix| . |LinearlyExplicitRingOver|) 217512) ((|SquareMatrix| . |LeftModule|) 217418) ((|SquareMatrix| . |FullyLinearlyExplicitRingOver|) 217402) ((|SquareMatrix| . |DifferentialRing|) 217367) ((|SquareMatrix| . |DifferentialDomain|) 217286) ((|SquareMatrix| . |DifferentialSpace|) 217211) ((|SquareMatrix| . |DifferentialSpaceExtension|) 217195) ((|SquareMatrix| . |PartialDifferentialDomain|) 217067) ((|SquareMatrix| . |PartialDifferentialSpace|) 216941) ((|SquareMatrix| . |PartialDifferentialRing|) 216873) ((|SquareMatrix| . |DifferentialExtension|) 216857) ((|SquareMatrix| . |Module|) 216764) ((|SquareMatrix| . |LinearSet|) 216671) ((|SquareMatrix| . |LeftLinearSet|) 216625) ((|SquareMatrix| . |CancellationAbelianMonoid|) T) ((|SquareMatrix| . |AbelianSemiGroup|) T) ((|SquareMatrix| . |BasicType|) T) ((|SquareMatrix| . |Join|) T) ((|SquareMatrix| . |Type|) T) ((|SquareMatrix| . |CoercibleTo|) 216575) ((|SquareMatrix| . |SetCategory|) T) ((|SquareMatrix| . |AbelianMonoid|) T) ((|SquareMatrix| . |AbelianGroup|) T) ((|SquareMatrix| . |RightModule|) 216559) ((|SquareMatrix| . |RightLinearSet|) 216543) ((|SquareMatrix| . |BiModule|) 216522) ((|SquareMatrix| . |Ring|) T) ((|SquareMatrix| . |Monoid|) T) ((|SquareMatrix| . |SemiRing|) T) ((|SquareMatrix| . |SemiGroup|) T) ((|SquareMatrix| . |Rng|) T) ((|SquareMatrix| . |Algebra|) 216467) ((|SquareMatrix| . |ConvertibleTo|) 216408) ((|SplittingTree| . |RecursiveAggregate|) 216369) ((|SplittingTree| . |Aggregate|) T) ((|SplittingTree| . |Join|) T) ((|SplittingTree| . |Type|) T) ((|SplittingTree| . |BasicType|) T) ((|SplittingTree| . |CoercibleTo|) 216343) ((|SplittingTree| . |Evalable|) 216233) ((|SplittingTree| . |InnerEvalable|) 216116) ((|SplittingTree| . |Functorial|) 216077) ((|SplittingTree| . |SetCategory|) T) ((|SplittingTree| . |HomogeneousAggregate|) 216038) ((|SplittingTree| . |FiniteAggregate|) 215999) ((|SplittingTree| . |ShallowlyMutableAggregate|) 215960) ((|SplittingNode| . |SetCategory|) T) ((|SplittingNode| . |CoercibleTo|) 215934) ((|SplittingNode| . |Type|) T) ((|SplittingNode| . |Join|) T) ((|SplittingNode| . |BasicType|) T) ((|SpadAst| . |SpadAstExports|) T) ((|SpadAst| . |UnionType|) T) ((|SpadAst| . |AbstractSyntaxCategory|) T) ((|SpadAst| . |BasicType|) T) ((|SpadAst| . |Join|) T) ((|SpadAst| . |Type|) T) ((|SpadAst| . |CoercibleTo|) 215889) ((|SpadAst| . |SetCategory|) T) ((|SpadAst| . |CoercibleFrom|) 215867) ((|SpadAst| . |HomotopicTo|) 215845) ((|SpadAst| . |SpadSyntaxCategory|) T) ((|ThreeSpace| . |ThreeSpaceCategory|) 215829) ((|ThreeSpace| . |BasicType|) T) ((|ThreeSpace| . |Join|) T) ((|ThreeSpace| . |Type|) T) ((|ThreeSpace| . |CoercibleTo|) 215803) ((|ThreeSpace| . |SetCategory|) T) ((|SparseMultivariateTaylorSeries| . |MultivariateTaylorSeriesCategory|) 215782) ((|SparseMultivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 215731) ((|SparseMultivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 215680) ((|SparseMultivariateTaylorSeries| . |ElementaryFunctionCategory|) 215629) ((|SparseMultivariateTaylorSeries| . |HyperbolicFunctionCategory|) 215578) ((|SparseMultivariateTaylorSeries| . |TrigonometricFunctionCategory|) 215527) ((|SparseMultivariateTaylorSeries| . |TranscendentalFunctionCategory|) 215476) ((|SparseMultivariateTaylorSeries| . |RadicalCategory|) 215425) ((|SparseMultivariateTaylorSeries| . |AbelianMonoidRing|) 215383) ((|SparseMultivariateTaylorSeries| . |Algebra|) 215227) ((|SparseMultivariateTaylorSeries| . |LinearSet|) 215071) ((|SparseMultivariateTaylorSeries| . |Module|) 214915) ((|SparseMultivariateTaylorSeries| . |CoercibleFrom|) 214739) ((|SparseMultivariateTaylorSeries| . |EntireRing|) 214706) ((|SparseMultivariateTaylorSeries| . |IntegralDomain|) 214673) ((|SparseMultivariateTaylorSeries| . |Functorial|) 214657) ((|SparseMultivariateTaylorSeries| . |BiModule|) 214476) ((|SparseMultivariateTaylorSeries| . |RightLinearSet|) 214309) ((|SparseMultivariateTaylorSeries| . |RightModule|) 214142) ((|SparseMultivariateTaylorSeries| . |CommutativeRing|) 214071) ((|SparseMultivariateTaylorSeries| . |CharacteristicZero|) 214034) ((|SparseMultivariateTaylorSeries| . |CharacteristicNonZero|) 213994) ((|SparseMultivariateTaylorSeries| . |LeftModule|) 213891) ((|SparseMultivariateTaylorSeries| . |LeftLinearSet|) 213768) ((|SparseMultivariateTaylorSeries| . |PowerSeriesCategory|) 213721) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialSpace|) 213705) ((|SparseMultivariateTaylorSeries| . |Type|) T) ((|SparseMultivariateTaylorSeries| . |Join|) T) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialDomain|) 213687) ((|SparseMultivariateTaylorSeries| . |Ring|) T) ((|SparseMultivariateTaylorSeries| . |Monoid|) T) ((|SparseMultivariateTaylorSeries| . |SemiRing|) T) ((|SparseMultivariateTaylorSeries| . |SemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |Rng|) T) ((|SparseMultivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseMultivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |SetCategory|) T) ((|SparseMultivariateTaylorSeries| . |CoercibleTo|) 213661) ((|SparseMultivariateTaylorSeries| . |BasicType|) T) ((|SparseMultivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialRing|) 213645) ((|SparseMultivariateTaylorSeries| . |InnerEvalable|) 213615) ((|SparseMultivariateTaylorSeries| . |Evalable|) 213602) ((|SparseMultivariatePolynomial| . |PolynomialCategory|) 213555) ((|SparseMultivariatePolynomial| . |CoercibleFrom|) 213251) ((|SparseMultivariatePolynomial| . |RetractableTo|) 213082) ((|SparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 213032) ((|SparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 212982) ((|SparseMultivariatePolynomial| . |PatternMatchable|) 212761) ((|SparseMultivariatePolynomial| . |PartialDifferentialSpace|) 212745) ((|SparseMultivariatePolynomial| . |PartialDifferentialDomain|) 212727) ((|SparseMultivariatePolynomial| . |PartialDifferentialRing|) 212711) ((|SparseMultivariatePolynomial| . |InnerEvalable|) 212663) ((|SparseMultivariatePolynomial| . |GcdDomain|) 212581) ((|SparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 212497) ((|SparseMultivariatePolynomial| . |LeftModule|) 212326) ((|SparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 212310) ((|SparseMultivariatePolynomial| . |AbelianMonoidRing|) 212268) ((|SparseMultivariatePolynomial| . |Algebra|) 212031) ((|SparseMultivariatePolynomial| . |LinearSet|) 211794) ((|SparseMultivariatePolynomial| . |Module|) 211557) ((|SparseMultivariatePolynomial| . |EntireRing|) 211443) ((|SparseMultivariatePolynomial| . |IntegralDomain|) 211329) ((|SparseMultivariatePolynomial| . |Functorial|) 211313) ((|SparseMultivariatePolynomial| . |BiModule|) 211056) ((|SparseMultivariatePolynomial| . |RightLinearSet|) 210813) ((|SparseMultivariatePolynomial| . |RightModule|) 210570) ((|SparseMultivariatePolynomial| . |CommutativeRing|) 210423) ((|SparseMultivariatePolynomial| . |CharacteristicZero|) 210386) ((|SparseMultivariatePolynomial| . |CharacteristicNonZero|) 210346) ((|SparseMultivariatePolynomial| . |LeftLinearSet|) 210223) ((|SparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseMultivariatePolynomial| . |BasicType|) T) ((|SparseMultivariatePolynomial| . |Join|) T) ((|SparseMultivariatePolynomial| . |Type|) T) ((|SparseMultivariatePolynomial| . |CoercibleTo|) 210197) ((|SparseMultivariatePolynomial| . |SetCategory|) T) ((|SparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |AbelianGroup|) T) ((|SparseMultivariatePolynomial| . |Ring|) T) ((|SparseMultivariatePolynomial| . |Monoid|) T) ((|SparseMultivariatePolynomial| . |SemiRing|) T) ((|SparseMultivariatePolynomial| . |SemiGroup|) T) ((|SparseMultivariatePolynomial| . |Rng|) T) ((|SparseMultivariatePolynomial| . |FullyRetractableTo|) 210181) ((|SparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 210139) ((|SparseMultivariatePolynomial| . |Evalable|) 210126) ((|SparseMultivariatePolynomial| . |ConvertibleTo|) 209733) ((|SingleInteger| . |IntegerNumberSystem|) T) ((|SingleInteger| . |UniqueFactorizationDomain|) T) ((|SingleInteger| . |StepThrough|) T) ((|SingleInteger| . |RetractableTo|) 209710) ((|SingleInteger| . |ConvertibleTo|) 209596) ((|SingleInteger| . |RealConstant|) T) ((|SingleInteger| . |PatternMatchable|) 209573) ((|SingleInteger| . |OrderedRing|) T) ((|SingleInteger| . |OrderedCancellationAbelianMonoid|) T) ((|SingleInteger| . |OrderedAbelianSemiGroup|) T) ((|SingleInteger| . |OrderedType|) T) ((|SingleInteger| . |OrderedSet|) T) ((|SingleInteger| . |OrderedAbelianMonoid|) T) ((|SingleInteger| . |OrderedAbelianGroup|) T) ((|SingleInteger| . |OrderedIntegralDomain|) T) ((|SingleInteger| . |LeftModule|) 209540) ((|SingleInteger| . |LinearlyExplicitRingOver|) 209517) ((|SingleInteger| . |PrincipalIdealDomain|) T) ((|SingleInteger| . |IntegralDomain|) T) ((|SingleInteger| . |EntireRing|) T) ((|SingleInteger| . |CommutativeRing|) T) ((|SingleInteger| . |CoercibleFrom|) 209484) ((|SingleInteger| . |Module|) 209471) ((|SingleInteger| . |LinearSet|) 209458) ((|SingleInteger| . |RightModule|) 209445) ((|SingleInteger| . |RightLinearSet|) 209432) ((|SingleInteger| . |BiModule|) 209417) ((|SingleInteger| . |Algebra|) 209404) ((|SingleInteger| . |GcdDomain|) T) ((|SingleInteger| . |EuclideanDomain|) T) ((|SingleInteger| . |DifferentialSpace|) T) ((|SingleInteger| . |DifferentialDomain|) 209391) ((|SingleInteger| . |DifferentialRing|) T) ((|SingleInteger| . |CombinatorialFunctionCategory|) T) ((|SingleInteger| . |Ring|) T) ((|SingleInteger| . |Monoid|) T) ((|SingleInteger| . |SemiRing|) T) ((|SingleInteger| . |SemiGroup|) T) ((|SingleInteger| . |Rng|) T) ((|SingleInteger| . |AbelianGroup|) T) ((|SingleInteger| . |LeftLinearSet|) 209358) ((|SingleInteger| . |AbelianMonoid|) T) ((|SingleInteger| . |SetCategory|) T) ((|SingleInteger| . |CoercibleTo|) 209332) ((|SingleInteger| . |Type|) T) ((|SingleInteger| . |Join|) T) ((|SingleInteger| . |BasicType|) T) ((|SingleInteger| . |AbelianSemiGroup|) T) ((|SingleInteger| . |CancellationAbelianMonoid|) T) ((|SingleInteger| . |CharacteristicZero|) T) ((|SingleInteger| . |OrderedFinite|) T) ((|SingleInteger| . |Finite|) T) ((|SingleInteger| . |BooleanLogic|) T) ((|SingleInteger| . |Logic|) T) ((|SignatureAst| . |SpadSyntaxCategory|) T) ((|SignatureAst| . |HomotopicTo|) 209310) ((|SignatureAst| . |CoercibleTo|) 209265) ((|SignatureAst| . |CoercibleFrom|) 209243) ((|SignatureAst| . |SetCategory|) T) ((|SignatureAst| . |Type|) T) ((|SignatureAst| . |Join|) T) ((|SignatureAst| . |BasicType|) T) ((|SignatureAst| . |AbstractSyntaxCategory|) T) ((|Signature| . |SetCategory|) T) ((|Signature| . |CoercibleTo|) 209217) ((|Signature| . |Type|) T) ((|Signature| . |Join|) T) ((|Signature| . |BasicType|) T) ((|SplitHomogeneousDirectProduct| . |DirectProductCategory|) 209196) ((|SplitHomogeneousDirectProduct| . |VectorSpace|) 209163) ((|SplitHomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 209121) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 209079) ((|SplitHomogeneousDirectProduct| . |OrderedType|) 209004) ((|SplitHomogeneousDirectProduct| . |OrderedSet|) 208929) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoid|) 208887) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 208845) ((|SplitHomogeneousDirectProduct| . |Module|) 208774) ((|SplitHomogeneousDirectProduct| . |LinearSet|) 208679) ((|SplitHomogeneousDirectProduct| . |EltableAggregate|) 208651) ((|SplitHomogeneousDirectProduct| . |Eltable|) 208623) ((|SplitHomogeneousDirectProduct| . |IndexedAggregate|) 208595) ((|SplitHomogeneousDirectProduct| . |RetractableTo|) 208346) ((|SplitHomogeneousDirectProduct| . |CoercibleFrom|) 208070) ((|SplitHomogeneousDirectProduct| . |FullyRetractableTo|) 208031) ((|SplitHomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 207903) ((|SplitHomogeneousDirectProduct| . |LeftModule|) 207688) ((|SplitHomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 207656) ((|SplitHomogeneousDirectProduct| . |HomogeneousAggregate|) 207640) ((|SplitHomogeneousDirectProduct| . |Functorial|) 207624) ((|SplitHomogeneousDirectProduct| . |InnerEvalable|) 207543) ((|SplitHomogeneousDirectProduct| . |Evalable|) 207467) ((|SplitHomogeneousDirectProduct| . |Aggregate|) T) ((|SplitHomogeneousDirectProduct| . |FiniteAggregate|) 207451) ((|SplitHomogeneousDirectProduct| . |Finite|) 207426) ((|SplitHomogeneousDirectProduct| . |DifferentialRing|) 207363) ((|SplitHomogeneousDirectProduct| . |LeftLinearSet|) 207093) ((|SplitHomogeneousDirectProduct| . |Rng|) 207070) ((|SplitHomogeneousDirectProduct| . |SemiGroup|) 207047) ((|SplitHomogeneousDirectProduct| . |SemiRing|) 207024) ((|SplitHomogeneousDirectProduct| . |Monoid|) 207001) ((|SplitHomogeneousDirectProduct| . |Ring|) 206978) ((|SplitHomogeneousDirectProduct| . |DifferentialDomain|) 206841) ((|SplitHomogeneousDirectProduct| . |DifferentialSpace|) 206710) ((|SplitHomogeneousDirectProduct| . |DifferentialSpaceExtension|) 206678) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialDomain|) 206494) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialSpace|) 206312) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialRing|) 206216) ((|SplitHomogeneousDirectProduct| . |DifferentialExtension|) 206184) ((|SplitHomogeneousDirectProduct| . |CoercibleTo|) 205729) ((|SplitHomogeneousDirectProduct| . |RightModule|) 205636) ((|SplitHomogeneousDirectProduct| . |RightLinearSet|) 205519) ((|SplitHomogeneousDirectProduct| . |BiModule|) 205421) ((|SplitHomogeneousDirectProduct| . |CancellationAbelianMonoid|) 205223) ((|SplitHomogeneousDirectProduct| . |AbelianSemiGroup|) 204960) ((|SplitHomogeneousDirectProduct| . |BasicType|) 204565) ((|SplitHomogeneousDirectProduct| . |Join|) T) ((|SplitHomogeneousDirectProduct| . |Type|) T) ((|SplitHomogeneousDirectProduct| . |SetCategory|) 204197) ((|SplitHomogeneousDirectProduct| . |AbelianMonoid|) 203968) ((|SplitHomogeneousDirectProduct| . |AbelianGroup|) 203854) ((|SemiGroupOperation| . |SemiGroupOperatorCategory|) 203838) ((|SemiGroupOperation| . |MappingCategory|) 203812) ((|SemiGroupOperation| . |Type|) T) ((|SemiGroupOperation| . |BinaryOperatorCategory|) 203796) ((|SemiGroupOperation| . |SetCategory|) T) ((|SemiGroupOperation| . |CoercibleTo|) 203770) ((|SemiGroupOperation| . |Join|) T) ((|SemiGroupOperation| . |BasicType|) T) ((|SExpressionOf| . |SExpressionCategory|) 203734) ((|SExpressionOf| . |BasicType|) T) ((|SExpressionOf| . |CoercibleTo|) 203708) ((|SExpressionOf| . |SetCategory|) T) ((|SExpressionOf| . |Eltable|) 203652) ((|SExpressionOf| . |Type|) T) ((|SExpressionOf| . |Join|) T) ((|SExpressionOf| . |ConvertibleFrom|) 203565) ((|SExpression| . |SExpressionCategory|) 203489) ((|SExpression| . |BasicType|) T) ((|SExpression| . |CoercibleTo|) 203463) ((|SExpression| . |SetCategory|) T) ((|SExpression| . |Eltable|) 203407) ((|SExpression| . |Type|) T) ((|SExpression| . |Join|) T) ((|SExpression| . |ConvertibleFrom|) 203280) ((|SetOfMIntegersInOneToN| . |Finite|) T) ((|SetOfMIntegersInOneToN| . |BasicType|) T) ((|SetOfMIntegersInOneToN| . |Join|) T) ((|SetOfMIntegersInOneToN| . |Type|) T) ((|SetOfMIntegersInOneToN| . |CoercibleTo|) 203254) ((|SetOfMIntegersInOneToN| . |SetCategory|) T) ((|Set| . |FiniteSetAggregate|) 203238) ((|Set| . |SetAggregate|) 203222) ((|Set| . |FiniteAggregate|) 203206) ((|Set| . |Finite|) 203181) ((|Set| . |DictionaryOperations|) 203165) ((|Set| . |ConvertibleTo|) 203101) ((|Set| . |Collection|) 203085) ((|Set| . |HomogeneousAggregate|) 203069) ((|Set| . |SetCategory|) T) ((|Set| . |Functorial|) 203053) ((|Set| . |InnerEvalable|) 202972) ((|Set| . |Evalable|) 202896) ((|Set| . |CoercibleTo|) 202870) ((|Set| . |BasicType|) T) ((|Set| . |Type|) T) ((|Set| . |Join|) T) ((|Set| . |Aggregate|) T) ((|Set| . |ShallowlyMutableAggregate|) 202854) ((|Set| . |BagAggregate|) 202838) ((|Set| . |Dictionary|) 202822) ((|SequenceAst| . |SpadSyntaxCategory|) T) ((|SequenceAst| . |HomotopicTo|) 202800) ((|SequenceAst| . |CoercibleTo|) 202755) ((|SequenceAst| . |CoercibleFrom|) 202733) ((|SequenceAst| . |SetCategory|) T) ((|SequenceAst| . |Type|) T) ((|SequenceAst| . |Join|) T) ((|SequenceAst| . |BasicType|) T) ((|SequenceAst| . |AbstractSyntaxCategory|) T) ((|SegmentBinding| . |Type|) T) ((|SegmentBinding| . |Join|) T) ((|SegmentBinding| . |SetCategory|) 202691) ((|SegmentBinding| . |CoercibleTo|) 202630) ((|SegmentBinding| . |BasicType|) 202588) ((|SegmentAst| . |SpadSyntaxCategory|) T) ((|SegmentAst| . |HomotopicTo|) 202566) ((|SegmentAst| . |CoercibleTo|) 202521) ((|SegmentAst| . |CoercibleFrom|) 202499) ((|SegmentAst| . |SetCategory|) T) ((|SegmentAst| . |Type|) T) ((|SegmentAst| . |Join|) T) ((|SegmentAst| . |BasicType|) T) ((|SegmentAst| . |AbstractSyntaxCategory|) T) ((|Segment| . |SegmentCategory|) 202483) ((|Segment| . |ConvertibleFrom|) 202467) ((|Segment| . |SetCategory|) 202437) ((|Segment| . |CoercibleTo|) 202388) ((|Segment| . |Type|) 202358) ((|Segment| . |Join|) 202328) ((|Segment| . |BasicType|) 202298) ((|Segment| . |SegmentExpansionCategory|) 202245) ((|SequentialDifferentialVariable| . |DifferentialVariableCategory|) 202229) ((|SequentialDifferentialVariable| . |CoercibleFrom|) 202213) ((|SequentialDifferentialVariable| . |RetractableTo|) 202197) ((|SequentialDifferentialVariable| . |OrderedType|) T) ((|SequentialDifferentialVariable| . |BasicType|) T) ((|SequentialDifferentialVariable| . |SetCategory|) T) ((|SequentialDifferentialVariable| . |CoercibleTo|) 202171) ((|SequentialDifferentialVariable| . |OrderedSet|) T) ((|SequentialDifferentialVariable| . |DifferentialDomain|) 202158) ((|SequentialDifferentialVariable| . |Join|) T) ((|SequentialDifferentialVariable| . |Type|) T) ((|SequentialDifferentialVariable| . |DifferentialSpace|) T) ((|SequentialDifferentialPolynomial| . |DifferentialPolynomialCategory|) 202061) ((|SequentialDifferentialPolynomial| . |CoercibleFrom|) 201651) ((|SequentialDifferentialPolynomial| . |RetractableTo|) 201376) ((|SequentialDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|SequentialDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 201293) ((|SequentialDifferentialPolynomial| . |FullyRetractableTo|) 201277) ((|SequentialDifferentialPolynomial| . |Algebra|) 201040) ((|SequentialDifferentialPolynomial| . |BiModule|) 200783) ((|SequentialDifferentialPolynomial| . |RightLinearSet|) 200540) ((|SequentialDifferentialPolynomial| . |RightModule|) 200297) ((|SequentialDifferentialPolynomial| . |LeftLinearSet|) 200174) ((|SequentialDifferentialPolynomial| . |LeftModule|) 200003) ((|SequentialDifferentialPolynomial| . |LinearSet|) 199766) ((|SequentialDifferentialPolynomial| . |Module|) 199529) ((|SequentialDifferentialPolynomial| . |CharacteristicNonZero|) 199489) ((|SequentialDifferentialPolynomial| . |CharacteristicZero|) 199452) ((|SequentialDifferentialPolynomial| . |CommutativeRing|) 199305) ((|SequentialDifferentialPolynomial| . |Functorial|) 199289) ((|SequentialDifferentialPolynomial| . |IntegralDomain|) 199175) ((|SequentialDifferentialPolynomial| . |EntireRing|) 199061) ((|SequentialDifferentialPolynomial| . |AbelianMonoidRing|) 198978) ((|SequentialDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 198962) ((|SequentialDifferentialPolynomial| . |LinearlyExplicitRingOver|) 198878) ((|SequentialDifferentialPolynomial| . |GcdDomain|) 198796) ((|SequentialDifferentialPolynomial| . |InnerEvalable|) 198623) ((|SequentialDifferentialPolynomial| . |PartialDifferentialRing|) 198501) ((|SequentialDifferentialPolynomial| . |PartialDifferentialDomain|) 198317) ((|SequentialDifferentialPolynomial| . |PartialDifferentialSpace|) 198137) ((|SequentialDifferentialPolynomial| . |PatternMatchable|) NIL) ((|SequentialDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 198087) ((|SequentialDifferentialPolynomial| . |UniqueFactorizationDomain|) 198037) ((|SequentialDifferentialPolynomial| . |PolynomialCategory|) 197947) ((|SequentialDifferentialPolynomial| . |Evalable|) 197934) ((|SequentialDifferentialPolynomial| . |DifferentialRing|) 197899) ((|SequentialDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|SequentialDifferentialPolynomial| . |BasicType|) T) ((|SequentialDifferentialPolynomial| . |CoercibleTo|) 197873) ((|SequentialDifferentialPolynomial| . |SetCategory|) T) ((|SequentialDifferentialPolynomial| . |AbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |AbelianGroup|) T) ((|SequentialDifferentialPolynomial| . |Rng|) T) ((|SequentialDifferentialPolynomial| . |SemiGroup|) T) ((|SequentialDifferentialPolynomial| . |SemiRing|) T) ((|SequentialDifferentialPolynomial| . |Monoid|) T) ((|SequentialDifferentialPolynomial| . |Ring|) T) ((|SequentialDifferentialPolynomial| . |DifferentialDomain|) 197792) ((|SequentialDifferentialPolynomial| . |Join|) T) ((|SequentialDifferentialPolynomial| . |Type|) T) ((|SequentialDifferentialPolynomial| . |DifferentialSpace|) 197717) ((|SequentialDifferentialPolynomial| . |DifferentialSpaceExtension|) 197701) ((|SequentialDifferentialPolynomial| . |DifferentialExtension|) 197685) ((|Scope| . |CoercibleTo|) 197659) ((|SingletonAsOrderedSet| . |OrderedSet|) T) ((|SingletonAsOrderedSet| . |CoercibleTo|) 197633) ((|SingletonAsOrderedSet| . |SetCategory|) T) ((|SingletonAsOrderedSet| . |BasicType|) T) ((|SingletonAsOrderedSet| . |Join|) T) ((|SingletonAsOrderedSet| . |Type|) T) ((|SingletonAsOrderedSet| . |OrderedType|) T) ((|SingletonAsOrderedSet| . |ConvertibleTo|) 197611) ((|SimpleAlgebraicExtension| . |MonogenicAlgebra|) 197590) ((|SimpleAlgebraicExtension| . |RetractableTo|) 197434) ((|SimpleAlgebraicExtension| . |FullyRetractableTo|) 197418) ((|SimpleAlgebraicExtension| . |LinearlyExplicitRingOver|) 197334) ((|SimpleAlgebraicExtension| . |LeftModule|) 197148) ((|SimpleAlgebraicExtension| . |FullyLinearlyExplicitRingOver|) 197132) ((|SimpleAlgebraicExtension| . |FiniteRankAlgebra|) 197111) ((|SimpleAlgebraicExtension| . |CharacteristicZero|) 197074) ((|SimpleAlgebraicExtension| . |CoercibleFrom|) 196821) ((|SimpleAlgebraicExtension| . |Module|) 196644) ((|SimpleAlgebraicExtension| . |LinearSet|) 196467) ((|SimpleAlgebraicExtension| . |LeftLinearSet|) 196329) ((|SimpleAlgebraicExtension| . |RightModule|) 196211) ((|SimpleAlgebraicExtension| . |RightLinearSet|) 196093) ((|SimpleAlgebraicExtension| . |BiModule|) 195961) ((|SimpleAlgebraicExtension| . |Algebra|) 195784) ((|SimpleAlgebraicExtension| . |FramedAlgebra|) 195763) ((|SimpleAlgebraicExtension| . |FieldOfPrimeCharacteristic|) 195725) ((|SimpleAlgebraicExtension| . |CharacteristicNonZero|) 195643) ((|SimpleAlgebraicExtension| . |StepThrough|) 195605) ((|SimpleAlgebraicExtension| . |FiniteFieldCategory|) 195567) ((|SimpleAlgebraicExtension| . |Finite|) 195500) ((|SimpleAlgebraicExtension| . |DivisionRing|) 195434) ((|SimpleAlgebraicExtension| . |EntireRing|) 195368) ((|SimpleAlgebraicExtension| . |EuclideanDomain|) 195302) ((|SimpleAlgebraicExtension| . |GcdDomain|) 195236) ((|SimpleAlgebraicExtension| . |IntegralDomain|) 195170) ((|SimpleAlgebraicExtension| . |PrincipalIdealDomain|) 195104) ((|SimpleAlgebraicExtension| . |UniqueFactorizationDomain|) 195038) ((|SimpleAlgebraicExtension| . |Field|) 194972) ((|SimpleAlgebraicExtension| . |DifferentialRing|) 194866) ((|SimpleAlgebraicExtension| . |DifferentialDomain|) 194690) ((|SimpleAlgebraicExtension| . |DifferentialSpace|) 194520) ((|SimpleAlgebraicExtension| . |DifferentialSpaceExtension|) 194487) ((|SimpleAlgebraicExtension| . |PartialDifferentialDomain|) 194301) ((|SimpleAlgebraicExtension| . |PartialDifferentialSpace|) 194117) ((|SimpleAlgebraicExtension| . |PartialDifferentialRing|) 194020) ((|SimpleAlgebraicExtension| . |DifferentialExtension|) 193987) ((|SimpleAlgebraicExtension| . |ConvertibleTo|) 193971) ((|SimpleAlgebraicExtension| . |AbelianGroup|) T) ((|SimpleAlgebraicExtension| . |AbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |SetCategory|) T) ((|SimpleAlgebraicExtension| . |CoercibleTo|) 193945) ((|SimpleAlgebraicExtension| . |Type|) T) ((|SimpleAlgebraicExtension| . |Join|) T) ((|SimpleAlgebraicExtension| . |BasicType|) T) ((|SimpleAlgebraicExtension| . |AbelianSemiGroup|) T) ((|SimpleAlgebraicExtension| . |CancellationAbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |Ring|) T) ((|SimpleAlgebraicExtension| . |Monoid|) T) ((|SimpleAlgebraicExtension| . |SemiRing|) T) ((|SimpleAlgebraicExtension| . |SemiGroup|) T) ((|SimpleAlgebraicExtension| . |Rng|) T) ((|SimpleAlgebraicExtension| . |CommutativeRing|) T) ((|Ruleset| . |SetCategory|) T) ((|Ruleset| . |CoercibleTo|) 193919) ((|Ruleset| . |Type|) T) ((|Ruleset| . |Join|) T) ((|Ruleset| . |BasicType|) T) ((|Ruleset| . |Eltable|) 193898) ((|RuleCalled| . |SetCategory|) T) ((|RuleCalled| . |CoercibleTo|) 193872) ((|RuleCalled| . |Type|) T) ((|RuleCalled| . |Join|) T) ((|RuleCalled| . |BasicType|) T) ((|RewriteRule| . |SetCategory|) T) ((|RewriteRule| . |CoercibleTo|) 193846) ((|RewriteRule| . |Type|) T) ((|RewriteRule| . |Join|) T) ((|RewriteRule| . |BasicType|) T) ((|RewriteRule| . |Eltable|) 193825) ((|RewriteRule| . |RetractableTo|) 193796) ((|RewriteRule| . |CoercibleFrom|) 193767) ((|RuntimeValue| . |Type|) T) ((|RuntimeValue| . |Join|) T) ((|RestrictAst| . |SpadSyntaxCategory|) T) ((|RestrictAst| . |HomotopicTo|) 193745) ((|RestrictAst| . |CoercibleTo|) 193700) ((|RestrictAst| . |CoercibleFrom|) 193678) ((|RestrictAst| . |SetCategory|) T) ((|RestrictAst| . |Type|) T) ((|RestrictAst| . |Join|) T) ((|RestrictAst| . |BasicType|) T) ((|RestrictAst| . |AbstractSyntaxCategory|) T) ((|RepeatAst| . |SpadSyntaxCategory|) T) ((|RepeatAst| . |HomotopicTo|) 193656) ((|RepeatAst| . |CoercibleTo|) 193611) ((|RepeatAst| . |CoercibleFrom|) 193589) ((|RepeatAst| . |SetCategory|) T) ((|RepeatAst| . |Type|) T) ((|RepeatAst| . |Join|) T) ((|RepeatAst| . |BasicType|) T) ((|RepeatAst| . |AbstractSyntaxCategory|) T) ((|RomanNumeral| . |IntegerNumberSystem|) T) ((|RomanNumeral| . |UniqueFactorizationDomain|) T) ((|RomanNumeral| . |StepThrough|) T) ((|RomanNumeral| . |RetractableTo|) 193566) ((|RomanNumeral| . |ConvertibleTo|) 193452) ((|RomanNumeral| . |RealConstant|) T) ((|RomanNumeral| . |PatternMatchable|) 193429) ((|RomanNumeral| . |OrderedRing|) T) ((|RomanNumeral| . |OrderedCancellationAbelianMonoid|) T) ((|RomanNumeral| . |OrderedAbelianSemiGroup|) T) ((|RomanNumeral| . |OrderedType|) T) ((|RomanNumeral| . |OrderedSet|) T) ((|RomanNumeral| . |OrderedAbelianMonoid|) T) ((|RomanNumeral| . |OrderedAbelianGroup|) T) ((|RomanNumeral| . |OrderedIntegralDomain|) T) ((|RomanNumeral| . |LeftModule|) 193396) ((|RomanNumeral| . |LinearlyExplicitRingOver|) 193373) ((|RomanNumeral| . |PrincipalIdealDomain|) T) ((|RomanNumeral| . |IntegralDomain|) T) ((|RomanNumeral| . |EntireRing|) T) ((|RomanNumeral| . |CommutativeRing|) T) ((|RomanNumeral| . |CoercibleFrom|) 193340) ((|RomanNumeral| . |Module|) 193327) ((|RomanNumeral| . |LinearSet|) 193314) ((|RomanNumeral| . |RightModule|) 193301) ((|RomanNumeral| . |RightLinearSet|) 193288) ((|RomanNumeral| . |BiModule|) 193273) ((|RomanNumeral| . |Algebra|) 193260) ((|RomanNumeral| . |GcdDomain|) T) ((|RomanNumeral| . |EuclideanDomain|) T) ((|RomanNumeral| . |DifferentialSpace|) T) ((|RomanNumeral| . |DifferentialDomain|) 193247) ((|RomanNumeral| . |DifferentialRing|) T) ((|RomanNumeral| . |CombinatorialFunctionCategory|) T) ((|RomanNumeral| . |Ring|) T) ((|RomanNumeral| . |Monoid|) T) ((|RomanNumeral| . |SemiRing|) T) ((|RomanNumeral| . |SemiGroup|) T) ((|RomanNumeral| . |Rng|) T) ((|RomanNumeral| . |AbelianGroup|) T) ((|RomanNumeral| . |LeftLinearSet|) 193214) ((|RomanNumeral| . |AbelianMonoid|) T) ((|RomanNumeral| . |SetCategory|) T) ((|RomanNumeral| . |CoercibleTo|) 193188) ((|RomanNumeral| . |Type|) T) ((|RomanNumeral| . |Join|) T) ((|RomanNumeral| . |BasicType|) T) ((|RomanNumeral| . |AbelianSemiGroup|) T) ((|RomanNumeral| . |CancellationAbelianMonoid|) T) ((|RomanNumeral| . |CharacteristicZero|) T) ((|RomanNumeral| . |ConvertibleFrom|) 193166) ((|RightOpenIntervalRootCharacterization| . |RealRootCharacterizationCategory|) 193145) ((|RightOpenIntervalRootCharacterization| . |BasicType|) T) ((|RightOpenIntervalRootCharacterization| . |Join|) T) ((|RightOpenIntervalRootCharacterization| . |Type|) T) ((|RightOpenIntervalRootCharacterization| . |CoercibleTo|) 193119) ((|RightOpenIntervalRootCharacterization| . |SetCategory|) T) ((|RangeBinding| . |Type|) T) ((|RangeBinding| . |Join|) T) ((|RangeBinding| . |SetCategory|) 193089) ((|RangeBinding| . |CoercibleTo|) 193040) ((|RangeBinding| . |BasicType|) 193010) ((|RectangularMatrix| . |RectangularMatrixCategory|) 192928) ((|RectangularMatrix| . |LinearSet|) 192857) ((|RectangularMatrix| . |Module|) 192786) ((|RectangularMatrix| . |HomogeneousAggregate|) 192770) ((|RectangularMatrix| . |Functorial|) 192754) ((|RectangularMatrix| . |InnerEvalable|) 192673) ((|RectangularMatrix| . |Evalable|) 192597) ((|RectangularMatrix| . |Aggregate|) T) ((|RectangularMatrix| . |FiniteAggregate|) 192581) ((|RectangularMatrix| . |LeftModule|) 192565) ((|RectangularMatrix| . |LeftLinearSet|) 192529) ((|RectangularMatrix| . |CancellationAbelianMonoid|) T) ((|RectangularMatrix| . |AbelianSemiGroup|) T) ((|RectangularMatrix| . |BasicType|) T) ((|RectangularMatrix| . |Join|) T) ((|RectangularMatrix| . |Type|) T) ((|RectangularMatrix| . |CoercibleTo|) 192479) ((|RectangularMatrix| . |SetCategory|) T) ((|RectangularMatrix| . |AbelianMonoid|) T) ((|RectangularMatrix| . |AbelianGroup|) T) ((|RectangularMatrix| . |RightModule|) 192463) ((|RectangularMatrix| . |RightLinearSet|) 192447) ((|RectangularMatrix| . |BiModule|) 192426) ((|RectangularMatrix| . |VectorSpace|) 192393) ((|RectangularMatrix| . |ConvertibleTo|) 192334) ((|RegularChain| . |RegularTriangularSetCategory|) 192216) ((|RegularChain| . |PolynomialSetCategory|) 192098) ((|RegularChain| . |FiniteAggregate|) 192017) ((|RegularChain| . |ConvertibleTo|) 191888) ((|RegularChain| . |HomogeneousAggregate|) 191807) ((|RegularChain| . |SetCategory|) T) ((|RegularChain| . |Functorial|) 191726) ((|RegularChain| . |InnerEvalable|) 191483) ((|RegularChain| . |Evalable|) 191247) ((|RegularChain| . |CoercibleTo|) 191134) ((|RegularChain| . |BasicType|) T) ((|RegularChain| . |Type|) T) ((|RegularChain| . |Join|) T) ((|RegularChain| . |Aggregate|) T) ((|RegularChain| . |Collection|) 191053) ((|RegularChain| . |ShallowlyMutableAggregate|) 190972) ((|RegularChain| . |TriangularSetCategory|) 190854) ((|ReturnAst| . |SpadSyntaxCategory|) T) ((|ReturnAst| . |HomotopicTo|) 190832) ((|ReturnAst| . |CoercibleTo|) 190787) ((|ReturnAst| . |CoercibleFrom|) 190765) ((|ReturnAst| . |SetCategory|) T) ((|ReturnAst| . |Type|) T) ((|ReturnAst| . |Join|) T) ((|ReturnAst| . |BasicType|) T) ((|ReturnAst| . |AbstractSyntaxCategory|) T) ((|ResidueRing| . |CommutativeRing|) T) ((|ResidueRing| . |CoercibleFrom|) 190729) ((|ResidueRing| . |Rng|) T) ((|ResidueRing| . |SemiGroup|) T) ((|ResidueRing| . |SemiRing|) T) ((|ResidueRing| . |Monoid|) T) ((|ResidueRing| . |Ring|) T) ((|ResidueRing| . |LeftModule|) 190703) ((|ResidueRing| . |LeftLinearSet|) 190657) ((|ResidueRing| . |CancellationAbelianMonoid|) T) ((|ResidueRing| . |AbelianSemiGroup|) T) ((|ResidueRing| . |BasicType|) T) ((|ResidueRing| . |Join|) T) ((|ResidueRing| . |Type|) T) ((|ResidueRing| . |CoercibleTo|) 190631) ((|ResidueRing| . |SetCategory|) T) ((|ResidueRing| . |AbelianMonoid|) T) ((|ResidueRing| . |AbelianGroup|) T) ((|ResidueRing| . |RightModule|) 190605) ((|ResidueRing| . |RightLinearSet|) 190579) ((|ResidueRing| . |BiModule|) 190546) ((|ResidueRing| . |Algebra|) 190530) ((|ResidueRing| . |LinearSet|) 190514) ((|ResidueRing| . |Module|) 190498) ((|RegularTriangularSet| . |RegularTriangularSetCategory|) 190467) ((|RegularTriangularSet| . |PolynomialSetCategory|) 190436) ((|RegularTriangularSet| . |FiniteAggregate|) 190420) ((|RegularTriangularSet| . |ConvertibleTo|) 190356) ((|RegularTriangularSet| . |HomogeneousAggregate|) 190340) ((|RegularTriangularSet| . |SetCategory|) T) ((|RegularTriangularSet| . |Functorial|) 190324) ((|RegularTriangularSet| . |InnerEvalable|) 190243) ((|RegularTriangularSet| . |Evalable|) 190167) ((|RegularTriangularSet| . |CoercibleTo|) 190119) ((|RegularTriangularSet| . |BasicType|) T) ((|RegularTriangularSet| . |Type|) T) ((|RegularTriangularSet| . |Join|) T) ((|RegularTriangularSet| . |Aggregate|) T) ((|RegularTriangularSet| . |Collection|) 190103) ((|RegularTriangularSet| . |ShallowlyMutableAggregate|) 190087) ((|RegularTriangularSet| . |TriangularSetCategory|) 190056) ((|Reference| . |SetCategory|) T) ((|Reference| . |CoercibleTo|) 190030) ((|Reference| . |Type|) T) ((|Reference| . |Join|) T) ((|Reference| . |BasicType|) T) ((|RealClosure| . |RealClosedField|) T) ((|RealClosure| . |RadicalCategory|) T) ((|RealClosure| . |OrderedAbelianGroup|) T) ((|RealClosure| . |OrderedAbelianMonoid|) T) ((|RealClosure| . |OrderedSet|) T) ((|RealClosure| . |OrderedType|) T) ((|RealClosure| . |OrderedAbelianSemiGroup|) T) ((|RealClosure| . |OrderedCancellationAbelianMonoid|) T) ((|RealClosure| . |OrderedRing|) T) ((|RealClosure| . |RetractableTo|) 189856) ((|RealClosure| . |FullyRetractableTo|) 189807) ((|RealClosure| . |DivisionRing|) T) ((|RealClosure| . |EntireRing|) T) ((|RealClosure| . |EuclideanDomain|) T) ((|RealClosure| . |GcdDomain|) T) ((|RealClosure| . |Algebra|) 189728) ((|RealClosure| . |LinearSet|) 189649) ((|RealClosure| . |Module|) 189570) ((|RealClosure| . |CoercibleFrom|) 189491) ((|RealClosure| . |IntegralDomain|) T) ((|RealClosure| . |PrincipalIdealDomain|) T) ((|RealClosure| . |UniqueFactorizationDomain|) T) ((|RealClosure| . |Field|) T) ((|RealClosure| . |BiModule|) 189391) ((|RealClosure| . |RightLinearSet|) 189312) ((|RealClosure| . |RightModule|) 189233) ((|RealClosure| . |CommutativeRing|) T) ((|RealClosure| . |CharacteristicZero|) T) ((|RealClosure| . |LeftModule|) 189154) ((|RealClosure| . |LeftLinearSet|) 189075) ((|RealClosure| . |CancellationAbelianMonoid|) T) ((|RealClosure| . |AbelianSemiGroup|) T) ((|RealClosure| . |BasicType|) T) ((|RealClosure| . |Join|) T) ((|RealClosure| . |Type|) T) ((|RealClosure| . |CoercibleTo|) 189049) ((|RealClosure| . |SetCategory|) T) ((|RealClosure| . |AbelianMonoid|) T) ((|RealClosure| . |AbelianGroup|) T) ((|RealClosure| . |Ring|) T) ((|RealClosure| . |Monoid|) T) ((|RealClosure| . |SemiRing|) T) ((|RealClosure| . |SemiGroup|) T) ((|RealClosure| . |Rng|) T) ((|ReduceAst| . |SpadSyntaxCategory|) T) ((|ReduceAst| . |HomotopicTo|) 189027) ((|ReduceAst| . |CoercibleTo|) 188982) ((|ReduceAst| . |CoercibleFrom|) 188960) ((|ReduceAst| . |SetCategory|) T) ((|ReduceAst| . |Type|) T) ((|ReduceAst| . |Join|) T) ((|ReduceAst| . |BasicType|) T) ((|ReduceAst| . |AbstractSyntaxCategory|) T) ((|RadixExpansion| . |QuotientFieldCategory|) 188937) ((|RadixExpansion| . |StepThrough|) T) ((|RadixExpansion| . |CoercibleFrom|) 188871) ((|RadixExpansion| . |RetractableTo|) 188815) ((|RadixExpansion| . |ConvertibleTo|) 188716) ((|RadixExpansion| . |RealConstant|) T) ((|RadixExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|RadixExpansion| . |Patternable|) 188693) ((|RadixExpansion| . |OrderedRing|) T) ((|RadixExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|RadixExpansion| . |OrderedAbelianSemiGroup|) T) ((|RadixExpansion| . |OrderedType|) T) ((|RadixExpansion| . |OrderedSet|) T) ((|RadixExpansion| . |OrderedAbelianMonoid|) T) ((|RadixExpansion| . |OrderedAbelianGroup|) T) ((|RadixExpansion| . |OrderedIntegralDomain|) T) ((|RadixExpansion| . |PatternMatchable|) 188670) ((|RadixExpansion| . |FullyPatternMatchable|) 188647) ((|RadixExpansion| . |LinearlyExplicitRingOver|) 188624) ((|RadixExpansion| . |FullyLinearlyExplicitRingOver|) 188601) ((|RadixExpansion| . |Eltable|) NIL) ((|RadixExpansion| . |Evalable|) NIL) ((|RadixExpansion| . |InnerEvalable|) NIL) ((|RadixExpansion| . |Functorial|) 188578) ((|RadixExpansion| . |FullyEvalableOver|) 188555) ((|RadixExpansion| . |DivisionRing|) T) ((|RadixExpansion| . |BiModule|) 188473) ((|RadixExpansion| . |RightLinearSet|) 188407) ((|RadixExpansion| . |RightModule|) 188341) ((|RadixExpansion| . |EntireRing|) T) ((|RadixExpansion| . |Module|) 188275) ((|RadixExpansion| . |LinearSet|) 188209) ((|RadixExpansion| . |LeftModule|) 188143) ((|RadixExpansion| . |LeftLinearSet|) 188077) ((|RadixExpansion| . |Algebra|) 188011) ((|RadixExpansion| . |EuclideanDomain|) T) ((|RadixExpansion| . |GcdDomain|) T) ((|RadixExpansion| . |CommutativeRing|) T) ((|RadixExpansion| . |IntegralDomain|) T) ((|RadixExpansion| . |PrincipalIdealDomain|) T) ((|RadixExpansion| . |UniqueFactorizationDomain|) T) ((|RadixExpansion| . |Field|) T) ((|RadixExpansion| . |DifferentialRing|) T) ((|RadixExpansion| . |DifferentialDomain|) 187998) ((|RadixExpansion| . |DifferentialSpace|) T) ((|RadixExpansion| . |DifferentialSpaceExtension|) 187975) ((|RadixExpansion| . |PartialDifferentialDomain|) NIL) ((|RadixExpansion| . |PartialDifferentialSpace|) NIL) ((|RadixExpansion| . |PartialDifferentialRing|) NIL) ((|RadixExpansion| . |DifferentialExtension|) 187952) ((|RadixExpansion| . |CharacteristicZero|) T) ((|RadixExpansion| . |CharacteristicNonZero|) NIL) ((|RadixExpansion| . |CancellationAbelianMonoid|) T) ((|RadixExpansion| . |AbelianSemiGroup|) T) ((|RadixExpansion| . |BasicType|) T) ((|RadixExpansion| . |Join|) T) ((|RadixExpansion| . |Type|) T) ((|RadixExpansion| . |CoercibleTo|) 187893) ((|RadixExpansion| . |SetCategory|) T) ((|RadixExpansion| . |AbelianMonoid|) T) ((|RadixExpansion| . |AbelianGroup|) T) ((|RadixExpansion| . |Ring|) T) ((|RadixExpansion| . |Monoid|) T) ((|RadixExpansion| . |SemiRing|) T) ((|RadixExpansion| . |SemiGroup|) T) ((|RadixExpansion| . |Rng|) T) ((|RadicalFunctionField| . |FunctionFieldCategory|) 187867) ((|RadicalFunctionField| . |CommutativeRing|) T) ((|RadicalFunctionField| . |CoercibleFrom|) 187775) ((|RadicalFunctionField| . |Rng|) T) ((|RadicalFunctionField| . |SemiGroup|) T) ((|RadicalFunctionField| . |SemiRing|) T) ((|RadicalFunctionField| . |Monoid|) T) ((|RadicalFunctionField| . |Ring|) T) ((|RadicalFunctionField| . |LeftModule|) 187633) ((|RadicalFunctionField| . |LeftLinearSet|) 187541) ((|RadicalFunctionField| . |CancellationAbelianMonoid|) T) ((|RadicalFunctionField| . |AbelianSemiGroup|) T) ((|RadicalFunctionField| . |BasicType|) T) ((|RadicalFunctionField| . |Join|) T) ((|RadicalFunctionField| . |Type|) T) ((|RadicalFunctionField| . |CoercibleTo|) 187515) ((|RadicalFunctionField| . |SetCategory|) T) ((|RadicalFunctionField| . |AbelianMonoid|) T) ((|RadicalFunctionField| . |AbelianGroup|) T) ((|RadicalFunctionField| . |RightModule|) 187443) ((|RadicalFunctionField| . |RightLinearSet|) 187371) ((|RadicalFunctionField| . |BiModule|) 187283) ((|RadicalFunctionField| . |ConvertibleTo|) 187267) ((|RadicalFunctionField| . |DifferentialExtension|) 187238) ((|RadicalFunctionField| . |PartialDifferentialRing|) 187157) ((|RadicalFunctionField| . |PartialDifferentialSpace|) 187005) ((|RadicalFunctionField| . |PartialDifferentialDomain|) 186851) ((|RadicalFunctionField| . |DifferentialSpaceExtension|) 186822) ((|RadicalFunctionField| . |DifferentialSpace|) 186721) ((|RadicalFunctionField| . |DifferentialDomain|) 186614) ((|RadicalFunctionField| . |DifferentialRing|) 186566) ((|RadicalFunctionField| . |Field|) T) ((|RadicalFunctionField| . |UniqueFactorizationDomain|) T) ((|RadicalFunctionField| . |PrincipalIdealDomain|) T) ((|RadicalFunctionField| . |IntegralDomain|) T) ((|RadicalFunctionField| . |Module|) 186494) ((|RadicalFunctionField| . |LinearSet|) 186422) ((|RadicalFunctionField| . |Algebra|) 186350) ((|RadicalFunctionField| . |GcdDomain|) T) ((|RadicalFunctionField| . |EuclideanDomain|) T) ((|RadicalFunctionField| . |EntireRing|) T) ((|RadicalFunctionField| . |DivisionRing|) T) ((|RadicalFunctionField| . |Finite|) NIL) ((|RadicalFunctionField| . |FiniteFieldCategory|) NIL) ((|RadicalFunctionField| . |StepThrough|) NIL) ((|RadicalFunctionField| . |CharacteristicNonZero|) 186297) ((|RadicalFunctionField| . |FieldOfPrimeCharacteristic|) NIL) ((|RadicalFunctionField| . |FramedAlgebra|) 186263) ((|RadicalFunctionField| . |CharacteristicZero|) 186213) ((|RadicalFunctionField| . |FiniteRankAlgebra|) 186179) ((|RadicalFunctionField| . |FullyLinearlyExplicitRingOver|) 186150) ((|RadicalFunctionField| . |LinearlyExplicitRingOver|) 186051) ((|RadicalFunctionField| . |FullyRetractableTo|) 186022) ((|RadicalFunctionField| . |RetractableTo|) 185852) ((|RadicalFunctionField| . |MonogenicAlgebra|) 185818) ((|Queue| . |QueueAggregate|) 185802) ((|Queue| . |FiniteAggregate|) 185786) ((|Queue| . |HomogeneousAggregate|) 185770) ((|Queue| . |SetCategory|) 185740) ((|Queue| . |Functorial|) 185724) ((|Queue| . |InnerEvalable|) 185643) ((|Queue| . |Evalable|) 185567) ((|Queue| . |CoercibleTo|) 185469) ((|Queue| . |BasicType|) 185407) ((|Queue| . |Type|) T) ((|Queue| . |Join|) T) ((|Queue| . |Aggregate|) T) ((|Queue| . |ShallowlyMutableAggregate|) 185391) ((|Queue| . |BagAggregate|) 185375) ((|Quaternion| . |QuaternionCategory|) 185359) ((|Quaternion| . |OrderedType|) 185330) ((|Quaternion| . |OrderedSet|) 185301) ((|Quaternion| . |RetractableTo|) 185145) ((|Quaternion| . |FullyRetractableTo|) 185129) ((|Quaternion| . |LinearlyExplicitRingOver|) 185045) ((|Quaternion| . |LeftModule|) 184901) ((|Quaternion| . |FullyLinearlyExplicitRingOver|) 184885) ((|Quaternion| . |Eltable|) 184838) ((|Quaternion| . |Evalable|) 184797) ((|Quaternion| . |InnerEvalable|) 184686) ((|Quaternion| . |Functorial|) 184670) ((|Quaternion| . |FullyEvalableOver|) 184654) ((|Quaternion| . |Algebra|) 184588) ((|Quaternion| . |BiModule|) 184448) ((|Quaternion| . |RightLinearSet|) 184322) ((|Quaternion| . |RightModule|) 184196) ((|Quaternion| . |LeftLinearSet|) 184100) ((|Quaternion| . |LinearSet|) 184034) ((|Quaternion| . |Module|) 183968) ((|Quaternion| . |CoercibleFrom|) 183821) ((|Quaternion| . |EntireRing|) 183764) ((|Quaternion| . |DivisionRing|) 183740) ((|Quaternion| . |DifferentialRing|) 183705) ((|Quaternion| . |DifferentialDomain|) 183624) ((|Quaternion| . |DifferentialSpace|) 183549) ((|Quaternion| . |DifferentialSpaceExtension|) 183533) ((|Quaternion| . |PartialDifferentialDomain|) 183405) ((|Quaternion| . |PartialDifferentialSpace|) 183279) ((|Quaternion| . |PartialDifferentialRing|) 183211) ((|Quaternion| . |DifferentialExtension|) 183195) ((|Quaternion| . |ConvertibleTo|) 183131) ((|Quaternion| . |CharacteristicZero|) 183094) ((|Quaternion| . |CharacteristicNonZero|) 183054) ((|Quaternion| . |CancellationAbelianMonoid|) T) ((|Quaternion| . |AbelianSemiGroup|) T) ((|Quaternion| . |BasicType|) T) ((|Quaternion| . |Join|) T) ((|Quaternion| . |Type|) T) ((|Quaternion| . |CoercibleTo|) 183028) ((|Quaternion| . |SetCategory|) T) ((|Quaternion| . |AbelianMonoid|) T) ((|Quaternion| . |AbelianGroup|) T) ((|Quaternion| . |Ring|) T) ((|Quaternion| . |Monoid|) T) ((|Quaternion| . |SemiRing|) T) ((|Quaternion| . |SemiGroup|) T) ((|Quaternion| . |Rng|) T) ((|QuasiquoteAst| . |SpadSyntaxCategory|) T) ((|QuasiquoteAst| . |HomotopicTo|) 183006) ((|QuasiquoteAst| . |CoercibleTo|) 182961) ((|QuasiquoteAst| . |CoercibleFrom|) 182939) ((|QuasiquoteAst| . |SetCategory|) T) ((|QuasiquoteAst| . |Type|) T) ((|QuasiquoteAst| . |Join|) T) ((|QuasiquoteAst| . |BasicType|) T) ((|QuasiquoteAst| . |AbstractSyntaxCategory|) T) ((|QuadraticForm| . |AbelianGroup|) T) ((|QuadraticForm| . |LeftLinearSet|) 182916) ((|QuadraticForm| . |AbelianMonoid|) T) ((|QuadraticForm| . |SetCategory|) T) ((|QuadraticForm| . |CoercibleTo|) 182890) ((|QuadraticForm| . |Type|) T) ((|QuadraticForm| . |Join|) T) ((|QuadraticForm| . |BasicType|) T) ((|QuadraticForm| . |AbelianSemiGroup|) T) ((|QuadraticForm| . |CancellationAbelianMonoid|) T) ((|QuadraticForm| . |Eltable|) 182846) ((|QueryEquation| . |CoercibleTo|) 182820) ((|QuasiAlgebraicSet| . |SetCategory|) T) ((|QuasiAlgebraicSet| . |CoercibleTo|) 182794) ((|QuasiAlgebraicSet| . |Type|) T) ((|QuasiAlgebraicSet| . |Join|) T) ((|QuasiAlgebraicSet| . |BasicType|) T) ((|Partition| . |OrderedCancellationAbelianMonoid|) T) ((|Partition| . |OrderedAbelianSemiGroup|) T) ((|Partition| . |OrderedType|) T) ((|Partition| . |OrderedSet|) T) ((|Partition| . |OrderedAbelianMonoid|) T) ((|Partition| . |AbelianMonoid|) T) ((|Partition| . |SetCategory|) T) ((|Partition| . |CoercibleTo|) 182731) ((|Partition| . |Type|) T) ((|Partition| . |Join|) T) ((|Partition| . |BasicType|) T) ((|Partition| . |AbelianSemiGroup|) T) ((|Partition| . |CancellationAbelianMonoid|) T) ((|PretendAst| . |SpadSyntaxCategory|) T) ((|PretendAst| . |HomotopicTo|) 182709) ((|PretendAst| . |CoercibleTo|) 182664) ((|PretendAst| . |CoercibleFrom|) 182642) ((|PretendAst| . |SetCategory|) T) ((|PretendAst| . |Type|) T) ((|PretendAst| . |Join|) T) ((|PretendAst| . |BasicType|) T) ((|PretendAst| . |AbstractSyntaxCategory|) T) ((|PropositionalFormula| . |PropositionalLogic|) T) ((|PropositionalFormula| . |BasicType|) T) ((|PropositionalFormula| . |CoercibleTo|) 182616) ((|PropositionalFormula| . |SetCategory|) T) ((|PropositionalFormula| . |Logic|) T) ((|PropositionalFormula| . |Join|) T) ((|PropositionalFormula| . |Type|) T) ((|PropositionalFormula| . |BooleanLogic|) T) ((|PropositionalFormula| . |CoercibleFrom|) 182600) ((|Property| . |CoercibleTo|) 182574) ((|Product| . |SetCategory|) T) ((|Product| . |CoercibleTo|) 182548) ((|Product| . |Type|) T) ((|Product| . |Join|) T) ((|Product| . |BasicType|) T) ((|Product| . |Finite|) 182493) ((|Product| . |Monoid|) 182381) ((|Product| . |SemiGroup|) 182269) ((|Product| . |AbelianMonoid|) 181949) ((|Product| . |AbelianSemiGroup|) 181629) ((|Product| . |CancellationAbelianMonoid|) 181377) ((|Product| . |Group|) 181324) ((|Product| . |AbelianGroup|) 181257) ((|Product| . |LeftLinearSet|) 181174) ((|Product| . |OrderedAbelianMonoidSup|) 181085) ((|Product| . |OrderedAbelianMonoid|) 180996) ((|Product| . |OrderedSet|) 180840) ((|Product| . |OrderedType|) 180684) ((|Product| . |OrderedAbelianSemiGroup|) 180595) ((|Product| . |OrderedCancellationAbelianMonoid|) 180506) ((|PrimitiveArray| . |OneDimensionalArrayAggregate|) 180490) ((|PrimitiveArray| . |ShallowlyMutableAggregate|) 180474) ((|PrimitiveArray| . |FiniteAggregate|) 180458) ((|PrimitiveArray| . |Aggregate|) T) ((|PrimitiveArray| . |Join|) T) ((|PrimitiveArray| . |Type|) T) ((|PrimitiveArray| . |BasicType|) 180368) ((|PrimitiveArray| . |CoercibleTo|) 180242) ((|PrimitiveArray| . |Evalable|) 180166) ((|PrimitiveArray| . |InnerEvalable|) 180085) ((|PrimitiveArray| . |Functorial|) 180069) ((|PrimitiveArray| . |SetCategory|) 180006) ((|PrimitiveArray| . |HomogeneousAggregate|) 179990) ((|PrimitiveArray| . |LinearAggregate|) 179974) ((|PrimitiveArray| . |EltableAggregate|) 179946) ((|PrimitiveArray| . |Eltable|) 179875) ((|PrimitiveArray| . |IndexedAggregate|) 179847) ((|PrimitiveArray| . |ConvertibleTo|) 179783) ((|PrimitiveArray| . |Collection|) 179767) ((|PrimitiveArray| . |OrderedSet|) 179738) ((|PrimitiveArray| . |OrderedType|) 179709) ((|PrimitiveArray| . |FiniteLinearAggregate|) 179693) ((|PolynomialRing| . |FiniteAbelianMonoidRing|) 179672) ((|PolynomialRing| . |RetractableTo|) 179516) ((|PolynomialRing| . |FullyRetractableTo|) 179500) ((|PolynomialRing| . |Algebra|) 179344) ((|PolynomialRing| . |CoercibleFrom|) 179134) ((|PolynomialRing| . |LeftModule|) 179031) ((|PolynomialRing| . |LeftLinearSet|) 178908) ((|PolynomialRing| . |Rng|) T) ((|PolynomialRing| . |SemiGroup|) T) ((|PolynomialRing| . |SemiRing|) T) ((|PolynomialRing| . |Monoid|) T) ((|PolynomialRing| . |Ring|) T) ((|PolynomialRing| . |BiModule|) 178727) ((|PolynomialRing| . |RightLinearSet|) 178560) ((|PolynomialRing| . |RightModule|) 178393) ((|PolynomialRing| . |AbelianGroup|) T) ((|PolynomialRing| . |AbelianMonoid|) T) ((|PolynomialRing| . |SetCategory|) T) ((|PolynomialRing| . |CoercibleTo|) 178367) ((|PolynomialRing| . |Type|) T) ((|PolynomialRing| . |Join|) T) ((|PolynomialRing| . |BasicType|) T) ((|PolynomialRing| . |AbelianSemiGroup|) T) ((|PolynomialRing| . |CancellationAbelianMonoid|) T) ((|PolynomialRing| . |LinearSet|) 178211) ((|PolynomialRing| . |Module|) 178055) ((|PolynomialRing| . |CharacteristicNonZero|) 178015) ((|PolynomialRing| . |CharacteristicZero|) 177978) ((|PolynomialRing| . |CommutativeRing|) 177907) ((|PolynomialRing| . |Functorial|) 177891) ((|PolynomialRing| . |IntegralDomain|) 177858) ((|PolynomialRing| . |EntireRing|) 177825) ((|PolynomialRing| . |AbelianMonoidRing|) 177804) ((|PortNumber| . |SetCategory|) T) ((|PortNumber| . |CoercibleTo|) 177752) ((|PortNumber| . |Type|) T) ((|PortNumber| . |Join|) T) ((|PortNumber| . |BasicType|) T) ((|Polynomial| . |PolynomialCategory|) 177697) ((|Polynomial| . |CoercibleFrom|) 177387) ((|Polynomial| . |RetractableTo|) 177212) ((|Polynomial| . |UniqueFactorizationDomain|) 177162) ((|Polynomial| . |PolynomialFactorizationExplicit|) 177112) ((|Polynomial| . |PatternMatchable|) 176993) ((|Polynomial| . |PartialDifferentialSpace|) 176971) ((|Polynomial| . |PartialDifferentialDomain|) 176947) ((|Polynomial| . |PartialDifferentialRing|) 176925) ((|Polynomial| . |InnerEvalable|) 176869) ((|Polynomial| . |GcdDomain|) 176787) ((|Polynomial| . |LinearlyExplicitRingOver|) 176703) ((|Polynomial| . |LeftModule|) 176532) ((|Polynomial| . |FullyLinearlyExplicitRingOver|) 176516) ((|Polynomial| . |AbelianMonoidRing|) 176468) ((|Polynomial| . |Algebra|) 176231) ((|Polynomial| . |LinearSet|) 175994) ((|Polynomial| . |Module|) 175757) ((|Polynomial| . |EntireRing|) 175643) ((|Polynomial| . |IntegralDomain|) 175529) ((|Polynomial| . |Functorial|) 175513) ((|Polynomial| . |BiModule|) 175256) ((|Polynomial| . |RightLinearSet|) 175013) ((|Polynomial| . |RightModule|) 174770) ((|Polynomial| . |CommutativeRing|) 174623) ((|Polynomial| . |CharacteristicZero|) 174586) ((|Polynomial| . |CharacteristicNonZero|) 174546) ((|Polynomial| . |LeftLinearSet|) 174423) ((|Polynomial| . |CancellationAbelianMonoid|) T) ((|Polynomial| . |AbelianSemiGroup|) T) ((|Polynomial| . |BasicType|) T) ((|Polynomial| . |Join|) T) ((|Polynomial| . |Type|) T) ((|Polynomial| . |CoercibleTo|) 174397) ((|Polynomial| . |SetCategory|) T) ((|Polynomial| . |AbelianMonoid|) T) ((|Polynomial| . |AbelianGroup|) T) ((|Polynomial| . |Ring|) T) ((|Polynomial| . |Monoid|) T) ((|Polynomial| . |SemiRing|) T) ((|Polynomial| . |SemiGroup|) T) ((|Polynomial| . |Rng|) T) ((|Polynomial| . |FullyRetractableTo|) 174381) ((|Polynomial| . |FiniteAbelianMonoidRing|) 174333) ((|Polynomial| . |Evalable|) 174320) ((|Polynomial| . |ConvertibleTo|) 174098) ((|Point| . |PointCategory|) 174082) ((|Point| . |OneDimensionalArrayAggregate|) 174066) ((|Point| . |ShallowlyMutableAggregate|) 174050) ((|Point| . |FiniteAggregate|) 174034) ((|Point| . |Aggregate|) T) ((|Point| . |Join|) T) ((|Point| . |Type|) T) ((|Point| . |BasicType|) 173944) ((|Point| . |CoercibleTo|) 173818) ((|Point| . |Evalable|) 173742) ((|Point| . |InnerEvalable|) 173661) ((|Point| . |Functorial|) 173645) ((|Point| . |SetCategory|) 173582) ((|Point| . |HomogeneousAggregate|) 173566) ((|Point| . |LinearAggregate|) 173550) ((|Point| . |EltableAggregate|) 173522) ((|Point| . |Eltable|) 173451) ((|Point| . |IndexedAggregate|) 173423) ((|Point| . |ConvertibleTo|) 173359) ((|Point| . |Collection|) 173343) ((|Point| . |OrderedSet|) 173314) ((|Point| . |OrderedType|) 173285) ((|Point| . |FiniteLinearAggregate|) 173269) ((|Point| . |VectorCategory|) 173253) ((|Point| . |ConvertibleFrom|) 173228) ((|Plot3D| . |PlottableSpaceCurveCategory|) T) ((|Plot3D| . |CoercibleTo|) 173202) ((|Plot| . |PlottablePlaneCurveCategory|) T) ((|Plot| . |CoercibleTo|) 173176) ((|PositiveInteger| . |OrderedAbelianSemiGroup|) T) ((|PositiveInteger| . |OrderedType|) T) ((|PositiveInteger| . |OrderedSet|) T) ((|PositiveInteger| . |SetCategory|) T) ((|PositiveInteger| . |CoercibleTo|) 173150) ((|PositiveInteger| . |Type|) T) ((|PositiveInteger| . |Join|) T) ((|PositiveInteger| . |BasicType|) T) ((|PositiveInteger| . |AbelianSemiGroup|) T) ((|PositiveInteger| . |Monoid|) T) ((|PositiveInteger| . |SemiGroup|) T) ((|PartialFraction| . |Field|) T) ((|PartialFraction| . |UniqueFactorizationDomain|) T) ((|PartialFraction| . |PrincipalIdealDomain|) T) ((|PartialFraction| . |IntegralDomain|) T) ((|PartialFraction| . |CommutativeRing|) T) ((|PartialFraction| . |CoercibleFrom|) 173071) ((|PartialFraction| . |Module|) 173012) ((|PartialFraction| . |LinearSet|) 172953) ((|PartialFraction| . |Algebra|) 172894) ((|PartialFraction| . |GcdDomain|) T) ((|PartialFraction| . |EuclideanDomain|) T) ((|PartialFraction| . |LeftModule|) 172835) ((|PartialFraction| . |LeftLinearSet|) 172756) ((|PartialFraction| . |Rng|) T) ((|PartialFraction| . |SemiGroup|) T) ((|PartialFraction| . |SemiRing|) T) ((|PartialFraction| . |Monoid|) T) ((|PartialFraction| . |Ring|) T) ((|PartialFraction| . |BiModule|) 172683) ((|PartialFraction| . |RightLinearSet|) 172624) ((|PartialFraction| . |RightModule|) 172565) ((|PartialFraction| . |AbelianGroup|) T) ((|PartialFraction| . |AbelianMonoid|) T) ((|PartialFraction| . |SetCategory|) T) ((|PartialFraction| . |CoercibleTo|) 172539) ((|PartialFraction| . |Type|) T) ((|PartialFraction| . |Join|) T) ((|PartialFraction| . |BasicType|) T) ((|PartialFraction| . |AbelianSemiGroup|) T) ((|PartialFraction| . |CancellationAbelianMonoid|) T) ((|PartialFraction| . |EntireRing|) T) ((|PartialFraction| . |DivisionRing|) T) ((|PrimeField| . |FiniteFieldCategory|) T) ((|PrimeField| . |StepThrough|) T) ((|PrimeField| . |Finite|) T) ((|PrimeField| . |CharacteristicNonZero|) T) ((|PrimeField| . |Field|) T) ((|PrimeField| . |UniqueFactorizationDomain|) T) ((|PrimeField| . |PrincipalIdealDomain|) T) ((|PrimeField| . |IntegralDomain|) T) ((|PrimeField| . |CommutativeRing|) T) ((|PrimeField| . |CoercibleFrom|) 172473) ((|PrimeField| . |Module|) 172427) ((|PrimeField| . |LinearSet|) 172381) ((|PrimeField| . |Algebra|) 172335) ((|PrimeField| . |GcdDomain|) T) ((|PrimeField| . |EuclideanDomain|) T) ((|PrimeField| . |BiModule|) 172280) ((|PrimeField| . |RightLinearSet|) 172234) ((|PrimeField| . |RightModule|) 172188) ((|PrimeField| . |LeftLinearSet|) 172122) ((|PrimeField| . |LeftModule|) 172076) ((|PrimeField| . |EntireRing|) T) ((|PrimeField| . |DivisionRing|) T) ((|PrimeField| . |FieldOfPrimeCharacteristic|) T) ((|PrimeField| . |DifferentialSpace|) T) ((|PrimeField| . |Type|) T) ((|PrimeField| . |Join|) T) ((|PrimeField| . |DifferentialDomain|) 172063) ((|PrimeField| . |Ring|) T) ((|PrimeField| . |Monoid|) T) ((|PrimeField| . |SemiRing|) T) ((|PrimeField| . |SemiGroup|) T) ((|PrimeField| . |Rng|) T) ((|PrimeField| . |AbelianGroup|) T) ((|PrimeField| . |AbelianMonoid|) T) ((|PrimeField| . |SetCategory|) T) ((|PrimeField| . |CoercibleTo|) 172037) ((|PrimeField| . |BasicType|) T) ((|PrimeField| . |AbelianSemiGroup|) T) ((|PrimeField| . |CancellationAbelianMonoid|) T) ((|PrimeField| . |DifferentialRing|) T) ((|PrimeField| . |FiniteAlgebraicExtensionField|) 172024) ((|PrimeField| . |CharacteristicZero|) 171990) ((|PrimeField| . |RetractableTo|) 171977) ((|PrimeField| . |VectorSpace|) 171964) ((|PrimeField| . |ExtensionField|) 171951) ((|PrimeField| . |ConvertibleTo|) 171928) ((|PermutationGroup| . |SetCategory|) T) ((|PermutationGroup| . |CoercibleTo|) 171902) ((|PermutationGroup| . |Type|) T) ((|PermutationGroup| . |Join|) T) ((|PermutationGroup| . |BasicType|) T) ((|Permutation| . |PermutationCategory|) 171886) ((|Permutation| . |OrderedType|) 171828) ((|Permutation| . |OrderedSet|) 171770) ((|Permutation| . |Monoid|) T) ((|Permutation| . |SetCategory|) T) ((|Permutation| . |CoercibleTo|) 171744) ((|Permutation| . |BasicType|) T) ((|Permutation| . |SemiGroup|) T) ((|Permutation| . |Group|) T) ((|Permutation| . |Type|) T) ((|Permutation| . |Join|) T) ((|Permutation| . |Eltable|) 171723) ((|PendantTree| . |BinaryRecursiveAggregate|) 171707) ((|PendantTree| . |HomogeneousAggregate|) 171691) ((|PendantTree| . |SetCategory|) 171661) ((|PendantTree| . |Functorial|) 171645) ((|PendantTree| . |InnerEvalable|) 171564) ((|PendantTree| . |Evalable|) 171488) ((|PendantTree| . |CoercibleTo|) 171368) ((|PendantTree| . |BasicType|) 171306) ((|PendantTree| . |Type|) T) ((|PendantTree| . |Join|) T) ((|PendantTree| . |Aggregate|) T) ((|PendantTree| . |RecursiveAggregate|) 171290) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedSet|) T) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleTo|) 171264) ((|PoincareBirkhoffWittLyndonBasis| . |SetCategory|) T) ((|PoincareBirkhoffWittLyndonBasis| . |BasicType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |Join|) T) ((|PoincareBirkhoffWittLyndonBasis| . |Type|) T) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |RetractableTo|) 171233) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleFrom|) 171202) ((|Pattern| . |SetCategory|) T) ((|Pattern| . |CoercibleTo|) 171176) ((|Pattern| . |Type|) T) ((|Pattern| . |Join|) T) ((|Pattern| . |BasicType|) T) ((|Pattern| . |RetractableTo|) 171141) ((|Pattern| . |CoercibleFrom|) 171106) ((|PatternMatchResult| . |SetCategory|) T) ((|PatternMatchResult| . |CoercibleTo|) 171080) ((|PatternMatchResult| . |Type|) T) ((|PatternMatchResult| . |Join|) T) ((|PatternMatchResult| . |BasicType|) T) ((|PatternMatchListResult| . |SetCategory|) T) ((|PatternMatchListResult| . |CoercibleTo|) 171054) ((|PatternMatchListResult| . |Type|) T) ((|PatternMatchListResult| . |Join|) T) ((|PatternMatchListResult| . |BasicType|) T) ((|ParameterAst| . |SpadSyntaxCategory|) T) ((|ParameterAst| . |HomotopicTo|) 171032) ((|ParameterAst| . |CoercibleTo|) 170987) ((|ParameterAst| . |CoercibleFrom|) 170965) ((|ParameterAst| . |SetCategory|) T) ((|ParameterAst| . |Type|) T) ((|ParameterAst| . |Join|) T) ((|ParameterAst| . |BasicType|) T) ((|ParameterAst| . |AbstractSyntaxCategory|) T) ((|ParameterAst| . |UnionType|) T) ((|Palette| . |SetCategory|) T) ((|Palette| . |CoercibleTo|) 170939) ((|Palette| . |Type|) T) ((|Palette| . |Join|) T) ((|Palette| . |BasicType|) T) ((|Palette| . |CoercibleFrom|) 170918) ((|Pair| . |Type|) T) ((|Pair| . |Join|) T) ((|Pair| . |CoercibleTo|) 170735) ((|Pair| . |SetCategory|) 170670) ((|Pair| . |BasicType|) 170605) ((|PAdicRationalConstructor| . |QuotientFieldCategory|) 170589) ((|PAdicRationalConstructor| . |StepThrough|) 170559) ((|PAdicRationalConstructor| . |RetractableTo|) 170378) ((|PAdicRationalConstructor| . |CoercibleFrom|) 170244) ((|PAdicRationalConstructor| . |ConvertibleTo|) 169947) ((|PAdicRationalConstructor| . |RealConstant|) 169916) ((|PAdicRationalConstructor| . |PolynomialFactorizationExplicit|) 169866) ((|PAdicRationalConstructor| . |Patternable|) 169850) ((|PAdicRationalConstructor| . |OrderedRing|) 169810) ((|PAdicRationalConstructor| . |OrderedCancellationAbelianMonoid|) 169770) ((|PAdicRationalConstructor| . |OrderedAbelianSemiGroup|) 169730) ((|PAdicRationalConstructor| . |OrderedType|) 169657) ((|PAdicRationalConstructor| . |OrderedSet|) 169584) ((|PAdicRationalConstructor| . |OrderedAbelianMonoid|) 169544) ((|PAdicRationalConstructor| . |OrderedAbelianGroup|) 169504) ((|PAdicRationalConstructor| . |OrderedIntegralDomain|) 169464) ((|PAdicRationalConstructor| . |PatternMatchable|) 169345) ((|PAdicRationalConstructor| . |FullyPatternMatchable|) 169329) ((|PAdicRationalConstructor| . |LinearlyExplicitRingOver|) 169245) ((|PAdicRationalConstructor| . |LeftModule|) 169118) ((|PAdicRationalConstructor| . |FullyLinearlyExplicitRingOver|) 169102) ((|PAdicRationalConstructor| . |Eltable|) 169055) ((|PAdicRationalConstructor| . |Evalable|) 169014) ((|PAdicRationalConstructor| . |InnerEvalable|) 168903) ((|PAdicRationalConstructor| . |Functorial|) 168887) ((|PAdicRationalConstructor| . |FullyEvalableOver|) 168871) ((|PAdicRationalConstructor| . |DivisionRing|) T) ((|PAdicRationalConstructor| . |BiModule|) 168798) ((|PAdicRationalConstructor| . |RightLinearSet|) 168739) ((|PAdicRationalConstructor| . |RightModule|) 168680) ((|PAdicRationalConstructor| . |EntireRing|) T) ((|PAdicRationalConstructor| . |Module|) 168621) ((|PAdicRationalConstructor| . |LinearSet|) 168562) ((|PAdicRationalConstructor| . |LeftLinearSet|) 168483) ((|PAdicRationalConstructor| . |Algebra|) 168424) ((|PAdicRationalConstructor| . |EuclideanDomain|) T) ((|PAdicRationalConstructor| . |GcdDomain|) T) ((|PAdicRationalConstructor| . |CommutativeRing|) T) ((|PAdicRationalConstructor| . |IntegralDomain|) T) ((|PAdicRationalConstructor| . |PrincipalIdealDomain|) T) ((|PAdicRationalConstructor| . |UniqueFactorizationDomain|) T) ((|PAdicRationalConstructor| . |Field|) T) ((|PAdicRationalConstructor| . |DifferentialRing|) 168389) ((|PAdicRationalConstructor| . |DifferentialDomain|) 168308) ((|PAdicRationalConstructor| . |DifferentialSpace|) 168233) ((|PAdicRationalConstructor| . |DifferentialSpaceExtension|) 168217) ((|PAdicRationalConstructor| . |PartialDifferentialDomain|) 168089) ((|PAdicRationalConstructor| . |PartialDifferentialSpace|) 167963) ((|PAdicRationalConstructor| . |PartialDifferentialRing|) 167895) ((|PAdicRationalConstructor| . |DifferentialExtension|) 167879) ((|PAdicRationalConstructor| . |CharacteristicZero|) 167798) ((|PAdicRationalConstructor| . |CharacteristicNonZero|) 167758) ((|PAdicRationalConstructor| . |CancellationAbelianMonoid|) T) ((|PAdicRationalConstructor| . |AbelianSemiGroup|) T) ((|PAdicRationalConstructor| . |BasicType|) T) ((|PAdicRationalConstructor| . |Join|) T) ((|PAdicRationalConstructor| . |Type|) T) ((|PAdicRationalConstructor| . |CoercibleTo|) 167732) ((|PAdicRationalConstructor| . |SetCategory|) T) ((|PAdicRationalConstructor| . |AbelianMonoid|) T) ((|PAdicRationalConstructor| . |AbelianGroup|) T) ((|PAdicRationalConstructor| . |Ring|) T) ((|PAdicRationalConstructor| . |Monoid|) T) ((|PAdicRationalConstructor| . |SemiRing|) T) ((|PAdicRationalConstructor| . |SemiGroup|) T) ((|PAdicRationalConstructor| . |Rng|) T) ((|PAdicRational| . |QuotientFieldCategory|) 167699) ((|PAdicRational| . |StepThrough|) NIL) ((|PAdicRational| . |RetractableTo|) 167666) ((|PAdicRational| . |CoercibleFrom|) 167570) ((|PAdicRational| . |ConvertibleTo|) NIL) ((|PAdicRational| . |RealConstant|) NIL) ((|PAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|PAdicRational| . |Patternable|) 167537) ((|PAdicRational| . |OrderedRing|) NIL) ((|PAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|PAdicRational| . |OrderedType|) NIL) ((|PAdicRational| . |OrderedSet|) NIL) ((|PAdicRational| . |OrderedAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedAbelianGroup|) NIL) ((|PAdicRational| . |OrderedIntegralDomain|) NIL) ((|PAdicRational| . |PatternMatchable|) NIL) ((|PAdicRational| . |FullyPatternMatchable|) 167504) ((|PAdicRational| . |LinearlyExplicitRingOver|) 167471) ((|PAdicRational| . |LeftModule|) 167395) ((|PAdicRational| . |FullyLinearlyExplicitRingOver|) 167362) ((|PAdicRational| . |Eltable|) 167298) ((|PAdicRational| . |Evalable|) 167239) ((|PAdicRational| . |InnerEvalable|) 167114) ((|PAdicRational| . |Functorial|) 167081) ((|PAdicRational| . |FullyEvalableOver|) 167048) ((|PAdicRational| . |DivisionRing|) T) ((|PAdicRational| . |BiModule|) 166956) ((|PAdicRational| . |RightLinearSet|) 166880) ((|PAdicRational| . |RightModule|) 166804) ((|PAdicRational| . |EntireRing|) T) ((|PAdicRational| . |Module|) 166728) ((|PAdicRational| . |LinearSet|) 166652) ((|PAdicRational| . |LeftLinearSet|) 166556) ((|PAdicRational| . |Algebra|) 166480) ((|PAdicRational| . |EuclideanDomain|) T) ((|PAdicRational| . |GcdDomain|) T) ((|PAdicRational| . |CommutativeRing|) T) ((|PAdicRational| . |IntegralDomain|) T) ((|PAdicRational| . |PrincipalIdealDomain|) T) ((|PAdicRational| . |UniqueFactorizationDomain|) T) ((|PAdicRational| . |Field|) T) ((|PAdicRational| . |DifferentialRing|) NIL) ((|PAdicRational| . |DifferentialDomain|) NIL) ((|PAdicRational| . |DifferentialSpace|) NIL) ((|PAdicRational| . |DifferentialSpaceExtension|) 166447) ((|PAdicRational| . |PartialDifferentialDomain|) NIL) ((|PAdicRational| . |PartialDifferentialSpace|) NIL) ((|PAdicRational| . |PartialDifferentialRing|) NIL) ((|PAdicRational| . |DifferentialExtension|) 166414) ((|PAdicRational| . |CharacteristicZero|) T) ((|PAdicRational| . |CharacteristicNonZero|) NIL) ((|PAdicRational| . |CancellationAbelianMonoid|) T) ((|PAdicRational| . |AbelianSemiGroup|) T) ((|PAdicRational| . |BasicType|) T) ((|PAdicRational| . |Join|) T) ((|PAdicRational| . |Type|) T) ((|PAdicRational| . |CoercibleTo|) 166388) ((|PAdicRational| . |SetCategory|) T) ((|PAdicRational| . |AbelianMonoid|) T) ((|PAdicRational| . |AbelianGroup|) T) ((|PAdicRational| . |Ring|) T) ((|PAdicRational| . |Monoid|) T) ((|PAdicRational| . |SemiRing|) T) ((|PAdicRational| . |SemiGroup|) T) ((|PAdicRational| . |Rng|) T) ((|PAdicInteger| . |PAdicIntegerCategory|) 166372) ((|PAdicInteger| . |PrincipalIdealDomain|) T) ((|PAdicInteger| . |IntegralDomain|) T) ((|PAdicInteger| . |EntireRing|) T) ((|PAdicInteger| . |CommutativeRing|) T) ((|PAdicInteger| . |CoercibleFrom|) 166339) ((|PAdicInteger| . |Module|) 166326) ((|PAdicInteger| . |LinearSet|) 166313) ((|PAdicInteger| . |RightModule|) 166300) ((|PAdicInteger| . |RightLinearSet|) 166287) ((|PAdicInteger| . |BiModule|) 166272) ((|PAdicInteger| . |Algebra|) 166259) ((|PAdicInteger| . |GcdDomain|) T) ((|PAdicInteger| . |EuclideanDomain|) T) ((|PAdicInteger| . |Ring|) T) ((|PAdicInteger| . |Monoid|) T) ((|PAdicInteger| . |SemiRing|) T) ((|PAdicInteger| . |SemiGroup|) T) ((|PAdicInteger| . |Rng|) T) ((|PAdicInteger| . |AbelianGroup|) T) ((|PAdicInteger| . |LeftLinearSet|) 166226) ((|PAdicInteger| . |AbelianMonoid|) T) ((|PAdicInteger| . |SetCategory|) T) ((|PAdicInteger| . |CoercibleTo|) 166200) ((|PAdicInteger| . |Type|) T) ((|PAdicInteger| . |Join|) T) ((|PAdicInteger| . |BasicType|) T) ((|PAdicInteger| . |AbelianSemiGroup|) T) ((|PAdicInteger| . |CancellationAbelianMonoid|) T) ((|PAdicInteger| . |LeftModule|) 166187) ((|PAdicInteger| . |CharacteristicZero|) T) ((|OrdinaryWeightedPolynomials| . |Ring|) T) ((|OrdinaryWeightedPolynomials| . |Monoid|) T) ((|OrdinaryWeightedPolynomials| . |SemiRing|) T) ((|OrdinaryWeightedPolynomials| . |SemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |Rng|) T) ((|OrdinaryWeightedPolynomials| . |AbelianGroup|) T) ((|OrdinaryWeightedPolynomials| . |LeftLinearSet|) 166114) ((|OrdinaryWeightedPolynomials| . |AbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |SetCategory|) T) ((|OrdinaryWeightedPolynomials| . |CoercibleTo|) 166060) ((|OrdinaryWeightedPolynomials| . |Type|) T) ((|OrdinaryWeightedPolynomials| . |Join|) T) ((|OrdinaryWeightedPolynomials| . |BasicType|) T) ((|OrdinaryWeightedPolynomials| . |AbelianSemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |LeftModule|) 166007) ((|OrdinaryWeightedPolynomials| . |CoercibleFrom|) 165916) ((|OrdinaryWeightedPolynomials| . |HomotopicTo|) 165885) ((|OrdinaryWeightedPolynomials| . |Algebra|) 165842) ((|OrdinaryWeightedPolynomials| . |BiModule|) 165794) ((|OrdinaryWeightedPolynomials| . |RightLinearSet|) 165751) ((|OrdinaryWeightedPolynomials| . |RightModule|) 165708) ((|OrdinaryWeightedPolynomials| . |LinearSet|) 165665) ((|OrdinaryWeightedPolynomials| . |Module|) 165622) ((|OverloadSet| . |SetCategory|) T) ((|OverloadSet| . |CoercibleTo|) 165596) ((|OverloadSet| . |Type|) T) ((|OverloadSet| . |Join|) T) ((|OverloadSet| . |BasicType|) T) ((|OrderedVariableList| . |OrderedFinite|) T) ((|OrderedVariableList| . |OrderedType|) T) ((|OrderedVariableList| . |OrderedSet|) T) ((|OrderedVariableList| . |SetCategory|) T) ((|OrderedVariableList| . |CoercibleTo|) 165570) ((|OrderedVariableList| . |Type|) T) ((|OrderedVariableList| . |Join|) T) ((|OrderedVariableList| . |BasicType|) T) ((|OrderedVariableList| . |Finite|) T) ((|OrderedVariableList| . |ConvertibleTo|) 165464) ((|OutputForm| . |SetCategory|) T) ((|OutputForm| . |CoercibleTo|) 165438) ((|OutputForm| . |Type|) T) ((|OutputForm| . |Join|) T) ((|OutputForm| . |BasicType|) T) ((|OutputBinaryFile| . |OutputByteConduit|) T) ((|OutputBinaryFile| . |Conduit|) T) ((|OutputBinaryFile| . |CoercibleTo|) 165412) ((|OrdSetInts| . |OrderedSet|) T) ((|OrdSetInts| . |CoercibleTo|) 165386) ((|OrdSetInts| . |SetCategory|) T) ((|OrdSetInts| . |BasicType|) T) ((|OrdSetInts| . |Join|) T) ((|OrdSetInts| . |Type|) T) ((|OrdSetInts| . |OrderedType|) T) ((|UnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 165370) ((|UnivariateSkewPolynomial| . |RetractableTo|) 165214) ((|UnivariateSkewPolynomial| . |CoercibleFrom|) 165069) ((|UnivariateSkewPolynomial| . |FullyRetractableTo|) 165053) ((|UnivariateSkewPolynomial| . |Module|) 165010) ((|UnivariateSkewPolynomial| . |LinearSet|) 164967) ((|UnivariateSkewPolynomial| . |LeftModule|) 164941) ((|UnivariateSkewPolynomial| . |LeftLinearSet|) 164895) ((|UnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|UnivariateSkewPolynomial| . |BasicType|) T) ((|UnivariateSkewPolynomial| . |Join|) T) ((|UnivariateSkewPolynomial| . |Type|) T) ((|UnivariateSkewPolynomial| . |CoercibleTo|) 164869) ((|UnivariateSkewPolynomial| . |SetCategory|) T) ((|UnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |AbelianGroup|) T) ((|UnivariateSkewPolynomial| . |RightModule|) 164853) ((|UnivariateSkewPolynomial| . |RightLinearSet|) 164837) ((|UnivariateSkewPolynomial| . |BiModule|) 164816) ((|UnivariateSkewPolynomial| . |Ring|) T) ((|UnivariateSkewPolynomial| . |Monoid|) T) ((|UnivariateSkewPolynomial| . |SemiRing|) T) ((|UnivariateSkewPolynomial| . |SemiGroup|) T) ((|UnivariateSkewPolynomial| . |Rng|) T) ((|UnivariateSkewPolynomial| . |Algebra|) 164773) ((|SparseUnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 164757) ((|SparseUnivariateSkewPolynomial| . |RetractableTo|) 164601) ((|SparseUnivariateSkewPolynomial| . |CoercibleFrom|) 164482) ((|SparseUnivariateSkewPolynomial| . |FullyRetractableTo|) 164466) ((|SparseUnivariateSkewPolynomial| . |Module|) 164423) ((|SparseUnivariateSkewPolynomial| . |LinearSet|) 164380) ((|SparseUnivariateSkewPolynomial| . |LeftModule|) 164354) ((|SparseUnivariateSkewPolynomial| . |LeftLinearSet|) 164308) ((|SparseUnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |BasicType|) T) ((|SparseUnivariateSkewPolynomial| . |Join|) T) ((|SparseUnivariateSkewPolynomial| . |Type|) T) ((|SparseUnivariateSkewPolynomial| . |CoercibleTo|) 164282) ((|SparseUnivariateSkewPolynomial| . |SetCategory|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianGroup|) T) ((|SparseUnivariateSkewPolynomial| . |RightModule|) 164266) ((|SparseUnivariateSkewPolynomial| . |RightLinearSet|) 164250) ((|SparseUnivariateSkewPolynomial| . |BiModule|) 164229) ((|SparseUnivariateSkewPolynomial| . |Ring|) T) ((|SparseUnivariateSkewPolynomial| . |Monoid|) T) ((|SparseUnivariateSkewPolynomial| . |SemiRing|) T) ((|SparseUnivariateSkewPolynomial| . |SemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |Rng|) T) ((|SparseUnivariateSkewPolynomial| . |Algebra|) 164186) ((|OrderedStructure| . |OrderedType|) T) ((|OrderedStructure| . |Type|) T) ((|OrderedStructure| . |Join|) T) ((|OrderedStructure| . |BasicType|) T) ((|OrderedStructure| . |HomotopicTo|) 164170) ((|OrderedStructure| . |CoercibleTo|) 164099) ((|OrderedStructure| . |CoercibleFrom|) 164083) ((|OrderedCompletion| . |SetCategory|) T) ((|OrderedCompletion| . |CoercibleTo|) 164057) ((|OrderedCompletion| . |Type|) T) ((|OrderedCompletion| . |Join|) T) ((|OrderedCompletion| . |BasicType|) T) ((|OrderedCompletion| . |FullyRetractableTo|) 164041) ((|OrderedCompletion| . |CoercibleFrom|) 163851) ((|OrderedCompletion| . |RetractableTo|) 163695) ((|OrderedCompletion| . |AbelianGroup|) 163630) ((|OrderedCompletion| . |LeftLinearSet|) 163516) ((|OrderedCompletion| . |AbelianMonoid|) 163451) ((|OrderedCompletion| . |AbelianSemiGroup|) 163386) ((|OrderedCompletion| . |CancellationAbelianMonoid|) 163321) ((|OrderedCompletion| . |OrderedRing|) 163291) ((|OrderedCompletion| . |OrderedCancellationAbelianMonoid|) 163261) ((|OrderedCompletion| . |OrderedAbelianSemiGroup|) 163231) ((|OrderedCompletion| . |OrderedType|) 163201) ((|OrderedCompletion| . |OrderedSet|) 163171) ((|OrderedCompletion| . |OrderedAbelianMonoid|) 163141) ((|OrderedCompletion| . |OrderedAbelianGroup|) 163111) ((|OrderedCompletion| . |Ring|) 163081) ((|OrderedCompletion| . |Monoid|) 163051) ((|OrderedCompletion| . |SemiRing|) 163021) ((|OrderedCompletion| . |SemiGroup|) 162991) ((|OrderedCompletion| . |Rng|) 162961) ((|OrderedCompletion| . |LeftModule|) 162925) ((|OrderedCompletion| . |CharacteristicZero|) 162895) ((|OperatorSignature| . |OperatorCategory|) 162869) ((|OperatorSignature| . |BasicType|) T) ((|OperatorSignature| . |Join|) T) ((|OperatorSignature| . |Type|) T) ((|OperatorSignature| . |CoercibleTo|) 162843) ((|OperatorSignature| . |SetCategory|) T) ((|Operator| . |Ring|) T) ((|Operator| . |Monoid|) T) ((|Operator| . |SemiRing|) T) ((|Operator| . |SemiGroup|) T) ((|Operator| . |Rng|) T) ((|Operator| . |AbelianGroup|) T) ((|Operator| . |LeftLinearSet|) 162770) ((|Operator| . |AbelianMonoid|) T) ((|Operator| . |SetCategory|) T) ((|Operator| . |CoercibleTo|) 162744) ((|Operator| . |Type|) T) ((|Operator| . |Join|) T) ((|Operator| . |BasicType|) T) ((|Operator| . |AbelianSemiGroup|) T) ((|Operator| . |CancellationAbelianMonoid|) T) ((|Operator| . |LeftModule|) 162691) ((|Operator| . |CoercibleFrom|) 162629) ((|Operator| . |RetractableTo|) 162587) ((|Operator| . |Eltable|) 162566) ((|Operator| . |CharacteristicZero|) 162529) ((|Operator| . |CharacteristicNonZero|) 162489) ((|Operator| . |Algebra|) 162446) ((|Operator| . |BiModule|) 162398) ((|Operator| . |RightLinearSet|) 162355) ((|Operator| . |RightModule|) 162312) ((|Operator| . |LinearSet|) 162269) ((|Operator| . |Module|) 162226) ((|OnePointCompletion| . |SetCategory|) T) ((|OnePointCompletion| . |CoercibleTo|) 162200) ((|OnePointCompletion| . |Type|) T) ((|OnePointCompletion| . |Join|) T) ((|OnePointCompletion| . |BasicType|) T) ((|OnePointCompletion| . |FullyRetractableTo|) 162184) ((|OnePointCompletion| . |CoercibleFrom|) 161994) ((|OnePointCompletion| . |RetractableTo|) 161838) ((|OnePointCompletion| . |AbelianGroup|) 161773) ((|OnePointCompletion| . |LeftLinearSet|) 161659) ((|OnePointCompletion| . |AbelianMonoid|) 161594) ((|OnePointCompletion| . |AbelianSemiGroup|) 161529) ((|OnePointCompletion| . |CancellationAbelianMonoid|) 161464) ((|OnePointCompletion| . |OrderedRing|) 161434) ((|OnePointCompletion| . |OrderedCancellationAbelianMonoid|) 161404) ((|OnePointCompletion| . |OrderedAbelianSemiGroup|) 161374) ((|OnePointCompletion| . |OrderedType|) 161344) ((|OnePointCompletion| . |OrderedSet|) 161314) ((|OnePointCompletion| . |OrderedAbelianMonoid|) 161284) ((|OnePointCompletion| . |OrderedAbelianGroup|) 161254) ((|OnePointCompletion| . |Ring|) 161224) ((|OnePointCompletion| . |Monoid|) 161194) ((|OnePointCompletion| . |SemiRing|) 161164) ((|OnePointCompletion| . |SemiGroup|) 161134) ((|OnePointCompletion| . |Rng|) 161104) ((|OnePointCompletion| . |LeftModule|) 161068) ((|OnePointCompletion| . |CharacteristicZero|) 161038) ((|OppositeMonogenicLinearOperator| . |MonogenicLinearOperator|) 161022) ((|OppositeMonogenicLinearOperator| . |CoercibleFrom|) 160959) ((|OppositeMonogenicLinearOperator| . |Module|) 160916) ((|OppositeMonogenicLinearOperator| . |LinearSet|) 160873) ((|OppositeMonogenicLinearOperator| . |LeftModule|) 160847) ((|OppositeMonogenicLinearOperator| . |LeftLinearSet|) 160801) ((|OppositeMonogenicLinearOperator| . |CancellationAbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |AbelianSemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |BasicType|) T) ((|OppositeMonogenicLinearOperator| . |Join|) T) ((|OppositeMonogenicLinearOperator| . |Type|) T) ((|OppositeMonogenicLinearOperator| . |CoercibleTo|) 160775) ((|OppositeMonogenicLinearOperator| . |SetCategory|) T) ((|OppositeMonogenicLinearOperator| . |AbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |AbelianGroup|) T) ((|OppositeMonogenicLinearOperator| . |RightModule|) 160759) ((|OppositeMonogenicLinearOperator| . |RightLinearSet|) 160743) ((|OppositeMonogenicLinearOperator| . |BiModule|) 160722) ((|OppositeMonogenicLinearOperator| . |Ring|) T) ((|OppositeMonogenicLinearOperator| . |Monoid|) T) ((|OppositeMonogenicLinearOperator| . |SemiRing|) T) ((|OppositeMonogenicLinearOperator| . |SemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |Rng|) T) ((|OppositeMonogenicLinearOperator| . |Algebra|) 160679) ((|OppositeMonogenicLinearOperator| . |DifferentialRing|) 160644) ((|OppositeMonogenicLinearOperator| . |DifferentialDomain|) 160603) ((|OppositeMonogenicLinearOperator| . |DifferentialSpace|) 160568) ((|OrderedFreeMonoid| . |FreeMonoidCategory|) 160552) ((|OrderedFreeMonoid| . |CoercibleFrom|) 160536) ((|OrderedFreeMonoid| . |RetractableTo|) 160520) ((|OrderedFreeMonoid| . |OrderedType|) T) ((|OrderedFreeMonoid| . |OrderedSet|) T) ((|OrderedFreeMonoid| . |SemiGroup|) T) ((|OrderedFreeMonoid| . |BasicType|) T) ((|OrderedFreeMonoid| . |Join|) T) ((|OrderedFreeMonoid| . |Type|) T) ((|OrderedFreeMonoid| . |CoercibleTo|) 160494) ((|OrderedFreeMonoid| . |SetCategory|) T) ((|OrderedFreeMonoid| . |Monoid|) T) ((|OrderedFreeMonoid| . |OrderedMonoid|) T) ((|OrderedFreeMonoid| . |OrderedSemiGroup|) T) ((|OrderlyDifferentialVariable| . |DifferentialVariableCategory|) 160478) ((|OrderlyDifferentialVariable| . |CoercibleFrom|) 160462) ((|OrderlyDifferentialVariable| . |RetractableTo|) 160446) ((|OrderlyDifferentialVariable| . |OrderedType|) T) ((|OrderlyDifferentialVariable| . |BasicType|) T) ((|OrderlyDifferentialVariable| . |SetCategory|) T) ((|OrderlyDifferentialVariable| . |CoercibleTo|) 160420) ((|OrderlyDifferentialVariable| . |OrderedSet|) T) ((|OrderlyDifferentialVariable| . |DifferentialDomain|) 160407) ((|OrderlyDifferentialVariable| . |Join|) T) ((|OrderlyDifferentialVariable| . |Type|) T) ((|OrderlyDifferentialVariable| . |DifferentialSpace|) T) ((|OrdinaryDifferentialRing| . |BiModule|) 160335) ((|OrdinaryDifferentialRing| . |RightLinearSet|) 160272) ((|OrdinaryDifferentialRing| . |RightModule|) 160209) ((|OrdinaryDifferentialRing| . |AbelianGroup|) T) ((|OrdinaryDifferentialRing| . |LeftLinearSet|) 160126) ((|OrdinaryDifferentialRing| . |AbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |SetCategory|) T) ((|OrdinaryDifferentialRing| . |CoercibleTo|) 160087) ((|OrdinaryDifferentialRing| . |Type|) T) ((|OrdinaryDifferentialRing| . |Join|) T) ((|OrdinaryDifferentialRing| . |BasicType|) T) ((|OrdinaryDifferentialRing| . |AbelianSemiGroup|) T) ((|OrdinaryDifferentialRing| . |CancellationAbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |LeftModule|) 160024) ((|OrdinaryDifferentialRing| . |DifferentialRing|) T) ((|OrdinaryDifferentialRing| . |CoercibleFrom|) 159919) ((|OrdinaryDifferentialRing| . |Rng|) T) ((|OrdinaryDifferentialRing| . |SemiGroup|) T) ((|OrdinaryDifferentialRing| . |SemiRing|) T) ((|OrdinaryDifferentialRing| . |Monoid|) T) ((|OrdinaryDifferentialRing| . |Ring|) T) ((|OrdinaryDifferentialRing| . |DifferentialDomain|) 159906) ((|OrdinaryDifferentialRing| . |DifferentialSpace|) T) ((|OrdinaryDifferentialRing| . |HomotopicTo|) 159890) ((|OrdinaryDifferentialRing| . |Field|) 159866) ((|OrdinaryDifferentialRing| . |UniqueFactorizationDomain|) 159842) ((|OrdinaryDifferentialRing| . |PrincipalIdealDomain|) 159818) ((|OrdinaryDifferentialRing| . |IntegralDomain|) 159794) ((|OrdinaryDifferentialRing| . |CommutativeRing|) 159770) ((|OrdinaryDifferentialRing| . |Module|) 159698) ((|OrdinaryDifferentialRing| . |LinearSet|) 159626) ((|OrdinaryDifferentialRing| . |Algebra|) 159554) ((|OrdinaryDifferentialRing| . |GcdDomain|) 159530) ((|OrdinaryDifferentialRing| . |EuclideanDomain|) 159506) ((|OrdinaryDifferentialRing| . |EntireRing|) 159482) ((|OrdinaryDifferentialRing| . |DivisionRing|) 159458) ((|OrderlyDifferentialPolynomial| . |DifferentialPolynomialCategory|) 159364) ((|OrderlyDifferentialPolynomial| . |CoercibleFrom|) 158957) ((|OrderlyDifferentialPolynomial| . |RetractableTo|) 158685) ((|OrderlyDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|OrderlyDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 158605) ((|OrderlyDifferentialPolynomial| . |FullyRetractableTo|) 158589) ((|OrderlyDifferentialPolynomial| . |Algebra|) 158352) ((|OrderlyDifferentialPolynomial| . |BiModule|) 158095) ((|OrderlyDifferentialPolynomial| . |RightLinearSet|) 157852) ((|OrderlyDifferentialPolynomial| . |RightModule|) 157609) ((|OrderlyDifferentialPolynomial| . |LeftLinearSet|) 157486) ((|OrderlyDifferentialPolynomial| . |LeftModule|) 157315) ((|OrderlyDifferentialPolynomial| . |LinearSet|) 157078) ((|OrderlyDifferentialPolynomial| . |Module|) 156841) ((|OrderlyDifferentialPolynomial| . |CharacteristicNonZero|) 156801) ((|OrderlyDifferentialPolynomial| . |CharacteristicZero|) 156764) ((|OrderlyDifferentialPolynomial| . |CommutativeRing|) 156617) ((|OrderlyDifferentialPolynomial| . |Functorial|) 156601) ((|OrderlyDifferentialPolynomial| . |IntegralDomain|) 156487) ((|OrderlyDifferentialPolynomial| . |EntireRing|) 156373) ((|OrderlyDifferentialPolynomial| . |AbelianMonoidRing|) 156293) ((|OrderlyDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 156277) ((|OrderlyDifferentialPolynomial| . |LinearlyExplicitRingOver|) 156193) ((|OrderlyDifferentialPolynomial| . |GcdDomain|) 156111) ((|OrderlyDifferentialPolynomial| . |InnerEvalable|) 155941) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialRing|) 155822) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialDomain|) 155641) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialSpace|) 155464) ((|OrderlyDifferentialPolynomial| . |PatternMatchable|) NIL) ((|OrderlyDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 155414) ((|OrderlyDifferentialPolynomial| . |UniqueFactorizationDomain|) 155364) ((|OrderlyDifferentialPolynomial| . |PolynomialCategory|) 155277) ((|OrderlyDifferentialPolynomial| . |Evalable|) 155264) ((|OrderlyDifferentialPolynomial| . |DifferentialRing|) 155229) ((|OrderlyDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |BasicType|) T) ((|OrderlyDifferentialPolynomial| . |CoercibleTo|) 155203) ((|OrderlyDifferentialPolynomial| . |SetCategory|) T) ((|OrderlyDifferentialPolynomial| . |AbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |AbelianGroup|) T) ((|OrderlyDifferentialPolynomial| . |Rng|) T) ((|OrderlyDifferentialPolynomial| . |SemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |SemiRing|) T) ((|OrderlyDifferentialPolynomial| . |Monoid|) T) ((|OrderlyDifferentialPolynomial| . |Ring|) T) ((|OrderlyDifferentialPolynomial| . |DifferentialDomain|) 155122) ((|OrderlyDifferentialPolynomial| . |Join|) T) ((|OrderlyDifferentialPolynomial| . |Type|) T) ((|OrderlyDifferentialPolynomial| . |DifferentialSpace|) 155047) ((|OrderlyDifferentialPolynomial| . |DifferentialSpaceExtension|) 155031) ((|OrderlyDifferentialPolynomial| . |DifferentialExtension|) 155015) ((|OrderedDirectProduct| . |DirectProductCategory|) 154994) ((|OrderedDirectProduct| . |VectorSpace|) 154961) ((|OrderedDirectProduct| . |OrderedCancellationAbelianMonoid|) 154919) ((|OrderedDirectProduct| . |OrderedAbelianSemiGroup|) 154877) ((|OrderedDirectProduct| . |OrderedType|) 154802) ((|OrderedDirectProduct| . |OrderedSet|) 154727) ((|OrderedDirectProduct| . |OrderedAbelianMonoid|) 154685) ((|OrderedDirectProduct| . |OrderedAbelianMonoidSup|) 154643) ((|OrderedDirectProduct| . |Module|) 154572) ((|OrderedDirectProduct| . |LinearSet|) 154477) ((|OrderedDirectProduct| . |EltableAggregate|) 154449) ((|OrderedDirectProduct| . |Eltable|) 154421) ((|OrderedDirectProduct| . |IndexedAggregate|) 154393) ((|OrderedDirectProduct| . |RetractableTo|) 154144) ((|OrderedDirectProduct| . |CoercibleFrom|) 153868) ((|OrderedDirectProduct| . |FullyRetractableTo|) 153829) ((|OrderedDirectProduct| . |LinearlyExplicitRingOver|) 153701) ((|OrderedDirectProduct| . |LeftModule|) 153486) ((|OrderedDirectProduct| . |FullyLinearlyExplicitRingOver|) 153454) ((|OrderedDirectProduct| . |HomogeneousAggregate|) 153438) ((|OrderedDirectProduct| . |Functorial|) 153422) ((|OrderedDirectProduct| . |InnerEvalable|) 153341) ((|OrderedDirectProduct| . |Evalable|) 153265) ((|OrderedDirectProduct| . |Aggregate|) T) ((|OrderedDirectProduct| . |FiniteAggregate|) 153249) ((|OrderedDirectProduct| . |Finite|) 153224) ((|OrderedDirectProduct| . |DifferentialRing|) 153161) ((|OrderedDirectProduct| . |LeftLinearSet|) 152891) ((|OrderedDirectProduct| . |Rng|) 152868) ((|OrderedDirectProduct| . |SemiGroup|) 152845) ((|OrderedDirectProduct| . |SemiRing|) 152822) ((|OrderedDirectProduct| . |Monoid|) 152799) ((|OrderedDirectProduct| . |Ring|) 152776) ((|OrderedDirectProduct| . |DifferentialDomain|) 152639) ((|OrderedDirectProduct| . |DifferentialSpace|) 152508) ((|OrderedDirectProduct| . |DifferentialSpaceExtension|) 152476) ((|OrderedDirectProduct| . |PartialDifferentialDomain|) 152292) ((|OrderedDirectProduct| . |PartialDifferentialSpace|) 152110) ((|OrderedDirectProduct| . |PartialDifferentialRing|) 152014) ((|OrderedDirectProduct| . |DifferentialExtension|) 151982) ((|OrderedDirectProduct| . |CoercibleTo|) 151527) ((|OrderedDirectProduct| . |RightModule|) 151434) ((|OrderedDirectProduct| . |RightLinearSet|) 151317) ((|OrderedDirectProduct| . |BiModule|) 151219) ((|OrderedDirectProduct| . |CancellationAbelianMonoid|) 151021) ((|OrderedDirectProduct| . |AbelianSemiGroup|) 150758) ((|OrderedDirectProduct| . |BasicType|) 150363) ((|OrderedDirectProduct| . |Join|) T) ((|OrderedDirectProduct| . |Type|) T) ((|OrderedDirectProduct| . |SetCategory|) 149995) ((|OrderedDirectProduct| . |AbelianMonoid|) 149766) ((|OrderedDirectProduct| . |AbelianGroup|) 149652) ((|Octonion| . |OctonionCategory|) 149636) ((|Octonion| . |OrderedType|) 149607) ((|Octonion| . |OrderedSet|) 149578) ((|Octonion| . |RetractableTo|) 149255) ((|Octonion| . |CoercibleFrom|) 149032) ((|Octonion| . |FullyRetractableTo|) 148988) ((|Octonion| . |Eltable|) 148941) ((|Octonion| . |Evalable|) 148900) ((|Octonion| . |InnerEvalable|) 148789) ((|Octonion| . |Functorial|) 148773) ((|Octonion| . |FullyEvalableOver|) 148757) ((|Octonion| . |Finite|) 148732) ((|Octonion| . |ConvertibleTo|) 148668) ((|Octonion| . |CharacteristicZero|) 148631) ((|Octonion| . |CharacteristicNonZero|) 148591) ((|Octonion| . |Module|) 148575) ((|Octonion| . |LinearSet|) 148559) ((|Octonion| . |LeftModule|) 148533) ((|Octonion| . |LeftLinearSet|) 148487) ((|Octonion| . |CancellationAbelianMonoid|) T) ((|Octonion| . |AbelianSemiGroup|) T) ((|Octonion| . |BasicType|) T) ((|Octonion| . |Join|) T) ((|Octonion| . |Type|) T) ((|Octonion| . |CoercibleTo|) 148461) ((|Octonion| . |SetCategory|) T) ((|Octonion| . |AbelianMonoid|) T) ((|Octonion| . |AbelianGroup|) T) ((|Octonion| . |RightModule|) 148445) ((|Octonion| . |RightLinearSet|) 148429) ((|Octonion| . |BiModule|) 148408) ((|Octonion| . |Ring|) T) ((|Octonion| . |Monoid|) T) ((|Octonion| . |SemiRing|) T) ((|Octonion| . |SemiGroup|) T) ((|Octonion| . |Rng|) T) ((|Octonion| . |Algebra|) 148392) ((|NewSparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 148376) ((|NewSparseUnivariatePolynomial| . |StepThrough|) 148346) ((|NewSparseUnivariatePolynomial| . |ConvertibleTo|) NIL) ((|NewSparseUnivariatePolynomial| . |Evalable|) 148333) ((|NewSparseUnivariatePolynomial| . |InnerEvalable|) 148262) ((|NewSparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 148223) ((|NewSparseUnivariatePolynomial| . |RetractableTo|) 147989) ((|NewSparseUnivariatePolynomial| . |FullyRetractableTo|) 147973) ((|NewSparseUnivariatePolynomial| . |Algebra|) 147713) ((|NewSparseUnivariatePolynomial| . |BiModule|) 147433) ((|NewSparseUnivariatePolynomial| . |RightLinearSet|) 147167) ((|NewSparseUnivariatePolynomial| . |RightModule|) 146901) ((|NewSparseUnivariatePolynomial| . |LeftLinearSet|) 146778) ((|NewSparseUnivariatePolynomial| . |LeftModule|) 146607) ((|NewSparseUnivariatePolynomial| . |LinearSet|) 146347) ((|NewSparseUnivariatePolynomial| . |Module|) 146087) ((|NewSparseUnivariatePolynomial| . |CoercibleFrom|) 145695) ((|NewSparseUnivariatePolynomial| . |CharacteristicNonZero|) 145655) ((|NewSparseUnivariatePolynomial| . |CharacteristicZero|) 145618) ((|NewSparseUnivariatePolynomial| . |Functorial|) 145602) ((|NewSparseUnivariatePolynomial| . |AbelianMonoidRing|) 145563) ((|NewSparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 145547) ((|NewSparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 145463) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialRing|) 145361) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialDomain|) 145197) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialSpace|) 145037) ((|NewSparseUnivariatePolynomial| . |PatternMatchable|) NIL) ((|NewSparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 144987) ((|NewSparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 144937) ((|NewSparseUnivariatePolynomial| . |PolynomialCategory|) 144872) ((|NewSparseUnivariatePolynomial| . |PrincipalIdealDomain|) 144848) ((|NewSparseUnivariatePolynomial| . |IntegralDomain|) 144711) ((|NewSparseUnivariatePolynomial| . |EntireRing|) 144574) ((|NewSparseUnivariatePolynomial| . |CommutativeRing|) 144404) ((|NewSparseUnivariatePolynomial| . |GcdDomain|) 144299) ((|NewSparseUnivariatePolynomial| . |EuclideanDomain|) 144275) ((|NewSparseUnivariatePolynomial| . |Eltable|) 144178) ((|NewSparseUnivariatePolynomial| . |DifferentialRing|) T) ((|NewSparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |BasicType|) T) ((|NewSparseUnivariatePolynomial| . |CoercibleTo|) 144108) ((|NewSparseUnivariatePolynomial| . |SetCategory|) T) ((|NewSparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseUnivariatePolynomial| . |Rng|) T) ((|NewSparseUnivariatePolynomial| . |SemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |SemiRing|) T) ((|NewSparseUnivariatePolynomial| . |Monoid|) T) ((|NewSparseUnivariatePolynomial| . |Ring|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialDomain|) 144095) ((|NewSparseUnivariatePolynomial| . |Join|) T) ((|NewSparseUnivariatePolynomial| . |Type|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 144079) ((|NewSparseUnivariatePolynomial| . |DifferentialExtension|) 144063) ((|NewSparseMultivariatePolynomial| . |RecursivePolynomialCategory|) 144016) ((|NewSparseMultivariatePolynomial| . |ConvertibleTo|) 143455) ((|NewSparseMultivariatePolynomial| . |Evalable|) 143442) ((|NewSparseMultivariatePolynomial| . |InnerEvalable|) 143394) ((|NewSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 143352) ((|NewSparseMultivariatePolynomial| . |RetractableTo|) 143132) ((|NewSparseMultivariatePolynomial| . |FullyRetractableTo|) 143116) ((|NewSparseMultivariatePolynomial| . |Algebra|) 142879) ((|NewSparseMultivariatePolynomial| . |CoercibleFrom|) 142524) ((|NewSparseMultivariatePolynomial| . |LeftModule|) 142353) ((|NewSparseMultivariatePolynomial| . |LeftLinearSet|) 142230) ((|NewSparseMultivariatePolynomial| . |Rng|) T) ((|NewSparseMultivariatePolynomial| . |SemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |SemiRing|) T) ((|NewSparseMultivariatePolynomial| . |Monoid|) T) ((|NewSparseMultivariatePolynomial| . |Ring|) T) ((|NewSparseMultivariatePolynomial| . |BiModule|) 141973) ((|NewSparseMultivariatePolynomial| . |RightLinearSet|) 141730) ((|NewSparseMultivariatePolynomial| . |RightModule|) 141487) ((|NewSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |SetCategory|) T) ((|NewSparseMultivariatePolynomial| . |CoercibleTo|) 141346) ((|NewSparseMultivariatePolynomial| . |Type|) T) ((|NewSparseMultivariatePolynomial| . |Join|) T) ((|NewSparseMultivariatePolynomial| . |BasicType|) T) ((|NewSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |LinearSet|) 141109) ((|NewSparseMultivariatePolynomial| . |Module|) 140872) ((|NewSparseMultivariatePolynomial| . |CharacteristicNonZero|) 140832) ((|NewSparseMultivariatePolynomial| . |CharacteristicZero|) 140795) ((|NewSparseMultivariatePolynomial| . |CommutativeRing|) 140648) ((|NewSparseMultivariatePolynomial| . |Functorial|) 140632) ((|NewSparseMultivariatePolynomial| . |IntegralDomain|) 140518) ((|NewSparseMultivariatePolynomial| . |EntireRing|) 140404) ((|NewSparseMultivariatePolynomial| . |AbelianMonoidRing|) 140362) ((|NewSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 140346) ((|NewSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 140262) ((|NewSparseMultivariatePolynomial| . |GcdDomain|) 140180) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialRing|) 140164) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 140146) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 140130) ((|NewSparseMultivariatePolynomial| . |PatternMatchable|) 139909) ((|NewSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 139859) ((|NewSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 139809) ((|NewSparseMultivariatePolynomial| . |PolynomialCategory|) 139762) ((|None| . |SetCategory|) T) ((|None| . |CoercibleTo|) 139736) ((|None| . |Type|) T) ((|None| . |Join|) T) ((|None| . |BasicType|) T) ((|NonNegativeInteger| . |OrderedAbelianMonoidSup|) T) ((|NonNegativeInteger| . |CancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |AbelianSemiGroup|) T) ((|NonNegativeInteger| . |BasicType|) T) ((|NonNegativeInteger| . |Join|) T) ((|NonNegativeInteger| . |Type|) T) ((|NonNegativeInteger| . |CoercibleTo|) 139710) ((|NonNegativeInteger| . |SetCategory|) T) ((|NonNegativeInteger| . |AbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedAbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedSet|) T) ((|NonNegativeInteger| . |OrderedType|) T) ((|NonNegativeInteger| . |OrderedAbelianSemiGroup|) T) ((|NonNegativeInteger| . |OrderedCancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |Monoid|) T) ((|NonNegativeInteger| . |SemiGroup|) T) ((|Multiset| . |MultisetAggregate|) 139694) ((|Multiset| . |SetAggregate|) 139678) ((|Multiset| . |DictionaryOperations|) 139662) ((|Multiset| . |ConvertibleTo|) 139598) ((|Multiset| . |Collection|) 139582) ((|Multiset| . |HomogeneousAggregate|) 139566) ((|Multiset| . |SetCategory|) T) ((|Multiset| . |Functorial|) 139550) ((|Multiset| . |InnerEvalable|) 139469) ((|Multiset| . |Evalable|) 139393) ((|Multiset| . |CoercibleTo|) 139367) ((|Multiset| . |BasicType|) T) ((|Multiset| . |Type|) T) ((|Multiset| . |Join|) T) ((|Multiset| . |Aggregate|) T) ((|Multiset| . |ShallowlyMutableAggregate|) 139351) ((|Multiset| . |BagAggregate|) 139335) ((|Multiset| . |MultiDictionary|) 139319) ((|Multiset| . |FiniteAggregate|) 139303) ((|MonoidRing| . |Ring|) T) ((|MonoidRing| . |Monoid|) T) ((|MonoidRing| . |SemiRing|) T) ((|MonoidRing| . |SemiGroup|) T) ((|MonoidRing| . |Rng|) T) ((|MonoidRing| . |AbelianGroup|) T) ((|MonoidRing| . |LeftLinearSet|) 139230) ((|MonoidRing| . |AbelianMonoid|) T) ((|MonoidRing| . |SetCategory|) T) ((|MonoidRing| . |CoercibleTo|) 139204) ((|MonoidRing| . |Type|) T) ((|MonoidRing| . |Join|) T) ((|MonoidRing| . |BasicType|) T) ((|MonoidRing| . |AbelianSemiGroup|) T) ((|MonoidRing| . |CancellationAbelianMonoid|) T) ((|MonoidRing| . |LeftModule|) 139151) ((|MonoidRing| . |CoercibleFrom|) 139102) ((|MonoidRing| . |RetractableTo|) 139073) ((|MonoidRing| . |Functorial|) 139057) ((|MonoidRing| . |CharacteristicZero|) 139020) ((|MonoidRing| . |CharacteristicNonZero|) 138980) ((|MonoidRing| . |Algebra|) 138937) ((|MonoidRing| . |BiModule|) 138889) ((|MonoidRing| . |RightLinearSet|) 138846) ((|MonoidRing| . |RightModule|) 138803) ((|MonoidRing| . |LinearSet|) 138760) ((|MonoidRing| . |Module|) 138717) ((|MonoidRing| . |Finite|) 138662) ((|MultivariatePolynomial| . |PolynomialCategory|) 138589) ((|MultivariatePolynomial| . |CoercibleFrom|) 138261) ((|MultivariatePolynomial| . |RetractableTo|) 138068) ((|MultivariatePolynomial| . |UniqueFactorizationDomain|) 138018) ((|MultivariatePolynomial| . |PolynomialFactorizationExplicit|) 137968) ((|MultivariatePolynomial| . |PatternMatchable|) NIL) ((|MultivariatePolynomial| . |PartialDifferentialSpace|) 137928) ((|MultivariatePolynomial| . |PartialDifferentialDomain|) 137886) ((|MultivariatePolynomial| . |PartialDifferentialRing|) 137846) ((|MultivariatePolynomial| . |InnerEvalable|) 137772) ((|MultivariatePolynomial| . |GcdDomain|) 137690) ((|MultivariatePolynomial| . |LinearlyExplicitRingOver|) 137606) ((|MultivariatePolynomial| . |LeftModule|) 137435) ((|MultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 137419) ((|MultivariatePolynomial| . |AbelianMonoidRing|) 137353) ((|MultivariatePolynomial| . |Algebra|) 137116) ((|MultivariatePolynomial| . |LinearSet|) 136879) ((|MultivariatePolynomial| . |Module|) 136642) ((|MultivariatePolynomial| . |EntireRing|) 136528) ((|MultivariatePolynomial| . |IntegralDomain|) 136414) ((|MultivariatePolynomial| . |Functorial|) 136398) ((|MultivariatePolynomial| . |BiModule|) 136141) ((|MultivariatePolynomial| . |RightLinearSet|) 135898) ((|MultivariatePolynomial| . |RightModule|) 135655) ((|MultivariatePolynomial| . |CommutativeRing|) 135508) ((|MultivariatePolynomial| . |CharacteristicZero|) 135471) ((|MultivariatePolynomial| . |CharacteristicNonZero|) 135431) ((|MultivariatePolynomial| . |LeftLinearSet|) 135308) ((|MultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|MultivariatePolynomial| . |AbelianSemiGroup|) T) ((|MultivariatePolynomial| . |BasicType|) T) ((|MultivariatePolynomial| . |Join|) T) ((|MultivariatePolynomial| . |Type|) T) ((|MultivariatePolynomial| . |CoercibleTo|) 135282) ((|MultivariatePolynomial| . |SetCategory|) T) ((|MultivariatePolynomial| . |AbelianMonoid|) T) ((|MultivariatePolynomial| . |AbelianGroup|) T) ((|MultivariatePolynomial| . |Ring|) T) ((|MultivariatePolynomial| . |Monoid|) T) ((|MultivariatePolynomial| . |SemiRing|) T) ((|MultivariatePolynomial| . |SemiGroup|) T) ((|MultivariatePolynomial| . |Rng|) T) ((|MultivariatePolynomial| . |FullyRetractableTo|) 135266) ((|MultivariatePolynomial| . |FiniteAbelianMonoidRing|) 135200) ((|MultivariatePolynomial| . |Evalable|) 135187) ((|MultivariatePolynomial| . |ConvertibleTo|) 134965) ((|MonoidOperation| . |MonoidOperatorCategory|) 134949) ((|MonoidOperation| . |BinaryOperatorCategory|) 134933) ((|MonoidOperation| . |Type|) T) ((|MonoidOperation| . |MappingCategory|) 134907) ((|MonoidOperation| . |SemiGroupOperatorCategory|) 134891) ((|MonoidOperation| . |SetCategory|) T) ((|MonoidOperation| . |CoercibleTo|) 134829) ((|MonoidOperation| . |Join|) T) ((|MonoidOperation| . |BasicType|) T) ((|MoebiusTransform| . |Group|) T) ((|MoebiusTransform| . |SemiGroup|) T) ((|MoebiusTransform| . |BasicType|) T) ((|MoebiusTransform| . |Join|) T) ((|MoebiusTransform| . |Type|) T) ((|MoebiusTransform| . |CoercibleTo|) 134803) ((|MoebiusTransform| . |SetCategory|) T) ((|MoebiusTransform| . |Monoid|) T) ((|ModularRing| . |Ring|) T) ((|ModularRing| . |Monoid|) T) ((|ModularRing| . |SemiRing|) T) ((|ModularRing| . |SemiGroup|) T) ((|ModularRing| . |Rng|) T) ((|ModularRing| . |AbelianGroup|) T) ((|ModularRing| . |LeftLinearSet|) 134770) ((|ModularRing| . |AbelianMonoid|) T) ((|ModularRing| . |SetCategory|) T) ((|ModularRing| . |CoercibleTo|) 134744) ((|ModularRing| . |Type|) T) ((|ModularRing| . |Join|) T) ((|ModularRing| . |BasicType|) T) ((|ModularRing| . |AbelianSemiGroup|) T) ((|ModularRing| . |CancellationAbelianMonoid|) T) ((|ModularRing| . |LeftModule|) 134731) ((|ModularRing| . |CoercibleFrom|) 134708) ((|ModuleOperator| . |Ring|) T) ((|ModuleOperator| . |Monoid|) T) ((|ModuleOperator| . |SemiRing|) T) ((|ModuleOperator| . |SemiGroup|) T) ((|ModuleOperator| . |Rng|) T) ((|ModuleOperator| . |AbelianGroup|) T) ((|ModuleOperator| . |LeftLinearSet|) 134635) ((|ModuleOperator| . |AbelianMonoid|) T) ((|ModuleOperator| . |SetCategory|) T) ((|ModuleOperator| . |CoercibleTo|) 134609) ((|ModuleOperator| . |Type|) T) ((|ModuleOperator| . |Join|) T) ((|ModuleOperator| . |BasicType|) T) ((|ModuleOperator| . |AbelianSemiGroup|) T) ((|ModuleOperator| . |CancellationAbelianMonoid|) T) ((|ModuleOperator| . |LeftModule|) 134556) ((|ModuleOperator| . |CoercibleFrom|) 134494) ((|ModuleOperator| . |RetractableTo|) 134452) ((|ModuleOperator| . |Eltable|) 134431) ((|ModuleOperator| . |CharacteristicZero|) 134394) ((|ModuleOperator| . |CharacteristicNonZero|) 134354) ((|ModuleOperator| . |Algebra|) 134311) ((|ModuleOperator| . |BiModule|) 134263) ((|ModuleOperator| . |RightLinearSet|) 134220) ((|ModuleOperator| . |RightModule|) 134177) ((|ModuleOperator| . |LinearSet|) 134134) ((|ModuleOperator| . |Module|) 134091) ((|ModuleMonomial| . |OrderedSet|) T) ((|ModuleMonomial| . |CoercibleTo|) 134005) ((|ModuleMonomial| . |SetCategory|) T) ((|ModuleMonomial| . |BasicType|) T) ((|ModuleMonomial| . |Join|) T) ((|ModuleMonomial| . |Type|) T) ((|ModuleMonomial| . |OrderedType|) T) ((|ModuleMonomial| . |HomotopicTo|) 133942) ((|ModuleMonomial| . |CoercibleFrom|) 133879) ((|ModMonic| . |UnivariatePolynomialCategory|) 133863) ((|ModMonic| . |StepThrough|) 133833) ((|ModMonic| . |ConvertibleTo|) NIL) ((|ModMonic| . |Evalable|) 133820) ((|ModMonic| . |InnerEvalable|) 133749) ((|ModMonic| . |FiniteAbelianMonoidRing|) 133710) ((|ModMonic| . |RetractableTo|) 133520) ((|ModMonic| . |FullyRetractableTo|) 133504) ((|ModMonic| . |Algebra|) 133244) ((|ModMonic| . |BiModule|) 132964) ((|ModMonic| . |RightLinearSet|) 132698) ((|ModMonic| . |RightModule|) 132432) ((|ModMonic| . |LeftLinearSet|) 132309) ((|ModMonic| . |LeftModule|) 132138) ((|ModMonic| . |LinearSet|) 131878) ((|ModMonic| . |Module|) 131618) ((|ModMonic| . |CoercibleFrom|) 131257) ((|ModMonic| . |CharacteristicNonZero|) 131217) ((|ModMonic| . |CharacteristicZero|) 131180) ((|ModMonic| . |Functorial|) 131164) ((|ModMonic| . |AbelianMonoidRing|) 131125) ((|ModMonic| . |FullyLinearlyExplicitRingOver|) 131109) ((|ModMonic| . |LinearlyExplicitRingOver|) 131025) ((|ModMonic| . |PartialDifferentialRing|) 130923) ((|ModMonic| . |PartialDifferentialDomain|) 130759) ((|ModMonic| . |PartialDifferentialSpace|) 130599) ((|ModMonic| . |PatternMatchable|) NIL) ((|ModMonic| . |PolynomialFactorizationExplicit|) 130549) ((|ModMonic| . |UniqueFactorizationDomain|) 130499) ((|ModMonic| . |PolynomialCategory|) 130434) ((|ModMonic| . |PrincipalIdealDomain|) 130410) ((|ModMonic| . |IntegralDomain|) 130273) ((|ModMonic| . |EntireRing|) 130136) ((|ModMonic| . |CommutativeRing|) 129966) ((|ModMonic| . |GcdDomain|) 129861) ((|ModMonic| . |EuclideanDomain|) 129837) ((|ModMonic| . |Eltable|) 129740) ((|ModMonic| . |DifferentialRing|) T) ((|ModMonic| . |CancellationAbelianMonoid|) T) ((|ModMonic| . |AbelianSemiGroup|) T) ((|ModMonic| . |BasicType|) T) ((|ModMonic| . |CoercibleTo|) 129714) ((|ModMonic| . |SetCategory|) T) ((|ModMonic| . |AbelianMonoid|) T) ((|ModMonic| . |AbelianGroup|) T) ((|ModMonic| . |Rng|) T) ((|ModMonic| . |SemiGroup|) T) ((|ModMonic| . |SemiRing|) T) ((|ModMonic| . |Monoid|) T) ((|ModMonic| . |Ring|) T) ((|ModMonic| . |DifferentialDomain|) 129701) ((|ModMonic| . |Join|) T) ((|ModMonic| . |Type|) T) ((|ModMonic| . |DifferentialSpace|) T) ((|ModMonic| . |DifferentialSpaceExtension|) 129685) ((|ModMonic| . |DifferentialExtension|) 129669) ((|ModMonic| . |Finite|) 129644) ((|ModularField| . |Field|) T) ((|ModularField| . |UniqueFactorizationDomain|) T) ((|ModularField| . |PrincipalIdealDomain|) T) ((|ModularField| . |IntegralDomain|) T) ((|ModularField| . |CommutativeRing|) T) ((|ModularField| . |CoercibleFrom|) 129578) ((|ModularField| . |Module|) 129532) ((|ModularField| . |LinearSet|) 129486) ((|ModularField| . |Algebra|) 129440) ((|ModularField| . |GcdDomain|) T) ((|ModularField| . |EuclideanDomain|) T) ((|ModularField| . |LeftModule|) 129394) ((|ModularField| . |LeftLinearSet|) 129328) ((|ModularField| . |Rng|) T) ((|ModularField| . |SemiGroup|) T) ((|ModularField| . |SemiRing|) T) ((|ModularField| . |Monoid|) T) ((|ModularField| . |Ring|) T) ((|ModularField| . |BiModule|) 129273) ((|ModularField| . |RightLinearSet|) 129227) ((|ModularField| . |RightModule|) 129181) ((|ModularField| . |AbelianGroup|) T) ((|ModularField| . |AbelianMonoid|) T) ((|ModularField| . |SetCategory|) T) ((|ModularField| . |CoercibleTo|) 129155) ((|ModularField| . |Type|) T) ((|ModularField| . |Join|) T) ((|ModularField| . |BasicType|) T) ((|ModularField| . |AbelianSemiGroup|) T) ((|ModularField| . |CancellationAbelianMonoid|) T) ((|ModularField| . |EntireRing|) T) ((|ModularField| . |DivisionRing|) T) ((|MathMLFormat| . |SetCategory|) T) ((|MathMLFormat| . |CoercibleTo|) 129129) ((|MathMLFormat| . |Type|) T) ((|MathMLFormat| . |Join|) T) ((|MathMLFormat| . |BasicType|) T) ((|Maybe| . |UnionType|) T) ((|Maybe| . |RetractableTo|) 129113) ((|Maybe| . |CoercibleFrom|) 129097) ((|Maybe| . |CoercibleTo|) 129071) ((|Matrix| . |MatrixCategory|) 129032) ((|Matrix| . |FiniteAggregate|) 129016) ((|Matrix| . |Aggregate|) T) ((|Matrix| . |Join|) T) ((|Matrix| . |Type|) T) ((|Matrix| . |BasicType|) 128954) ((|Matrix| . |CoercibleTo|) 128856) ((|Matrix| . |Evalable|) 128780) ((|Matrix| . |InnerEvalable|) 128699) ((|Matrix| . |Functorial|) 128683) ((|Matrix| . |SetCategory|) 128653) ((|Matrix| . |HomogeneousAggregate|) 128637) ((|Matrix| . |ShallowlyMutableAggregate|) 128621) ((|Matrix| . |TwoDimensionalArrayCategory|) 128582) ((|Matrix| . |ConvertibleTo|) 128523) ((|MappingAst| . |SpadSyntaxCategory|) T) ((|MappingAst| . |HomotopicTo|) 128501) ((|MappingAst| . |CoercibleTo|) 128436) ((|MappingAst| . |CoercibleFrom|) 128414) ((|MappingAst| . |SetCategory|) T) ((|MappingAst| . |Type|) T) ((|MappingAst| . |Join|) T) ((|MappingAst| . |BasicType|) T) ((|MappingAst| . |AbstractSyntaxCategory|) T) ((|Magma| . |OrderedSet|) T) ((|Magma| . |CoercibleTo|) 128388) ((|Magma| . |SetCategory|) T) ((|Magma| . |BasicType|) T) ((|Magma| . |Join|) T) ((|Magma| . |Type|) T) ((|Magma| . |OrderedType|) T) ((|Magma| . |RetractableTo|) 128372) ((|Magma| . |CoercibleFrom|) 128356) ((|MacroAst| . |SpadSyntaxCategory|) T) ((|MacroAst| . |HomotopicTo|) 128334) ((|MacroAst| . |CoercibleTo|) 128289) ((|MacroAst| . |CoercibleFrom|) 128267) ((|MacroAst| . |SetCategory|) T) ((|MacroAst| . |Type|) T) ((|MacroAst| . |Join|) T) ((|MacroAst| . |BasicType|) T) ((|MacroAst| . |AbstractSyntaxCategory|) T) ((|LyndonWord| . |OrderedSet|) T) ((|LyndonWord| . |CoercibleTo|) 128241) ((|LyndonWord| . |SetCategory|) T) ((|LyndonWord| . |BasicType|) T) ((|LyndonWord| . |Join|) T) ((|LyndonWord| . |Type|) T) ((|LyndonWord| . |OrderedType|) T) ((|LyndonWord| . |RetractableTo|) 128225) ((|LyndonWord| . |CoercibleFrom|) 128209) ((|ConstructAst| . |SpadSyntaxCategory|) T) ((|ConstructAst| . |HomotopicTo|) 128187) ((|ConstructAst| . |CoercibleTo|) 128142) ((|ConstructAst| . |CoercibleFrom|) 128120) ((|ConstructAst| . |SetCategory|) T) ((|ConstructAst| . |Type|) T) ((|ConstructAst| . |Join|) T) ((|ConstructAst| . |BasicType|) T) ((|ConstructAst| . |AbstractSyntaxCategory|) T) ((|LieSquareMatrix| . |SquareMatrixCategory|) 128064) ((|LieSquareMatrix| . |FiniteAggregate|) 128048) ((|LieSquareMatrix| . |Aggregate|) T) ((|LieSquareMatrix| . |Evalable|) 127972) ((|LieSquareMatrix| . |InnerEvalable|) 127891) ((|LieSquareMatrix| . |Functorial|) 127875) ((|LieSquareMatrix| . |HomogeneousAggregate|) 127859) ((|LieSquareMatrix| . |RectangularMatrixCategory|) 127798) ((|LieSquareMatrix| . |RetractableTo|) 127642) ((|LieSquareMatrix| . |CoercibleFrom|) 127523) ((|LieSquareMatrix| . |FullyRetractableTo|) 127507) ((|LieSquareMatrix| . |LinearlyExplicitRingOver|) 127423) ((|LieSquareMatrix| . |LeftModule|) 127329) ((|LieSquareMatrix| . |FullyLinearlyExplicitRingOver|) 127313) ((|LieSquareMatrix| . |DifferentialRing|) 127278) ((|LieSquareMatrix| . |DifferentialDomain|) 127197) ((|LieSquareMatrix| . |DifferentialSpace|) 127122) ((|LieSquareMatrix| . |DifferentialSpaceExtension|) 127106) ((|LieSquareMatrix| . |PartialDifferentialDomain|) 126978) ((|LieSquareMatrix| . |PartialDifferentialSpace|) 126852) ((|LieSquareMatrix| . |PartialDifferentialRing|) 126784) ((|LieSquareMatrix| . |DifferentialExtension|) 126768) ((|LieSquareMatrix| . |Module|) 126752) ((|LieSquareMatrix| . |LinearSet|) 126736) ((|LieSquareMatrix| . |LeftLinearSet|) 126690) ((|LieSquareMatrix| . |CancellationAbelianMonoid|) T) ((|LieSquareMatrix| . |AbelianSemiGroup|) T) ((|LieSquareMatrix| . |BasicType|) T) ((|LieSquareMatrix| . |Join|) T) ((|LieSquareMatrix| . |Type|) T) ((|LieSquareMatrix| . |CoercibleTo|) 126640) ((|LieSquareMatrix| . |SetCategory|) T) ((|LieSquareMatrix| . |AbelianMonoid|) T) ((|LieSquareMatrix| . |AbelianGroup|) T) ((|LieSquareMatrix| . |RightModule|) 126624) ((|LieSquareMatrix| . |RightLinearSet|) 126608) ((|LieSquareMatrix| . |BiModule|) 126587) ((|LieSquareMatrix| . |Ring|) T) ((|LieSquareMatrix| . |Monoid|) T) ((|LieSquareMatrix| . |SemiRing|) T) ((|LieSquareMatrix| . |SemiGroup|) T) ((|LieSquareMatrix| . |Rng|) T) ((|LieSquareMatrix| . |Algebra|) 126532) ((|LieSquareMatrix| . |FramedNonAssociativeAlgebra|) 126516) ((|LieSquareMatrix| . |NonAssociativeAlgebra|) 126500) ((|LieSquareMatrix| . |Monad|) T) ((|LieSquareMatrix| . |NonAssociativeRng|) T) ((|LieSquareMatrix| . |FiniteRankNonAssociativeAlgebra|) 126484) ((|LieSquareMatrix| . |Eltable|) 126456) ((|LiePolynomial| . |FreeLieAlgebra|) 126435) ((|LiePolynomial| . |Module|) 126419) ((|LiePolynomial| . |LinearSet|) 126403) ((|LiePolynomial| . |LeftModule|) 126387) ((|LiePolynomial| . |LeftLinearSet|) 126351) ((|LiePolynomial| . |CancellationAbelianMonoid|) T) ((|LiePolynomial| . |AbelianSemiGroup|) T) ((|LiePolynomial| . |BasicType|) T) ((|LiePolynomial| . |Join|) T) ((|LiePolynomial| . |Type|) T) ((|LiePolynomial| . |CoercibleTo|) 126325) ((|LiePolynomial| . |SetCategory|) T) ((|LiePolynomial| . |AbelianMonoid|) T) ((|LiePolynomial| . |AbelianGroup|) T) ((|LiePolynomial| . |RightModule|) 126309) ((|LiePolynomial| . |RightLinearSet|) 126293) ((|LiePolynomial| . |BiModule|) 126272) ((|LiePolynomial| . |LieAlgebra|) 126256) ((|LiePolynomial| . |FreeModuleCat|) 126220) ((|LiePolynomial| . |CoercibleFrom|) 126189) ((|LiePolynomial| . |RetractableTo|) 126158) ((|LiePolynomial| . |Functorial|) 126142) ((|LinearOrdinaryDifferentialOperator2| . |LinearOrdinaryDifferentialOperatorCategory|) 126126) ((|LinearOrdinaryDifferentialOperator2| . |Algebra|) 126083) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleFrom|) 125964) ((|LinearOrdinaryDifferentialOperator2| . |LeftModule|) 125938) ((|LinearOrdinaryDifferentialOperator2| . |LeftLinearSet|) 125892) ((|LinearOrdinaryDifferentialOperator2| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator2| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator2| . |BiModule|) 125871) ((|LinearOrdinaryDifferentialOperator2| . |RightLinearSet|) 125855) ((|LinearOrdinaryDifferentialOperator2| . |RightModule|) 125839) ((|LinearOrdinaryDifferentialOperator2| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleTo|) 125813) ((|LinearOrdinaryDifferentialOperator2| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |LinearSet|) 125770) ((|LinearOrdinaryDifferentialOperator2| . |Module|) 125727) ((|LinearOrdinaryDifferentialOperator2| . |FullyRetractableTo|) 125711) ((|LinearOrdinaryDifferentialOperator2| . |RetractableTo|) 125555) ((|LinearOrdinaryDifferentialOperator2| . |UnivariateSkewPolynomialCategory|) 125539) ((|LinearOrdinaryDifferentialOperator2| . |Type|) T) ((|LinearOrdinaryDifferentialOperator2| . |Join|) T) ((|LinearOrdinaryDifferentialOperator2| . |Eltable|) 125500) ((|LinearOrdinaryDifferentialOperator1| . |LinearOrdinaryDifferentialOperatorCategory|) 125484) ((|LinearOrdinaryDifferentialOperator1| . |Algebra|) 125441) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleFrom|) 125322) ((|LinearOrdinaryDifferentialOperator1| . |LeftModule|) 125296) ((|LinearOrdinaryDifferentialOperator1| . |LeftLinearSet|) 125250) ((|LinearOrdinaryDifferentialOperator1| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator1| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator1| . |BiModule|) 125229) ((|LinearOrdinaryDifferentialOperator1| . |RightLinearSet|) 125213) ((|LinearOrdinaryDifferentialOperator1| . |RightModule|) 125197) ((|LinearOrdinaryDifferentialOperator1| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleTo|) 125171) ((|LinearOrdinaryDifferentialOperator1| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |LinearSet|) 125128) ((|LinearOrdinaryDifferentialOperator1| . |Module|) 125085) ((|LinearOrdinaryDifferentialOperator1| . |FullyRetractableTo|) 125069) ((|LinearOrdinaryDifferentialOperator1| . |RetractableTo|) 124913) ((|LinearOrdinaryDifferentialOperator1| . |UnivariateSkewPolynomialCategory|) 124897) ((|LinearOrdinaryDifferentialOperator1| . |Type|) T) ((|LinearOrdinaryDifferentialOperator1| . |Join|) T) ((|LinearOrdinaryDifferentialOperator1| . |Eltable|) 124876) ((|LinearOrdinaryDifferentialOperator| . |LinearOrdinaryDifferentialOperatorCategory|) 124860) ((|LinearOrdinaryDifferentialOperator| . |Algebra|) 124817) ((|LinearOrdinaryDifferentialOperator| . |CoercibleFrom|) 124698) ((|LinearOrdinaryDifferentialOperator| . |LeftModule|) 124672) ((|LinearOrdinaryDifferentialOperator| . |LeftLinearSet|) 124626) ((|LinearOrdinaryDifferentialOperator| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator| . |BiModule|) 124605) ((|LinearOrdinaryDifferentialOperator| . |RightLinearSet|) 124589) ((|LinearOrdinaryDifferentialOperator| . |RightModule|) 124573) ((|LinearOrdinaryDifferentialOperator| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator| . |CoercibleTo|) 124547) ((|LinearOrdinaryDifferentialOperator| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |LinearSet|) 124504) ((|LinearOrdinaryDifferentialOperator| . |Module|) 124461) ((|LinearOrdinaryDifferentialOperator| . |FullyRetractableTo|) 124445) ((|LinearOrdinaryDifferentialOperator| . |RetractableTo|) 124289) ((|LinearOrdinaryDifferentialOperator| . |UnivariateSkewPolynomialCategory|) 124273) ((|LinearOrdinaryDifferentialOperator| . |Type|) T) ((|LinearOrdinaryDifferentialOperator| . |Join|) T) ((|LinearOrdinaryDifferentialOperator| . |Eltable|) 124252) ((|Localize| . |Module|) 124236) ((|Localize| . |LinearSet|) 124220) ((|Localize| . |LeftModule|) 124204) ((|Localize| . |LeftLinearSet|) 124168) ((|Localize| . |CancellationAbelianMonoid|) T) ((|Localize| . |AbelianSemiGroup|) T) ((|Localize| . |BasicType|) T) ((|Localize| . |Join|) T) ((|Localize| . |Type|) T) ((|Localize| . |CoercibleTo|) 124142) ((|Localize| . |SetCategory|) T) ((|Localize| . |AbelianMonoid|) T) ((|Localize| . |AbelianGroup|) T) ((|Localize| . |RightModule|) 124126) ((|Localize| . |RightLinearSet|) 124110) ((|Localize| . |BiModule|) 124089) ((|Localize| . |OrderedAbelianGroup|) 124051) ((|Localize| . |OrderedAbelianMonoid|) 124013) ((|Localize| . |OrderedSet|) 123975) ((|Localize| . |OrderedType|) 123937) ((|Localize| . |OrderedAbelianSemiGroup|) 123899) ((|Localize| . |OrderedCancellationAbelianMonoid|) 123861) ((|ListMonoidOps| . |SetCategory|) T) ((|ListMonoidOps| . |CoercibleTo|) 123835) ((|ListMonoidOps| . |Type|) T) ((|ListMonoidOps| . |Join|) T) ((|ListMonoidOps| . |BasicType|) T) ((|ListMonoidOps| . |RetractableTo|) 123819) ((|ListMonoidOps| . |CoercibleFrom|) 123803) ((|ListMultiDictionary| . |MultiDictionary|) 123787) ((|ListMultiDictionary| . |BagAggregate|) 123771) ((|ListMultiDictionary| . |ShallowlyMutableAggregate|) 123755) ((|ListMultiDictionary| . |Aggregate|) T) ((|ListMultiDictionary| . |Join|) T) ((|ListMultiDictionary| . |Type|) T) ((|ListMultiDictionary| . |BasicType|) 123693) ((|ListMultiDictionary| . |CoercibleTo|) 123595) ((|ListMultiDictionary| . |Evalable|) 123519) ((|ListMultiDictionary| . |InnerEvalable|) 123438) ((|ListMultiDictionary| . |Functorial|) 123422) ((|ListMultiDictionary| . |SetCategory|) 123392) ((|ListMultiDictionary| . |HomogeneousAggregate|) 123376) ((|ListMultiDictionary| . |Collection|) 123360) ((|ListMultiDictionary| . |ConvertibleTo|) 123296) ((|ListMultiDictionary| . |DictionaryOperations|) 123280) ((|ListMultiDictionary| . |FiniteAggregate|) 123264) ((|Literal| . |SpadSyntaxCategory|) T) ((|Literal| . |HomotopicTo|) 123242) ((|Literal| . |CoercibleTo|) 123184) ((|Literal| . |CoercibleFrom|) 123162) ((|Literal| . |SetCategory|) T) ((|Literal| . |Type|) T) ((|Literal| . |Join|) T) ((|Literal| . |BasicType|) T) ((|Literal| . |AbstractSyntaxCategory|) T) ((|List| . |ListAggregate|) 123146) ((|List| . |UnaryRecursiveAggregate|) 123130) ((|List| . |RecursiveAggregate|) 123114) ((|List| . |StreamAggregate|) 123098) ((|List| . |FiniteAggregate|) 123082) ((|List| . |OrderedSet|) 123053) ((|List| . |OrderedType|) 123024) ((|List| . |FiniteLinearAggregate|) 123008) ((|List| . |LinearAggregate|) 122992) ((|List| . |EltableAggregate|) 122964) ((|List| . |Eltable|) 122893) ((|List| . |IndexedAggregate|) 122865) ((|List| . |ConvertibleTo|) 122801) ((|List| . |HomogeneousAggregate|) 122785) ((|List| . |SetCategory|) 122722) ((|List| . |Functorial|) 122706) ((|List| . |InnerEvalable|) 122625) ((|List| . |Evalable|) 122549) ((|List| . |CoercibleTo|) 122423) ((|List| . |BasicType|) 122333) ((|List| . |Type|) T) ((|List| . |Join|) T) ((|List| . |Aggregate|) T) ((|List| . |Collection|) 122317) ((|List| . |ShallowlyMutableAggregate|) 122301) ((|List| . |ExtensibleLinearAggregate|) 122285) ((|LinearForm| . |VectorSpace|) 122269) ((|LinearForm| . |BiModule|) 122248) ((|LinearForm| . |RightLinearSet|) 122232) ((|LinearForm| . |RightModule|) 122216) ((|LinearForm| . |AbelianGroup|) T) ((|LinearForm| . |LeftLinearSet|) 122180) ((|LinearForm| . |AbelianMonoid|) T) ((|LinearForm| . |SetCategory|) T) ((|LinearForm| . |CoercibleTo|) 122154) ((|LinearForm| . |Type|) T) ((|LinearForm| . |Join|) T) ((|LinearForm| . |BasicType|) T) ((|LinearForm| . |AbelianSemiGroup|) T) ((|LinearForm| . |CancellationAbelianMonoid|) T) ((|LinearForm| . |LeftModule|) 122138) ((|LinearForm| . |LinearSet|) 122122) ((|LinearForm| . |Module|) 122106) ((|LinearForm| . |Eltable|) 122062) ((|LinearElement| . |VectorSpace|) 122046) ((|LinearElement| . |BiModule|) 122025) ((|LinearElement| . |RightLinearSet|) 122009) ((|LinearElement| . |RightModule|) 121993) ((|LinearElement| . |AbelianGroup|) T) ((|LinearElement| . |LeftLinearSet|) 121957) ((|LinearElement| . |AbelianMonoid|) T) ((|LinearElement| . |SetCategory|) T) ((|LinearElement| . |CoercibleTo|) 121931) ((|LinearElement| . |Type|) T) ((|LinearElement| . |Join|) T) ((|LinearElement| . |BasicType|) T) ((|LinearElement| . |AbelianSemiGroup|) T) ((|LinearElement| . |CancellationAbelianMonoid|) T) ((|LinearElement| . |LeftModule|) 121915) ((|LinearElement| . |LinearSet|) 121899) ((|LinearElement| . |Module|) 121883) ((|LinearElement| . |CoercibleFrom|) 121851) ((|LinearElement| . |IndexedDirectProductCategory|) 121814) ((|LinearElement| . |Functorial|) 121798) ((|LinearElement| . |ConvertibleFrom|) 121729) ((|LinearBasis| . |OrderedFinite|) T) ((|LinearBasis| . |OrderedType|) T) ((|LinearBasis| . |OrderedSet|) T) ((|LinearBasis| . |SetCategory|) T) ((|LinearBasis| . |CoercibleTo|) 121703) ((|LinearBasis| . |Type|) T) ((|LinearBasis| . |Join|) T) ((|LinearBasis| . |BasicType|) T) ((|LinearBasis| . |Finite|) T) ((|LinearBasis| . |CoercibleFrom|) 121663) ((|AssociatedLieAlgebra| . |NonAssociativeAlgebra|) 121647) ((|AssociatedLieAlgebra| . |Monad|) T) ((|AssociatedLieAlgebra| . |NonAssociativeRng|) T) ((|AssociatedLieAlgebra| . |BiModule|) 121626) ((|AssociatedLieAlgebra| . |RightLinearSet|) 121610) ((|AssociatedLieAlgebra| . |RightModule|) 121594) ((|AssociatedLieAlgebra| . |AbelianGroup|) T) ((|AssociatedLieAlgebra| . |LeftLinearSet|) 121558) ((|AssociatedLieAlgebra| . |AbelianMonoid|) T) ((|AssociatedLieAlgebra| . |SetCategory|) T) ((|AssociatedLieAlgebra| . |CoercibleTo|) 121519) ((|AssociatedLieAlgebra| . |Type|) T) ((|AssociatedLieAlgebra| . |Join|) T) ((|AssociatedLieAlgebra| . |BasicType|) T) ((|AssociatedLieAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedLieAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedLieAlgebra| . |LeftModule|) 121503) ((|AssociatedLieAlgebra| . |LinearSet|) 121487) ((|AssociatedLieAlgebra| . |Module|) 121471) ((|AssociatedLieAlgebra| . |FramedNonAssociativeAlgebra|) 121407) ((|AssociatedLieAlgebra| . |FiniteRankNonAssociativeAlgebra|) 121288) ((|AssociatedLieAlgebra| . |Eltable|) 121216) ((|Library| . |TableAggregate|) 121186) ((|Library| . |Dictionary|) 121119) ((|Library| . |BagAggregate|) 121052) ((|Library| . |ShallowlyMutableAggregate|) 120970) ((|Library| . |Collection|) 120903) ((|Library| . |ConvertibleTo|) NIL) ((|Library| . |DictionaryOperations|) 120836) ((|Library| . |IndexedAggregate|) 120806) ((|Library| . |Evalable|) 120612) ((|Library| . |InnerEvalable|) 120411) ((|Library| . |Functorial|) 120329) ((|Library| . |HomogeneousAggregate|) 120247) ((|Library| . |Eltable|) 120191) ((|Library| . |EltableAggregate|) 120161) ((|Library| . |KeyedDictionary|) 120131) ((|Library| . |SetCategory|) T) ((|Library| . |CoercibleTo|) 120105) ((|Library| . |BasicType|) T) ((|Library| . |Type|) T) ((|Library| . |Join|) T) ((|Library| . |Aggregate|) T) ((|Library| . |FiniteAggregate|) 120038) ((|LieExponentials| . |Group|) T) ((|LieExponentials| . |SemiGroup|) T) ((|LieExponentials| . |BasicType|) T) ((|LieExponentials| . |Join|) T) ((|LieExponentials| . |Type|) T) ((|LieExponentials| . |CoercibleTo|) 120012) ((|LieExponentials| . |SetCategory|) T) ((|LieExponentials| . |Monoid|) T) ((|LetAst| . |SpadSyntaxCategory|) T) ((|LetAst| . |HomotopicTo|) 119990) ((|LetAst| . |CoercibleTo|) 119945) ((|LetAst| . |CoercibleFrom|) 119923) ((|LetAst| . |SetCategory|) T) ((|LetAst| . |Type|) T) ((|LetAst| . |Join|) T) ((|LetAst| . |BasicType|) T) ((|LetAst| . |AbstractSyntaxCategory|) T) ((|LaurentPolynomial| . |DifferentialExtension|) 119907) ((|LaurentPolynomial| . |PartialDifferentialRing|) 119839) ((|LaurentPolynomial| . |PartialDifferentialSpace|) 119713) ((|LaurentPolynomial| . |PartialDifferentialDomain|) 119585) ((|LaurentPolynomial| . |DifferentialSpaceExtension|) 119569) ((|LaurentPolynomial| . |DifferentialSpace|) 119494) ((|LaurentPolynomial| . |Type|) T) ((|LaurentPolynomial| . |Join|) T) ((|LaurentPolynomial| . |DifferentialDomain|) 119413) ((|LaurentPolynomial| . |Ring|) T) ((|LaurentPolynomial| . |Monoid|) T) ((|LaurentPolynomial| . |SemiRing|) T) ((|LaurentPolynomial| . |SemiGroup|) T) ((|LaurentPolynomial| . |Rng|) T) ((|LaurentPolynomial| . |AbelianGroup|) T) ((|LaurentPolynomial| . |LeftLinearSet|) 119380) ((|LaurentPolynomial| . |AbelianMonoid|) T) ((|LaurentPolynomial| . |SetCategory|) T) ((|LaurentPolynomial| . |CoercibleTo|) 119354) ((|LaurentPolynomial| . |BasicType|) T) ((|LaurentPolynomial| . |AbelianSemiGroup|) T) ((|LaurentPolynomial| . |CancellationAbelianMonoid|) T) ((|LaurentPolynomial| . |LeftModule|) 119341) ((|LaurentPolynomial| . |CoercibleFrom|) 119199) ((|LaurentPolynomial| . |DifferentialRing|) 119164) ((|LaurentPolynomial| . |IntegralDomain|) T) ((|LaurentPolynomial| . |EntireRing|) T) ((|LaurentPolynomial| . |CommutativeRing|) T) ((|LaurentPolynomial| . |Module|) 119151) ((|LaurentPolynomial| . |LinearSet|) 119138) ((|LaurentPolynomial| . |RightModule|) 119125) ((|LaurentPolynomial| . |RightLinearSet|) 119112) ((|LaurentPolynomial| . |BiModule|) 119097) ((|LaurentPolynomial| . |Algebra|) 119084) ((|LaurentPolynomial| . |ConvertibleTo|) 119055) ((|LaurentPolynomial| . |FullyRetractableTo|) 119039) ((|LaurentPolynomial| . |RetractableTo|) 118870) ((|LaurentPolynomial| . |CharacteristicZero|) 118833) ((|LaurentPolynomial| . |CharacteristicNonZero|) 118793) ((|LaurentPolynomial| . |EuclideanDomain|) 118769) ((|LaurentPolynomial| . |GcdDomain|) 118745) ((|LaurentPolynomial| . |PrincipalIdealDomain|) 118721) ((|LocalAlgebra| . |Algebra|) 118705) ((|LocalAlgebra| . |CoercibleFrom|) 118669) ((|LocalAlgebra| . |LeftModule|) 118643) ((|LocalAlgebra| . |LeftLinearSet|) 118597) ((|LocalAlgebra| . |Rng|) T) ((|LocalAlgebra| . |SemiGroup|) T) ((|LocalAlgebra| . |SemiRing|) T) ((|LocalAlgebra| . |Monoid|) T) ((|LocalAlgebra| . |Ring|) T) ((|LocalAlgebra| . |BiModule|) 118576) ((|LocalAlgebra| . |RightLinearSet|) 118560) ((|LocalAlgebra| . |RightModule|) 118544) ((|LocalAlgebra| . |AbelianGroup|) T) ((|LocalAlgebra| . |AbelianMonoid|) T) ((|LocalAlgebra| . |SetCategory|) T) ((|LocalAlgebra| . |CoercibleTo|) 118518) ((|LocalAlgebra| . |Type|) T) ((|LocalAlgebra| . |Join|) T) ((|LocalAlgebra| . |BasicType|) T) ((|LocalAlgebra| . |AbelianSemiGroup|) T) ((|LocalAlgebra| . |CancellationAbelianMonoid|) T) ((|LocalAlgebra| . |LinearSet|) 118502) ((|LocalAlgebra| . |Module|) 118486) ((|LocalAlgebra| . |OrderedRing|) 118456) ((|LocalAlgebra| . |OrderedCancellationAbelianMonoid|) 118426) ((|LocalAlgebra| . |OrderedAbelianSemiGroup|) 118396) ((|LocalAlgebra| . |OrderedType|) 118366) ((|LocalAlgebra| . |OrderedSet|) 118336) ((|LocalAlgebra| . |OrderedAbelianMonoid|) 118306) ((|LocalAlgebra| . |OrderedAbelianGroup|) 118276) ((|LocalAlgebra| . |CharacteristicZero|) 118246) ((|KleeneTrivalentLogic| . |PropositionalLogic|) T) ((|KleeneTrivalentLogic| . |BasicType|) T) ((|KleeneTrivalentLogic| . |CoercibleTo|) 118220) ((|KleeneTrivalentLogic| . |SetCategory|) T) ((|KleeneTrivalentLogic| . |Logic|) T) ((|KleeneTrivalentLogic| . |Join|) T) ((|KleeneTrivalentLogic| . |Type|) T) ((|KleeneTrivalentLogic| . |BooleanLogic|) T) ((|KleeneTrivalentLogic| . |Finite|) T) ((|Kernel| . |CachableSet|) T) ((|Kernel| . |BasicType|) T) ((|Kernel| . |Join|) T) ((|Kernel| . |Type|) T) ((|Kernel| . |CoercibleTo|) 118194) ((|Kernel| . |SetCategory|) T) ((|Kernel| . |OrderedSet|) T) ((|Kernel| . |OrderedType|) T) ((|Kernel| . |Patternable|) 118178) ((|Kernel| . |ConvertibleTo|) 117961) ((|KeyedAccessFile| . |FileCategory|) 117884) ((|KeyedAccessFile| . |BasicType|) T) ((|KeyedAccessFile| . |Join|) T) ((|KeyedAccessFile| . |Type|) T) ((|KeyedAccessFile| . |CoercibleTo|) 117858) ((|KeyedAccessFile| . |SetCategory|) T) ((|KeyedAccessFile| . |TableAggregate|) 117831) ((|KeyedAccessFile| . |Dictionary|) 117767) ((|KeyedAccessFile| . |BagAggregate|) 117703) ((|KeyedAccessFile| . |ShallowlyMutableAggregate|) 117626) ((|KeyedAccessFile| . |Collection|) 117562) ((|KeyedAccessFile| . |ConvertibleTo|) NIL) ((|KeyedAccessFile| . |DictionaryOperations|) 117498) ((|KeyedAccessFile| . |IndexedAggregate|) 117471) ((|KeyedAccessFile| . |Evalable|) 117213) ((|KeyedAccessFile| . |InnerEvalable|) 116943) ((|KeyedAccessFile| . |Functorial|) 116866) ((|KeyedAccessFile| . |HomogeneousAggregate|) 116789) ((|KeyedAccessFile| . |Eltable|) 116762) ((|KeyedAccessFile| . |EltableAggregate|) 116735) ((|KeyedAccessFile| . |KeyedDictionary|) 116708) ((|KeyedAccessFile| . |Aggregate|) T) ((|KeyedAccessFile| . |FiniteAggregate|) 116644) ((|JVMOpcode| . |SetCategory|) T) ((|JVMOpcode| . |CoercibleTo|) 116577) ((|JVMOpcode| . |Type|) T) ((|JVMOpcode| . |Join|) T) ((|JVMOpcode| . |BasicType|) T) ((|JVMOpcode| . |HomotopicTo|) 116533) ((|JVMOpcode| . |CoercibleFrom|) 116489) ((|JVMMethodAccess| . |SetCategory|) T) ((|JVMMethodAccess| . |CoercibleTo|) 116463) ((|JVMMethodAccess| . |Type|) T) ((|JVMMethodAccess| . |Join|) T) ((|JVMMethodAccess| . |BasicType|) T) ((|JVMMethodAccess| . |Logic|) T) ((|JVMFieldAccess| . |SetCategory|) T) ((|JVMFieldAccess| . |CoercibleTo|) 116437) ((|JVMFieldAccess| . |Type|) T) ((|JVMFieldAccess| . |Join|) T) ((|JVMFieldAccess| . |BasicType|) T) ((|JVMFieldAccess| . |Logic|) T) ((|JVMConstantTag| . |SetCategory|) T) ((|JVMConstantTag| . |CoercibleTo|) 116394) ((|JVMConstantTag| . |Type|) T) ((|JVMConstantTag| . |Join|) T) ((|JVMConstantTag| . |BasicType|) T) ((|JVMClassFileAccess| . |SetCategory|) T) ((|JVMClassFileAccess| . |CoercibleTo|) 116368) ((|JVMClassFileAccess| . |Type|) T) ((|JVMClassFileAccess| . |Join|) T) ((|JVMClassFileAccess| . |BasicType|) T) ((|JVMClassFileAccess| . |Logic|) T) ((|JVMBytecode| . |SetCategory|) T) ((|JVMBytecode| . |CoercibleTo|) 116325) ((|JVMBytecode| . |Type|) T) ((|JVMBytecode| . |Join|) T) ((|JVMBytecode| . |BasicType|) T) ((|JVMBytecode| . |HomotopicTo|) 116305) ((|JVMBytecode| . |CoercibleFrom|) 116285) ((|AssociatedJordanAlgebra| . |NonAssociativeAlgebra|) 116269) ((|AssociatedJordanAlgebra| . |Monad|) T) ((|AssociatedJordanAlgebra| . |NonAssociativeRng|) T) ((|AssociatedJordanAlgebra| . |BiModule|) 116248) ((|AssociatedJordanAlgebra| . |RightLinearSet|) 116232) ((|AssociatedJordanAlgebra| . |RightModule|) 116216) ((|AssociatedJordanAlgebra| . |AbelianGroup|) T) ((|AssociatedJordanAlgebra| . |LeftLinearSet|) 116180) ((|AssociatedJordanAlgebra| . |AbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |SetCategory|) T) ((|AssociatedJordanAlgebra| . |CoercibleTo|) 116141) ((|AssociatedJordanAlgebra| . |Type|) T) ((|AssociatedJordanAlgebra| . |Join|) T) ((|AssociatedJordanAlgebra| . |BasicType|) T) ((|AssociatedJordanAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedJordanAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |LeftModule|) 116125) ((|AssociatedJordanAlgebra| . |LinearSet|) 116109) ((|AssociatedJordanAlgebra| . |Module|) 116093) ((|AssociatedJordanAlgebra| . |FramedNonAssociativeAlgebra|) 116029) ((|AssociatedJordanAlgebra| . |FiniteRankNonAssociativeAlgebra|) 115910) ((|AssociatedJordanAlgebra| . |Eltable|) 115838) ((|JoinAst| . |SpadSyntaxCategory|) T) ((|JoinAst| . |HomotopicTo|) 115816) ((|JoinAst| . |CoercibleTo|) 115751) ((|JoinAst| . |CoercibleFrom|) 115729) ((|JoinAst| . |SetCategory|) T) ((|JoinAst| . |Type|) T) ((|JoinAst| . |Join|) T) ((|JoinAst| . |BasicType|) T) ((|JoinAst| . |AbstractSyntaxCategory|) T) ((|InfiniteTuple| . |Functorial|) 115713) ((|InfiniteTuple| . |Join|) T) ((|InfiniteTuple| . |Type|) T) ((|InfiniteTuple| . |CoercibleTo|) 115687) ((|InternalTypeForm| . |SetCategory|) T) ((|InternalTypeForm| . |CoercibleTo|) 115642) ((|InternalTypeForm| . |Type|) T) ((|InternalTypeForm| . |Join|) T) ((|InternalTypeForm| . |BasicType|) T) ((|InternalTypeForm| . |HomotopicTo|) 115620) ((|InternalTypeForm| . |CoercibleFrom|) 115598) ((|InnerTaylorSeries| . |Ring|) T) ((|InnerTaylorSeries| . |Monoid|) T) ((|InnerTaylorSeries| . |SemiRing|) T) ((|InnerTaylorSeries| . |SemiGroup|) T) ((|InnerTaylorSeries| . |Rng|) T) ((|InnerTaylorSeries| . |AbelianGroup|) T) ((|InnerTaylorSeries| . |LeftLinearSet|) 115552) ((|InnerTaylorSeries| . |AbelianMonoid|) T) ((|InnerTaylorSeries| . |SetCategory|) T) ((|InnerTaylorSeries| . |CoercibleTo|) 115526) ((|InnerTaylorSeries| . |Type|) T) ((|InnerTaylorSeries| . |Join|) T) ((|InnerTaylorSeries| . |BasicType|) T) ((|InnerTaylorSeries| . |AbelianSemiGroup|) T) ((|InnerTaylorSeries| . |CancellationAbelianMonoid|) T) ((|InnerTaylorSeries| . |LeftModule|) 115500) ((|InnerTaylorSeries| . |CoercibleFrom|) 115441) ((|InnerTaylorSeries| . |BiModule|) 115382) ((|InnerTaylorSeries| . |RightLinearSet|) 115330) ((|InnerTaylorSeries| . |RightModule|) 115278) ((|InnerTaylorSeries| . |IntegralDomain|) 115245) ((|InnerTaylorSeries| . |EntireRing|) 115212) ((|InnerTaylorSeries| . |CommutativeRing|) 115179) ((|InnerTaylorSeries| . |Module|) 115140) ((|InnerTaylorSeries| . |LinearSet|) 115101) ((|InnerTaylorSeries| . |Algebra|) 115062) ((|InnerSparseUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 115034) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoidRing|) 115006) ((|InnerSparseUnivariatePowerSeries| . |Algebra|) 114850) ((|InnerSparseUnivariatePowerSeries| . |LinearSet|) 114694) ((|InnerSparseUnivariatePowerSeries| . |Module|) 114538) ((|InnerSparseUnivariatePowerSeries| . |CoercibleFrom|) 114362) ((|InnerSparseUnivariatePowerSeries| . |EntireRing|) 114329) ((|InnerSparseUnivariatePowerSeries| . |IntegralDomain|) 114296) ((|InnerSparseUnivariatePowerSeries| . |Functorial|) 114280) ((|InnerSparseUnivariatePowerSeries| . |BiModule|) 114099) ((|InnerSparseUnivariatePowerSeries| . |RightLinearSet|) 113932) ((|InnerSparseUnivariatePowerSeries| . |RightModule|) 113765) ((|InnerSparseUnivariatePowerSeries| . |CommutativeRing|) 113694) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicZero|) 113657) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicNonZero|) 113617) ((|InnerSparseUnivariatePowerSeries| . |LeftModule|) 113514) ((|InnerSparseUnivariatePowerSeries| . |LeftLinearSet|) 113391) ((|InnerSparseUnivariatePowerSeries| . |PowerSeriesCategory|) 113337) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialSpace|) 113212) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialDomain|) 113085) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialRing|) 112960) ((|InnerSparseUnivariatePowerSeries| . |Eltable|) 112920) ((|InnerSparseUnivariatePowerSeries| . |DifferentialSpace|) 112868) ((|InnerSparseUnivariatePowerSeries| . |Type|) T) ((|InnerSparseUnivariatePowerSeries| . |Join|) T) ((|InnerSparseUnivariatePowerSeries| . |DifferentialDomain|) 112810) ((|InnerSparseUnivariatePowerSeries| . |Ring|) T) ((|InnerSparseUnivariatePowerSeries| . |Monoid|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiRing|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |Rng|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |SetCategory|) T) ((|InnerSparseUnivariatePowerSeries| . |CoercibleTo|) 112784) ((|InnerSparseUnivariatePowerSeries| . |BasicType|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |DifferentialRing|) 112732) ((|IsAst| . |SpadSyntaxCategory|) T) ((|IsAst| . |HomotopicTo|) 112710) ((|IsAst| . |CoercibleTo|) 112665) ((|IsAst| . |CoercibleFrom|) 112643) ((|IsAst| . |SetCategory|) T) ((|IsAst| . |Type|) T) ((|IsAst| . |Join|) T) ((|IsAst| . |BasicType|) T) ((|IsAst| . |AbstractSyntaxCategory|) T) ((|InternalRepresentationForm| . |SetCategory|) T) ((|InternalRepresentationForm| . |CoercibleTo|) 112598) ((|InternalRepresentationForm| . |Type|) T) ((|InternalRepresentationForm| . |Join|) T) ((|InternalRepresentationForm| . |BasicType|) T) ((|InternalRepresentationForm| . |HomotopicTo|) 112576) ((|InternalRepresentationForm| . |CoercibleFrom|) 112554) ((|IntegrationResult| . |Module|) 112518) ((|IntegrationResult| . |LinearSet|) 112482) ((|IntegrationResult| . |LeftModule|) 112446) ((|IntegrationResult| . |LeftLinearSet|) 112390) ((|IntegrationResult| . |CancellationAbelianMonoid|) T) ((|IntegrationResult| . |AbelianSemiGroup|) T) ((|IntegrationResult| . |BasicType|) T) ((|IntegrationResult| . |Join|) T) ((|IntegrationResult| . |Type|) T) ((|IntegrationResult| . |CoercibleTo|) 112364) ((|IntegrationResult| . |SetCategory|) T) ((|IntegrationResult| . |AbelianMonoid|) T) ((|IntegrationResult| . |AbelianGroup|) T) ((|IntegrationResult| . |RightModule|) 112328) ((|IntegrationResult| . |RightLinearSet|) 112292) ((|IntegrationResult| . |BiModule|) 112249) ((|IntegrationResult| . |RetractableTo|) 112233) ((|IntegrationResult| . |CoercibleFrom|) 112217) ((|InnerPrimeField| . |FiniteFieldCategory|) T) ((|InnerPrimeField| . |StepThrough|) T) ((|InnerPrimeField| . |Finite|) T) ((|InnerPrimeField| . |CharacteristicNonZero|) T) ((|InnerPrimeField| . |Field|) T) ((|InnerPrimeField| . |UniqueFactorizationDomain|) T) ((|InnerPrimeField| . |PrincipalIdealDomain|) T) ((|InnerPrimeField| . |IntegralDomain|) T) ((|InnerPrimeField| . |CommutativeRing|) T) ((|InnerPrimeField| . |CoercibleFrom|) 112151) ((|InnerPrimeField| . |Module|) 112105) ((|InnerPrimeField| . |LinearSet|) 112059) ((|InnerPrimeField| . |Algebra|) 112013) ((|InnerPrimeField| . |GcdDomain|) T) ((|InnerPrimeField| . |EuclideanDomain|) T) ((|InnerPrimeField| . |BiModule|) 111958) ((|InnerPrimeField| . |RightLinearSet|) 111912) ((|InnerPrimeField| . |RightModule|) 111866) ((|InnerPrimeField| . |LeftLinearSet|) 111800) ((|InnerPrimeField| . |LeftModule|) 111754) ((|InnerPrimeField| . |EntireRing|) T) ((|InnerPrimeField| . |DivisionRing|) T) ((|InnerPrimeField| . |FieldOfPrimeCharacteristic|) T) ((|InnerPrimeField| . |DifferentialSpace|) T) ((|InnerPrimeField| . |Type|) T) ((|InnerPrimeField| . |Join|) T) ((|InnerPrimeField| . |DifferentialDomain|) 111741) ((|InnerPrimeField| . |Ring|) T) ((|InnerPrimeField| . |Monoid|) T) ((|InnerPrimeField| . |SemiRing|) T) ((|InnerPrimeField| . |SemiGroup|) T) ((|InnerPrimeField| . |Rng|) T) ((|InnerPrimeField| . |AbelianGroup|) T) ((|InnerPrimeField| . |AbelianMonoid|) T) ((|InnerPrimeField| . |SetCategory|) T) ((|InnerPrimeField| . |CoercibleTo|) 111715) ((|InnerPrimeField| . |BasicType|) T) ((|InnerPrimeField| . |AbelianSemiGroup|) T) ((|InnerPrimeField| . |CancellationAbelianMonoid|) T) ((|InnerPrimeField| . |DifferentialRing|) T) ((|InnerPrimeField| . |FiniteAlgebraicExtensionField|) 111702) ((|InnerPrimeField| . |CharacteristicZero|) 111668) ((|InnerPrimeField| . |RetractableTo|) 111655) ((|InnerPrimeField| . |VectorSpace|) 111642) ((|InnerPrimeField| . |ExtensionField|) 111629) ((|InnerPrimeField| . |ConvertibleTo|) 111606) ((|InnerPAdicInteger| . |PAdicIntegerCategory|) 111590) ((|InnerPAdicInteger| . |PrincipalIdealDomain|) T) ((|InnerPAdicInteger| . |IntegralDomain|) T) ((|InnerPAdicInteger| . |EntireRing|) T) ((|InnerPAdicInteger| . |CommutativeRing|) T) ((|InnerPAdicInteger| . |CoercibleFrom|) 111557) ((|InnerPAdicInteger| . |Module|) 111544) ((|InnerPAdicInteger| . |LinearSet|) 111531) ((|InnerPAdicInteger| . |RightModule|) 111518) ((|InnerPAdicInteger| . |RightLinearSet|) 111505) ((|InnerPAdicInteger| . |BiModule|) 111490) ((|InnerPAdicInteger| . |Algebra|) 111477) ((|InnerPAdicInteger| . |GcdDomain|) T) ((|InnerPAdicInteger| . |EuclideanDomain|) T) ((|InnerPAdicInteger| . |Ring|) T) ((|InnerPAdicInteger| . |Monoid|) T) ((|InnerPAdicInteger| . |SemiRing|) T) ((|InnerPAdicInteger| . |SemiGroup|) T) ((|InnerPAdicInteger| . |Rng|) T) ((|InnerPAdicInteger| . |AbelianGroup|) T) ((|InnerPAdicInteger| . |LeftLinearSet|) 111444) ((|InnerPAdicInteger| . |AbelianMonoid|) T) ((|InnerPAdicInteger| . |SetCategory|) T) ((|InnerPAdicInteger| . |CoercibleTo|) 111418) ((|InnerPAdicInteger| . |Type|) T) ((|InnerPAdicInteger| . |Join|) T) ((|InnerPAdicInteger| . |BasicType|) T) ((|InnerPAdicInteger| . |AbelianSemiGroup|) T) ((|InnerPAdicInteger| . |CancellationAbelianMonoid|) T) ((|InnerPAdicInteger| . |LeftModule|) 111405) ((|InnerPAdicInteger| . |CharacteristicZero|) T) ((|IP4Address| . |SetCategory|) T) ((|IP4Address| . |CoercibleTo|) 111379) ((|IP4Address| . |Type|) T) ((|IP4Address| . |Join|) T) ((|IP4Address| . |BasicType|) T) ((|IOMode| . |SetCategory|) T) ((|IOMode| . |CoercibleTo|) 111353) ((|IOMode| . |Type|) T) ((|IOMode| . |Join|) T) ((|IOMode| . |BasicType|) T) ((|InputOutputBinaryFile| . |InputOutputByteConduit|) T) ((|InputOutputBinaryFile| . |OutputByteConduit|) T) ((|InputOutputBinaryFile| . |Conduit|) T) ((|InputOutputBinaryFile| . |InputByteConduit|) T) ((|InputOutputBinaryFile| . |CoercibleTo|) 111327) ((|Interval| . |IntervalCategory|) 111311) ((|Interval| . |ArcHyperbolicFunctionCategory|) T) ((|Interval| . |ArcTrigonometricFunctionCategory|) T) ((|Interval| . |ElementaryFunctionCategory|) T) ((|Interval| . |HyperbolicFunctionCategory|) T) ((|Interval| . |TrigonometricFunctionCategory|) T) ((|Interval| . |TranscendentalFunctionCategory|) T) ((|Interval| . |RetractableTo|) 111288) ((|Interval| . |RadicalCategory|) T) ((|Interval| . |OrderedType|) T) ((|Interval| . |OrderedSet|) T) ((|Interval| . |IntegralDomain|) T) ((|Interval| . |EntireRing|) T) ((|Interval| . |CommutativeRing|) T) ((|Interval| . |CoercibleFrom|) 111255) ((|Interval| . |Module|) 111242) ((|Interval| . |LinearSet|) 111229) ((|Interval| . |LeftModule|) 111216) ((|Interval| . |LeftLinearSet|) 111183) ((|Interval| . |CancellationAbelianMonoid|) T) ((|Interval| . |AbelianSemiGroup|) T) ((|Interval| . |BasicType|) T) ((|Interval| . |Join|) T) ((|Interval| . |Type|) T) ((|Interval| . |CoercibleTo|) 111157) ((|Interval| . |SetCategory|) T) ((|Interval| . |AbelianMonoid|) T) ((|Interval| . |AbelianGroup|) T) ((|Interval| . |RightModule|) 111144) ((|Interval| . |RightLinearSet|) 111131) ((|Interval| . |BiModule|) 111116) ((|Interval| . |Ring|) T) ((|Interval| . |Monoid|) T) ((|Interval| . |SemiRing|) T) ((|Interval| . |SemiGroup|) T) ((|Interval| . |Rng|) T) ((|Interval| . |Algebra|) 111103) ((|Interval| . |GcdDomain|) T) ((|InnerTable| . |TableAggregate|) 111082) ((|InnerTable| . |Dictionary|) 111024) ((|InnerTable| . |BagAggregate|) 110966) ((|InnerTable| . |ShallowlyMutableAggregate|) 110895) ((|InnerTable| . |Collection|) 110837) ((|InnerTable| . |ConvertibleTo|) NIL) ((|InnerTable| . |DictionaryOperations|) 110779) ((|InnerTable| . |IndexedAggregate|) 110758) ((|InnerTable| . |Evalable|) 110518) ((|InnerTable| . |InnerEvalable|) 110266) ((|InnerTable| . |Functorial|) 110195) ((|InnerTable| . |HomogeneousAggregate|) 110124) ((|InnerTable| . |Eltable|) 110103) ((|InnerTable| . |EltableAggregate|) 110082) ((|InnerTable| . |KeyedDictionary|) 110061) ((|InnerTable| . |SetCategory|) T) ((|InnerTable| . |CoercibleTo|) 110035) ((|InnerTable| . |BasicType|) T) ((|InnerTable| . |Type|) T) ((|InnerTable| . |Join|) T) ((|InnerTable| . |Aggregate|) T) ((|InnerTable| . |FiniteAggregate|) 109977) ((|Int8| . |OrderedFinite|) T) ((|Int8| . |OrderedType|) T) ((|Int8| . |OrderedSet|) T) ((|Int8| . |SetCategory|) T) ((|Int8| . |CoercibleTo|) 109951) ((|Int8| . |Type|) T) ((|Int8| . |Join|) T) ((|Int8| . |BasicType|) T) ((|Int8| . |Finite|) T) ((|Int64| . |OrderedFinite|) T) ((|Int64| . |OrderedType|) T) ((|Int64| . |OrderedSet|) T) ((|Int64| . |SetCategory|) T) ((|Int64| . |CoercibleTo|) 109925) ((|Int64| . |Type|) T) ((|Int64| . |Join|) T) ((|Int64| . |BasicType|) T) ((|Int64| . |Finite|) T) ((|Int32| . |OrderedFinite|) T) ((|Int32| . |OrderedType|) T) ((|Int32| . |OrderedSet|) T) ((|Int32| . |SetCategory|) T) ((|Int32| . |CoercibleTo|) 109899) ((|Int32| . |Type|) T) ((|Int32| . |Join|) T) ((|Int32| . |BasicType|) T) ((|Int32| . |Finite|) T) ((|Int16| . |OrderedFinite|) T) ((|Int16| . |OrderedType|) T) ((|Int16| . |OrderedSet|) T) ((|Int16| . |SetCategory|) T) ((|Int16| . |CoercibleTo|) 109873) ((|Int16| . |Type|) T) ((|Int16| . |Join|) T) ((|Int16| . |BasicType|) T) ((|Int16| . |Finite|) T) ((|Integer| . |IntegerNumberSystem|) T) ((|Integer| . |UniqueFactorizationDomain|) T) ((|Integer| . |StepThrough|) T) ((|Integer| . |RetractableTo|) 109850) ((|Integer| . |ConvertibleTo|) 109736) ((|Integer| . |RealConstant|) T) ((|Integer| . |PatternMatchable|) 109713) ((|Integer| . |OrderedRing|) T) ((|Integer| . |OrderedCancellationAbelianMonoid|) T) ((|Integer| . |OrderedAbelianSemiGroup|) T) ((|Integer| . |OrderedType|) T) ((|Integer| . |OrderedSet|) T) ((|Integer| . |OrderedAbelianMonoid|) T) ((|Integer| . |OrderedAbelianGroup|) T) ((|Integer| . |OrderedIntegralDomain|) T) ((|Integer| . |LeftModule|) 109680) ((|Integer| . |LinearlyExplicitRingOver|) 109657) ((|Integer| . |PrincipalIdealDomain|) T) ((|Integer| . |IntegralDomain|) T) ((|Integer| . |EntireRing|) T) ((|Integer| . |CommutativeRing|) T) ((|Integer| . |CoercibleFrom|) 109624) ((|Integer| . |Module|) 109611) ((|Integer| . |LinearSet|) 109598) ((|Integer| . |RightModule|) 109585) ((|Integer| . |RightLinearSet|) 109572) ((|Integer| . |BiModule|) 109557) ((|Integer| . |Algebra|) 109544) ((|Integer| . |GcdDomain|) T) ((|Integer| . |EuclideanDomain|) T) ((|Integer| . |DifferentialSpace|) T) ((|Integer| . |DifferentialDomain|) 109531) ((|Integer| . |DifferentialRing|) T) ((|Integer| . |CombinatorialFunctionCategory|) T) ((|Integer| . |Ring|) T) ((|Integer| . |Monoid|) T) ((|Integer| . |SemiRing|) T) ((|Integer| . |SemiGroup|) T) ((|Integer| . |Rng|) T) ((|Integer| . |AbelianGroup|) T) ((|Integer| . |LeftLinearSet|) 109498) ((|Integer| . |AbelianMonoid|) T) ((|Integer| . |SetCategory|) T) ((|Integer| . |CoercibleTo|) 109472) ((|Integer| . |Type|) T) ((|Integer| . |Join|) T) ((|Integer| . |BasicType|) T) ((|Integer| . |AbelianSemiGroup|) T) ((|Integer| . |CancellationAbelianMonoid|) T) ((|Integer| . |CharacteristicZero|) T) ((|InputForm| . |SExpressionCategory|) 109396) ((|InputForm| . |BasicType|) T) ((|InputForm| . |CoercibleTo|) 109370) ((|InputForm| . |SetCategory|) T) ((|InputForm| . |Eltable|) 109314) ((|InputForm| . |Type|) T) ((|InputForm| . |Join|) T) ((|InputForm| . |ConvertibleFrom|) 109187) ((|InputForm| . |ConvertibleTo|) 109160) ((|InetClientStreamSocket| . |NetworkClientSocket|) 109134) ((|InetClientStreamSocket| . |InputByteConduit|) T) ((|InetClientStreamSocket| . |Conduit|) T) ((|InetClientStreamSocket| . |OutputByteConduit|) T) ((|InetClientStreamSocket| . |InputOutputByteConduit|) T) ((|InetClientStreamSocket| . |CoercibleTo|) 109108) ((|IndexedExponents| . |OrderedAbelianMonoidSup|) T) ((|IndexedExponents| . |CancellationAbelianMonoid|) T) ((|IndexedExponents| . |AbelianSemiGroup|) T) ((|IndexedExponents| . |BasicType|) T) ((|IndexedExponents| . |Join|) T) ((|IndexedExponents| . |Type|) T) ((|IndexedExponents| . |CoercibleTo|) 109082) ((|IndexedExponents| . |SetCategory|) T) ((|IndexedExponents| . |AbelianMonoid|) T) ((|IndexedExponents| . |OrderedAbelianMonoid|) T) ((|IndexedExponents| . |OrderedSet|) T) ((|IndexedExponents| . |OrderedType|) T) ((|IndexedExponents| . |OrderedAbelianSemiGroup|) T) ((|IndexedExponents| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedExponents| . |IndexedDirectProductCategory|) 109043) ((|IndexedExponents| . |Functorial|) 109009) ((|IndexedExponents| . |ConvertibleFrom|) 108938) ((|InputBinaryFile| . |InputByteConduit|) T) ((|InputBinaryFile| . |Conduit|) T) ((|InputBinaryFile| . |CoercibleTo|) 108912) ((|InAst| . |SpadSyntaxCategory|) T) ((|InAst| . |HomotopicTo|) 108890) ((|InAst| . |CoercibleTo|) 108845) ((|InAst| . |CoercibleFrom|) 108823) ((|InAst| . |SetCategory|) T) ((|InAst| . |Type|) T) ((|InAst| . |Join|) T) ((|InAst| . |BasicType|) T) ((|InAst| . |AbstractSyntaxCategory|) T) ((|ImportAst| . |SpadSyntaxCategory|) T) ((|ImportAst| . |HomotopicTo|) 108801) ((|ImportAst| . |CoercibleTo|) 108756) ((|ImportAst| . |CoercibleFrom|) 108734) ((|ImportAst| . |SetCategory|) T) ((|ImportAst| . |Type|) T) ((|ImportAst| . |Join|) T) ((|ImportAst| . |BasicType|) T) ((|ImportAst| . |AbstractSyntaxCategory|) T) ((|InnerFiniteField| . |FiniteAlgebraicExtensionField|) 108698) ((|InnerFiniteField| . |DifferentialRing|) T) ((|InnerFiniteField| . |DifferentialDomain|) 108685) ((|InnerFiniteField| . |DifferentialSpace|) T) ((|InnerFiniteField| . |Finite|) T) ((|InnerFiniteField| . |StepThrough|) T) ((|InnerFiniteField| . |FiniteFieldCategory|) T) ((|InnerFiniteField| . |CharacteristicZero|) 108651) ((|InnerFiniteField| . |CoercibleFrom|) 108552) ((|InnerFiniteField| . |LeftModule|) 108473) ((|InnerFiniteField| . |LeftLinearSet|) 108374) ((|InnerFiniteField| . |CancellationAbelianMonoid|) T) ((|InnerFiniteField| . |AbelianSemiGroup|) T) ((|InnerFiniteField| . |BasicType|) T) ((|InnerFiniteField| . |Join|) T) ((|InnerFiniteField| . |Type|) T) ((|InnerFiniteField| . |CoercibleTo|) 108348) ((|InnerFiniteField| . |SetCategory|) T) ((|InnerFiniteField| . |AbelianMonoid|) T) ((|InnerFiniteField| . |AbelianGroup|) T) ((|InnerFiniteField| . |Rng|) T) ((|InnerFiniteField| . |SemiGroup|) T) ((|InnerFiniteField| . |SemiRing|) T) ((|InnerFiniteField| . |Monoid|) T) ((|InnerFiniteField| . |Ring|) T) ((|InnerFiniteField| . |Field|) T) ((|InnerFiniteField| . |UniqueFactorizationDomain|) T) ((|InnerFiniteField| . |PrincipalIdealDomain|) T) ((|InnerFiniteField| . |IntegralDomain|) T) ((|InnerFiniteField| . |CommutativeRing|) T) ((|InnerFiniteField| . |Module|) 108269) ((|InnerFiniteField| . |LinearSet|) 108190) ((|InnerFiniteField| . |Algebra|) 108144) ((|InnerFiniteField| . |GcdDomain|) T) ((|InnerFiniteField| . |EuclideanDomain|) T) ((|InnerFiniteField| . |BiModule|) 108049) ((|InnerFiniteField| . |RightLinearSet|) 107970) ((|InnerFiniteField| . |RightModule|) 107891) ((|InnerFiniteField| . |EntireRing|) T) ((|InnerFiniteField| . |DivisionRing|) T) ((|InnerFiniteField| . |FieldOfPrimeCharacteristic|) T) ((|InnerFiniteField| . |CharacteristicNonZero|) T) ((|InnerFiniteField| . |RetractableTo|) 107855) ((|InnerFiniteField| . |VectorSpace|) 107819) ((|InnerFiniteField| . |ExtensionField|) 107783) ((|IfAst| . |SpadSyntaxCategory|) T) ((|IfAst| . |HomotopicTo|) 107761) ((|IfAst| . |CoercibleTo|) 107716) ((|IfAst| . |CoercibleFrom|) 107694) ((|IfAst| . |SetCategory|) T) ((|IfAst| . |Type|) T) ((|IfAst| . |Join|) T) ((|IfAst| . |BasicType|) T) ((|IfAst| . |AbstractSyntaxCategory|) T) ((|IndexedFlexibleArray| . |OneDimensionalArrayAggregate|) 107678) ((|IndexedFlexibleArray| . |ShallowlyMutableAggregate|) 107662) ((|IndexedFlexibleArray| . |FiniteAggregate|) 107646) ((|IndexedFlexibleArray| . |Aggregate|) T) ((|IndexedFlexibleArray| . |Join|) T) ((|IndexedFlexibleArray| . |Type|) T) ((|IndexedFlexibleArray| . |BasicType|) 107556) ((|IndexedFlexibleArray| . |CoercibleTo|) 107430) ((|IndexedFlexibleArray| . |Evalable|) 107354) ((|IndexedFlexibleArray| . |InnerEvalable|) 107273) ((|IndexedFlexibleArray| . |Functorial|) 107257) ((|IndexedFlexibleArray| . |SetCategory|) 107194) ((|IndexedFlexibleArray| . |HomogeneousAggregate|) 107178) ((|IndexedFlexibleArray| . |LinearAggregate|) 107162) ((|IndexedFlexibleArray| . |EltableAggregate|) 107134) ((|IndexedFlexibleArray| . |Eltable|) 107063) ((|IndexedFlexibleArray| . |IndexedAggregate|) 107035) ((|IndexedFlexibleArray| . |ConvertibleTo|) 106971) ((|IndexedFlexibleArray| . |Collection|) 106955) ((|IndexedFlexibleArray| . |OrderedSet|) 106926) ((|IndexedFlexibleArray| . |OrderedType|) 106897) ((|IndexedFlexibleArray| . |FiniteLinearAggregate|) 106881) ((|IndexedFlexibleArray| . |ExtensibleLinearAggregate|) 106865) ((|InnerFreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 106844) ((|InnerFreeAbelianMonoid| . |CoercibleFrom|) 106828) ((|InnerFreeAbelianMonoid| . |RetractableTo|) 106812) ((|InnerFreeAbelianMonoid| . |AbelianMonoid|) T) ((|InnerFreeAbelianMonoid| . |SetCategory|) T) ((|InnerFreeAbelianMonoid| . |CoercibleTo|) 106786) ((|InnerFreeAbelianMonoid| . |Type|) T) ((|InnerFreeAbelianMonoid| . |Join|) T) ((|InnerFreeAbelianMonoid| . |BasicType|) T) ((|InnerFreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|InnerFreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|IndexedProductTerm| . |BasicType|) T) ((|IndexedProductTerm| . |Join|) T) ((|IndexedProductTerm| . |Type|) T) ((|IndexedProductTerm| . |CoercibleTo|) 106756) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoidSup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Join|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CoercibleTo|) 106730) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |IndexedDirectProductCategory|) 106709) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Functorial|) 106693) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |ConvertibleFrom|) 106640) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |Join|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |CoercibleTo|) 106614) ((|IndexedDirectProductOrderedAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |IndexedDirectProductCategory|) 106593) ((|IndexedDirectProductOrderedAbelianMonoid| . |Functorial|) 106577) ((|IndexedDirectProductOrderedAbelianMonoid| . |ConvertibleFrom|) 106524) ((|IndexedDirectProductObject| . |IndexedDirectProductCategory|) 106503) ((|IndexedDirectProductObject| . |CoercibleTo|) 106419) ((|IndexedDirectProductObject| . |SetCategory|) 106354) ((|IndexedDirectProductObject| . |Functorial|) 106338) ((|IndexedDirectProductObject| . |ConvertibleFrom|) 106285) ((|IndexedDirectProductObject| . |Type|) T) ((|IndexedDirectProductObject| . |Join|) T) ((|IndexedDirectProductObject| . |BasicType|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductAbelianMonoid| . |CoercibleTo|) 106259) ((|IndexedDirectProductAbelianMonoid| . |Type|) T) ((|IndexedDirectProductAbelianMonoid| . |Join|) T) ((|IndexedDirectProductAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianMonoid| . |IndexedDirectProductCategory|) 106238) ((|IndexedDirectProductAbelianMonoid| . |Functorial|) 106222) ((|IndexedDirectProductAbelianMonoid| . |ConvertibleFrom|) 106169) ((|IndexedDirectProductAbelianGroup| . |AbelianGroup|) T) ((|IndexedDirectProductAbelianGroup| . |LeftLinearSet|) 106146) ((|IndexedDirectProductAbelianGroup| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |SetCategory|) T) ((|IndexedDirectProductAbelianGroup| . |CoercibleTo|) 106120) ((|IndexedDirectProductAbelianGroup| . |Type|) T) ((|IndexedDirectProductAbelianGroup| . |Join|) T) ((|IndexedDirectProductAbelianGroup| . |BasicType|) T) ((|IndexedDirectProductAbelianGroup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianGroup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |IndexedDirectProductCategory|) 106099) ((|IndexedDirectProductAbelianGroup| . |Functorial|) 106083) ((|IndexedDirectProductAbelianGroup| . |ConvertibleFrom|) 106030) ((|Identifier| . |SetCategory|) T) ((|Identifier| . |CoercibleTo|) 106004) ((|Identifier| . |Type|) T) ((|Identifier| . |Join|) T) ((|Identifier| . |BasicType|) T) ((|PolynomialIdeals| . |SetCategory|) T) ((|PolynomialIdeals| . |CoercibleTo|) 105978) ((|PolynomialIdeals| . |Type|) T) ((|PolynomialIdeals| . |Join|) T) ((|PolynomialIdeals| . |BasicType|) T) ((|IndexCard| . |OrderedSet|) T) ((|IndexCard| . |CoercibleTo|) 105952) ((|IndexCard| . |SetCategory|) T) ((|IndexCard| . |BasicType|) T) ((|IndexCard| . |Join|) T) ((|IndexCard| . |Type|) T) ((|IndexCard| . |OrderedType|) T) ((|IndexCard| . |CoercibleFrom|) 105930) ((|IndexedBits| . |BitAggregate|) T) ((|IndexedBits| . |FiniteLinearAggregate|) 105907) ((|IndexedBits| . |OrderedType|) T) ((|IndexedBits| . |OrderedSet|) T) ((|IndexedBits| . |Collection|) 105884) ((|IndexedBits| . |ConvertibleTo|) 105859) ((|IndexedBits| . |Eltable|) 105781) ((|IndexedBits| . |IndexedAggregate|) 105746) ((|IndexedBits| . |EltableAggregate|) 105711) ((|IndexedBits| . |LinearAggregate|) 105688) ((|IndexedBits| . |HomogeneousAggregate|) 105665) ((|IndexedBits| . |SetCategory|) T) ((|IndexedBits| . |Functorial|) 105642) ((|IndexedBits| . |InnerEvalable|) NIL) ((|IndexedBits| . |Evalable|) NIL) ((|IndexedBits| . |CoercibleTo|) 105616) ((|IndexedBits| . |BasicType|) T) ((|IndexedBits| . |Aggregate|) T) ((|IndexedBits| . |FiniteAggregate|) 105593) ((|IndexedBits| . |ShallowlyMutableAggregate|) 105570) ((|IndexedBits| . |OneDimensionalArrayAggregate|) 105547) ((|IndexedBits| . |Logic|) T) ((|IndexedBits| . |Join|) T) ((|IndexedBits| . |Type|) T) ((|IndexedBits| . |BooleanLogic|) T) ((|InnerTwoDimensionalArray| . |TwoDimensionalArrayCategory|) 105521) ((|InnerTwoDimensionalArray| . |ShallowlyMutableAggregate|) 105505) ((|InnerTwoDimensionalArray| . |HomogeneousAggregate|) 105489) ((|InnerTwoDimensionalArray| . |SetCategory|) 105459) ((|InnerTwoDimensionalArray| . |Functorial|) 105443) ((|InnerTwoDimensionalArray| . |InnerEvalable|) 105362) ((|InnerTwoDimensionalArray| . |Evalable|) 105286) ((|InnerTwoDimensionalArray| . |CoercibleTo|) 105188) ((|InnerTwoDimensionalArray| . |BasicType|) 105126) ((|InnerTwoDimensionalArray| . |Type|) T) ((|InnerTwoDimensionalArray| . |Join|) T) ((|InnerTwoDimensionalArray| . |Aggregate|) T) ((|InnerTwoDimensionalArray| . |FiniteAggregate|) 105110) ((|IndexedOneDimensionalArray| . |OneDimensionalArrayAggregate|) 105094) ((|IndexedOneDimensionalArray| . |ShallowlyMutableAggregate|) 105078) ((|IndexedOneDimensionalArray| . |FiniteAggregate|) 105062) ((|IndexedOneDimensionalArray| . |Aggregate|) T) ((|IndexedOneDimensionalArray| . |Join|) T) ((|IndexedOneDimensionalArray| . |Type|) T) ((|IndexedOneDimensionalArray| . |BasicType|) 104972) ((|IndexedOneDimensionalArray| . |CoercibleTo|) 104846) ((|IndexedOneDimensionalArray| . |Evalable|) 104770) ((|IndexedOneDimensionalArray| . |InnerEvalable|) 104689) ((|IndexedOneDimensionalArray| . |Functorial|) 104673) ((|IndexedOneDimensionalArray| . |SetCategory|) 104610) ((|IndexedOneDimensionalArray| . |HomogeneousAggregate|) 104594) ((|IndexedOneDimensionalArray| . |LinearAggregate|) 104578) ((|IndexedOneDimensionalArray| . |EltableAggregate|) 104550) ((|IndexedOneDimensionalArray| . |Eltable|) 104479) ((|IndexedOneDimensionalArray| . |IndexedAggregate|) 104451) ((|IndexedOneDimensionalArray| . |ConvertibleTo|) 104387) ((|IndexedOneDimensionalArray| . |Collection|) 104371) ((|IndexedOneDimensionalArray| . |OrderedSet|) 104342) ((|IndexedOneDimensionalArray| . |OrderedType|) 104313) ((|IndexedOneDimensionalArray| . |FiniteLinearAggregate|) 104297) ((|InnerAlgebraicNumber| . |ExpressionSpace|) T) ((|InnerAlgebraicNumber| . |BasicType|) T) ((|InnerAlgebraicNumber| . |Join|) T) ((|InnerAlgebraicNumber| . |Type|) T) ((|InnerAlgebraicNumber| . |CoercibleTo|) 104271) ((|InnerAlgebraicNumber| . |SetCategory|) T) ((|InnerAlgebraicNumber| . |CoercibleFrom|) 104118) ((|InnerAlgebraicNumber| . |RetractableTo|) 104046) ((|InnerAlgebraicNumber| . |InnerEvalable|) 104008) ((|InnerAlgebraicNumber| . |Evalable|) 103995) ((|InnerAlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|InnerAlgebraicNumber| . |RadicalCategory|) T) ((|InnerAlgebraicNumber| . |DivisionRing|) T) ((|InnerAlgebraicNumber| . |BiModule|) 103940) ((|InnerAlgebraicNumber| . |RightLinearSet|) 103894) ((|InnerAlgebraicNumber| . |RightModule|) 103848) ((|InnerAlgebraicNumber| . |EntireRing|) T) ((|InnerAlgebraicNumber| . |Module|) 103802) ((|InnerAlgebraicNumber| . |LinearSet|) 103756) ((|InnerAlgebraicNumber| . |LeftModule|) 103690) ((|InnerAlgebraicNumber| . |LeftLinearSet|) 103624) ((|InnerAlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|InnerAlgebraicNumber| . |AbelianSemiGroup|) T) ((|InnerAlgebraicNumber| . |AbelianMonoid|) T) ((|InnerAlgebraicNumber| . |AbelianGroup|) T) ((|InnerAlgebraicNumber| . |Ring|) T) ((|InnerAlgebraicNumber| . |Monoid|) T) ((|InnerAlgebraicNumber| . |SemiRing|) T) ((|InnerAlgebraicNumber| . |SemiGroup|) T) ((|InnerAlgebraicNumber| . |Rng|) T) ((|InnerAlgebraicNumber| . |Algebra|) 103578) ((|InnerAlgebraicNumber| . |EuclideanDomain|) T) ((|InnerAlgebraicNumber| . |GcdDomain|) T) ((|InnerAlgebraicNumber| . |CommutativeRing|) T) ((|InnerAlgebraicNumber| . |IntegralDomain|) T) ((|InnerAlgebraicNumber| . |PrincipalIdealDomain|) T) ((|InnerAlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|InnerAlgebraicNumber| . |Field|) T) ((|InnerAlgebraicNumber| . |LinearlyExplicitRingOver|) 103527) ((|InnerAlgebraicNumber| . |RealConstant|) T) ((|InnerAlgebraicNumber| . |ConvertibleTo|) 103452) ((|InnerAlgebraicNumber| . |CharacteristicZero|) T) ((|InnerAlgebraicNumber| . |DifferentialRing|) T) ((|InnerAlgebraicNumber| . |DifferentialDomain|) 103439) ((|InnerAlgebraicNumber| . |DifferentialSpace|) T) ((|Hostname| . |SetCategory|) T) ((|Hostname| . |CoercibleTo|) 103394) ((|Hostname| . |Type|) T) ((|Hostname| . |Join|) T) ((|Hostname| . |BasicType|) T) ((|HexadecimalExpansion| . |QuotientFieldCategory|) 103371) ((|HexadecimalExpansion| . |StepThrough|) T) ((|HexadecimalExpansion| . |CoercibleFrom|) 103305) ((|HexadecimalExpansion| . |RetractableTo|) 103249) ((|HexadecimalExpansion| . |ConvertibleTo|) 103150) ((|HexadecimalExpansion| . |RealConstant|) T) ((|HexadecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|HexadecimalExpansion| . |Patternable|) 103127) ((|HexadecimalExpansion| . |OrderedRing|) T) ((|HexadecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|HexadecimalExpansion| . |OrderedType|) T) ((|HexadecimalExpansion| . |OrderedSet|) T) ((|HexadecimalExpansion| . |OrderedAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianGroup|) T) ((|HexadecimalExpansion| . |OrderedIntegralDomain|) T) ((|HexadecimalExpansion| . |PatternMatchable|) 103104) ((|HexadecimalExpansion| . |FullyPatternMatchable|) 103081) ((|HexadecimalExpansion| . |LinearlyExplicitRingOver|) 103058) ((|HexadecimalExpansion| . |FullyLinearlyExplicitRingOver|) 103035) ((|HexadecimalExpansion| . |Eltable|) NIL) ((|HexadecimalExpansion| . |Evalable|) NIL) ((|HexadecimalExpansion| . |InnerEvalable|) NIL) ((|HexadecimalExpansion| . |Functorial|) 103012) ((|HexadecimalExpansion| . |FullyEvalableOver|) 102989) ((|HexadecimalExpansion| . |DivisionRing|) T) ((|HexadecimalExpansion| . |BiModule|) 102907) ((|HexadecimalExpansion| . |RightLinearSet|) 102841) ((|HexadecimalExpansion| . |RightModule|) 102775) ((|HexadecimalExpansion| . |EntireRing|) T) ((|HexadecimalExpansion| . |Module|) 102709) ((|HexadecimalExpansion| . |LinearSet|) 102643) ((|HexadecimalExpansion| . |LeftModule|) 102577) ((|HexadecimalExpansion| . |LeftLinearSet|) 102511) ((|HexadecimalExpansion| . |Algebra|) 102445) ((|HexadecimalExpansion| . |EuclideanDomain|) T) ((|HexadecimalExpansion| . |GcdDomain|) T) ((|HexadecimalExpansion| . |CommutativeRing|) T) ((|HexadecimalExpansion| . |IntegralDomain|) T) ((|HexadecimalExpansion| . |PrincipalIdealDomain|) T) ((|HexadecimalExpansion| . |UniqueFactorizationDomain|) T) ((|HexadecimalExpansion| . |Field|) T) ((|HexadecimalExpansion| . |DifferentialRing|) T) ((|HexadecimalExpansion| . |DifferentialDomain|) 102432) ((|HexadecimalExpansion| . |DifferentialSpace|) T) ((|HexadecimalExpansion| . |DifferentialSpaceExtension|) 102409) ((|HexadecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialRing|) NIL) ((|HexadecimalExpansion| . |DifferentialExtension|) 102386) ((|HexadecimalExpansion| . |CharacteristicZero|) T) ((|HexadecimalExpansion| . |CharacteristicNonZero|) NIL) ((|HexadecimalExpansion| . |CancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |AbelianSemiGroup|) T) ((|HexadecimalExpansion| . |BasicType|) T) ((|HexadecimalExpansion| . |Join|) T) ((|HexadecimalExpansion| . |Type|) T) ((|HexadecimalExpansion| . |CoercibleTo|) 102297) ((|HexadecimalExpansion| . |SetCategory|) T) ((|HexadecimalExpansion| . |AbelianMonoid|) T) ((|HexadecimalExpansion| . |AbelianGroup|) T) ((|HexadecimalExpansion| . |Ring|) T) ((|HexadecimalExpansion| . |Monoid|) T) ((|HexadecimalExpansion| . |SemiRing|) T) ((|HexadecimalExpansion| . |SemiGroup|) T) ((|HexadecimalExpansion| . |Rng|) T) ((|HyperellipticFiniteDivisor| . |FiniteDivisorCategory|) 102266) ((|HyperellipticFiniteDivisor| . |CancellationAbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |AbelianSemiGroup|) T) ((|HyperellipticFiniteDivisor| . |BasicType|) T) ((|HyperellipticFiniteDivisor| . |Join|) T) ((|HyperellipticFiniteDivisor| . |Type|) T) ((|HyperellipticFiniteDivisor| . |CoercibleTo|) 102240) ((|HyperellipticFiniteDivisor| . |SetCategory|) T) ((|HyperellipticFiniteDivisor| . |AbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |LeftLinearSet|) 102217) ((|HyperellipticFiniteDivisor| . |AbelianGroup|) T) ((|Heap| . |PriorityQueueAggregate|) 102201) ((|Heap| . |FiniteAggregate|) 102185) ((|Heap| . |HomogeneousAggregate|) 102169) ((|Heap| . |SetCategory|) 102139) ((|Heap| . |Functorial|) 102123) ((|Heap| . |InnerEvalable|) 102042) ((|Heap| . |Evalable|) 101966) ((|Heap| . |CoercibleTo|) 101868) ((|Heap| . |BasicType|) 101806) ((|Heap| . |Type|) T) ((|Heap| . |Join|) T) ((|Heap| . |Aggregate|) T) ((|Heap| . |ShallowlyMutableAggregate|) 101790) ((|Heap| . |BagAggregate|) 101774) ((|HeadAst| . |SpadSyntaxCategory|) T) ((|HeadAst| . |HomotopicTo|) 101752) ((|HeadAst| . |CoercibleTo|) 101707) ((|HeadAst| . |CoercibleFrom|) 101685) ((|HeadAst| . |SetCategory|) T) ((|HeadAst| . |Type|) T) ((|HeadAst| . |Join|) T) ((|HeadAst| . |BasicType|) T) ((|HeadAst| . |AbstractSyntaxCategory|) T) ((|HomogeneousDirectProduct| . |DirectProductCategory|) 101664) ((|HomogeneousDirectProduct| . |VectorSpace|) 101631) ((|HomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 101589) ((|HomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 101547) ((|HomogeneousDirectProduct| . |OrderedType|) 101472) ((|HomogeneousDirectProduct| . |OrderedSet|) 101397) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoid|) 101355) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 101313) ((|HomogeneousDirectProduct| . |Module|) 101242) ((|HomogeneousDirectProduct| . |LinearSet|) 101147) ((|HomogeneousDirectProduct| . |EltableAggregate|) 101119) ((|HomogeneousDirectProduct| . |Eltable|) 101091) ((|HomogeneousDirectProduct| . |IndexedAggregate|) 101063) ((|HomogeneousDirectProduct| . |RetractableTo|) 100814) ((|HomogeneousDirectProduct| . |CoercibleFrom|) 100538) ((|HomogeneousDirectProduct| . |FullyRetractableTo|) 100499) ((|HomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 100371) ((|HomogeneousDirectProduct| . |LeftModule|) 100156) ((|HomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 100124) ((|HomogeneousDirectProduct| . |HomogeneousAggregate|) 100108) ((|HomogeneousDirectProduct| . |Functorial|) 100092) ((|HomogeneousDirectProduct| . |InnerEvalable|) 100011) ((|HomogeneousDirectProduct| . |Evalable|) 99935) ((|HomogeneousDirectProduct| . |Aggregate|) T) ((|HomogeneousDirectProduct| . |FiniteAggregate|) 99919) ((|HomogeneousDirectProduct| . |Finite|) 99894) ((|HomogeneousDirectProduct| . |DifferentialRing|) 99831) ((|HomogeneousDirectProduct| . |LeftLinearSet|) 99561) ((|HomogeneousDirectProduct| . |Rng|) 99538) ((|HomogeneousDirectProduct| . |SemiGroup|) 99515) ((|HomogeneousDirectProduct| . |SemiRing|) 99492) ((|HomogeneousDirectProduct| . |Monoid|) 99469) ((|HomogeneousDirectProduct| . |Ring|) 99446) ((|HomogeneousDirectProduct| . |DifferentialDomain|) 99309) ((|HomogeneousDirectProduct| . |DifferentialSpace|) 99178) ((|HomogeneousDirectProduct| . |DifferentialSpaceExtension|) 99146) ((|HomogeneousDirectProduct| . |PartialDifferentialDomain|) 98962) ((|HomogeneousDirectProduct| . |PartialDifferentialSpace|) 98780) ((|HomogeneousDirectProduct| . |PartialDifferentialRing|) 98684) ((|HomogeneousDirectProduct| . |DifferentialExtension|) 98652) ((|HomogeneousDirectProduct| . |CoercibleTo|) 98197) ((|HomogeneousDirectProduct| . |RightModule|) 98104) ((|HomogeneousDirectProduct| . |RightLinearSet|) 97987) ((|HomogeneousDirectProduct| . |BiModule|) 97889) ((|HomogeneousDirectProduct| . |CancellationAbelianMonoid|) 97691) ((|HomogeneousDirectProduct| . |AbelianSemiGroup|) 97428) ((|HomogeneousDirectProduct| . |BasicType|) 97033) ((|HomogeneousDirectProduct| . |Join|) T) ((|HomogeneousDirectProduct| . |Type|) T) ((|HomogeneousDirectProduct| . |SetCategory|) 96665) ((|HomogeneousDirectProduct| . |AbelianMonoid|) 96436) ((|HomogeneousDirectProduct| . |AbelianGroup|) 96322) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialCategory|) 96214) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleFrom|) 95886) ((|HomogeneousDistributedMultivariatePolynomial| . |RetractableTo|) 95693) ((|HomogeneousDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 95643) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 95593) ((|HomogeneousDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 95553) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 95511) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 95471) ((|HomogeneousDistributedMultivariatePolynomial| . |InnerEvalable|) 95397) ((|HomogeneousDistributedMultivariatePolynomial| . |GcdDomain|) 95315) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 95231) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftModule|) 95060) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 95044) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 94965) ((|HomogeneousDistributedMultivariatePolynomial| . |Algebra|) 94728) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearSet|) 94491) ((|HomogeneousDistributedMultivariatePolynomial| . |Module|) 94254) ((|HomogeneousDistributedMultivariatePolynomial| . |EntireRing|) 94140) ((|HomogeneousDistributedMultivariatePolynomial| . |IntegralDomain|) 94026) ((|HomogeneousDistributedMultivariatePolynomial| . |Functorial|) 94010) ((|HomogeneousDistributedMultivariatePolynomial| . |BiModule|) 93753) ((|HomogeneousDistributedMultivariatePolynomial| . |RightLinearSet|) 93510) ((|HomogeneousDistributedMultivariatePolynomial| . |RightModule|) 93267) ((|HomogeneousDistributedMultivariatePolynomial| . |CommutativeRing|) 93120) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicZero|) 93083) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 93043) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftLinearSet|) 92920) ((|HomogeneousDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |BasicType|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Join|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Type|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleTo|) 92894) ((|HomogeneousDistributedMultivariatePolynomial| . |SetCategory|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Ring|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Monoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiRing|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Rng|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyRetractableTo|) 92878) ((|HomogeneousDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 92799) ((|HomogeneousDistributedMultivariatePolynomial| . |Evalable|) 92786) ((|HomogeneousDistributedMultivariatePolynomial| . |ConvertibleTo|) 92564) ((|HashTable| . |TableAggregate|) 92543) ((|HashTable| . |Dictionary|) 92485) ((|HashTable| . |BagAggregate|) 92427) ((|HashTable| . |ShallowlyMutableAggregate|) 92356) ((|HashTable| . |Collection|) 92298) ((|HashTable| . |ConvertibleTo|) NIL) ((|HashTable| . |DictionaryOperations|) 92240) ((|HashTable| . |IndexedAggregate|) 92219) ((|HashTable| . |Evalable|) 91979) ((|HashTable| . |InnerEvalable|) 91727) ((|HashTable| . |Functorial|) 91656) ((|HashTable| . |HomogeneousAggregate|) 91585) ((|HashTable| . |Eltable|) 91564) ((|HashTable| . |EltableAggregate|) 91543) ((|HashTable| . |KeyedDictionary|) 91522) ((|HashTable| . |SetCategory|) T) ((|HashTable| . |CoercibleTo|) 91496) ((|HashTable| . |BasicType|) T) ((|HashTable| . |Type|) T) ((|HashTable| . |Join|) T) ((|HashTable| . |Aggregate|) T) ((|HashTable| . |FiniteAggregate|) 91438) ((|HasAst| . |SpadSyntaxCategory|) T) ((|HasAst| . |HomotopicTo|) 91416) ((|HasAst| . |CoercibleTo|) 91371) ((|HasAst| . |CoercibleFrom|) 91349) ((|HasAst| . |SetCategory|) T) ((|HasAst| . |Type|) T) ((|HasAst| . |Join|) T) ((|HasAst| . |BasicType|) T) ((|HasAst| . |AbstractSyntaxCategory|) T) ((|Pi| . |Field|) T) ((|Pi| . |UniqueFactorizationDomain|) T) ((|Pi| . |PrincipalIdealDomain|) T) ((|Pi| . |IntegralDomain|) T) ((|Pi| . |CommutativeRing|) T) ((|Pi| . |CoercibleFrom|) 91283) ((|Pi| . |Module|) 91237) ((|Pi| . |LinearSet|) 91191) ((|Pi| . |Algebra|) 91145) ((|Pi| . |GcdDomain|) T) ((|Pi| . |EuclideanDomain|) T) ((|Pi| . |LeftModule|) 91099) ((|Pi| . |LeftLinearSet|) 91033) ((|Pi| . |Rng|) T) ((|Pi| . |SemiGroup|) T) ((|Pi| . |SemiRing|) T) ((|Pi| . |Monoid|) T) ((|Pi| . |Ring|) T) ((|Pi| . |BiModule|) 90978) ((|Pi| . |RightLinearSet|) 90932) ((|Pi| . |RightModule|) 90886) ((|Pi| . |AbelianGroup|) T) ((|Pi| . |AbelianMonoid|) T) ((|Pi| . |SetCategory|) T) ((|Pi| . |CoercibleTo|) 90818) ((|Pi| . |Type|) T) ((|Pi| . |Join|) T) ((|Pi| . |BasicType|) T) ((|Pi| . |AbelianSemiGroup|) T) ((|Pi| . |CancellationAbelianMonoid|) T) ((|Pi| . |EntireRing|) T) ((|Pi| . |DivisionRing|) T) ((|Pi| . |CharacteristicZero|) T) ((|Pi| . |RetractableTo|) 90767) ((|Pi| . |RealConstant|) T) ((|Pi| . |ConvertibleTo|) 90636) ((|GeneralTriangularSet| . |TriangularSetCategory|) 90605) ((|GeneralTriangularSet| . |ShallowlyMutableAggregate|) 90589) ((|GeneralTriangularSet| . |CoercibleTo|) 90541) ((|GeneralTriangularSet| . |Collection|) 90525) ((|GeneralTriangularSet| . |Aggregate|) T) ((|GeneralTriangularSet| . |Join|) T) ((|GeneralTriangularSet| . |Type|) T) ((|GeneralTriangularSet| . |BasicType|) T) ((|GeneralTriangularSet| . |Evalable|) 90449) ((|GeneralTriangularSet| . |InnerEvalable|) 90368) ((|GeneralTriangularSet| . |Functorial|) 90352) ((|GeneralTriangularSet| . |SetCategory|) T) ((|GeneralTriangularSet| . |HomogeneousAggregate|) 90336) ((|GeneralTriangularSet| . |ConvertibleTo|) 90272) ((|GeneralTriangularSet| . |FiniteAggregate|) 90256) ((|GeneralTriangularSet| . |PolynomialSetCategory|) 90225) ((|GeneralSparseTable| . |TableAggregate|) 90204) ((|GeneralSparseTable| . |Dictionary|) 90146) ((|GeneralSparseTable| . |BagAggregate|) 90088) ((|GeneralSparseTable| . |ShallowlyMutableAggregate|) 90017) ((|GeneralSparseTable| . |Collection|) 89959) ((|GeneralSparseTable| . |ConvertibleTo|) NIL) ((|GeneralSparseTable| . |DictionaryOperations|) 89901) ((|GeneralSparseTable| . |IndexedAggregate|) 89880) ((|GeneralSparseTable| . |Evalable|) 89640) ((|GeneralSparseTable| . |InnerEvalable|) 89388) ((|GeneralSparseTable| . |Functorial|) 89317) ((|GeneralSparseTable| . |HomogeneousAggregate|) 89246) ((|GeneralSparseTable| . |Eltable|) 89225) ((|GeneralSparseTable| . |EltableAggregate|) 89204) ((|GeneralSparseTable| . |KeyedDictionary|) 89183) ((|GeneralSparseTable| . |SetCategory|) T) ((|GeneralSparseTable| . |CoercibleTo|) 89157) ((|GeneralSparseTable| . |BasicType|) T) ((|GeneralSparseTable| . |Type|) T) ((|GeneralSparseTable| . |Join|) T) ((|GeneralSparseTable| . |Aggregate|) T) ((|GeneralSparseTable| . |FiniteAggregate|) 89099) ((|GeneralUnivariatePowerSeries| . |UnivariatePuiseuxSeriesCategory|) 89083) ((|GeneralUnivariatePowerSeries| . |DifferentialRing|) 89018) ((|GeneralUnivariatePowerSeries| . |DifferentialDomain|) 88947) ((|GeneralUnivariatePowerSeries| . |DifferentialSpace|) 88882) ((|GeneralUnivariatePowerSeries| . |Eltable|) 88829) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialRing|) 88691) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialDomain|) 88523) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialSpace|) 88385) ((|GeneralUnivariatePowerSeries| . |PowerSeriesCategory|) 88318) ((|GeneralUnivariatePowerSeries| . |Algebra|) 88106) ((|GeneralUnivariatePowerSeries| . |BiModule|) 87874) ((|GeneralUnivariatePowerSeries| . |RightLinearSet|) 87656) ((|GeneralUnivariatePowerSeries| . |RightModule|) 87438) ((|GeneralUnivariatePowerSeries| . |LeftLinearSet|) 87287) ((|GeneralUnivariatePowerSeries| . |LeftModule|) 87156) ((|GeneralUnivariatePowerSeries| . |LinearSet|) 86944) ((|GeneralUnivariatePowerSeries| . |Module|) 86732) ((|GeneralUnivariatePowerSeries| . |CoercibleFrom|) 86500) ((|GeneralUnivariatePowerSeries| . |CharacteristicNonZero|) 86460) ((|GeneralUnivariatePowerSeries| . |CharacteristicZero|) 86423) ((|GeneralUnivariatePowerSeries| . |Functorial|) 86407) ((|GeneralUnivariatePowerSeries| . |AbelianMonoidRing|) 86366) ((|GeneralUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 86325) ((|GeneralUnivariatePowerSeries| . |ArcHyperbolicFunctionCategory|) 86274) ((|GeneralUnivariatePowerSeries| . |ArcTrigonometricFunctionCategory|) 86223) ((|GeneralUnivariatePowerSeries| . |ElementaryFunctionCategory|) 86172) ((|GeneralUnivariatePowerSeries| . |HyperbolicFunctionCategory|) 86121) ((|GeneralUnivariatePowerSeries| . |TrigonometricFunctionCategory|) 86070) ((|GeneralUnivariatePowerSeries| . |TranscendentalFunctionCategory|) 86019) ((|GeneralUnivariatePowerSeries| . |RadicalCategory|) 85968) ((|GeneralUnivariatePowerSeries| . |DivisionRing|) 85944) ((|GeneralUnivariatePowerSeries| . |EntireRing|) 85883) ((|GeneralUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |BasicType|) T) ((|GeneralUnivariatePowerSeries| . |Join|) T) ((|GeneralUnivariatePowerSeries| . |Type|) T) ((|GeneralUnivariatePowerSeries| . |CoercibleTo|) 85857) ((|GeneralUnivariatePowerSeries| . |SetCategory|) T) ((|GeneralUnivariatePowerSeries| . |AbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |AbelianGroup|) T) ((|GeneralUnivariatePowerSeries| . |Ring|) T) ((|GeneralUnivariatePowerSeries| . |Monoid|) T) ((|GeneralUnivariatePowerSeries| . |SemiRing|) T) ((|GeneralUnivariatePowerSeries| . |SemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |Rng|) T) ((|GeneralUnivariatePowerSeries| . |EuclideanDomain|) 85833) ((|GeneralUnivariatePowerSeries| . |GcdDomain|) 85809) ((|GeneralUnivariatePowerSeries| . |CommutativeRing|) 85715) ((|GeneralUnivariatePowerSeries| . |IntegralDomain|) 85654) ((|GeneralUnivariatePowerSeries| . |PrincipalIdealDomain|) 85630) ((|GeneralUnivariatePowerSeries| . |UniqueFactorizationDomain|) 85606) ((|GeneralUnivariatePowerSeries| . |Field|) 85582) ((|GraphImage| . |SetCategory|) T) ((|GraphImage| . |CoercibleTo|) 85556) ((|GraphImage| . |Type|) T) ((|GraphImage| . |Join|) T) ((|GraphImage| . |BasicType|) T) ((|GeneralPolynomialSet| . |PolynomialSetCategory|) 85525) ((|GeneralPolynomialSet| . |FiniteAggregate|) 85509) ((|GeneralPolynomialSet| . |ConvertibleTo|) 85445) ((|GeneralPolynomialSet| . |HomogeneousAggregate|) 85429) ((|GeneralPolynomialSet| . |SetCategory|) T) ((|GeneralPolynomialSet| . |Functorial|) 85413) ((|GeneralPolynomialSet| . |InnerEvalable|) 85332) ((|GeneralPolynomialSet| . |Evalable|) 85256) ((|GeneralPolynomialSet| . |CoercibleTo|) 85208) ((|GeneralPolynomialSet| . |BasicType|) T) ((|GeneralPolynomialSet| . |Type|) T) ((|GeneralPolynomialSet| . |Join|) T) ((|GeneralPolynomialSet| . |Aggregate|) T) ((|GeneralPolynomialSet| . |Collection|) 85192) ((|GeneralPolynomialSet| . |ShallowlyMutableAggregate|) 85176) ((|GeneralModulePolynomial| . |Module|) 85147) ((|GeneralModulePolynomial| . |LinearSet|) 85118) ((|GeneralModulePolynomial| . |LeftModule|) 85089) ((|GeneralModulePolynomial| . |LeftLinearSet|) 85040) ((|GeneralModulePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralModulePolynomial| . |AbelianSemiGroup|) T) ((|GeneralModulePolynomial| . |BasicType|) T) ((|GeneralModulePolynomial| . |Join|) T) ((|GeneralModulePolynomial| . |Type|) T) ((|GeneralModulePolynomial| . |CoercibleTo|) 85014) ((|GeneralModulePolynomial| . |SetCategory|) T) ((|GeneralModulePolynomial| . |AbelianMonoid|) T) ((|GeneralModulePolynomial| . |AbelianGroup|) T) ((|GeneralModulePolynomial| . |RightModule|) 84985) ((|GeneralModulePolynomial| . |RightLinearSet|) 84956) ((|GeneralModulePolynomial| . |BiModule|) 84917) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialCategory|) 84867) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleFrom|) 84539) ((|GeneralDistributedMultivariatePolynomial| . |RetractableTo|) 84346) ((|GeneralDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 84296) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 84246) ((|GeneralDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 84206) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 84164) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 84124) ((|GeneralDistributedMultivariatePolynomial| . |InnerEvalable|) 84050) ((|GeneralDistributedMultivariatePolynomial| . |GcdDomain|) 83968) ((|GeneralDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 83884) ((|GeneralDistributedMultivariatePolynomial| . |LeftModule|) 83713) ((|GeneralDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 83697) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 83676) ((|GeneralDistributedMultivariatePolynomial| . |Algebra|) 83439) ((|GeneralDistributedMultivariatePolynomial| . |LinearSet|) 83202) ((|GeneralDistributedMultivariatePolynomial| . |Module|) 82965) ((|GeneralDistributedMultivariatePolynomial| . |EntireRing|) 82851) ((|GeneralDistributedMultivariatePolynomial| . |IntegralDomain|) 82737) ((|GeneralDistributedMultivariatePolynomial| . |Functorial|) 82721) ((|GeneralDistributedMultivariatePolynomial| . |BiModule|) 82464) ((|GeneralDistributedMultivariatePolynomial| . |RightLinearSet|) 82221) ((|GeneralDistributedMultivariatePolynomial| . |RightModule|) 81978) ((|GeneralDistributedMultivariatePolynomial| . |CommutativeRing|) 81831) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicZero|) 81794) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 81754) ((|GeneralDistributedMultivariatePolynomial| . |LeftLinearSet|) 81631) ((|GeneralDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |BasicType|) T) ((|GeneralDistributedMultivariatePolynomial| . |Join|) T) ((|GeneralDistributedMultivariatePolynomial| . |Type|) T) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleTo|) 81605) ((|GeneralDistributedMultivariatePolynomial| . |SetCategory|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |Ring|) T) ((|GeneralDistributedMultivariatePolynomial| . |Monoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiRing|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |Rng|) T) ((|GeneralDistributedMultivariatePolynomial| . |FullyRetractableTo|) 81589) ((|GeneralDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 81568) ((|GeneralDistributedMultivariatePolynomial| . |Evalable|) 81555) ((|GeneralDistributedMultivariatePolynomial| . |ConvertibleTo|) 81333) ((|GenericNonAssociativeAlgebra| . |FramedNonAssociativeAlgebra|) 81289) ((|GenericNonAssociativeAlgebra| . |NonAssociativeAlgebra|) 81245) ((|GenericNonAssociativeAlgebra| . |Monad|) T) ((|GenericNonAssociativeAlgebra| . |NonAssociativeRng|) T) ((|GenericNonAssociativeAlgebra| . |BiModule|) 81194) ((|GenericNonAssociativeAlgebra| . |RightLinearSet|) 81150) ((|GenericNonAssociativeAlgebra| . |RightModule|) 81106) ((|GenericNonAssociativeAlgebra| . |AbelianGroup|) T) ((|GenericNonAssociativeAlgebra| . |LeftLinearSet|) 81005) ((|GenericNonAssociativeAlgebra| . |AbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |SetCategory|) T) ((|GenericNonAssociativeAlgebra| . |CoercibleTo|) 80979) ((|GenericNonAssociativeAlgebra| . |BasicType|) T) ((|GenericNonAssociativeAlgebra| . |AbelianSemiGroup|) T) ((|GenericNonAssociativeAlgebra| . |CancellationAbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |LeftModule|) 80898) ((|GenericNonAssociativeAlgebra| . |LinearSet|) 80854) ((|GenericNonAssociativeAlgebra| . |Module|) 80810) ((|GenericNonAssociativeAlgebra| . |FiniteRankNonAssociativeAlgebra|) 80766) ((|GenericNonAssociativeAlgebra| . |Type|) T) ((|GenericNonAssociativeAlgebra| . |Join|) T) ((|GenericNonAssociativeAlgebra| . |Eltable|) 80710) ((|FunctionDescriptor| . |SetCategory|) T) ((|FunctionDescriptor| . |CoercibleTo|) 80684) ((|FunctionDescriptor| . |Type|) T) ((|FunctionDescriptor| . |Join|) T) ((|FunctionDescriptor| . |BasicType|) T) ((|FunctionCalled| . |SetCategory|) T) ((|FunctionCalled| . |CoercibleTo|) 80658) ((|FunctionCalled| . |Type|) T) ((|FunctionCalled| . |Join|) T) ((|FunctionCalled| . |BasicType|) T) ((|FortranType| . |SetCategory|) T) ((|FortranType| . |CoercibleTo|) 80632) ((|FortranType| . |Type|) T) ((|FortranType| . |Join|) T) ((|FortranType| . |BasicType|) T) ((|FortranScalarType| . |CoercibleTo|) 80606) ((|FourierSeries| . |Algebra|) 80590) ((|FourierSeries| . |CoercibleFrom|) 80554) ((|FourierSeries| . |LeftModule|) 80528) ((|FourierSeries| . |LeftLinearSet|) 80482) ((|FourierSeries| . |Rng|) T) ((|FourierSeries| . |SemiGroup|) T) ((|FourierSeries| . |SemiRing|) T) ((|FourierSeries| . |Monoid|) T) ((|FourierSeries| . |Ring|) T) ((|FourierSeries| . |BiModule|) 80461) ((|FourierSeries| . |RightLinearSet|) 80445) ((|FourierSeries| . |RightModule|) 80429) ((|FourierSeries| . |AbelianGroup|) T) ((|FourierSeries| . |AbelianMonoid|) T) ((|FourierSeries| . |SetCategory|) T) ((|FourierSeries| . |CoercibleTo|) 80403) ((|FourierSeries| . |Type|) T) ((|FourierSeries| . |Join|) T) ((|FourierSeries| . |BasicType|) T) ((|FourierSeries| . |AbelianSemiGroup|) T) ((|FourierSeries| . |CancellationAbelianMonoid|) T) ((|FourierSeries| . |LinearSet|) 80387) ((|FourierSeries| . |Module|) 80371) ((|FramedModule| . |Monoid|) T) ((|FramedModule| . |SetCategory|) T) ((|FramedModule| . |CoercibleTo|) 80345) ((|FramedModule| . |Type|) T) ((|FramedModule| . |Join|) T) ((|FramedModule| . |BasicType|) T) ((|FramedModule| . |SemiGroup|) T) ((|FractionalIdeal| . |Group|) T) ((|FractionalIdeal| . |SemiGroup|) T) ((|FractionalIdeal| . |BasicType|) T) ((|FractionalIdeal| . |Join|) T) ((|FractionalIdeal| . |Type|) T) ((|FractionalIdeal| . |CoercibleTo|) 80319) ((|FractionalIdeal| . |SetCategory|) T) ((|FractionalIdeal| . |Monoid|) T) ((|Fraction| . |QuotientFieldCategory|) 80303) ((|Fraction| . |StepThrough|) 80273) ((|Fraction| . |RetractableTo|) 80092) ((|Fraction| . |CoercibleFrom|) 79958) ((|Fraction| . |ConvertibleTo|) 79661) ((|Fraction| . |RealConstant|) 79630) ((|Fraction| . |PolynomialFactorizationExplicit|) 79580) ((|Fraction| . |Patternable|) 79564) ((|Fraction| . |OrderedRing|) 79524) ((|Fraction| . |OrderedCancellationAbelianMonoid|) 79484) ((|Fraction| . |OrderedAbelianSemiGroup|) 79444) ((|Fraction| . |OrderedType|) 79371) ((|Fraction| . |OrderedSet|) 79298) ((|Fraction| . |OrderedAbelianMonoid|) 79258) ((|Fraction| . |OrderedAbelianGroup|) 79218) ((|Fraction| . |OrderedIntegralDomain|) 79178) ((|Fraction| . |PatternMatchable|) 79059) ((|Fraction| . |FullyPatternMatchable|) 79043) ((|Fraction| . |LinearlyExplicitRingOver|) 78959) ((|Fraction| . |LeftModule|) 78832) ((|Fraction| . |FullyLinearlyExplicitRingOver|) 78816) ((|Fraction| . |Eltable|) 78769) ((|Fraction| . |Evalable|) 78728) ((|Fraction| . |InnerEvalable|) 78617) ((|Fraction| . |Functorial|) 78601) ((|Fraction| . |FullyEvalableOver|) 78585) ((|Fraction| . |DivisionRing|) T) ((|Fraction| . |BiModule|) 78512) ((|Fraction| . |RightLinearSet|) 78453) ((|Fraction| . |RightModule|) 78394) ((|Fraction| . |EntireRing|) T) ((|Fraction| . |Module|) 78335) ((|Fraction| . |LinearSet|) 78276) ((|Fraction| . |LeftLinearSet|) 78197) ((|Fraction| . |Algebra|) 78138) ((|Fraction| . |EuclideanDomain|) T) ((|Fraction| . |GcdDomain|) T) ((|Fraction| . |CommutativeRing|) T) ((|Fraction| . |IntegralDomain|) T) ((|Fraction| . |PrincipalIdealDomain|) T) ((|Fraction| . |UniqueFactorizationDomain|) T) ((|Fraction| . |Field|) T) ((|Fraction| . |DifferentialRing|) 78103) ((|Fraction| . |DifferentialDomain|) 78022) ((|Fraction| . |DifferentialSpace|) 77947) ((|Fraction| . |DifferentialSpaceExtension|) 77931) ((|Fraction| . |PartialDifferentialDomain|) 77803) ((|Fraction| . |PartialDifferentialSpace|) 77677) ((|Fraction| . |PartialDifferentialRing|) 77609) ((|Fraction| . |DifferentialExtension|) 77593) ((|Fraction| . |CharacteristicZero|) 77512) ((|Fraction| . |CharacteristicNonZero|) 77472) ((|Fraction| . |CancellationAbelianMonoid|) T) ((|Fraction| . |AbelianSemiGroup|) T) ((|Fraction| . |BasicType|) T) ((|Fraction| . |Join|) T) ((|Fraction| . |Type|) T) ((|Fraction| . |CoercibleTo|) 77446) ((|Fraction| . |SetCategory|) T) ((|Fraction| . |AbelianMonoid|) T) ((|Fraction| . |AbelianGroup|) T) ((|Fraction| . |Ring|) T) ((|Fraction| . |Monoid|) T) ((|Fraction| . |SemiRing|) T) ((|Fraction| . |SemiGroup|) T) ((|Fraction| . |Rng|) T) ((|Factored| . |IntegralDomain|) T) ((|Factored| . |EntireRing|) T) ((|Factored| . |CommutativeRing|) T) ((|Factored| . |CoercibleFrom|) 77317) ((|Factored| . |Module|) 77291) ((|Factored| . |LinearSet|) 77265) ((|Factored| . |LeftModule|) 77239) ((|Factored| . |LeftLinearSet|) 77193) ((|Factored| . |CancellationAbelianMonoid|) T) ((|Factored| . |AbelianSemiGroup|) T) ((|Factored| . |BasicType|) T) ((|Factored| . |Join|) T) ((|Factored| . |Type|) T) ((|Factored| . |CoercibleTo|) 77167) ((|Factored| . |SetCategory|) T) ((|Factored| . |AbelianMonoid|) T) ((|Factored| . |AbelianGroup|) T) ((|Factored| . |RightModule|) 77141) ((|Factored| . |RightLinearSet|) 77115) ((|Factored| . |BiModule|) 77082) ((|Factored| . |Ring|) T) ((|Factored| . |Monoid|) T) ((|Factored| . |SemiRing|) T) ((|Factored| . |SemiGroup|) T) ((|Factored| . |Rng|) T) ((|Factored| . |Algebra|) 77056) ((|Factored| . |DifferentialExtension|) 77040) ((|Factored| . |PartialDifferentialRing|) 76972) ((|Factored| . |PartialDifferentialSpace|) 76846) ((|Factored| . |PartialDifferentialDomain|) 76718) ((|Factored| . |DifferentialSpaceExtension|) 76702) ((|Factored| . |DifferentialSpace|) 76627) ((|Factored| . |DifferentialDomain|) 76546) ((|Factored| . |DifferentialRing|) 76511) ((|Factored| . |FullyEvalableOver|) 76495) ((|Factored| . |InnerEvalable|) 76295) ((|Factored| . |Functorial|) 76279) ((|Factored| . |Evalable|) 76199) ((|Factored| . |Eltable|) 76112) ((|Factored| . |FullyRetractableTo|) 76096) ((|Factored| . |RetractableTo|) 75940) ((|Factored| . |GcdDomain|) 75864) ((|Factored| . |RealConstant|) 75833) ((|Factored| . |ConvertibleTo|) 75699) ((|Factored| . |UniqueFactorizationDomain|) 75655) ((|FullPartialFractionExpansion| . |SetCategory|) T) ((|FullPartialFractionExpansion| . |CoercibleTo|) 75629) ((|FullPartialFractionExpansion| . |Type|) T) ((|FullPartialFractionExpansion| . |Join|) T) ((|FullPartialFractionExpansion| . |BasicType|) T) ((|FullPartialFractionExpansion| . |DifferentialSpace|) T) ((|FullPartialFractionExpansion| . |DifferentialDomain|) 75616) ((|FullPartialFractionExpansion| . |ConvertibleTo|) 75587) ((|FreeNilpotentLie| . |NonAssociativeAlgebra|) 75571) ((|FreeNilpotentLie| . |Monad|) T) ((|FreeNilpotentLie| . |NonAssociativeRng|) T) ((|FreeNilpotentLie| . |BiModule|) 75550) ((|FreeNilpotentLie| . |RightLinearSet|) 75534) ((|FreeNilpotentLie| . |RightModule|) 75518) ((|FreeNilpotentLie| . |AbelianGroup|) T) ((|FreeNilpotentLie| . |LeftLinearSet|) 75482) ((|FreeNilpotentLie| . |AbelianMonoid|) T) ((|FreeNilpotentLie| . |SetCategory|) T) ((|FreeNilpotentLie| . |CoercibleTo|) 75456) ((|FreeNilpotentLie| . |Type|) T) ((|FreeNilpotentLie| . |Join|) T) ((|FreeNilpotentLie| . |BasicType|) T) ((|FreeNilpotentLie| . |AbelianSemiGroup|) T) ((|FreeNilpotentLie| . |CancellationAbelianMonoid|) T) ((|FreeNilpotentLie| . |LeftModule|) 75440) ((|FreeNilpotentLie| . |LinearSet|) 75424) ((|FreeNilpotentLie| . |Module|) 75408) ((|FileName| . |FileNameCategory|) T) ((|FileName| . |BasicType|) T) ((|FileName| . |Join|) T) ((|FileName| . |Type|) T) ((|FileName| . |CoercibleTo|) 75363) ((|FileName| . |SetCategory|) T) ((|FileName| . |CoercibleFrom|) 75341) ((|FileName| . |HomotopicTo|) 75319) ((|FreeMonoid| . |FreeMonoidCategory|) 75303) ((|FreeMonoid| . |CoercibleFrom|) 75287) ((|FreeMonoid| . |RetractableTo|) 75271) ((|FreeMonoid| . |OrderedType|) 75242) ((|FreeMonoid| . |OrderedSet|) 75213) ((|FreeMonoid| . |SemiGroup|) T) ((|FreeMonoid| . |BasicType|) T) ((|FreeMonoid| . |Join|) T) ((|FreeMonoid| . |Type|) T) ((|FreeMonoid| . |CoercibleTo|) 75187) ((|FreeMonoid| . |SetCategory|) T) ((|FreeMonoid| . |Monoid|) T) ((|FreeModule1| . |FreeModuleCat|) 75166) ((|FreeModule1| . |CoercibleFrom|) 75150) ((|FreeModule1| . |RetractableTo|) 75134) ((|FreeModule1| . |LinearSet|) 75091) ((|FreeModule1| . |Module|) 75048) ((|FreeModule1| . |Functorial|) 75032) ((|FreeModule1| . |LeftModule|) 75016) ((|FreeModule1| . |LeftLinearSet|) 74980) ((|FreeModule1| . |CancellationAbelianMonoid|) T) ((|FreeModule1| . |AbelianSemiGroup|) T) ((|FreeModule1| . |BasicType|) T) ((|FreeModule1| . |Join|) T) ((|FreeModule1| . |Type|) T) ((|FreeModule1| . |CoercibleTo|) 74954) ((|FreeModule1| . |SetCategory|) T) ((|FreeModule1| . |AbelianMonoid|) T) ((|FreeModule1| . |AbelianGroup|) T) ((|FreeModule1| . |RightModule|) 74938) ((|FreeModule1| . |RightLinearSet|) 74922) ((|FreeModule1| . |BiModule|) 74901) ((|FreeModule| . |BiModule|) 74880) ((|FreeModule| . |RightLinearSet|) 74864) ((|FreeModule| . |RightModule|) 74848) ((|FreeModule| . |AbelianGroup|) T) ((|FreeModule| . |LeftLinearSet|) 74812) ((|FreeModule| . |AbelianMonoid|) T) ((|FreeModule| . |SetCategory|) T) ((|FreeModule| . |CoercibleTo|) 74786) ((|FreeModule| . |Type|) T) ((|FreeModule| . |Join|) T) ((|FreeModule| . |BasicType|) T) ((|FreeModule| . |AbelianSemiGroup|) T) ((|FreeModule| . |CancellationAbelianMonoid|) T) ((|FreeModule| . |LeftModule|) 74770) ((|FreeModule| . |IndexedDirectProductCategory|) 74749) ((|FreeModule| . |Functorial|) 74733) ((|FreeModule| . |ConvertibleFrom|) 74680) ((|FreeModule| . |Module|) 74637) ((|FreeModule| . |LinearSet|) 74594) ((|Float| . |FloatingPointSystem|) T) ((|Float| . |CharacteristicZero|) T) ((|Float| . |CoercibleFrom|) 74528) ((|Float| . |LeftModule|) 74482) ((|Float| . |LeftLinearSet|) 74416) ((|Float| . |CancellationAbelianMonoid|) T) ((|Float| . |AbelianSemiGroup|) T) ((|Float| . |BasicType|) T) ((|Float| . |Join|) T) ((|Float| . |Type|) T) ((|Float| . |CoercibleTo|) 74366) ((|Float| . |SetCategory|) T) ((|Float| . |AbelianMonoid|) T) ((|Float| . |AbelianGroup|) T) ((|Float| . |Rng|) T) ((|Float| . |SemiGroup|) T) ((|Float| . |SemiRing|) T) ((|Float| . |Monoid|) T) ((|Float| . |Ring|) T) ((|Float| . |ConvertibleTo|) 74250) ((|Float| . |Field|) T) ((|Float| . |UniqueFactorizationDomain|) T) ((|Float| . |PrincipalIdealDomain|) T) ((|Float| . |IntegralDomain|) T) ((|Float| . |CommutativeRing|) T) ((|Float| . |Module|) 74204) ((|Float| . |LinearSet|) 74158) ((|Float| . |Algebra|) 74112) ((|Float| . |GcdDomain|) T) ((|Float| . |EuclideanDomain|) T) ((|Float| . |BiModule|) 74057) ((|Float| . |RightLinearSet|) 74011) ((|Float| . |RightModule|) 73965) ((|Float| . |EntireRing|) T) ((|Float| . |DivisionRing|) T) ((|Float| . |OrderedRing|) T) ((|Float| . |OrderedCancellationAbelianMonoid|) T) ((|Float| . |OrderedAbelianSemiGroup|) T) ((|Float| . |OrderedType|) T) ((|Float| . |OrderedSet|) T) ((|Float| . |OrderedAbelianMonoid|) T) ((|Float| . |OrderedAbelianGroup|) T) ((|Float| . |PatternMatchable|) 73944) ((|Float| . |RadicalCategory|) T) ((|Float| . |RealConstant|) T) ((|Float| . |RetractableTo|) 73893) ((|Float| . |RealNumberSystem|) T) ((|Float| . |DifferentialRing|) T) ((|Float| . |DifferentialDomain|) 73880) ((|Float| . |DifferentialSpace|) T) ((|Float| . |TranscendentalFunctionCategory|) T) ((|Float| . |TrigonometricFunctionCategory|) T) ((|Float| . |HyperbolicFunctionCategory|) T) ((|Float| . |ElementaryFunctionCategory|) T) ((|Float| . |ArcTrigonometricFunctionCategory|) T) ((|Float| . |ArcHyperbolicFunctionCategory|) T) ((|Float| . |ConvertibleFrom|) 73853) ((|File| . |FileCategory|) 73824) ((|File| . |BasicType|) T) ((|File| . |Join|) T) ((|File| . |Type|) T) ((|File| . |CoercibleTo|) 73798) ((|File| . |SetCategory|) T) ((|FreeGroup| . |Group|) T) ((|FreeGroup| . |SemiGroup|) T) ((|FreeGroup| . |BasicType|) T) ((|FreeGroup| . |Join|) T) ((|FreeGroup| . |Type|) T) ((|FreeGroup| . |CoercibleTo|) 73772) ((|FreeGroup| . |SetCategory|) T) ((|FreeGroup| . |Monoid|) T) ((|FreeGroup| . |RetractableTo|) 73756) ((|FreeGroup| . |CoercibleFrom|) 73740) ((|FiniteFieldExtension| . |FiniteAlgebraicExtensionField|) 73724) ((|FiniteFieldExtension| . |DifferentialRing|) 73699) ((|FiniteFieldExtension| . |DifferentialDomain|) 73668) ((|FiniteFieldExtension| . |DifferentialSpace|) 73643) ((|FiniteFieldExtension| . |Finite|) 73618) ((|FiniteFieldExtension| . |StepThrough|) 73593) ((|FiniteFieldExtension| . |FiniteFieldCategory|) 73568) ((|FiniteFieldExtension| . |CharacteristicZero|) 73531) ((|FiniteFieldExtension| . |CoercibleFrom|) 73452) ((|FiniteFieldExtension| . |LeftModule|) 73393) ((|FiniteFieldExtension| . |LeftLinearSet|) 73314) ((|FiniteFieldExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldExtension| . |BasicType|) T) ((|FiniteFieldExtension| . |Join|) T) ((|FiniteFieldExtension| . |Type|) T) ((|FiniteFieldExtension| . |CoercibleTo|) 73288) ((|FiniteFieldExtension| . |SetCategory|) T) ((|FiniteFieldExtension| . |AbelianMonoid|) T) ((|FiniteFieldExtension| . |AbelianGroup|) T) ((|FiniteFieldExtension| . |Rng|) T) ((|FiniteFieldExtension| . |SemiGroup|) T) ((|FiniteFieldExtension| . |SemiRing|) T) ((|FiniteFieldExtension| . |Monoid|) T) ((|FiniteFieldExtension| . |Ring|) T) ((|FiniteFieldExtension| . |Field|) T) ((|FiniteFieldExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtension| . |IntegralDomain|) T) ((|FiniteFieldExtension| . |CommutativeRing|) T) ((|FiniteFieldExtension| . |Module|) 73229) ((|FiniteFieldExtension| . |LinearSet|) 73170) ((|FiniteFieldExtension| . |Algebra|) 73124) ((|FiniteFieldExtension| . |GcdDomain|) T) ((|FiniteFieldExtension| . |EuclideanDomain|) T) ((|FiniteFieldExtension| . |BiModule|) 73051) ((|FiniteFieldExtension| . |RightLinearSet|) 72992) ((|FiniteFieldExtension| . |RightModule|) 72933) ((|FiniteFieldExtension| . |EntireRing|) T) ((|FiniteFieldExtension| . |DivisionRing|) T) ((|FiniteFieldExtension| . |FieldOfPrimeCharacteristic|) 72864) ((|FiniteFieldExtension| . |CharacteristicNonZero|) 72795) ((|FiniteFieldExtension| . |RetractableTo|) 72779) ((|FiniteFieldExtension| . |VectorSpace|) 72763) ((|FiniteFieldExtension| . |ExtensionField|) 72747) ((|FiniteFieldExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 72731) ((|FiniteFieldExtensionByPolynomial| . |DifferentialRing|) 72706) ((|FiniteFieldExtensionByPolynomial| . |DifferentialDomain|) 72675) ((|FiniteFieldExtensionByPolynomial| . |DifferentialSpace|) 72650) ((|FiniteFieldExtensionByPolynomial| . |Finite|) 72625) ((|FiniteFieldExtensionByPolynomial| . |StepThrough|) 72600) ((|FiniteFieldExtensionByPolynomial| . |FiniteFieldCategory|) 72575) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicZero|) 72538) ((|FiniteFieldExtensionByPolynomial| . |CoercibleFrom|) 72459) ((|FiniteFieldExtensionByPolynomial| . |LeftModule|) 72400) ((|FiniteFieldExtensionByPolynomial| . |LeftLinearSet|) 72321) ((|FiniteFieldExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldExtensionByPolynomial| . |Join|) T) ((|FiniteFieldExtensionByPolynomial| . |Type|) T) ((|FiniteFieldExtensionByPolynomial| . |CoercibleTo|) 72295) ((|FiniteFieldExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldExtensionByPolynomial| . |Field|) T) ((|FiniteFieldExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldExtensionByPolynomial| . |Module|) 72236) ((|FiniteFieldExtensionByPolynomial| . |LinearSet|) 72177) ((|FiniteFieldExtensionByPolynomial| . |Algebra|) 72131) ((|FiniteFieldExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |BiModule|) 72058) ((|FiniteFieldExtensionByPolynomial| . |RightLinearSet|) 71999) ((|FiniteFieldExtensionByPolynomial| . |RightModule|) 71940) ((|FiniteFieldExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 71871) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicNonZero|) 71802) ((|FiniteFieldExtensionByPolynomial| . |RetractableTo|) 71786) ((|FiniteFieldExtensionByPolynomial| . |VectorSpace|) 71770) ((|FiniteFieldExtensionByPolynomial| . |ExtensionField|) 71754) ((|FiniteFieldNormalBasisExtension| . |FiniteAlgebraicExtensionField|) 71738) ((|FiniteFieldNormalBasisExtension| . |DifferentialRing|) 71713) ((|FiniteFieldNormalBasisExtension| . |DifferentialDomain|) 71682) ((|FiniteFieldNormalBasisExtension| . |DifferentialSpace|) 71657) ((|FiniteFieldNormalBasisExtension| . |Finite|) 71632) ((|FiniteFieldNormalBasisExtension| . |StepThrough|) 71607) ((|FiniteFieldNormalBasisExtension| . |FiniteFieldCategory|) 71582) ((|FiniteFieldNormalBasisExtension| . |CharacteristicZero|) 71545) ((|FiniteFieldNormalBasisExtension| . |CoercibleFrom|) 71466) ((|FiniteFieldNormalBasisExtension| . |LeftModule|) 71407) ((|FiniteFieldNormalBasisExtension| . |LeftLinearSet|) 71328) ((|FiniteFieldNormalBasisExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |BasicType|) T) ((|FiniteFieldNormalBasisExtension| . |Join|) T) ((|FiniteFieldNormalBasisExtension| . |Type|) T) ((|FiniteFieldNormalBasisExtension| . |CoercibleTo|) 71302) ((|FiniteFieldNormalBasisExtension| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtension| . |Rng|) T) ((|FiniteFieldNormalBasisExtension| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtension| . |Monoid|) T) ((|FiniteFieldNormalBasisExtension| . |Ring|) T) ((|FiniteFieldNormalBasisExtension| . |Field|) T) ((|FiniteFieldNormalBasisExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtension| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtension| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtension| . |Module|) 71243) ((|FiniteFieldNormalBasisExtension| . |LinearSet|) 71184) ((|FiniteFieldNormalBasisExtension| . |Algebra|) 71138) ((|FiniteFieldNormalBasisExtension| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtension| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtension| . |BiModule|) 71065) ((|FiniteFieldNormalBasisExtension| . |RightLinearSet|) 71006) ((|FiniteFieldNormalBasisExtension| . |RightModule|) 70947) ((|FiniteFieldNormalBasisExtension| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtension| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtension| . |FieldOfPrimeCharacteristic|) 70878) ((|FiniteFieldNormalBasisExtension| . |CharacteristicNonZero|) 70809) ((|FiniteFieldNormalBasisExtension| . |RetractableTo|) 70793) ((|FiniteFieldNormalBasisExtension| . |VectorSpace|) 70777) ((|FiniteFieldNormalBasisExtension| . |ExtensionField|) 70761) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 70745) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialRing|) 70720) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialDomain|) 70689) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialSpace|) 70664) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Finite|) 70639) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |StepThrough|) 70614) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteFieldCategory|) 70589) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicZero|) 70552) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleFrom|) 70473) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftModule|) 70414) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftLinearSet|) 70335) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Join|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Type|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleTo|) 70309) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Field|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Module|) 70250) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LinearSet|) 70191) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Algebra|) 70145) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BiModule|) 70072) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightLinearSet|) 70013) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightModule|) 69954) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 69885) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicNonZero|) 69816) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RetractableTo|) 69800) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |VectorSpace|) 69784) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |ExtensionField|) 69768) ((|FiniteFieldNormalBasis| . |FiniteAlgebraicExtensionField|) 69737) ((|FiniteFieldNormalBasis| . |DifferentialRing|) T) ((|FiniteFieldNormalBasis| . |DifferentialDomain|) 69724) ((|FiniteFieldNormalBasis| . |DifferentialSpace|) T) ((|FiniteFieldNormalBasis| . |Finite|) T) ((|FiniteFieldNormalBasis| . |StepThrough|) T) ((|FiniteFieldNormalBasis| . |FiniteFieldCategory|) T) ((|FiniteFieldNormalBasis| . |CharacteristicZero|) 69690) ((|FiniteFieldNormalBasis| . |CoercibleFrom|) 69596) ((|FiniteFieldNormalBasis| . |LeftModule|) 69522) ((|FiniteFieldNormalBasis| . |LeftLinearSet|) 69428) ((|FiniteFieldNormalBasis| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasis| . |BasicType|) T) ((|FiniteFieldNormalBasis| . |Join|) T) ((|FiniteFieldNormalBasis| . |Type|) T) ((|FiniteFieldNormalBasis| . |CoercibleTo|) 69402) ((|FiniteFieldNormalBasis| . |SetCategory|) T) ((|FiniteFieldNormalBasis| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |AbelianGroup|) T) ((|FiniteFieldNormalBasis| . |Rng|) T) ((|FiniteFieldNormalBasis| . |SemiGroup|) T) ((|FiniteFieldNormalBasis| . |SemiRing|) T) ((|FiniteFieldNormalBasis| . |Monoid|) T) ((|FiniteFieldNormalBasis| . |Ring|) T) ((|FiniteFieldNormalBasis| . |Field|) T) ((|FiniteFieldNormalBasis| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasis| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasis| . |IntegralDomain|) T) ((|FiniteFieldNormalBasis| . |CommutativeRing|) T) ((|FiniteFieldNormalBasis| . |Module|) 69328) ((|FiniteFieldNormalBasis| . |LinearSet|) 69254) ((|FiniteFieldNormalBasis| . |Algebra|) 69208) ((|FiniteFieldNormalBasis| . |GcdDomain|) T) ((|FiniteFieldNormalBasis| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasis| . |BiModule|) 69118) ((|FiniteFieldNormalBasis| . |RightLinearSet|) 69044) ((|FiniteFieldNormalBasis| . |RightModule|) 68970) ((|FiniteFieldNormalBasis| . |EntireRing|) T) ((|FiniteFieldNormalBasis| . |DivisionRing|) T) ((|FiniteFieldNormalBasis| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldNormalBasis| . |CharacteristicNonZero|) T) ((|FiniteFieldNormalBasis| . |RetractableTo|) 68939) ((|FiniteFieldNormalBasis| . |VectorSpace|) 68908) ((|FiniteFieldNormalBasis| . |ExtensionField|) 68877) ((|FiniteFieldCyclicGroupExtension| . |FiniteAlgebraicExtensionField|) 68861) ((|FiniteFieldCyclicGroupExtension| . |DifferentialRing|) 68836) ((|FiniteFieldCyclicGroupExtension| . |DifferentialDomain|) 68805) ((|FiniteFieldCyclicGroupExtension| . |DifferentialSpace|) 68780) ((|FiniteFieldCyclicGroupExtension| . |Finite|) 68755) ((|FiniteFieldCyclicGroupExtension| . |StepThrough|) 68730) ((|FiniteFieldCyclicGroupExtension| . |FiniteFieldCategory|) 68705) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicZero|) 68668) ((|FiniteFieldCyclicGroupExtension| . |CoercibleFrom|) 68589) ((|FiniteFieldCyclicGroupExtension| . |LeftModule|) 68530) ((|FiniteFieldCyclicGroupExtension| . |LeftLinearSet|) 68451) ((|FiniteFieldCyclicGroupExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtension| . |Join|) T) ((|FiniteFieldCyclicGroupExtension| . |Type|) T) ((|FiniteFieldCyclicGroupExtension| . |CoercibleTo|) 68425) ((|FiniteFieldCyclicGroupExtension| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |Rng|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtension| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtension| . |Ring|) T) ((|FiniteFieldCyclicGroupExtension| . |Field|) T) ((|FiniteFieldCyclicGroupExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtension| . |Module|) 68366) ((|FiniteFieldCyclicGroupExtension| . |LinearSet|) 68307) ((|FiniteFieldCyclicGroupExtension| . |Algebra|) 68261) ((|FiniteFieldCyclicGroupExtension| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |BiModule|) 68188) ((|FiniteFieldCyclicGroupExtension| . |RightLinearSet|) 68129) ((|FiniteFieldCyclicGroupExtension| . |RightModule|) 68070) ((|FiniteFieldCyclicGroupExtension| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtension| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtension| . |FieldOfPrimeCharacteristic|) 68001) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicNonZero|) 67932) ((|FiniteFieldCyclicGroupExtension| . |RetractableTo|) 67916) ((|FiniteFieldCyclicGroupExtension| . |VectorSpace|) 67900) ((|FiniteFieldCyclicGroupExtension| . |ExtensionField|) 67884) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 67868) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialRing|) 67843) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialDomain|) 67812) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialSpace|) 67787) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Finite|) 67762) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |StepThrough|) 67737) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteFieldCategory|) 67712) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicZero|) 67675) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleFrom|) 67596) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftModule|) 67537) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftLinearSet|) 67458) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Join|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Type|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleTo|) 67432) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Field|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Module|) 67373) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LinearSet|) 67314) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Algebra|) 67268) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BiModule|) 67195) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightLinearSet|) 67136) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightModule|) 67077) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 67008) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicNonZero|) 66939) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RetractableTo|) 66923) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |VectorSpace|) 66907) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |ExtensionField|) 66891) ((|FiniteFieldCyclicGroup| . |FiniteAlgebraicExtensionField|) 66860) ((|FiniteFieldCyclicGroup| . |DifferentialRing|) T) ((|FiniteFieldCyclicGroup| . |DifferentialDomain|) 66847) ((|FiniteFieldCyclicGroup| . |DifferentialSpace|) T) ((|FiniteFieldCyclicGroup| . |Finite|) T) ((|FiniteFieldCyclicGroup| . |StepThrough|) T) ((|FiniteFieldCyclicGroup| . |FiniteFieldCategory|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicZero|) 66813) ((|FiniteFieldCyclicGroup| . |CoercibleFrom|) 66719) ((|FiniteFieldCyclicGroup| . |LeftModule|) 66645) ((|FiniteFieldCyclicGroup| . |LeftLinearSet|) 66551) ((|FiniteFieldCyclicGroup| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroup| . |BasicType|) T) ((|FiniteFieldCyclicGroup| . |Join|) T) ((|FiniteFieldCyclicGroup| . |Type|) T) ((|FiniteFieldCyclicGroup| . |CoercibleTo|) 66525) ((|FiniteFieldCyclicGroup| . |SetCategory|) T) ((|FiniteFieldCyclicGroup| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroup| . |Rng|) T) ((|FiniteFieldCyclicGroup| . |SemiGroup|) T) ((|FiniteFieldCyclicGroup| . |SemiRing|) T) ((|FiniteFieldCyclicGroup| . |Monoid|) T) ((|FiniteFieldCyclicGroup| . |Ring|) T) ((|FiniteFieldCyclicGroup| . |Field|) T) ((|FiniteFieldCyclicGroup| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroup| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroup| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroup| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroup| . |Module|) 66451) ((|FiniteFieldCyclicGroup| . |LinearSet|) 66377) ((|FiniteFieldCyclicGroup| . |Algebra|) 66331) ((|FiniteFieldCyclicGroup| . |GcdDomain|) T) ((|FiniteFieldCyclicGroup| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroup| . |BiModule|) 66241) ((|FiniteFieldCyclicGroup| . |RightLinearSet|) 66167) ((|FiniteFieldCyclicGroup| . |RightModule|) 66093) ((|FiniteFieldCyclicGroup| . |EntireRing|) T) ((|FiniteFieldCyclicGroup| . |DivisionRing|) T) ((|FiniteFieldCyclicGroup| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicNonZero|) T) ((|FiniteFieldCyclicGroup| . |RetractableTo|) 66062) ((|FiniteFieldCyclicGroup| . |VectorSpace|) 66031) ((|FiniteFieldCyclicGroup| . |ExtensionField|) 66000) ((|FiniteField| . |FiniteAlgebraicExtensionField|) 65969) ((|FiniteField| . |DifferentialRing|) T) ((|FiniteField| . |DifferentialDomain|) 65956) ((|FiniteField| . |DifferentialSpace|) T) ((|FiniteField| . |Finite|) T) ((|FiniteField| . |StepThrough|) T) ((|FiniteField| . |FiniteFieldCategory|) T) ((|FiniteField| . |CharacteristicZero|) 65922) ((|FiniteField| . |CoercibleFrom|) 65828) ((|FiniteField| . |LeftModule|) 65754) ((|FiniteField| . |LeftLinearSet|) 65660) ((|FiniteField| . |CancellationAbelianMonoid|) T) ((|FiniteField| . |AbelianSemiGroup|) T) ((|FiniteField| . |BasicType|) T) ((|FiniteField| . |Join|) T) ((|FiniteField| . |Type|) T) ((|FiniteField| . |CoercibleTo|) 65634) ((|FiniteField| . |SetCategory|) T) ((|FiniteField| . |AbelianMonoid|) T) ((|FiniteField| . |AbelianGroup|) T) ((|FiniteField| . |Rng|) T) ((|FiniteField| . |SemiGroup|) T) ((|FiniteField| . |SemiRing|) T) ((|FiniteField| . |Monoid|) T) ((|FiniteField| . |Ring|) T) ((|FiniteField| . |Field|) T) ((|FiniteField| . |UniqueFactorizationDomain|) T) ((|FiniteField| . |PrincipalIdealDomain|) T) ((|FiniteField| . |IntegralDomain|) T) ((|FiniteField| . |CommutativeRing|) T) ((|FiniteField| . |Module|) 65560) ((|FiniteField| . |LinearSet|) 65486) ((|FiniteField| . |Algebra|) 65440) ((|FiniteField| . |GcdDomain|) T) ((|FiniteField| . |EuclideanDomain|) T) ((|FiniteField| . |BiModule|) 65350) ((|FiniteField| . |RightLinearSet|) 65276) ((|FiniteField| . |RightModule|) 65202) ((|FiniteField| . |EntireRing|) T) ((|FiniteField| . |DivisionRing|) T) ((|FiniteField| . |FieldOfPrimeCharacteristic|) T) ((|FiniteField| . |CharacteristicNonZero|) T) ((|FiniteField| . |RetractableTo|) 65171) ((|FiniteField| . |VectorSpace|) 65140) ((|FiniteField| . |ExtensionField|) 65109) ((|FiniteDivisor| . |FiniteDivisorCategory|) 65078) ((|FiniteDivisor| . |CancellationAbelianMonoid|) T) ((|FiniteDivisor| . |AbelianSemiGroup|) T) ((|FiniteDivisor| . |BasicType|) T) ((|FiniteDivisor| . |Join|) T) ((|FiniteDivisor| . |Type|) T) ((|FiniteDivisor| . |CoercibleTo|) 65052) ((|FiniteDivisor| . |SetCategory|) T) ((|FiniteDivisor| . |AbelianMonoid|) T) ((|FiniteDivisor| . |LeftLinearSet|) 65029) ((|FiniteDivisor| . |AbelianGroup|) T) ((|FunctorData| . |SetCategory|) T) ((|FunctorData| . |CoercibleTo|) 65003) ((|FunctorData| . |Type|) T) ((|FunctorData| . |Join|) T) ((|FunctorData| . |BasicType|) T) ((|FourierComponent| . |OrderedSet|) T) ((|FourierComponent| . |CoercibleTo|) 64977) ((|FourierComponent| . |SetCategory|) T) ((|FourierComponent| . |BasicType|) T) ((|FourierComponent| . |Join|) T) ((|FourierComponent| . |Type|) T) ((|FourierComponent| . |OrderedType|) T) ((|FlexibleArray| . |OneDimensionalArrayAggregate|) 64961) ((|FlexibleArray| . |ShallowlyMutableAggregate|) 64945) ((|FlexibleArray| . |FiniteAggregate|) 64929) ((|FlexibleArray| . |Aggregate|) T) ((|FlexibleArray| . |Join|) T) ((|FlexibleArray| . |Type|) T) ((|FlexibleArray| . |BasicType|) 64839) ((|FlexibleArray| . |CoercibleTo|) 64713) ((|FlexibleArray| . |Evalable|) 64637) ((|FlexibleArray| . |InnerEvalable|) 64556) ((|FlexibleArray| . |Functorial|) 64540) ((|FlexibleArray| . |SetCategory|) 64477) ((|FlexibleArray| . |HomogeneousAggregate|) 64461) ((|FlexibleArray| . |LinearAggregate|) 64445) ((|FlexibleArray| . |EltableAggregate|) 64417) ((|FlexibleArray| . |Eltable|) 64346) ((|FlexibleArray| . |IndexedAggregate|) 64318) ((|FlexibleArray| . |ConvertibleTo|) 64254) ((|FlexibleArray| . |Collection|) 64238) ((|FlexibleArray| . |OrderedSet|) 64209) ((|FlexibleArray| . |OrderedType|) 64180) ((|FlexibleArray| . |FiniteLinearAggregate|) 64164) ((|FlexibleArray| . |ExtensibleLinearAggregate|) 64148) ((|FreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 64109) ((|FreeAbelianMonoid| . |CoercibleFrom|) 64093) ((|FreeAbelianMonoid| . |RetractableTo|) 64077) ((|FreeAbelianMonoid| . |AbelianMonoid|) T) ((|FreeAbelianMonoid| . |SetCategory|) T) ((|FreeAbelianMonoid| . |CoercibleTo|) 64051) ((|FreeAbelianMonoid| . |Type|) T) ((|FreeAbelianMonoid| . |Join|) T) ((|FreeAbelianMonoid| . |BasicType|) T) ((|FreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|FreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|FreeAbelianGroup| . |AbelianGroup|) T) ((|FreeAbelianGroup| . |LeftLinearSet|) 64028) ((|FreeAbelianGroup| . |AbelianMonoid|) T) ((|FreeAbelianGroup| . |SetCategory|) T) ((|FreeAbelianGroup| . |CoercibleTo|) 64002) ((|FreeAbelianGroup| . |Type|) T) ((|FreeAbelianGroup| . |Join|) T) ((|FreeAbelianGroup| . |BasicType|) T) ((|FreeAbelianGroup| . |AbelianSemiGroup|) T) ((|FreeAbelianGroup| . |CancellationAbelianMonoid|) T) ((|FreeAbelianGroup| . |Module|) 63979) ((|FreeAbelianGroup| . |LinearSet|) 63956) ((|FreeAbelianGroup| . |LeftModule|) 63933) ((|FreeAbelianGroup| . |RightModule|) 63910) ((|FreeAbelianGroup| . |RightLinearSet|) 63887) ((|FreeAbelianGroup| . |BiModule|) 63857) ((|FreeAbelianGroup| . |FreeAbelianMonoidCategory|) 63829) ((|FreeAbelianGroup| . |CoercibleFrom|) 63813) ((|FreeAbelianGroup| . |RetractableTo|) 63797) ((|FreeAbelianGroup| . |OrderedSet|) 63768) ((|FreeAbelianGroup| . |OrderedType|) 63739) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 63723) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialRing|) 63658) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialDomain|) 63587) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialSpace|) 63522) ((|ExponentialOfUnivariatePuiseuxSeries| . |Eltable|) 63469) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 63331) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 63191) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 63053) ((|ExponentialOfUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 62986) ((|ExponentialOfUnivariatePuiseuxSeries| . |Algebra|) 62774) ((|ExponentialOfUnivariatePuiseuxSeries| . |BiModule|) 62542) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightLinearSet|) 62324) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightModule|) 62106) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftLinearSet|) 61955) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftModule|) 61824) ((|ExponentialOfUnivariatePuiseuxSeries| . |LinearSet|) 61612) ((|ExponentialOfUnivariatePuiseuxSeries| . |Module|) 61400) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleFrom|) 61168) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 61128) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicZero|) 61091) ((|ExponentialOfUnivariatePuiseuxSeries| . |Functorial|) 61075) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 61034) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 60993) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 60942) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 60891) ((|ExponentialOfUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 60840) ((|ExponentialOfUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 60789) ((|ExponentialOfUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 60738) ((|ExponentialOfUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 60687) ((|ExponentialOfUnivariatePuiseuxSeries| . |RadicalCategory|) 60636) ((|ExponentialOfUnivariatePuiseuxSeries| . |DivisionRing|) 60612) ((|ExponentialOfUnivariatePuiseuxSeries| . |EntireRing|) 60551) ((|ExponentialOfUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |BasicType|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Join|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Type|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleTo|) 60525) ((|ExponentialOfUnivariatePuiseuxSeries| . |SetCategory|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Ring|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Monoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiRing|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Rng|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |EuclideanDomain|) 60501) ((|ExponentialOfUnivariatePuiseuxSeries| . |GcdDomain|) 60477) ((|ExponentialOfUnivariatePuiseuxSeries| . |CommutativeRing|) 60383) ((|ExponentialOfUnivariatePuiseuxSeries| . |IntegralDomain|) 60322) ((|ExponentialOfUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 60298) ((|ExponentialOfUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 60274) ((|ExponentialOfUnivariatePuiseuxSeries| . |Field|) 60250) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedSet|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedType|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianSemiGroup|) T) ((|Expression| . |FunctionSpace|) 60234) ((|Expression| . |CoercibleFrom|) 59584) ((|Expression| . |RetractableTo|) 59088) ((|Expression| . |ConvertibleTo|) 58866) ((|Expression| . |Patternable|) 58850) ((|Expression| . |PartialDifferentialSpace|) 58812) ((|Expression| . |PartialDifferentialDomain|) 58772) ((|Expression| . |PartialDifferentialRing|) 58734) ((|Expression| . |Group|) 58710) ((|Expression| . |FullyRetractableTo|) 58694) ((|Expression| . |PatternMatchable|) 58575) ((|Expression| . |FullyPatternMatchable|) 58559) ((|Expression| . |LinearlyExplicitRingOver|) 58431) ((|Expression| . |LeftModule|) 58035) ((|Expression| . |FullyLinearlyExplicitRingOver|) 58003) ((|Expression| . |DivisionRing|) 57970) ((|Expression| . |BiModule|) 57818) ((|Expression| . |RightLinearSet|) 57680) ((|Expression| . |RightModule|) 57542) ((|Expression| . |EntireRing|) 57509) ((|Expression| . |Module|) 57371) ((|Expression| . |LinearSet|) 57233) ((|Expression| . |LeftLinearSet|) 56722) ((|Expression| . |Algebra|) 56584) ((|Expression| . |EuclideanDomain|) 56551) ((|Expression| . |GcdDomain|) 56518) ((|Expression| . |CommutativeRing|) 56485) ((|Expression| . |IntegralDomain|) 56452) ((|Expression| . |PrincipalIdealDomain|) 56419) ((|Expression| . |UniqueFactorizationDomain|) 56386) ((|Expression| . |Field|) 56353) ((|Expression| . |Evalable|) 56340) ((|Expression| . |InnerEvalable|) 56302) ((|Expression| . |ExpressionSpace|) T) ((|Expression| . |CharacteristicZero|) 56265) ((|Expression| . |CharacteristicNonZero|) 56225) ((|Expression| . |Ring|) 56057) ((|Expression| . |Monoid|) 55839) ((|Expression| . |SemiRing|) 55671) ((|Expression| . |SemiGroup|) 55453) ((|Expression| . |Rng|) 55285) ((|Expression| . |CancellationAbelianMonoid|) 55087) ((|Expression| . |AbelianSemiGroup|) 54855) ((|Expression| . |BasicType|) T) ((|Expression| . |Join|) T) ((|Expression| . |Type|) T) ((|Expression| . |CoercibleTo|) 54829) ((|Expression| . |SetCategory|) T) ((|Expression| . |AbelianMonoid|) 54597) ((|Expression| . |AbelianGroup|) 54399) ((|Expression| . |AlgebraicallyClosedFunctionSpace|) 54357) ((|Expression| . |RadicalCategory|) 54324) ((|Expression| . |AlgebraicallyClosedField|) 54291) ((|Expression| . |TranscendentalFunctionCategory|) 54258) ((|Expression| . |TrigonometricFunctionCategory|) 54225) ((|Expression| . |HyperbolicFunctionCategory|) 54192) ((|Expression| . |ElementaryFunctionCategory|) 54159) ((|Expression| . |ArcTrigonometricFunctionCategory|) 54126) ((|Expression| . |ArcHyperbolicFunctionCategory|) 54093) ((|Expression| . |CombinatorialOpsCategory|) 54060) ((|Expression| . |CombinatorialFunctionCategory|) 54027) ((|Expression| . |LiouvillianFunctionCategory|) 53994) ((|Expression| . |PrimitiveFunctionCategory|) 53961) ((|Expression| . |SpecialFunctionCategory|) 53928) ((|ExponentialExpansion| . |QuotientFieldCategory|) 53843) ((|ExponentialExpansion| . |StepThrough|) NIL) ((|ExponentialExpansion| . |RetractableTo|) 53707) ((|ExponentialExpansion| . |CoercibleFrom|) 53508) ((|ExponentialExpansion| . |ConvertibleTo|) NIL) ((|ExponentialExpansion| . |RealConstant|) NIL) ((|ExponentialExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|ExponentialExpansion| . |Patternable|) 53423) ((|ExponentialExpansion| . |OrderedRing|) NIL) ((|ExponentialExpansion| . |OrderedCancellationAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedAbelianSemiGroup|) NIL) ((|ExponentialExpansion| . |OrderedType|) NIL) ((|ExponentialExpansion| . |OrderedSet|) NIL) ((|ExponentialExpansion| . |OrderedAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedAbelianGroup|) NIL) ((|ExponentialExpansion| . |OrderedIntegralDomain|) NIL) ((|ExponentialExpansion| . |PatternMatchable|) NIL) ((|ExponentialExpansion| . |FullyPatternMatchable|) 53338) ((|ExponentialExpansion| . |LinearlyExplicitRingOver|) 53253) ((|ExponentialExpansion| . |LeftModule|) 53125) ((|ExponentialExpansion| . |FullyLinearlyExplicitRingOver|) 53040) ((|ExponentialExpansion| . |Eltable|) 52924) ((|ExponentialExpansion| . |Evalable|) 52813) ((|ExponentialExpansion| . |InnerEvalable|) 52636) ((|ExponentialExpansion| . |Functorial|) 52551) ((|ExponentialExpansion| . |FullyEvalableOver|) 52466) ((|ExponentialExpansion| . |DivisionRing|) T) ((|ExponentialExpansion| . |BiModule|) 52322) ((|ExponentialExpansion| . |RightLinearSet|) 52194) ((|ExponentialExpansion| . |RightModule|) 52066) ((|ExponentialExpansion| . |EntireRing|) T) ((|ExponentialExpansion| . |Module|) 51938) ((|ExponentialExpansion| . |LinearSet|) 51810) ((|ExponentialExpansion| . |LeftLinearSet|) 51662) ((|ExponentialExpansion| . |Algebra|) 51534) ((|ExponentialExpansion| . |EuclideanDomain|) T) ((|ExponentialExpansion| . |GcdDomain|) T) ((|ExponentialExpansion| . |CommutativeRing|) T) ((|ExponentialExpansion| . |IntegralDomain|) T) ((|ExponentialExpansion| . |PrincipalIdealDomain|) T) ((|ExponentialExpansion| . |UniqueFactorizationDomain|) T) ((|ExponentialExpansion| . |Field|) T) ((|ExponentialExpansion| . |DifferentialRing|) NIL) ((|ExponentialExpansion| . |DifferentialDomain|) NIL) ((|ExponentialExpansion| . |DifferentialSpace|) NIL) ((|ExponentialExpansion| . |DifferentialSpaceExtension|) 51449) ((|ExponentialExpansion| . |PartialDifferentialDomain|) NIL) ((|ExponentialExpansion| . |PartialDifferentialSpace|) NIL) ((|ExponentialExpansion| . |PartialDifferentialRing|) NIL) ((|ExponentialExpansion| . |DifferentialExtension|) 51364) ((|ExponentialExpansion| . |CharacteristicZero|) 51258) ((|ExponentialExpansion| . |CharacteristicNonZero|) 51149) ((|ExponentialExpansion| . |CancellationAbelianMonoid|) T) ((|ExponentialExpansion| . |AbelianSemiGroup|) T) ((|ExponentialExpansion| . |BasicType|) T) ((|ExponentialExpansion| . |Join|) T) ((|ExponentialExpansion| . |Type|) T) ((|ExponentialExpansion| . |CoercibleTo|) 51123) ((|ExponentialExpansion| . |SetCategory|) T) ((|ExponentialExpansion| . |AbelianMonoid|) T) ((|ExponentialExpansion| . |AbelianGroup|) T) ((|ExponentialExpansion| . |Ring|) T) ((|ExponentialExpansion| . |Monoid|) T) ((|ExponentialExpansion| . |SemiRing|) T) ((|ExponentialExpansion| . |SemiGroup|) T) ((|ExponentialExpansion| . |Rng|) T) ((|ExitAst| . |SpadSyntaxCategory|) T) ((|ExitAst| . |HomotopicTo|) 51101) ((|ExitAst| . |CoercibleTo|) 51056) ((|ExitAst| . |CoercibleFrom|) 51034) ((|ExitAst| . |SetCategory|) T) ((|ExitAst| . |Type|) T) ((|ExitAst| . |Join|) T) ((|ExitAst| . |BasicType|) T) ((|ExitAst| . |AbstractSyntaxCategory|) T) ((|Exit| . |SetCategory|) T) ((|Exit| . |CoercibleTo|) 51008) ((|Exit| . |Type|) T) ((|Exit| . |Join|) T) ((|Exit| . |BasicType|) T) ((|EqTable| . |TableAggregate|) 50987) ((|EqTable| . |Dictionary|) 50929) ((|EqTable| . |BagAggregate|) 50871) ((|EqTable| . |ShallowlyMutableAggregate|) 50800) ((|EqTable| . |Collection|) 50742) ((|EqTable| . |ConvertibleTo|) NIL) ((|EqTable| . |DictionaryOperations|) 50684) ((|EqTable| . |IndexedAggregate|) 50663) ((|EqTable| . |Evalable|) 50423) ((|EqTable| . |InnerEvalable|) 50171) ((|EqTable| . |Functorial|) 50100) ((|EqTable| . |HomogeneousAggregate|) 50029) ((|EqTable| . |Eltable|) 50008) ((|EqTable| . |EltableAggregate|) 49987) ((|EqTable| . |KeyedDictionary|) 49966) ((|EqTable| . |SetCategory|) T) ((|EqTable| . |CoercibleTo|) 49940) ((|EqTable| . |BasicType|) T) ((|EqTable| . |Type|) T) ((|EqTable| . |Join|) T) ((|EqTable| . |Aggregate|) T) ((|EqTable| . |FiniteAggregate|) 49882) ((|Equation| . |Functorial|) 49866) ((|Equation| . |Join|) T) ((|Equation| . |Type|) T) ((|Equation| . |InnerEvalable|) 49805) ((|Equation| . |SetCategory|) 49502) ((|Equation| . |CoercibleTo|) 49137) ((|Equation| . |BasicType|) 48834) ((|Equation| . |AbelianSemiGroup|) 48634) ((|Equation| . |AbelianGroup|) 48468) ((|Equation| . |LeftLinearSet|) 48113) ((|Equation| . |AbelianMonoid|) 47947) ((|Equation| . |CancellationAbelianMonoid|) 47781) ((|Equation| . |SemiGroup|) 47627) ((|Equation| . |Monoid|) 47500) ((|Equation| . |Group|) 47476) ((|Equation| . |Ring|) 47396) ((|Equation| . |SemiRing|) 47316) ((|Equation| . |Rng|) 47236) ((|Equation| . |LeftModule|) 47060) ((|Equation| . |CoercibleFrom|) 46964) ((|Equation| . |BiModule|) 46866) ((|Equation| . |RightLinearSet|) 46773) ((|Equation| . |RightModule|) 46680) ((|Equation| . |Module|) 46609) ((|Equation| . |LinearSet|) 46538) ((|Equation| . |PartialDifferentialRing|) 46472) ((|Equation| . |PartialDifferentialDomain|) 46406) ((|Equation| . |PartialDifferentialSpace|) 46342) ((|Equation| . |VectorSpace|) 46309) ((|Environment| . |CoercibleTo|) 46283) ((|EuclideanModularRing| . |EuclideanDomain|) T) ((|EuclideanModularRing| . |GcdDomain|) T) ((|EuclideanModularRing| . |Algebra|) 46270) ((|EuclideanModularRing| . |CoercibleFrom|) 46237) ((|EuclideanModularRing| . |Rng|) T) ((|EuclideanModularRing| . |SemiGroup|) T) ((|EuclideanModularRing| . |SemiRing|) T) ((|EuclideanModularRing| . |Monoid|) T) ((|EuclideanModularRing| . |Ring|) T) ((|EuclideanModularRing| . |BiModule|) 46222) ((|EuclideanModularRing| . |RightLinearSet|) 46209) ((|EuclideanModularRing| . |RightModule|) 46196) ((|EuclideanModularRing| . |AbelianGroup|) T) ((|EuclideanModularRing| . |LeftLinearSet|) 46163) ((|EuclideanModularRing| . |AbelianMonoid|) T) ((|EuclideanModularRing| . |SetCategory|) T) ((|EuclideanModularRing| . |CoercibleTo|) 46137) ((|EuclideanModularRing| . |Type|) T) ((|EuclideanModularRing| . |Join|) T) ((|EuclideanModularRing| . |BasicType|) T) ((|EuclideanModularRing| . |AbelianSemiGroup|) T) ((|EuclideanModularRing| . |CancellationAbelianMonoid|) T) ((|EuclideanModularRing| . |LeftModule|) 46124) ((|EuclideanModularRing| . |LinearSet|) 46111) ((|EuclideanModularRing| . |Module|) 46098) ((|EuclideanModularRing| . |CommutativeRing|) T) ((|EuclideanModularRing| . |EntireRing|) T) ((|EuclideanModularRing| . |IntegralDomain|) T) ((|EuclideanModularRing| . |PrincipalIdealDomain|) T) ((|EuclideanModularRing| . |Eltable|) 46077) ((|Elaboration| . |CoercibleTo|) 46051) ((|ElaboratedExpression| . |CoercibleTo|) 46025) ((|ExtAlgBasis| . |OrderedSet|) T) ((|ExtAlgBasis| . |CoercibleTo|) 45999) ((|ExtAlgBasis| . |SetCategory|) T) ((|ExtAlgBasis| . |BasicType|) T) ((|ExtAlgBasis| . |Join|) T) ((|ExtAlgBasis| . |Type|) T) ((|ExtAlgBasis| . |OrderedType|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialPolynomialCategory|) 45947) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleFrom|) 45579) ((|DifferentialSparseMultivariatePolynomial| . |RetractableTo|) 45346) ((|DifferentialSparseMultivariatePolynomial| . |ConvertibleTo|) 44953) ((|DifferentialSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 44911) ((|DifferentialSparseMultivariatePolynomial| . |FullyRetractableTo|) 44895) ((|DifferentialSparseMultivariatePolynomial| . |Algebra|) 44658) ((|DifferentialSparseMultivariatePolynomial| . |BiModule|) 44401) ((|DifferentialSparseMultivariatePolynomial| . |RightLinearSet|) 44158) ((|DifferentialSparseMultivariatePolynomial| . |RightModule|) 43915) ((|DifferentialSparseMultivariatePolynomial| . |LeftLinearSet|) 43792) ((|DifferentialSparseMultivariatePolynomial| . |LeftModule|) 43621) ((|DifferentialSparseMultivariatePolynomial| . |LinearSet|) 43384) ((|DifferentialSparseMultivariatePolynomial| . |Module|) 43147) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicNonZero|) 43107) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicZero|) 43070) ((|DifferentialSparseMultivariatePolynomial| . |CommutativeRing|) 42923) ((|DifferentialSparseMultivariatePolynomial| . |Functorial|) 42907) ((|DifferentialSparseMultivariatePolynomial| . |IntegralDomain|) 42793) ((|DifferentialSparseMultivariatePolynomial| . |EntireRing|) 42679) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoidRing|) 42637) ((|DifferentialSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 42621) ((|DifferentialSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 42537) ((|DifferentialSparseMultivariatePolynomial| . |GcdDomain|) 42455) ((|DifferentialSparseMultivariatePolynomial| . |InnerEvalable|) 42326) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialRing|) 42245) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 42102) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 41963) ((|DifferentialSparseMultivariatePolynomial| . |PatternMatchable|) 41742) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 41692) ((|DifferentialSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 41642) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialCategory|) 41595) ((|DifferentialSparseMultivariatePolynomial| . |Evalable|) 41582) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialRing|) 41547) ((|DifferentialSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |BasicType|) T) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleTo|) 41521) ((|DifferentialSparseMultivariatePolynomial| . |SetCategory|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |Rng|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiRing|) T) ((|DifferentialSparseMultivariatePolynomial| . |Monoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |Ring|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialDomain|) 41440) ((|DifferentialSparseMultivariatePolynomial| . |Join|) T) ((|DifferentialSparseMultivariatePolynomial| . |Type|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpace|) 41365) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpaceExtension|) 41349) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialExtension|) 41333) ((|DrawOption| . |SetCategory|) T) ((|DrawOption| . |CoercibleTo|) 41307) ((|DrawOption| . |Type|) T) ((|DrawOption| . |Join|) T) ((|DrawOption| . |BasicType|) T) ((|DirectProductModule| . |DirectProductCategory|) 41286) ((|DirectProductModule| . |VectorSpace|) 41253) ((|DirectProductModule| . |OrderedCancellationAbelianMonoid|) 41211) ((|DirectProductModule| . |OrderedAbelianSemiGroup|) 41169) ((|DirectProductModule| . |OrderedType|) 41094) ((|DirectProductModule| . |OrderedSet|) 41019) ((|DirectProductModule| . |OrderedAbelianMonoid|) 40977) ((|DirectProductModule| . |OrderedAbelianMonoidSup|) 40935) ((|DirectProductModule| . |Module|) 40864) ((|DirectProductModule| . |LinearSet|) 40769) ((|DirectProductModule| . |EltableAggregate|) 40741) ((|DirectProductModule| . |Eltable|) 40713) ((|DirectProductModule| . |IndexedAggregate|) 40685) ((|DirectProductModule| . |RetractableTo|) 40436) ((|DirectProductModule| . |CoercibleFrom|) 40160) ((|DirectProductModule| . |FullyRetractableTo|) 40121) ((|DirectProductModule| . |LinearlyExplicitRingOver|) 39993) ((|DirectProductModule| . |LeftModule|) 39765) ((|DirectProductModule| . |FullyLinearlyExplicitRingOver|) 39733) ((|DirectProductModule| . |HomogeneousAggregate|) 39717) ((|DirectProductModule| . |Functorial|) 39701) ((|DirectProductModule| . |InnerEvalable|) 39620) ((|DirectProductModule| . |Evalable|) 39544) ((|DirectProductModule| . |Aggregate|) T) ((|DirectProductModule| . |FiniteAggregate|) 39528) ((|DirectProductModule| . |Finite|) 39503) ((|DirectProductModule| . |DifferentialRing|) 39440) ((|DirectProductModule| . |LeftLinearSet|) 39264) ((|DirectProductModule| . |Rng|) 39241) ((|DirectProductModule| . |SemiGroup|) 39218) ((|DirectProductModule| . |SemiRing|) 39195) ((|DirectProductModule| . |Monoid|) 39172) ((|DirectProductModule| . |Ring|) 39149) ((|DirectProductModule| . |DifferentialDomain|) 39012) ((|DirectProductModule| . |DifferentialSpace|) 38881) ((|DirectProductModule| . |DifferentialSpaceExtension|) 38849) ((|DirectProductModule| . |PartialDifferentialDomain|) 38665) ((|DirectProductModule| . |PartialDifferentialSpace|) 38483) ((|DirectProductModule| . |PartialDifferentialRing|) 38387) ((|DirectProductModule| . |DifferentialExtension|) 38355) ((|DirectProductModule| . |CoercibleTo|) 38305) ((|DirectProductModule| . |RightModule|) 38212) ((|DirectProductModule| . |RightLinearSet|) 38095) ((|DirectProductModule| . |BiModule|) 37997) ((|DirectProductModule| . |CancellationAbelianMonoid|) T) ((|DirectProductModule| . |AbelianSemiGroup|) T) ((|DirectProductModule| . |BasicType|) T) ((|DirectProductModule| . |Join|) T) ((|DirectProductModule| . |Type|) T) ((|DirectProductModule| . |SetCategory|) T) ((|DirectProductModule| . |AbelianMonoid|) T) ((|DirectProductModule| . |AbelianGroup|) T) ((|DirectProductMatrixModule| . |DirectProductCategory|) 37976) ((|DirectProductMatrixModule| . |VectorSpace|) 37943) ((|DirectProductMatrixModule| . |OrderedCancellationAbelianMonoid|) 37901) ((|DirectProductMatrixModule| . |OrderedAbelianSemiGroup|) 37859) ((|DirectProductMatrixModule| . |OrderedType|) 37784) ((|DirectProductMatrixModule| . |OrderedSet|) 37709) ((|DirectProductMatrixModule| . |OrderedAbelianMonoid|) 37667) ((|DirectProductMatrixModule| . |OrderedAbelianMonoidSup|) 37625) ((|DirectProductMatrixModule| . |Module|) 37554) ((|DirectProductMatrixModule| . |LinearSet|) 37459) ((|DirectProductMatrixModule| . |EltableAggregate|) 37431) ((|DirectProductMatrixModule| . |Eltable|) 37403) ((|DirectProductMatrixModule| . |IndexedAggregate|) 37375) ((|DirectProductMatrixModule| . |RetractableTo|) 37126) ((|DirectProductMatrixModule| . |CoercibleFrom|) 36850) ((|DirectProductMatrixModule| . |FullyRetractableTo|) 36811) ((|DirectProductMatrixModule| . |LinearlyExplicitRingOver|) 36683) ((|DirectProductMatrixModule| . |LeftModule|) 36442) ((|DirectProductMatrixModule| . |FullyLinearlyExplicitRingOver|) 36410) ((|DirectProductMatrixModule| . |HomogeneousAggregate|) 36394) ((|DirectProductMatrixModule| . |Functorial|) 36378) ((|DirectProductMatrixModule| . |InnerEvalable|) 36297) ((|DirectProductMatrixModule| . |Evalable|) 36221) ((|DirectProductMatrixModule| . |Aggregate|) T) ((|DirectProductMatrixModule| . |FiniteAggregate|) 36205) ((|DirectProductMatrixModule| . |Finite|) 36180) ((|DirectProductMatrixModule| . |DifferentialRing|) 36117) ((|DirectProductMatrixModule| . |LeftLinearSet|) 35928) ((|DirectProductMatrixModule| . |Rng|) 35905) ((|DirectProductMatrixModule| . |SemiGroup|) 35882) ((|DirectProductMatrixModule| . |SemiRing|) 35859) ((|DirectProductMatrixModule| . |Monoid|) 35836) ((|DirectProductMatrixModule| . |Ring|) 35813) ((|DirectProductMatrixModule| . |DifferentialDomain|) 35676) ((|DirectProductMatrixModule| . |DifferentialSpace|) 35545) ((|DirectProductMatrixModule| . |DifferentialSpaceExtension|) 35513) ((|DirectProductMatrixModule| . |PartialDifferentialDomain|) 35329) ((|DirectProductMatrixModule| . |PartialDifferentialSpace|) 35147) ((|DirectProductMatrixModule| . |PartialDifferentialRing|) 35051) ((|DirectProductMatrixModule| . |DifferentialExtension|) 35019) ((|DirectProductMatrixModule| . |CoercibleTo|) 34969) ((|DirectProductMatrixModule| . |RightModule|) 34876) ((|DirectProductMatrixModule| . |RightLinearSet|) 34759) ((|DirectProductMatrixModule| . |BiModule|) 34661) ((|DirectProductMatrixModule| . |CancellationAbelianMonoid|) T) ((|DirectProductMatrixModule| . |AbelianSemiGroup|) T) ((|DirectProductMatrixModule| . |BasicType|) T) ((|DirectProductMatrixModule| . |Join|) T) ((|DirectProductMatrixModule| . |Type|) T) ((|DirectProductMatrixModule| . |SetCategory|) T) ((|DirectProductMatrixModule| . |AbelianMonoid|) T) ((|DirectProductMatrixModule| . |AbelianGroup|) T) ((|DomainTemplate| . |SetCategory|) T) ((|DomainTemplate| . |CoercibleTo|) 34635) ((|DomainTemplate| . |Type|) T) ((|DomainTemplate| . |Join|) T) ((|DomainTemplate| . |BasicType|) T) ((|DomainTemplate| . |Eltable|) 34590) ((|DomainConstructor| . |ConstructorCategory|) T) ((|DomainConstructor| . |SetCategory|) T) ((|DomainConstructor| . |CoercibleTo|) 34540) ((|DomainConstructor| . |Type|) T) ((|DomainConstructor| . |Join|) T) ((|DomainConstructor| . |BasicType|) T) ((|DomainConstructor| . |OperatorCategory|) 34514) ((|Domain| . |SetCategory|) T) ((|Domain| . |CoercibleTo|) 34488) ((|Domain| . |Type|) T) ((|Domain| . |Join|) T) ((|Domain| . |BasicType|) T) ((|DistributedMultivariatePolynomial| . |PolynomialCategory|) 34391) ((|DistributedMultivariatePolynomial| . |CoercibleFrom|) 34063) ((|DistributedMultivariatePolynomial| . |RetractableTo|) 33870) ((|DistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 33820) ((|DistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 33770) ((|DistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|DistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 33730) ((|DistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 33688) ((|DistributedMultivariatePolynomial| . |PartialDifferentialRing|) 33648) ((|DistributedMultivariatePolynomial| . |InnerEvalable|) 33574) ((|DistributedMultivariatePolynomial| . |GcdDomain|) 33492) ((|DistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 33408) ((|DistributedMultivariatePolynomial| . |LeftModule|) 33237) ((|DistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 33221) ((|DistributedMultivariatePolynomial| . |AbelianMonoidRing|) 33153) ((|DistributedMultivariatePolynomial| . |Algebra|) 32916) ((|DistributedMultivariatePolynomial| . |LinearSet|) 32679) ((|DistributedMultivariatePolynomial| . |Module|) 32442) ((|DistributedMultivariatePolynomial| . |EntireRing|) 32328) ((|DistributedMultivariatePolynomial| . |IntegralDomain|) 32214) ((|DistributedMultivariatePolynomial| . |Functorial|) 32198) ((|DistributedMultivariatePolynomial| . |BiModule|) 31941) ((|DistributedMultivariatePolynomial| . |RightLinearSet|) 31698) ((|DistributedMultivariatePolynomial| . |RightModule|) 31455) ((|DistributedMultivariatePolynomial| . |CommutativeRing|) 31308) ((|DistributedMultivariatePolynomial| . |CharacteristicZero|) 31271) ((|DistributedMultivariatePolynomial| . |CharacteristicNonZero|) 31231) ((|DistributedMultivariatePolynomial| . |LeftLinearSet|) 31108) ((|DistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DistributedMultivariatePolynomial| . |BasicType|) T) ((|DistributedMultivariatePolynomial| . |Join|) T) ((|DistributedMultivariatePolynomial| . |Type|) T) ((|DistributedMultivariatePolynomial| . |CoercibleTo|) 31082) ((|DistributedMultivariatePolynomial| . |SetCategory|) T) ((|DistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|DistributedMultivariatePolynomial| . |Ring|) T) ((|DistributedMultivariatePolynomial| . |Monoid|) T) ((|DistributedMultivariatePolynomial| . |SemiRing|) T) ((|DistributedMultivariatePolynomial| . |SemiGroup|) T) ((|DistributedMultivariatePolynomial| . |Rng|) T) ((|DistributedMultivariatePolynomial| . |FullyRetractableTo|) 31066) ((|DistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 30998) ((|DistributedMultivariatePolynomial| . |Evalable|) 30985) ((|DistributedMultivariatePolynomial| . |ConvertibleTo|) 30763) ((|DataList| . |ListAggregate|) 30747) ((|DataList| . |UnaryRecursiveAggregate|) 30731) ((|DataList| . |RecursiveAggregate|) 30715) ((|DataList| . |StreamAggregate|) 30699) ((|DataList| . |FiniteAggregate|) 30683) ((|DataList| . |OrderedSet|) 30654) ((|DataList| . |OrderedType|) 30625) ((|DataList| . |FiniteLinearAggregate|) 30609) ((|DataList| . |LinearAggregate|) 30593) ((|DataList| . |EltableAggregate|) 30565) ((|DataList| . |Eltable|) 30494) ((|DataList| . |IndexedAggregate|) 30466) ((|DataList| . |ConvertibleTo|) 30402) ((|DataList| . |HomogeneousAggregate|) 30386) ((|DataList| . |SetCategory|) 30323) ((|DataList| . |Functorial|) 30307) ((|DataList| . |InnerEvalable|) 30226) ((|DataList| . |Evalable|) 30150) ((|DataList| . |CoercibleTo|) 30002) ((|DataList| . |BasicType|) 29912) ((|DataList| . |Type|) T) ((|DataList| . |Join|) T) ((|DataList| . |Aggregate|) T) ((|DataList| . |Collection|) 29896) ((|DataList| . |ShallowlyMutableAggregate|) 29880) ((|DataList| . |ExtensibleLinearAggregate|) 29864) ((|DataList| . |HomotopicTo|) 29839) ((|DataList| . |CoercibleFrom|) 29814) ((|DirectProduct| . |DirectProductCategory|) 29793) ((|DirectProduct| . |VectorSpace|) 29760) ((|DirectProduct| . |OrderedCancellationAbelianMonoid|) 29718) ((|DirectProduct| . |OrderedAbelianSemiGroup|) 29676) ((|DirectProduct| . |OrderedType|) 29601) ((|DirectProduct| . |OrderedSet|) 29526) ((|DirectProduct| . |OrderedAbelianMonoid|) 29484) ((|DirectProduct| . |OrderedAbelianMonoidSup|) 29442) ((|DirectProduct| . |Module|) 29371) ((|DirectProduct| . |LinearSet|) 29276) ((|DirectProduct| . |EltableAggregate|) 29248) ((|DirectProduct| . |Eltable|) 29220) ((|DirectProduct| . |IndexedAggregate|) 29192) ((|DirectProduct| . |RetractableTo|) 28943) ((|DirectProduct| . |CoercibleFrom|) 28667) ((|DirectProduct| . |FullyRetractableTo|) 28628) ((|DirectProduct| . |LinearlyExplicitRingOver|) 28500) ((|DirectProduct| . |LeftModule|) 28285) ((|DirectProduct| . |FullyLinearlyExplicitRingOver|) 28253) ((|DirectProduct| . |HomogeneousAggregate|) 28237) ((|DirectProduct| . |Functorial|) 28221) ((|DirectProduct| . |InnerEvalable|) 28140) ((|DirectProduct| . |Evalable|) 28064) ((|DirectProduct| . |Aggregate|) T) ((|DirectProduct| . |FiniteAggregate|) 28048) ((|DirectProduct| . |Finite|) 28023) ((|DirectProduct| . |DifferentialRing|) 27960) ((|DirectProduct| . |LeftLinearSet|) 27690) ((|DirectProduct| . |Rng|) 27667) ((|DirectProduct| . |SemiGroup|) 27644) ((|DirectProduct| . |SemiRing|) 27621) ((|DirectProduct| . |Monoid|) 27598) ((|DirectProduct| . |Ring|) 27575) ((|DirectProduct| . |DifferentialDomain|) 27438) ((|DirectProduct| . |DifferentialSpace|) 27307) ((|DirectProduct| . |DifferentialSpaceExtension|) 27275) ((|DirectProduct| . |PartialDifferentialDomain|) 27091) ((|DirectProduct| . |PartialDifferentialSpace|) 26909) ((|DirectProduct| . |PartialDifferentialRing|) 26813) ((|DirectProduct| . |DifferentialExtension|) 26781) ((|DirectProduct| . |CoercibleTo|) 26326) ((|DirectProduct| . |RightModule|) 26233) ((|DirectProduct| . |RightLinearSet|) 26116) ((|DirectProduct| . |BiModule|) 26018) ((|DirectProduct| . |CancellationAbelianMonoid|) 25820) ((|DirectProduct| . |AbelianSemiGroup|) 25557) ((|DirectProduct| . |BasicType|) 25162) ((|DirectProduct| . |Join|) T) ((|DirectProduct| . |Type|) T) ((|DirectProduct| . |SetCategory|) 24794) ((|DirectProduct| . |AbelianMonoid|) 24565) ((|DirectProduct| . |AbelianGroup|) 24451) ((|DenavitHartenbergMatrix| . |MatrixCategory|) 24412) ((|DenavitHartenbergMatrix| . |FiniteAggregate|) 24396) ((|DenavitHartenbergMatrix| . |Aggregate|) T) ((|DenavitHartenbergMatrix| . |Join|) T) ((|DenavitHartenbergMatrix| . |Type|) T) ((|DenavitHartenbergMatrix| . |BasicType|) 24334) ((|DenavitHartenbergMatrix| . |CoercibleTo|) 24236) ((|DenavitHartenbergMatrix| . |Evalable|) 24160) ((|DenavitHartenbergMatrix| . |InnerEvalable|) 24079) ((|DenavitHartenbergMatrix| . |Functorial|) 24063) ((|DenavitHartenbergMatrix| . |SetCategory|) 24033) ((|DenavitHartenbergMatrix| . |HomogeneousAggregate|) 24017) ((|DenavitHartenbergMatrix| . |ShallowlyMutableAggregate|) 24001) ((|DenavitHartenbergMatrix| . |TwoDimensionalArrayCategory|) 23962) ((|DoubleFloat| . |FloatingPointSystem|) T) ((|DoubleFloat| . |CharacteristicZero|) T) ((|DoubleFloat| . |CoercibleFrom|) 23896) ((|DoubleFloat| . |LeftModule|) 23850) ((|DoubleFloat| . |LeftLinearSet|) 23784) ((|DoubleFloat| . |CancellationAbelianMonoid|) T) ((|DoubleFloat| . |AbelianSemiGroup|) T) ((|DoubleFloat| . |BasicType|) T) ((|DoubleFloat| . |Join|) T) ((|DoubleFloat| . |Type|) T) ((|DoubleFloat| . |CoercibleTo|) 23758) ((|DoubleFloat| . |SetCategory|) T) ((|DoubleFloat| . |AbelianMonoid|) T) ((|DoubleFloat| . |AbelianGroup|) T) ((|DoubleFloat| . |Rng|) T) ((|DoubleFloat| . |SemiGroup|) T) ((|DoubleFloat| . |SemiRing|) T) ((|DoubleFloat| . |Monoid|) T) ((|DoubleFloat| . |Ring|) T) ((|DoubleFloat| . |ConvertibleTo|) 23661) ((|DoubleFloat| . |Field|) T) ((|DoubleFloat| . |UniqueFactorizationDomain|) T) ((|DoubleFloat| . |PrincipalIdealDomain|) T) ((|DoubleFloat| . |IntegralDomain|) T) ((|DoubleFloat| . |CommutativeRing|) T) ((|DoubleFloat| . |Module|) 23615) ((|DoubleFloat| . |LinearSet|) 23569) ((|DoubleFloat| . |Algebra|) 23523) ((|DoubleFloat| . |GcdDomain|) T) ((|DoubleFloat| . |EuclideanDomain|) T) ((|DoubleFloat| . |BiModule|) 23468) ((|DoubleFloat| . |RightLinearSet|) 23422) ((|DoubleFloat| . |RightModule|) 23376) ((|DoubleFloat| . |EntireRing|) T) ((|DoubleFloat| . |DivisionRing|) T) ((|DoubleFloat| . |OrderedRing|) T) ((|DoubleFloat| . |OrderedCancellationAbelianMonoid|) T) ((|DoubleFloat| . |OrderedAbelianSemiGroup|) T) ((|DoubleFloat| . |OrderedType|) T) ((|DoubleFloat| . |OrderedSet|) T) ((|DoubleFloat| . |OrderedAbelianMonoid|) T) ((|DoubleFloat| . |OrderedAbelianGroup|) T) ((|DoubleFloat| . |PatternMatchable|) 23355) ((|DoubleFloat| . |RadicalCategory|) T) ((|DoubleFloat| . |RealConstant|) T) ((|DoubleFloat| . |RetractableTo|) 23304) ((|DoubleFloat| . |RealNumberSystem|) T) ((|DoubleFloat| . |DifferentialRing|) T) ((|DoubleFloat| . |DifferentialDomain|) 23291) ((|DoubleFloat| . |DifferentialSpace|) T) ((|DoubleFloat| . |TranscendentalFunctionCategory|) T) ((|DoubleFloat| . |TrigonometricFunctionCategory|) T) ((|DoubleFloat| . |HyperbolicFunctionCategory|) T) ((|DoubleFloat| . |ElementaryFunctionCategory|) T) ((|DoubleFloat| . |ArcTrigonometricFunctionCategory|) T) ((|DoubleFloat| . |ArcHyperbolicFunctionCategory|) T) ((|DeRhamComplex| . |LeftAlgebra|) 23260) ((|DeRhamComplex| . |CoercibleFrom|) 23209) ((|DeRhamComplex| . |LeftModule|) 23168) ((|DeRhamComplex| . |LeftLinearSet|) 23107) ((|DeRhamComplex| . |Rng|) T) ((|DeRhamComplex| . |SemiGroup|) T) ((|DeRhamComplex| . |SemiRing|) T) ((|DeRhamComplex| . |Monoid|) T) ((|DeRhamComplex| . |Ring|) T) ((|DeRhamComplex| . |AbelianGroup|) T) ((|DeRhamComplex| . |AbelianMonoid|) T) ((|DeRhamComplex| . |SetCategory|) T) ((|DeRhamComplex| . |CoercibleTo|) 23081) ((|DeRhamComplex| . |Type|) T) ((|DeRhamComplex| . |Join|) T) ((|DeRhamComplex| . |BasicType|) T) ((|DeRhamComplex| . |AbelianSemiGroup|) T) ((|DeRhamComplex| . |CancellationAbelianMonoid|) T) ((|DeRhamComplex| . |RetractableTo|) 23050) ((|DeRhamComplex| . |Functorial|) 23019) ((|Dequeue| . |DequeueAggregate|) 23003) ((|Dequeue| . |StackAggregate|) 22987) ((|Dequeue| . |BagAggregate|) 22971) ((|Dequeue| . |ShallowlyMutableAggregate|) 22955) ((|Dequeue| . |Aggregate|) T) ((|Dequeue| . |Join|) T) ((|Dequeue| . |Type|) T) ((|Dequeue| . |BasicType|) 22893) ((|Dequeue| . |CoercibleTo|) 22795) ((|Dequeue| . |Evalable|) 22719) ((|Dequeue| . |InnerEvalable|) 22638) ((|Dequeue| . |Functorial|) 22622) ((|Dequeue| . |SetCategory|) 22592) ((|Dequeue| . |HomogeneousAggregate|) 22576) ((|Dequeue| . |FiniteAggregate|) 22560) ((|Dequeue| . |QueueAggregate|) 22544) ((|DefinitionAst| . |SpadSyntaxCategory|) T) ((|DefinitionAst| . |HomotopicTo|) 22522) ((|DefinitionAst| . |CoercibleTo|) 22477) ((|DefinitionAst| . |CoercibleFrom|) 22455) ((|DefinitionAst| . |SetCategory|) T) ((|DefinitionAst| . |Type|) T) ((|DefinitionAst| . |Join|) T) ((|DefinitionAst| . |BasicType|) T) ((|DefinitionAst| . |AbstractSyntaxCategory|) T) ((|DecimalExpansion| . |QuotientFieldCategory|) 22432) ((|DecimalExpansion| . |StepThrough|) T) ((|DecimalExpansion| . |CoercibleFrom|) 22366) ((|DecimalExpansion| . |RetractableTo|) 22310) ((|DecimalExpansion| . |ConvertibleTo|) 22211) ((|DecimalExpansion| . |RealConstant|) T) ((|DecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|DecimalExpansion| . |Patternable|) 22188) ((|DecimalExpansion| . |OrderedRing|) T) ((|DecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|DecimalExpansion| . |OrderedType|) T) ((|DecimalExpansion| . |OrderedSet|) T) ((|DecimalExpansion| . |OrderedAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedAbelianGroup|) T) ((|DecimalExpansion| . |OrderedIntegralDomain|) T) ((|DecimalExpansion| . |PatternMatchable|) 22165) ((|DecimalExpansion| . |FullyPatternMatchable|) 22142) ((|DecimalExpansion| . |LinearlyExplicitRingOver|) 22119) ((|DecimalExpansion| . |FullyLinearlyExplicitRingOver|) 22096) ((|DecimalExpansion| . |Eltable|) NIL) ((|DecimalExpansion| . |Evalable|) NIL) ((|DecimalExpansion| . |InnerEvalable|) NIL) ((|DecimalExpansion| . |Functorial|) 22073) ((|DecimalExpansion| . |FullyEvalableOver|) 22050) ((|DecimalExpansion| . |DivisionRing|) T) ((|DecimalExpansion| . |BiModule|) 21968) ((|DecimalExpansion| . |RightLinearSet|) 21902) ((|DecimalExpansion| . |RightModule|) 21836) ((|DecimalExpansion| . |EntireRing|) T) ((|DecimalExpansion| . |Module|) 21770) ((|DecimalExpansion| . |LinearSet|) 21704) ((|DecimalExpansion| . |LeftModule|) 21638) ((|DecimalExpansion| . |LeftLinearSet|) 21572) ((|DecimalExpansion| . |Algebra|) 21506) ((|DecimalExpansion| . |EuclideanDomain|) T) ((|DecimalExpansion| . |GcdDomain|) T) ((|DecimalExpansion| . |CommutativeRing|) T) ((|DecimalExpansion| . |IntegralDomain|) T) ((|DecimalExpansion| . |PrincipalIdealDomain|) T) ((|DecimalExpansion| . |UniqueFactorizationDomain|) T) ((|DecimalExpansion| . |Field|) T) ((|DecimalExpansion| . |DifferentialRing|) T) ((|DecimalExpansion| . |DifferentialDomain|) 21493) ((|DecimalExpansion| . |DifferentialSpace|) T) ((|DecimalExpansion| . |DifferentialSpaceExtension|) 21470) ((|DecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|DecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|DecimalExpansion| . |PartialDifferentialRing|) NIL) ((|DecimalExpansion| . |DifferentialExtension|) 21447) ((|DecimalExpansion| . |CharacteristicZero|) T) ((|DecimalExpansion| . |CharacteristicNonZero|) NIL) ((|DecimalExpansion| . |CancellationAbelianMonoid|) T) ((|DecimalExpansion| . |AbelianSemiGroup|) T) ((|DecimalExpansion| . |BasicType|) T) ((|DecimalExpansion| . |Join|) T) ((|DecimalExpansion| . |Type|) T) ((|DecimalExpansion| . |CoercibleTo|) 21358) ((|DecimalExpansion| . |SetCategory|) T) ((|DecimalExpansion| . |AbelianMonoid|) T) ((|DecimalExpansion| . |AbelianGroup|) T) ((|DecimalExpansion| . |Ring|) T) ((|DecimalExpansion| . |Monoid|) T) ((|DecimalExpansion| . |SemiRing|) T) ((|DecimalExpansion| . |SemiGroup|) T) ((|DecimalExpansion| . |Rng|) T) ((|DualBasis| . |OrderedFinite|) T) ((|DualBasis| . |OrderedType|) T) ((|DualBasis| . |OrderedSet|) T) ((|DualBasis| . |SetCategory|) T) ((|DualBasis| . |CoercibleTo|) 21332) ((|DualBasis| . |Type|) T) ((|DualBasis| . |Join|) T) ((|DualBasis| . |BasicType|) T) ((|DualBasis| . |Finite|) T) ((|Database| . |SetCategory|) T) ((|Database| . |CoercibleTo|) 21306) ((|Database| . |Type|) T) ((|Database| . |Join|) T) ((|Database| . |BasicType|) T) ((|Database| . |CoercibleFrom|) 21281) ((|DataArray| . |SetCategory|) T) ((|DataArray| . |CoercibleTo|) 21255) ((|DataArray| . |Type|) T) ((|DataArray| . |Join|) T) ((|DataArray| . |BasicType|) T) ((|ConstructorKind| . |SetCategory|) T) ((|ConstructorKind| . |CoercibleTo|) 21229) ((|ConstructorKind| . |Type|) T) ((|ConstructorKind| . |Join|) T) ((|ConstructorKind| . |BasicType|) T) ((|ConstructorCall| . |SetCategory|) T) ((|ConstructorCall| . |CoercibleTo|) 21203) ((|ConstructorCall| . |Type|) T) ((|ConstructorCall| . |Join|) T) ((|ConstructorCall| . |BasicType|) T) ((|Constructor| . |ConstructorCategory|) T) ((|Constructor| . |SetCategory|) T) ((|Constructor| . |CoercibleTo|) 21177) ((|Constructor| . |Type|) T) ((|Constructor| . |Join|) T) ((|Constructor| . |BasicType|) T) ((|Constructor| . |OperatorCategory|) 21151) ((|CoerceAst| . |SpadSyntaxCategory|) T) ((|CoerceAst| . |HomotopicTo|) 21129) ((|CoerceAst| . |CoercibleTo|) 21084) ((|CoerceAst| . |CoercibleFrom|) 21062) ((|CoerceAst| . |SetCategory|) T) ((|CoerceAst| . |Type|) T) ((|CoerceAst| . |Join|) T) ((|CoerceAst| . |BasicType|) T) ((|CoerceAst| . |AbstractSyntaxCategory|) T) ((|Contour| . |CoercibleTo|) 21036) ((|ContinuedFraction| . |Algebra|) 20951) ((|ContinuedFraction| . |CoercibleFrom|) 20846) ((|ContinuedFraction| . |LeftModule|) 20761) ((|ContinuedFraction| . |LeftLinearSet|) 20656) ((|ContinuedFraction| . |Rng|) T) ((|ContinuedFraction| . |SemiGroup|) T) ((|ContinuedFraction| . |SemiRing|) T) ((|ContinuedFraction| . |Monoid|) T) ((|ContinuedFraction| . |Ring|) T) ((|ContinuedFraction| . |BiModule|) 20550) ((|ContinuedFraction| . |RightLinearSet|) 20465) ((|ContinuedFraction| . |RightModule|) 20380) ((|ContinuedFraction| . |AbelianGroup|) T) ((|ContinuedFraction| . |AbelianMonoid|) T) ((|ContinuedFraction| . |SetCategory|) T) ((|ContinuedFraction| . |CoercibleTo|) 20354) ((|ContinuedFraction| . |Type|) T) ((|ContinuedFraction| . |Join|) T) ((|ContinuedFraction| . |BasicType|) T) ((|ContinuedFraction| . |AbelianSemiGroup|) T) ((|ContinuedFraction| . |CancellationAbelianMonoid|) T) ((|ContinuedFraction| . |LinearSet|) 20269) ((|ContinuedFraction| . |Module|) 20184) ((|ContinuedFraction| . |Field|) T) ((|ContinuedFraction| . |UniqueFactorizationDomain|) T) ((|ContinuedFraction| . |PrincipalIdealDomain|) T) ((|ContinuedFraction| . |IntegralDomain|) T) ((|ContinuedFraction| . |CommutativeRing|) T) ((|ContinuedFraction| . |GcdDomain|) T) ((|ContinuedFraction| . |EuclideanDomain|) T) ((|ContinuedFraction| . |EntireRing|) T) ((|ContinuedFraction| . |DivisionRing|) T) ((|SubSpaceComponentProperty| . |SetCategory|) T) ((|SubSpaceComponentProperty| . |CoercibleTo|) 20158) ((|SubSpaceComponentProperty| . |Type|) T) ((|SubSpaceComponentProperty| . |Join|) T) ((|SubSpaceComponentProperty| . |BasicType|) T) ((|Complex| . |ComplexCategory|) 20142) ((|Complex| . |ArcHyperbolicFunctionCategory|) 20093) ((|Complex| . |ArcTrigonometricFunctionCategory|) 20044) ((|Complex| . |ElementaryFunctionCategory|) 19995) ((|Complex| . |HyperbolicFunctionCategory|) 19946) ((|Complex| . |TrigonometricFunctionCategory|) 19897) ((|Complex| . |TranscendentalFunctionCategory|) 19848) ((|Complex| . |RadicalCategory|) 19760) ((|Complex| . |PolynomialFactorizationExplicit|) 19671) ((|Complex| . |ConvertibleTo|) 19295) ((|Complex| . |Patternable|) 19279) ((|Complex| . |Finite|) 19212) ((|Complex| . |FiniteFieldCategory|) 19174) ((|Complex| . |StepThrough|) 19136) ((|Complex| . |FieldOfPrimeCharacteristic|) 19098) ((|Complex| . |FramedAlgebra|) 19046) ((|Complex| . |Algebra|) 18804) ((|Complex| . |BiModule|) 18672) ((|Complex| . |RightLinearSet|) 18554) ((|Complex| . |RightModule|) 18436) ((|Complex| . |LinearSet|) 18194) ((|Complex| . |Module|) 17952) ((|Complex| . |FiniteRankAlgebra|) 17900) ((|Complex| . |MonogenicAlgebra|) 17848) ((|Complex| . |RetractableTo|) 17692) ((|Complex| . |CoercibleFrom|) 17374) ((|Complex| . |FullyRetractableTo|) 17358) ((|Complex| . |PatternMatchable|) 17239) ((|Complex| . |FullyPatternMatchable|) 17223) ((|Complex| . |LinearlyExplicitRingOver|) 17139) ((|Complex| . |LeftModule|) 16953) ((|Complex| . |LeftLinearSet|) 16815) ((|Complex| . |FullyLinearlyExplicitRingOver|) 16799) ((|Complex| . |Eltable|) 16752) ((|Complex| . |Evalable|) 16711) ((|Complex| . |InnerEvalable|) 16600) ((|Complex| . |Functorial|) 16584) ((|Complex| . |FullyEvalableOver|) 16568) ((|Complex| . |DivisionRing|) 16502) ((|Complex| . |UniqueFactorizationDomain|) 16348) ((|Complex| . |Field|) 16282) ((|Complex| . |PrincipalIdealDomain|) 16183) ((|Complex| . |IntegralDomain|) 16052) ((|Complex| . |EntireRing|) 15921) ((|Complex| . |GcdDomain|) 15822) ((|Complex| . |EuclideanDomain|) 15723) ((|Complex| . |DifferentialRing|) 15646) ((|Complex| . |DifferentialDomain|) 15528) ((|Complex| . |DifferentialSpace|) 15416) ((|Complex| . |DifferentialSpaceExtension|) 15400) ((|Complex| . |PartialDifferentialDomain|) 15272) ((|Complex| . |PartialDifferentialSpace|) 15146) ((|Complex| . |PartialDifferentialRing|) 15078) ((|Complex| . |DifferentialExtension|) 15062) ((|Complex| . |CommutativeRing|) T) ((|Complex| . |CharacteristicZero|) 15025) ((|Complex| . |Ring|) T) ((|Complex| . |Monoid|) T) ((|Complex| . |SemiRing|) T) ((|Complex| . |SemiGroup|) T) ((|Complex| . |Rng|) T) ((|Complex| . |AbelianGroup|) T) ((|Complex| . |AbelianMonoid|) T) ((|Complex| . |SetCategory|) T) ((|Complex| . |CoercibleTo|) 14999) ((|Complex| . |Type|) T) ((|Complex| . |Join|) T) ((|Complex| . |BasicType|) T) ((|Complex| . |AbelianSemiGroup|) T) ((|Complex| . |CancellationAbelianMonoid|) T) ((|Complex| . |CharacteristicNonZero|) 14917) ((|CommutativeOperation| . |CommutativeOperatorCategory|) 14901) ((|CommutativeOperation| . |MappingCategory|) 14875) ((|CommutativeOperation| . |Type|) T) ((|CommutativeOperation| . |BinaryOperatorCategory|) 14859) ((|CommutativeOperation| . |CoercibleTo|) 14823) ((|CommaAst| . |SpadSyntaxCategory|) T) ((|CommaAst| . |HomotopicTo|) 14801) ((|CommaAst| . |CoercibleTo|) 14756) ((|CommaAst| . |CoercibleFrom|) 14734) ((|CommaAst| . |SetCategory|) T) ((|CommaAst| . |Type|) T) ((|CommaAst| . |Join|) T) ((|CommaAst| . |BasicType|) T) ((|CommaAst| . |AbstractSyntaxCategory|) T) ((|Commutator| . |SetCategory|) T) ((|Commutator| . |CoercibleTo|) 14708) ((|Commutator| . |Type|) T) ((|Commutator| . |Join|) T) ((|Commutator| . |BasicType|) T) ((|Color| . |AbelianSemiGroup|) T) ((|Color| . |BasicType|) T) ((|Color| . |Join|) T) ((|Color| . |Type|) T) ((|Color| . |CoercibleTo|) 14682) ((|Color| . |SetCategory|) T) ((|ColonAst| . |SpadSyntaxCategory|) T) ((|ColonAst| . |HomotopicTo|) 14660) ((|ColonAst| . |CoercibleTo|) 14615) ((|ColonAst| . |CoercibleFrom|) 14593) ((|ColonAst| . |SetCategory|) T) ((|ColonAst| . |Type|) T) ((|ColonAst| . |Join|) T) ((|ColonAst| . |BasicType|) T) ((|ColonAst| . |AbstractSyntaxCategory|) T) ((|CollectAst| . |SpadSyntaxCategory|) T) ((|CollectAst| . |HomotopicTo|) 14571) ((|CollectAst| . |CoercibleTo|) 14526) ((|CollectAst| . |CoercibleFrom|) 14504) ((|CollectAst| . |SetCategory|) T) ((|CollectAst| . |Type|) T) ((|CollectAst| . |Join|) T) ((|CollectAst| . |BasicType|) T) ((|CollectAst| . |AbstractSyntaxCategory|) T) ((|CliffordAlgebra| . |Ring|) T) ((|CliffordAlgebra| . |Monoid|) T) ((|CliffordAlgebra| . |SemiRing|) T) ((|CliffordAlgebra| . |SemiGroup|) T) ((|CliffordAlgebra| . |Rng|) T) ((|CliffordAlgebra| . |AbelianGroup|) T) ((|CliffordAlgebra| . |LeftLinearSet|) 14458) ((|CliffordAlgebra| . |AbelianMonoid|) T) ((|CliffordAlgebra| . |SetCategory|) T) ((|CliffordAlgebra| . |CoercibleTo|) 14432) ((|CliffordAlgebra| . |Type|) T) ((|CliffordAlgebra| . |Join|) T) ((|CliffordAlgebra| . |BasicType|) T) ((|CliffordAlgebra| . |AbelianSemiGroup|) T) ((|CliffordAlgebra| . |CancellationAbelianMonoid|) T) ((|CliffordAlgebra| . |LeftModule|) 14406) ((|CliffordAlgebra| . |CoercibleFrom|) 14370) ((|CliffordAlgebra| . |Algebra|) 14354) ((|CliffordAlgebra| . |BiModule|) 14333) ((|CliffordAlgebra| . |RightLinearSet|) 14317) ((|CliffordAlgebra| . |RightModule|) 14301) ((|CliffordAlgebra| . |LinearSet|) 14285) ((|CliffordAlgebra| . |Module|) 14269) ((|CliffordAlgebra| . |VectorSpace|) 14253) ((|Character| . |OrderedFinite|) T) ((|Character| . |OrderedType|) T) ((|Character| . |OrderedSet|) T) ((|Character| . |SetCategory|) T) ((|Character| . |CoercibleTo|) 14227) ((|Character| . |Type|) T) ((|Character| . |Join|) T) ((|Character| . |BasicType|) T) ((|Character| . |Finite|) T) ((|CharacterClass| . |SetCategory|) T) ((|CharacterClass| . |CoercibleTo|) 14201) ((|CharacterClass| . |Type|) T) ((|CharacterClass| . |Join|) T) ((|CharacterClass| . |BasicType|) T) ((|CharacterClass| . |ConvertibleTo|) 14148) ((|CharacterClass| . |FiniteSetAggregate|) 14123) ((|CharacterClass| . |SetAggregate|) 14098) ((|CharacterClass| . |FiniteAggregate|) 14073) ((|CharacterClass| . |Finite|) T) ((|CharacterClass| . |DictionaryOperations|) 14048) ((|CharacterClass| . |Collection|) 14023) ((|CharacterClass| . |HomogeneousAggregate|) 13998) ((|CharacterClass| . |Functorial|) 13973) ((|CharacterClass| . |InnerEvalable|) NIL) ((|CharacterClass| . |Evalable|) NIL) ((|CharacterClass| . |Aggregate|) T) ((|CharacterClass| . |ShallowlyMutableAggregate|) 13948) ((|CharacterClass| . |BagAggregate|) 13923) ((|CharacterClass| . |Dictionary|) 13898) ((|Category| . |CoercibleTo|) 13872) ((|CategoryConstructor| . |ConstructorCategory|) T) ((|CategoryConstructor| . |SetCategory|) T) ((|CategoryConstructor| . |CoercibleTo|) 13822) ((|CategoryConstructor| . |Type|) T) ((|CategoryConstructor| . |Join|) T) ((|CategoryConstructor| . |BasicType|) T) ((|CategoryConstructor| . |OperatorCategory|) 13796) ((|CategoryAst| . |SpadSyntaxCategory|) T) ((|CategoryAst| . |HomotopicTo|) 13774) ((|CategoryAst| . |CoercibleTo|) 13729) ((|CategoryAst| . |CoercibleFrom|) 13707) ((|CategoryAst| . |SetCategory|) T) ((|CategoryAst| . |Type|) T) ((|CategoryAst| . |Join|) T) ((|CategoryAst| . |BasicType|) T) ((|CategoryAst| . |AbstractSyntaxCategory|) T) ((|CaseAst| . |SpadSyntaxCategory|) T) ((|CaseAst| . |HomotopicTo|) 13685) ((|CaseAst| . |CoercibleTo|) 13640) ((|CaseAst| . |CoercibleFrom|) 13618) ((|CaseAst| . |SetCategory|) T) ((|CaseAst| . |Type|) T) ((|CaseAst| . |Join|) T) ((|CaseAst| . |BasicType|) T) ((|CaseAst| . |AbstractSyntaxCategory|) T) ((|CartesianTensor| . |GradedAlgebra|) 13579) ((|CartesianTensor| . |CoercibleFrom|) 13451) ((|CartesianTensor| . |RetractableTo|) 13435) ((|CartesianTensor| . |SetCategory|) T) ((|CartesianTensor| . |CoercibleTo|) 13409) ((|CartesianTensor| . |Type|) T) ((|CartesianTensor| . |Join|) T) ((|CartesianTensor| . |BasicType|) T) ((|CartesianTensor| . |GradedModule|) 13343) ((|CartesianTensor| . |Eltable|) 13315) ((|CardinalNumber| . |OrderedSet|) T) ((|CardinalNumber| . |CoercibleTo|) 13289) ((|CardinalNumber| . |SetCategory|) T) ((|CardinalNumber| . |BasicType|) T) ((|CardinalNumber| . |Join|) T) ((|CardinalNumber| . |Type|) T) ((|CardinalNumber| . |OrderedType|) T) ((|CardinalNumber| . |AbelianMonoid|) T) ((|CardinalNumber| . |AbelianSemiGroup|) T) ((|CardinalNumber| . |Monoid|) T) ((|CardinalNumber| . |SemiGroup|) T) ((|CardinalNumber| . |RetractableTo|) 13255) ((|CardinalNumber| . |CoercibleFrom|) 13221) ((|CapsuleAst| . |SpadSyntaxCategory|) T) ((|CapsuleAst| . |HomotopicTo|) 13199) ((|CapsuleAst| . |CoercibleTo|) 13154) ((|CapsuleAst| . |CoercibleFrom|) 13132) ((|CapsuleAst| . |SetCategory|) T) ((|CapsuleAst| . |Type|) T) ((|CapsuleAst| . |Join|) T) ((|CapsuleAst| . |BasicType|) T) ((|CapsuleAst| . |AbstractSyntaxCategory|) T) ((|ByteOrder| . |SetCategory|) T) ((|ByteOrder| . |CoercibleTo|) 13106) ((|ByteOrder| . |Type|) T) ((|ByteOrder| . |Join|) T) ((|ByteOrder| . |BasicType|) T) ((|ByteBuffer| . |OneDimensionalArrayAggregate|) 13086) ((|ByteBuffer| . |ShallowlyMutableAggregate|) 13066) ((|ByteBuffer| . |FiniteAggregate|) 13046) ((|ByteBuffer| . |Aggregate|) T) ((|ByteBuffer| . |Join|) T) ((|ByteBuffer| . |Type|) T) ((|ByteBuffer| . |BasicType|) T) ((|ByteBuffer| . |CoercibleTo|) 12965) ((|ByteBuffer| . |Evalable|) NIL) ((|ByteBuffer| . |InnerEvalable|) NIL) ((|ByteBuffer| . |Functorial|) 12945) ((|ByteBuffer| . |SetCategory|) T) ((|ByteBuffer| . |HomogeneousAggregate|) 12925) ((|ByteBuffer| . |LinearAggregate|) 12905) ((|ByteBuffer| . |EltableAggregate|) 12873) ((|ByteBuffer| . |Eltable|) 12798) ((|ByteBuffer| . |IndexedAggregate|) 12766) ((|ByteBuffer| . |ConvertibleTo|) NIL) ((|ByteBuffer| . |Collection|) 12746) ((|ByteBuffer| . |OrderedSet|) T) ((|ByteBuffer| . |OrderedType|) T) ((|ByteBuffer| . |FiniteLinearAggregate|) 12726) ((|Byte| . |OrderedFinite|) T) ((|Byte| . |OrderedType|) T) ((|Byte| . |OrderedSet|) T) ((|Byte| . |SetCategory|) T) ((|Byte| . |CoercibleTo|) 12700) ((|Byte| . |Type|) T) ((|Byte| . |Join|) T) ((|Byte| . |BasicType|) T) ((|Byte| . |Finite|) T) ((|Byte| . |Logic|) T) ((|BinaryTree| . |BinaryTreeCategory|) 12684) ((|BinaryTree| . |ShallowlyMutableAggregate|) 12668) ((|BinaryTree| . |FiniteAggregate|) 12652) ((|BinaryTree| . |RecursiveAggregate|) 12636) ((|BinaryTree| . |Aggregate|) T) ((|BinaryTree| . |Join|) T) ((|BinaryTree| . |Type|) T) ((|BinaryTree| . |BasicType|) 12574) ((|BinaryTree| . |CoercibleTo|) 12476) ((|BinaryTree| . |Evalable|) 12400) ((|BinaryTree| . |InnerEvalable|) 12319) ((|BinaryTree| . |Functorial|) 12303) ((|BinaryTree| . |SetCategory|) 12273) ((|BinaryTree| . |HomogeneousAggregate|) 12257) ((|BinaryTree| . |BinaryRecursiveAggregate|) 12241) ((|BinaryTournament| . |BinaryTreeCategory|) 12225) ((|BinaryTournament| . |ShallowlyMutableAggregate|) 12209) ((|BinaryTournament| . |FiniteAggregate|) 12193) ((|BinaryTournament| . |RecursiveAggregate|) 12177) ((|BinaryTournament| . |Aggregate|) T) ((|BinaryTournament| . |Join|) T) ((|BinaryTournament| . |Type|) T) ((|BinaryTournament| . |BasicType|) 12115) ((|BinaryTournament| . |CoercibleTo|) 12017) ((|BinaryTournament| . |Evalable|) 11941) ((|BinaryTournament| . |InnerEvalable|) 11860) ((|BinaryTournament| . |Functorial|) 11844) ((|BinaryTournament| . |SetCategory|) 11814) ((|BinaryTournament| . |HomogeneousAggregate|) 11798) ((|BinaryTournament| . |BinaryRecursiveAggregate|) 11782) ((|BinarySearchTree| . |BinaryTreeCategory|) 11766) ((|BinarySearchTree| . |ShallowlyMutableAggregate|) 11750) ((|BinarySearchTree| . |FiniteAggregate|) 11734) ((|BinarySearchTree| . |RecursiveAggregate|) 11718) ((|BinarySearchTree| . |Aggregate|) T) ((|BinarySearchTree| . |Join|) T) ((|BinarySearchTree| . |Type|) T) ((|BinarySearchTree| . |BasicType|) 11656) ((|BinarySearchTree| . |CoercibleTo|) 11558) ((|BinarySearchTree| . |Evalable|) 11482) ((|BinarySearchTree| . |InnerEvalable|) 11401) ((|BinarySearchTree| . |Functorial|) 11385) ((|BinarySearchTree| . |SetCategory|) 11355) ((|BinarySearchTree| . |HomogeneousAggregate|) 11339) ((|BinarySearchTree| . |BinaryRecursiveAggregate|) 11323) ((|BalancedPAdicRational| . |QuotientFieldCategory|) 11282) ((|BalancedPAdicRational| . |StepThrough|) NIL) ((|BalancedPAdicRational| . |RetractableTo|) 11241) ((|BalancedPAdicRational| . |CoercibleFrom|) 11137) ((|BalancedPAdicRational| . |ConvertibleTo|) NIL) ((|BalancedPAdicRational| . |RealConstant|) NIL) ((|BalancedPAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|BalancedPAdicRational| . |Patternable|) 11096) ((|BalancedPAdicRational| . |OrderedRing|) NIL) ((|BalancedPAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|BalancedPAdicRational| . |OrderedType|) NIL) ((|BalancedPAdicRational| . |OrderedSet|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianGroup|) NIL) ((|BalancedPAdicRational| . |OrderedIntegralDomain|) NIL) ((|BalancedPAdicRational| . |PatternMatchable|) NIL) ((|BalancedPAdicRational| . |FullyPatternMatchable|) 11055) ((|BalancedPAdicRational| . |LinearlyExplicitRingOver|) 11014) ((|BalancedPAdicRational| . |LeftModule|) 10930) ((|BalancedPAdicRational| . |FullyLinearlyExplicitRingOver|) 10889) ((|BalancedPAdicRational| . |Eltable|) 10817) ((|BalancedPAdicRational| . |Evalable|) 10750) ((|BalancedPAdicRational| . |InnerEvalable|) 10617) ((|BalancedPAdicRational| . |Functorial|) 10576) ((|BalancedPAdicRational| . |FullyEvalableOver|) 10535) ((|BalancedPAdicRational| . |DivisionRing|) T) ((|BalancedPAdicRational| . |BiModule|) 10435) ((|BalancedPAdicRational| . |RightLinearSet|) 10351) ((|BalancedPAdicRational| . |RightModule|) 10267) ((|BalancedPAdicRational| . |EntireRing|) T) ((|BalancedPAdicRational| . |Module|) 10183) ((|BalancedPAdicRational| . |LinearSet|) 10099) ((|BalancedPAdicRational| . |LeftLinearSet|) 9995) ((|BalancedPAdicRational| . |Algebra|) 9911) ((|BalancedPAdicRational| . |EuclideanDomain|) T) ((|BalancedPAdicRational| . |GcdDomain|) T) ((|BalancedPAdicRational| . |CommutativeRing|) T) ((|BalancedPAdicRational| . |IntegralDomain|) T) ((|BalancedPAdicRational| . |PrincipalIdealDomain|) T) ((|BalancedPAdicRational| . |UniqueFactorizationDomain|) T) ((|BalancedPAdicRational| . |Field|) T) ((|BalancedPAdicRational| . |DifferentialRing|) NIL) ((|BalancedPAdicRational| . |DifferentialDomain|) NIL) ((|BalancedPAdicRational| . |DifferentialSpace|) NIL) ((|BalancedPAdicRational| . |DifferentialSpaceExtension|) 9870) ((|BalancedPAdicRational| . |PartialDifferentialDomain|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialSpace|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialRing|) NIL) ((|BalancedPAdicRational| . |DifferentialExtension|) 9829) ((|BalancedPAdicRational| . |CharacteristicZero|) T) ((|BalancedPAdicRational| . |CharacteristicNonZero|) NIL) ((|BalancedPAdicRational| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicRational| . |AbelianSemiGroup|) T) ((|BalancedPAdicRational| . |BasicType|) T) ((|BalancedPAdicRational| . |Join|) T) ((|BalancedPAdicRational| . |Type|) T) ((|BalancedPAdicRational| . |CoercibleTo|) 9803) ((|BalancedPAdicRational| . |SetCategory|) T) ((|BalancedPAdicRational| . |AbelianMonoid|) T) ((|BalancedPAdicRational| . |AbelianGroup|) T) ((|BalancedPAdicRational| . |Ring|) T) ((|BalancedPAdicRational| . |Monoid|) T) ((|BalancedPAdicRational| . |SemiRing|) T) ((|BalancedPAdicRational| . |SemiGroup|) T) ((|BalancedPAdicRational| . |Rng|) T) ((|BalancedPAdicInteger| . |PAdicIntegerCategory|) 9787) ((|BalancedPAdicInteger| . |PrincipalIdealDomain|) T) ((|BalancedPAdicInteger| . |IntegralDomain|) T) ((|BalancedPAdicInteger| . |EntireRing|) T) ((|BalancedPAdicInteger| . |CommutativeRing|) T) ((|BalancedPAdicInteger| . |CoercibleFrom|) 9754) ((|BalancedPAdicInteger| . |Module|) 9741) ((|BalancedPAdicInteger| . |LinearSet|) 9728) ((|BalancedPAdicInteger| . |RightModule|) 9715) ((|BalancedPAdicInteger| . |RightLinearSet|) 9702) ((|BalancedPAdicInteger| . |BiModule|) 9687) ((|BalancedPAdicInteger| . |Algebra|) 9674) ((|BalancedPAdicInteger| . |GcdDomain|) T) ((|BalancedPAdicInteger| . |EuclideanDomain|) T) ((|BalancedPAdicInteger| . |Ring|) T) ((|BalancedPAdicInteger| . |Monoid|) T) ((|BalancedPAdicInteger| . |SemiRing|) T) ((|BalancedPAdicInteger| . |SemiGroup|) T) ((|BalancedPAdicInteger| . |Rng|) T) ((|BalancedPAdicInteger| . |AbelianGroup|) T) ((|BalancedPAdicInteger| . |LeftLinearSet|) 9641) ((|BalancedPAdicInteger| . |AbelianMonoid|) T) ((|BalancedPAdicInteger| . |SetCategory|) T) ((|BalancedPAdicInteger| . |CoercibleTo|) 9615) ((|BalancedPAdicInteger| . |Type|) T) ((|BalancedPAdicInteger| . |Join|) T) ((|BalancedPAdicInteger| . |BasicType|) T) ((|BalancedPAdicInteger| . |AbelianSemiGroup|) T) ((|BalancedPAdicInteger| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicInteger| . |LeftModule|) 9602) ((|BalancedPAdicInteger| . |CharacteristicZero|) T) ((|BasicOperator| . |OrderedSet|) T) ((|BasicOperator| . |CoercibleTo|) 9576) ((|BasicOperator| . |SetCategory|) T) ((|BasicOperator| . |BasicType|) T) ((|BasicOperator| . |Join|) T) ((|BasicOperator| . |Type|) T) ((|BasicOperator| . |OrderedType|) T) ((|BasicOperator| . |OperatorCategory|) 9554) ((|Boolean| . |OrderedFinite|) T) ((|Boolean| . |OrderedType|) T) ((|Boolean| . |OrderedSet|) T) ((|Boolean| . |SetCategory|) T) ((|Boolean| . |CoercibleTo|) 9528) ((|Boolean| . |Type|) T) ((|Boolean| . |Join|) T) ((|Boolean| . |BasicType|) T) ((|Boolean| . |Finite|) T) ((|Boolean| . |PropositionalLogic|) T) ((|Boolean| . |Logic|) T) ((|Boolean| . |BooleanLogic|) T) ((|Boolean| . |ConvertibleTo|) 9503) ((|Bits| . |BitAggregate|) T) ((|Bits| . |FiniteLinearAggregate|) 9480) ((|Bits| . |OrderedType|) T) ((|Bits| . |OrderedSet|) T) ((|Bits| . |Collection|) 9457) ((|Bits| . |ConvertibleTo|) 9432) ((|Bits| . |Eltable|) 9354) ((|Bits| . |IndexedAggregate|) 9319) ((|Bits| . |EltableAggregate|) 9284) ((|Bits| . |LinearAggregate|) 9261) ((|Bits| . |HomogeneousAggregate|) 9238) ((|Bits| . |SetCategory|) T) ((|Bits| . |Functorial|) 9215) ((|Bits| . |InnerEvalable|) NIL) ((|Bits| . |Evalable|) NIL) ((|Bits| . |CoercibleTo|) 9189) ((|Bits| . |BasicType|) T) ((|Bits| . |Aggregate|) T) ((|Bits| . |FiniteAggregate|) 9166) ((|Bits| . |ShallowlyMutableAggregate|) 9143) ((|Bits| . |OneDimensionalArrayAggregate|) 9120) ((|Bits| . |Logic|) T) ((|Bits| . |Join|) T) ((|Bits| . |Type|) T) ((|Bits| . |BooleanLogic|) T) ((|BinaryOperation| . |BinaryOperatorCategory|) 9104) ((|BinaryOperation| . |Type|) T) ((|BinaryOperation| . |MappingCategory|) 9078) ((|BinaryOperation| . |SetCategory|) T) ((|BinaryOperation| . |CoercibleTo|) 9052) ((|BinaryOperation| . |Join|) T) ((|BinaryOperation| . |BasicType|) T) ((|Binding| . |CoercibleTo|) 9026) ((|BinaryExpansion| . |QuotientFieldCategory|) 9003) ((|BinaryExpansion| . |StepThrough|) T) ((|BinaryExpansion| . |CoercibleFrom|) 8937) ((|BinaryExpansion| . |RetractableTo|) 8881) ((|BinaryExpansion| . |ConvertibleTo|) 8782) ((|BinaryExpansion| . |RealConstant|) T) ((|BinaryExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|BinaryExpansion| . |Patternable|) 8759) ((|BinaryExpansion| . |OrderedRing|) T) ((|BinaryExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedAbelianSemiGroup|) T) ((|BinaryExpansion| . |OrderedType|) T) ((|BinaryExpansion| . |OrderedSet|) T) ((|BinaryExpansion| . |OrderedAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedAbelianGroup|) T) ((|BinaryExpansion| . |OrderedIntegralDomain|) T) ((|BinaryExpansion| . |PatternMatchable|) 8736) ((|BinaryExpansion| . |FullyPatternMatchable|) 8713) ((|BinaryExpansion| . |LinearlyExplicitRingOver|) 8690) ((|BinaryExpansion| . |FullyLinearlyExplicitRingOver|) 8667) ((|BinaryExpansion| . |Eltable|) NIL) ((|BinaryExpansion| . |Evalable|) NIL) ((|BinaryExpansion| . |InnerEvalable|) NIL) ((|BinaryExpansion| . |Functorial|) 8644) ((|BinaryExpansion| . |FullyEvalableOver|) 8621) ((|BinaryExpansion| . |DivisionRing|) T) ((|BinaryExpansion| . |BiModule|) 8539) ((|BinaryExpansion| . |RightLinearSet|) 8473) ((|BinaryExpansion| . |RightModule|) 8407) ((|BinaryExpansion| . |EntireRing|) T) ((|BinaryExpansion| . |Module|) 8341) ((|BinaryExpansion| . |LinearSet|) 8275) ((|BinaryExpansion| . |LeftModule|) 8209) ((|BinaryExpansion| . |LeftLinearSet|) 8143) ((|BinaryExpansion| . |Algebra|) 8077) ((|BinaryExpansion| . |EuclideanDomain|) T) ((|BinaryExpansion| . |GcdDomain|) T) ((|BinaryExpansion| . |CommutativeRing|) T) ((|BinaryExpansion| . |IntegralDomain|) T) ((|BinaryExpansion| . |PrincipalIdealDomain|) T) ((|BinaryExpansion| . |UniqueFactorizationDomain|) T) ((|BinaryExpansion| . |Field|) T) ((|BinaryExpansion| . |DifferentialRing|) T) ((|BinaryExpansion| . |DifferentialDomain|) 8064) ((|BinaryExpansion| . |DifferentialSpace|) T) ((|BinaryExpansion| . |DifferentialSpaceExtension|) 8041) ((|BinaryExpansion| . |PartialDifferentialDomain|) NIL) ((|BinaryExpansion| . |PartialDifferentialSpace|) NIL) ((|BinaryExpansion| . |PartialDifferentialRing|) NIL) ((|BinaryExpansion| . |DifferentialExtension|) 8018) ((|BinaryExpansion| . |CharacteristicZero|) T) ((|BinaryExpansion| . |CharacteristicNonZero|) NIL) ((|BinaryExpansion| . |CancellationAbelianMonoid|) T) ((|BinaryExpansion| . |AbelianSemiGroup|) T) ((|BinaryExpansion| . |BasicType|) T) ((|BinaryExpansion| . |Join|) T) ((|BinaryExpansion| . |Type|) T) ((|BinaryExpansion| . |CoercibleTo|) 7930) ((|BinaryExpansion| . |SetCategory|) T) ((|BinaryExpansion| . |AbelianMonoid|) T) ((|BinaryExpansion| . |AbelianGroup|) T) ((|BinaryExpansion| . |Ring|) T) ((|BinaryExpansion| . |Monoid|) T) ((|BinaryExpansion| . |SemiRing|) T) ((|BinaryExpansion| . |SemiGroup|) T) ((|BinaryExpansion| . |Rng|) T) ((|BalancedBinaryTree| . |BinaryTreeCategory|) 7914) ((|BalancedBinaryTree| . |ShallowlyMutableAggregate|) 7898) ((|BalancedBinaryTree| . |FiniteAggregate|) 7882) ((|BalancedBinaryTree| . |RecursiveAggregate|) 7866) ((|BalancedBinaryTree| . |Aggregate|) T) ((|BalancedBinaryTree| . |Join|) T) ((|BalancedBinaryTree| . |Type|) T) ((|BalancedBinaryTree| . |BasicType|) 7804) ((|BalancedBinaryTree| . |CoercibleTo|) 7706) ((|BalancedBinaryTree| . |Evalable|) 7630) ((|BalancedBinaryTree| . |InnerEvalable|) 7549) ((|BalancedBinaryTree| . |Functorial|) 7533) ((|BalancedBinaryTree| . |SetCategory|) 7503) ((|BalancedBinaryTree| . |HomogeneousAggregate|) 7487) ((|BalancedBinaryTree| . |BinaryRecursiveAggregate|) 7471) ((|Automorphism| . |Group|) T) ((|Automorphism| . |SemiGroup|) T) ((|Automorphism| . |BasicType|) T) ((|Automorphism| . |Join|) T) ((|Automorphism| . |Type|) T) ((|Automorphism| . |CoercibleTo|) 7445) ((|Automorphism| . |SetCategory|) T) ((|Automorphism| . |Monoid|) T) ((|Automorphism| . |Eltable|) 7424) ((|AttributeAst| . |SpadSyntaxCategory|) T) ((|AttributeAst| . |HomotopicTo|) 7402) ((|AttributeAst| . |CoercibleTo|) 7357) ((|AttributeAst| . |CoercibleFrom|) 7335) ((|AttributeAst| . |SetCategory|) T) ((|AttributeAst| . |Type|) T) ((|AttributeAst| . |Join|) T) ((|AttributeAst| . |BasicType|) T) ((|AttributeAst| . |AbstractSyntaxCategory|) T) ((|ArrayStack| . |StackAggregate|) 7319) ((|ArrayStack| . |FiniteAggregate|) 7303) ((|ArrayStack| . |HomogeneousAggregate|) 7287) ((|ArrayStack| . |SetCategory|) 7257) ((|ArrayStack| . |Functorial|) 7241) ((|ArrayStack| . |InnerEvalable|) 7160) ((|ArrayStack| . |Evalable|) 7084) ((|ArrayStack| . |CoercibleTo|) 6986) ((|ArrayStack| . |BasicType|) 6924) ((|ArrayStack| . |Type|) T) ((|ArrayStack| . |Join|) T) ((|ArrayStack| . |Aggregate|) T) ((|ArrayStack| . |ShallowlyMutableAggregate|) 6908) ((|ArrayStack| . |BagAggregate|) 6892) ((|TwoDimensionalArray| . |TwoDimensionalArrayCategory|) 6840) ((|TwoDimensionalArray| . |ShallowlyMutableAggregate|) 6824) ((|TwoDimensionalArray| . |HomogeneousAggregate|) 6808) ((|TwoDimensionalArray| . |SetCategory|) 6778) ((|TwoDimensionalArray| . |Functorial|) 6762) ((|TwoDimensionalArray| . |InnerEvalable|) 6681) ((|TwoDimensionalArray| . |Evalable|) 6605) ((|TwoDimensionalArray| . |CoercibleTo|) 6507) ((|TwoDimensionalArray| . |BasicType|) 6445) ((|TwoDimensionalArray| . |Type|) T) ((|TwoDimensionalArray| . |Join|) T) ((|TwoDimensionalArray| . |Aggregate|) T) ((|TwoDimensionalArray| . |FiniteAggregate|) 6429) ((|OneDimensionalArray| . |OneDimensionalArrayAggregate|) 6413) ((|OneDimensionalArray| . |ShallowlyMutableAggregate|) 6397) ((|OneDimensionalArray| . |FiniteAggregate|) 6381) ((|OneDimensionalArray| . |Aggregate|) T) ((|OneDimensionalArray| . |Join|) T) ((|OneDimensionalArray| . |Type|) T) ((|OneDimensionalArray| . |BasicType|) 6291) ((|OneDimensionalArray| . |CoercibleTo|) 6165) ((|OneDimensionalArray| . |Evalable|) 6089) ((|OneDimensionalArray| . |InnerEvalable|) 6008) ((|OneDimensionalArray| . |Functorial|) 5992) ((|OneDimensionalArray| . |SetCategory|) 5929) ((|OneDimensionalArray| . |HomogeneousAggregate|) 5913) ((|OneDimensionalArray| . |LinearAggregate|) 5897) ((|OneDimensionalArray| . |EltableAggregate|) 5869) ((|OneDimensionalArray| . |Eltable|) 5798) ((|OneDimensionalArray| . |IndexedAggregate|) 5770) ((|OneDimensionalArray| . |ConvertibleTo|) 5706) ((|OneDimensionalArray| . |Collection|) 5690) ((|OneDimensionalArray| . |OrderedSet|) 5661) ((|OneDimensionalArray| . |OrderedType|) 5632) ((|OneDimensionalArray| . |FiniteLinearAggregate|) 5616) ((|Arity| . |SetCategory|) T) ((|Arity| . |CoercibleTo|) 5590) ((|Arity| . |Type|) T) ((|Arity| . |Join|) T) ((|Arity| . |BasicType|) T) ((|Arity| . |RetractableTo|) 5556) ((|Arity| . |CoercibleFrom|) 5522) ((|Any| . |SetCategory|) T) ((|Any| . |CoercibleTo|) 5496) ((|Any| . |Type|) T) ((|Any| . |Join|) T) ((|Any| . |BasicType|) T) ((|AntiSymm| . |LeftAlgebra|) 5480) ((|AntiSymm| . |CoercibleFrom|) 5444) ((|AntiSymm| . |LeftModule|) 5418) ((|AntiSymm| . |LeftLinearSet|) 5372) ((|AntiSymm| . |Rng|) T) ((|AntiSymm| . |SemiGroup|) T) ((|AntiSymm| . |SemiRing|) T) ((|AntiSymm| . |Monoid|) T) ((|AntiSymm| . |Ring|) T) ((|AntiSymm| . |AbelianGroup|) T) ((|AntiSymm| . |AbelianMonoid|) T) ((|AntiSymm| . |SetCategory|) T) ((|AntiSymm| . |CoercibleTo|) 5346) ((|AntiSymm| . |Type|) T) ((|AntiSymm| . |Join|) T) ((|AntiSymm| . |BasicType|) T) ((|AntiSymm| . |AbelianSemiGroup|) T) ((|AntiSymm| . |CancellationAbelianMonoid|) T) ((|AntiSymm| . |RetractableTo|) 5330) ((|AntiSymm| . |Functorial|) 5314) ((|AnonymousFunction| . |SetCategory|) T) ((|AnonymousFunction| . |CoercibleTo|) 5288) ((|AnonymousFunction| . |Type|) T) ((|AnonymousFunction| . |Join|) T) ((|AnonymousFunction| . |BasicType|) T) ((|AlgebraicNumber| . |ExpressionSpace|) T) ((|AlgebraicNumber| . |BasicType|) T) ((|AlgebraicNumber| . |Join|) T) ((|AlgebraicNumber| . |Type|) T) ((|AlgebraicNumber| . |CoercibleTo|) 5262) ((|AlgebraicNumber| . |SetCategory|) T) ((|AlgebraicNumber| . |CoercibleFrom|) 5109) ((|AlgebraicNumber| . |RetractableTo|) 5037) ((|AlgebraicNumber| . |InnerEvalable|) 4999) ((|AlgebraicNumber| . |Evalable|) 4986) ((|AlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|AlgebraicNumber| . |RadicalCategory|) T) ((|AlgebraicNumber| . |DivisionRing|) T) ((|AlgebraicNumber| . |BiModule|) 4931) ((|AlgebraicNumber| . |RightLinearSet|) 4885) ((|AlgebraicNumber| . |RightModule|) 4839) ((|AlgebraicNumber| . |EntireRing|) T) ((|AlgebraicNumber| . |Module|) 4793) ((|AlgebraicNumber| . |LinearSet|) 4747) ((|AlgebraicNumber| . |LeftModule|) 4681) ((|AlgebraicNumber| . |LeftLinearSet|) 4615) ((|AlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|AlgebraicNumber| . |AbelianSemiGroup|) T) ((|AlgebraicNumber| . |AbelianMonoid|) T) ((|AlgebraicNumber| . |AbelianGroup|) T) ((|AlgebraicNumber| . |Ring|) T) ((|AlgebraicNumber| . |Monoid|) T) ((|AlgebraicNumber| . |SemiRing|) T) ((|AlgebraicNumber| . |SemiGroup|) T) ((|AlgebraicNumber| . |Rng|) T) ((|AlgebraicNumber| . |Algebra|) 4569) ((|AlgebraicNumber| . |EuclideanDomain|) T) ((|AlgebraicNumber| . |GcdDomain|) T) ((|AlgebraicNumber| . |CommutativeRing|) T) ((|AlgebraicNumber| . |IntegralDomain|) T) ((|AlgebraicNumber| . |PrincipalIdealDomain|) T) ((|AlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|AlgebraicNumber| . |Field|) T) ((|AlgebraicNumber| . |LinearlyExplicitRingOver|) 4518) ((|AlgebraicNumber| . |RealConstant|) T) ((|AlgebraicNumber| . |ConvertibleTo|) 4443) ((|AlgebraicNumber| . |CharacteristicZero|) T) ((|AlgebraicNumber| . |DifferentialRing|) T) ((|AlgebraicNumber| . |DifferentialDomain|) 4430) ((|AlgebraicNumber| . |DifferentialSpace|) T) ((|AssociationList| . |AssociationListAggregate|) 4409) ((|AssociationList| . |KeyedDictionary|) 4388) ((|AssociationList| . |EltableAggregate|) 4300) ((|AssociationList| . |Eltable|) 4169) ((|AssociationList| . |HomogeneousAggregate|) 4098) ((|AssociationList| . |Functorial|) 4027) ((|AssociationList| . |InnerEvalable|) 3775) ((|AssociationList| . |Evalable|) 3535) ((|AssociationList| . |IndexedAggregate|) 3447) ((|AssociationList| . |DictionaryOperations|) 3389) ((|AssociationList| . |BagAggregate|) 3331) ((|AssociationList| . |Dictionary|) 3273) ((|AssociationList| . |TableAggregate|) 3252) ((|AssociationList| . |ShallowlyMutableAggregate|) 3181) ((|AssociationList| . |ExtensibleLinearAggregate|) 3123) ((|AssociationList| . |Collection|) 3065) ((|AssociationList| . |Aggregate|) T) ((|AssociationList| . |Join|) T) ((|AssociationList| . |Type|) T) ((|AssociationList| . |BasicType|) T) ((|AssociationList| . |CoercibleTo|) 3039) ((|AssociationList| . |SetCategory|) T) ((|AssociationList| . |ConvertibleTo|) NIL) ((|AssociationList| . |LinearAggregate|) 2981) ((|AssociationList| . |FiniteLinearAggregate|) 2923) ((|AssociationList| . |OrderedType|) NIL) ((|AssociationList| . |OrderedSet|) NIL) ((|AssociationList| . |FiniteAggregate|) 2865) ((|AssociationList| . |StreamAggregate|) 2807) ((|AssociationList| . |RecursiveAggregate|) 2749) ((|AssociationList| . |UnaryRecursiveAggregate|) 2691) ((|AssociationList| . |ListAggregate|) 2633) ((|AlgebraGivenByStructuralConstants| . |FramedNonAssociativeAlgebra|) 2617) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeAlgebra|) 2601) ((|AlgebraGivenByStructuralConstants| . |Monad|) T) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeRng|) T) ((|AlgebraGivenByStructuralConstants| . |BiModule|) 2580) ((|AlgebraGivenByStructuralConstants| . |RightLinearSet|) 2564) ((|AlgebraGivenByStructuralConstants| . |RightModule|) 2548) ((|AlgebraGivenByStructuralConstants| . |AbelianGroup|) T) ((|AlgebraGivenByStructuralConstants| . |LeftLinearSet|) 2477) ((|AlgebraGivenByStructuralConstants| . |AbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |SetCategory|) T) ((|AlgebraGivenByStructuralConstants| . |CoercibleTo|) 2451) ((|AlgebraGivenByStructuralConstants| . |BasicType|) T) ((|AlgebraGivenByStructuralConstants| . |AbelianSemiGroup|) T) ((|AlgebraGivenByStructuralConstants| . |CancellationAbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |LeftModule|) 2400) ((|AlgebraGivenByStructuralConstants| . |LinearSet|) 2384) ((|AlgebraGivenByStructuralConstants| . |Module|) 2368) ((|AlgebraGivenByStructuralConstants| . |FiniteRankNonAssociativeAlgebra|) 2352) ((|AlgebraGivenByStructuralConstants| . |Type|) T) ((|AlgebraGivenByStructuralConstants| . |Join|) T) ((|AlgebraGivenByStructuralConstants| . |Eltable|) 2324) ((|AlgebraicFunctionField| . |FunctionFieldCategory|) 2298) ((|AlgebraicFunctionField| . |CommutativeRing|) T) ((|AlgebraicFunctionField| . |CoercibleFrom|) 2206) ((|AlgebraicFunctionField| . |Rng|) T) ((|AlgebraicFunctionField| . |SemiGroup|) T) ((|AlgebraicFunctionField| . |SemiRing|) T) ((|AlgebraicFunctionField| . |Monoid|) T) ((|AlgebraicFunctionField| . |Ring|) T) ((|AlgebraicFunctionField| . |LeftModule|) 2064) ((|AlgebraicFunctionField| . |LeftLinearSet|) 1972) ((|AlgebraicFunctionField| . |CancellationAbelianMonoid|) T) ((|AlgebraicFunctionField| . |AbelianSemiGroup|) T) ((|AlgebraicFunctionField| . |BasicType|) T) ((|AlgebraicFunctionField| . |Join|) T) ((|AlgebraicFunctionField| . |Type|) T) ((|AlgebraicFunctionField| . |CoercibleTo|) 1946) ((|AlgebraicFunctionField| . |SetCategory|) T) ((|AlgebraicFunctionField| . |AbelianMonoid|) T) ((|AlgebraicFunctionField| . |AbelianGroup|) T) ((|AlgebraicFunctionField| . |RightModule|) 1874) ((|AlgebraicFunctionField| . |RightLinearSet|) 1802) ((|AlgebraicFunctionField| . |BiModule|) 1714) ((|AlgebraicFunctionField| . |ConvertibleTo|) 1698) ((|AlgebraicFunctionField| . |DifferentialExtension|) 1669) ((|AlgebraicFunctionField| . |PartialDifferentialRing|) 1588) ((|AlgebraicFunctionField| . |PartialDifferentialSpace|) 1436) ((|AlgebraicFunctionField| . |PartialDifferentialDomain|) 1282) ((|AlgebraicFunctionField| . |DifferentialSpaceExtension|) 1253) ((|AlgebraicFunctionField| . |DifferentialSpace|) 1152) ((|AlgebraicFunctionField| . |DifferentialDomain|) 1045) ((|AlgebraicFunctionField| . |DifferentialRing|) 997) ((|AlgebraicFunctionField| . |Field|) T) ((|AlgebraicFunctionField| . |UniqueFactorizationDomain|) T) ((|AlgebraicFunctionField| . |PrincipalIdealDomain|) T) ((|AlgebraicFunctionField| . |IntegralDomain|) T) ((|AlgebraicFunctionField| . |Module|) 925) ((|AlgebraicFunctionField| . |LinearSet|) 853) ((|AlgebraicFunctionField| . |Algebra|) 781) ((|AlgebraicFunctionField| . |GcdDomain|) T) ((|AlgebraicFunctionField| . |EuclideanDomain|) T) ((|AlgebraicFunctionField| . |EntireRing|) T) ((|AlgebraicFunctionField| . |DivisionRing|) T) ((|AlgebraicFunctionField| . |Finite|) NIL) ((|AlgebraicFunctionField| . |FiniteFieldCategory|) NIL) ((|AlgebraicFunctionField| . |StepThrough|) NIL) ((|AlgebraicFunctionField| . |CharacteristicNonZero|) 728) ((|AlgebraicFunctionField| . |FieldOfPrimeCharacteristic|) NIL) ((|AlgebraicFunctionField| . |FramedAlgebra|) 694) ((|AlgebraicFunctionField| . |CharacteristicZero|) 644) ((|AlgebraicFunctionField| . |FiniteRankAlgebra|) 610) ((|AlgebraicFunctionField| . |FullyLinearlyExplicitRingOver|) 581) ((|AlgebraicFunctionField| . |LinearlyExplicitRingOver|) 482) ((|AlgebraicFunctionField| . |FullyRetractableTo|) 453) ((|AlgebraicFunctionField| . |RetractableTo|) 283) ((|AlgebraicFunctionField| . |MonogenicAlgebra|) 249) ((|AddAst| . |SpadSyntaxCategory|) T) ((|AddAst| . |HomotopicTo|) 227) ((|AddAst| . |CoercibleTo|) 182) ((|AddAst| . |CoercibleFrom|) 160) ((|AddAst| . |SetCategory|) T) ((|AddAst| . |Type|) T) ((|AddAst| . |Join|) T) ((|AddAst| . |BasicType|) T) ((|AddAst| . |AbstractSyntaxCategory|) 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| . |CoercibleTo|) 30) ((|Mapping| . |Type|) T) ((|Mapping| . |Join|) T) ((|Mapping| . |BasicType|) T))