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
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
|
*PPD-Adobe: "4.3"
*% =========================================
*% Disclaimer: The above statement indicates
*% that this PPD was written using the Adobe PPD
*% File Format Specification 4.3, but does not
*% intend to imply approval and acceptance by
*% Adobe Systems, Inc.
*% =========================================
*% PPD for Samsung K703 Series PS
*% For Linux Only
*% =========================================
*FileVersion: "0.4"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "K703.ppd"
*Product: "(Samsung K703 Series)"
*Manufacturer: "Samsung"
*PSVersion: "(3011 ) 0"
*ModelName: "Samsung K703 Series"
*ShortNickName: "K703"
*NickName: "Samsung K703 Series PS"
*1284DeviceID: "MFG:Samsung;CMD:POSTSCRIPT,PS3;MDL:K703 Series"
*LanguageLevel: "3"
*Protocols: PJL TBCP
*FreeVM: "60300000"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42)} {pop pop (None)} ifelse = flush
restore
"
*End
*JCLBegin: "<1B>%-12345X@PJL JOB<0D0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT<0D0A>"
*JCLEnd: "<1B>%-12345X"
*% =========================================================
*% Installable Options
*% =========================================================
*OpenGroup: InstallableOptions/Installed Options
*OpenUI *OptionalTray/Optional Tray: PickOne
*DefaultOptionalTray: None
*OptionalTray None/None: ""
*OptionalTray Tray3HB/Tray 3 (High Capacity - Bottom): ""
*OptionalTray Tray3HB4HS/Tray 3 (High Capacity - Bottom), 4 (High Capacity - Side): ""
*OptionalTray Tray34/Tray 3, 4: ""
*OptionalTray Tray345HS/Tray 3, 4, 5 (High Capacity - Side): ""
*CloseUI: *OptionalTray
*OpenUI *OptInnerOutBin/Optional Inner Output Bin: Boolean
*DefaultOptInnerOutBin: False
*OptInnerOutBin False/Not Installed: ""
*OptInnerOutBin True/Installed: ""
*CloseUI: *OptInnerOutBin
*OpenUI *Finisher/Finisher: PickOne
*DefaultFinisher: None
*Finisher None/None: ""
*Finisher InnerFinisher/Inner Finisher: ""
*Finisher StandardFinisher/Standard Finisher: ""
*Finisher BookletFinisher/Booklet Finisher: ""
*CloseUI: *Finisher
*OpenUI *OptPunch/Optional Hole Punch: PickOne
*DefaultOptPunch: None
*OptPunch None/None: ""
*OptPunch 2-3Hole/2/3 Hole: ""
*OptPunch 2-4Hole/2/4 Hole: ""
*OptPunch Scan-4Hole/Scan-4 Hole: ""
*CloseUI: *OptPunch
*CloseGroup: InstallableOptions
*% =========================================
*% Job Accounting - Type
*% =========================================
*JCLOpenUI *JCLJACType/[Job Accounting] Type: PickOne
*OrderDependency: 12 JCLSetup *JCLJACType
*DefaultJCLJACType: Accounting
*JCLJACType Accounting/Accounting: ""
*JCLJACType IDOnly/ID Only: ""
*JCLJACType PINcode/PIN code: ""
*JCLCloseUI: *JCLJACType
*% =========================================
*% Job Accounting - Permission
*% =========================================
*JCLOpenUI *JCLJACPermission/[Job Accounting] Permission: PickOne
*OrderDependency: 12 JCLSetup *JCLJACPermission
*DefaultJCLJACPermission: User
*JCLJACPermission User/User permission: "@PJL SET LDAPPERMISSION=PERSONAL<0D0A>"
*JCLJACPermission Group/Group permission: "@PJL SET LDAPPERMISSION=GROUP<0D0A>"
*JCLCloseUI: *JCLJACPermission
*% =========================================
*% Job Accounting - User ID
*% =========================================
*JCLOpenUI *JCLJACUserID/[Job Accounting] User ID: PickOne
*OrderDependency: 20 JCLSetup *JCLJACUserID
*DefaultJCLJACUserID: None
*JCLJACUserID None/None: ""
*JCLJACUserID ID/User1: "@PJL SET ACCOUNTING_INFORMATION_USERID=<22>User1<220A>"
*JCLCloseUI: *JCLJACUserID
*% Custom JACUserID
*CustomJCLJACUserID True: "@PJL SET ACCOUNTING_INFORMATION_USERID=<22>\1<220A>"
*ParamCustomJCLJACUserID Custom/Custom Name: 1 string 0 129
*% =========================================
*% Job Accounting - Password
*% =========================================
*JCLOpenUI *JCLJACPassword/[Job Accounting] Password (4-32 characters): PickOne
*OrderDependency: 20 JCLSetup *JCLJACPassword
*DefaultJCLJACPassword: None
*JCLJACPassword None/None: ""
*JCLJACPassword Password/1111: "@PJL SET ACCOUNTING_INFORMATION_PASSWORD=<22>1111<220A>"
*JCLCloseUI: *JCLJACPassword
*% Custom JACPassword
*CustomJCLJACPassword True: "@PJL SET ACCOUNTING_INFORMATION_PASSWORD=<22>\1<220A>"
*ParamCustomJCLJACPassword Custom/Custom Password: 1 password 4 32
*% =========================================
*% Job Accounting - PIN code
*% =========================================
*JCLOpenUI *JCLJACPINcode/[Job Accounting] PIN code (4-32 Digits): PickOne
*OrderDependency: 20 JCLSetup *JCLJACPINcode
*DefaultJCLJACPINcode: None
*JCLJACPINcode None/None: ""
*JCLJACPINcode PINcode/1111: "@PJL SET ACCOUNTING_INFORMATION_PINCODE=<22>1111<220A>"
*JCLCloseUI: *JCLJACPINcode
*% Custom JCLJACPINcode
*CustomJCLJACPINcode True: "@PJL SET ACCOUNTING_INFORMATION_PINCODE=<22>\1<220A>"
*ParamCustomJCLJACPINcode Custom/Custom PIN: 1 password 4 32
*% =========================================
*% Print Mode - Type
*% =========================================
*JCLOpenUI *JCLCDPType/[Print Mode] Type: PickOne
*OrderDependency: 12 JCLSetup *JCLCDPType
*DefaultJCLCDPType: None
*JCLCDPType None/Normal: ""
*JCLCDPType Confidential/Confidential: "@PJL COMMENT PRIVATE PRINT<0D0A>@PJL SET HOLD=ON<0D0A>@PJL SET HOLDTYPE=PRIVATE<0D0A>@PJL SET PRINTMODE=PRINT<0D0A>"
*JCLCloseUI: *JCLCDPType
*% =========================================
*% Print Mode - User ID
*% =========================================
*JCLOpenUI *JCLCDPUserID/[Print Mode] User ID: PickOne
*OrderDependency: 15 JCLSetup *JCLCDPUserID
*DefaultJCLCDPUserID: None
*JCLCDPUserID None/None: ""
*JCLCDPUserID ID/User1: "@PJL SET USERNAME=<22>User1<220A>"
*JCLCloseUI: *JCLCDPUserID
*% Custom CDPUserID
*CustomJCLCDPUserID True: "@PJL SET USERNAME=<22>\1<220A>"
*ParamCustomJCLCDPUserID Custom/Custom ID: 1 string 1 64
*% =========================================
*% Print Mode - Job Name
*% =========================================
*JCLOpenUI *JCLCDPJobName/[Print Mode] Job Name: PickOne
*OrderDependency: 15 JCLSetup *JCLCDPJobName
*DefaultJCLCDPJobName: None
*JCLCDPJobName None/None: ""
*JCLCDPJobName JobName/Job1: "@PJL SET JOBNAME=<22>Job1<220A>"
*JCLCloseUI: *JCLCDPJobName
*% Custom CDPJobName
*CustomJCLCDPJobName True: "@PJL SET JOBNAME=<22>\1<220A>"
*ParamCustomJCLCDPJobName Custom/Custom Name: 1 string 0 64
*% =========================================
*% Print Mode - Password
*% =========================================
*JCLOpenUI *JCLCDPPassword/[Print Mode] Password (4-32 characters): PickOne
*OrderDependency: 20 JCLSetup *JCLCDPPassword
*DefaultJCLCDPPassword: None
*JCLCDPPassword None/None: ""
*JCLCDPPassword Password/1111: "@PJL SET HOLDKEY=<22>1111<220A>"
*JCLCloseUI: *JCLCDPPassword
*% Custom CDPPassword
*CustomJCLCDPPassword True: "@PJL SET HOLDKEY=<22>\1<220A>"
*ParamCustomJCLCDPPassword Custom/Custom Password: 1 password 4 32
*%==========================================================
*% Collate
*%==========================================================
*OpenUI *Collate/Collate: Boolean
*OrderDependency: 70 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<</Collate false>> setpagedevice"
*Collate True/On: "<</Collate true>> setpagedevice"
*?Collate: "
save
currentpagedevice /Collate get
{(True)}{(False)}ifelse = flush
restore
"
*End
*CloseUI: *Collate
*% =========================================================
*% Duplex
*% =========================================================
*OpenUI *Duplex/Two-sided: PickOne
*OrderDependency: 60 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/None: " <</Duplex false>> setpagedevice"
*Duplex DuplexNoTumble/Long Edge: "
<</Duplex true /Tumble false>> setpagedevice"
*End
*Duplex DuplexTumble/Short Edge: "
<</Duplex true /Tumble true>> setpagedevice"
*End
*?Duplex: "
save
currentpagedevice /Duplex get
{currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)}ifelse
}{(None)} ifelse = flush
restore
"
*End
*CloseUI: *Duplex
*% =========================================================
*% Reverse Duplex
*% =========================================================
*OpenUI *SECReverseDuplex/Reverse Two-sided: Boolean
*OrderDependency: 100 AnySetup *SECReverseDuplex
*DefaultSECReverseDuplex: False
*SECReverseDuplex False/Off: "userdict /SECReverseDuplex false put"
*SECReverseDuplex True/On: "userdict /SECReverseDuplex true put"
*CloseUI: *SECReverseDuplex
*% =========================================================
*% Media Type
*% =========================================================
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 50 AnySetup *MediaType
*DefaultMediaType: None
*MediaType None/Printer Default: "<</MediaType (system-default)>> setpagedevice"
*MediaType Plain/Plain (70~90 g/m2): "<</MediaType (Plain)>> setpagedevice"
*MediaType Thick/Thick (91~105 g/m2): "<</MediaType (THICK)>> setpagedevice"
*MediaType Thin/Thin (60~69 g/m2): "<</MediaType (THIN)>> setpagedevice"
*MediaType Bond/Bond (105~120 g/m2): "<</MediaType (Bond)>> setpagedevice"
*MediaType Color/Color (75~90 g/m2): "<</MediaType (Color)>> setpagedevice"
*MediaType Labels/Labels (120~150 g/m2): "<</MediaType (Labels)>> setpagedevice"
*MediaType Transparency/Transparency (138~146 g/m2): "<</MediaType (Transparency)>> setpagedevice"
*MediaType Envelope/Envelope (75~90 g/m2): "<</MediaType (Envelope)>> setpagedevice"
*MediaType ThickEnv/Thick Envelope (91~120 g/m2): "<</MediaType (thick_env)>> setpagedevice"
*MediaType Preprinted/Preprinted (75~90 g/m2): "<</MediaType (Preprinted)>> setpagedevice"
*MediaType Recycled/Recycled (60~90 g/m2): "<</MediaType (Recycled)>> setpagedevice"
*MediaType Cotton/Cotton (75~90 g/m2): "<</MediaType (COTTEN)>> setpagedevice"
*MediaType Archive/Archive: "<</MediaType (ARCHIVE)>> setpagedevice"
*MediaType Punched/Punched (75~90 g/m2): "<</MediaType (Prepunched)>> setpagedevice"
*MediaType Letterhead/LetterHead (75~90 g/m2): "<</MediaType (Letterhead)>> setpagedevice"
*MediaType HeavyWeight/Heavy weight (106~176 g/m2): "<</MediaType (HeavyWeight)>> setpagedevice"
*MediaType ExtraHeavyWeight1/Extra Heavy weight 1 (177~220 g/m2): "<</MediaType (ExtraHeavyWeight1)>> setpagedevice"
*MediaType ExtraHeavyWeight2/Extra Heavy weight 2 (221~256 g/m2): "<</MediaType (ExtraHeavyWeight2)>> setpagedevice"
*MediaType ExtraHeavyWeight3/Extra Heavy weight 3 (257~300 g/m2): "<</MediaType (ExtraHeavyWeight3)>> setpagedevice"
*MediaType ExtraHeavyWeight4/Extra Heavy weight 4 (301~325 g/m2): "<</MediaType (ExtraHeavyWeight4)>> setpagedevice"
*MediaType ThinCardStock/Thin CardStock (106~163 g/m2): "<</MediaType (ThinCardStock)>> setpagedevice"
*MediaType ThickCardStock/Thick CardStock (164~216 g/m2): "<</MediaType (ThickCardStock)>> setpagedevice"
*MediaType HeavyCardStock/Heavy CardStock (217~256 g/m2): "<</MediaType (HeavyCardStock)>> setpagedevice"
*MediaType ExtraHeavyCardStock1/Extra Heavy CardStock 1 (257~300 g/m2): "<</MediaType (ExtraHeavyCardStock1)>> setpagedevice"
*MediaType ExtraHeavyCardStock2/Extra Heavy CardStock 2 (301~325 g/m2): "<</MediaType (ExtraHeavyCardStock2)>> setpagedevice"
*MediaType ThinGlossy/Thin Glossy (106~163 g/m2): "<</MediaType (ThinGlossy)>> setpagedevice"
*MediaType ThickGlossy/Thick Glossy (164~216 g/m2): "<</MediaType (ThickGlossy)>> setpagedevice"
*MediaType HeavyGlossy/Heavy Glossy (217~256 g/m2): "<</MediaType (HeavyGlossy)>> setpagedevice"
*CloseUI: *MediaType
*% =========================================================
*% Quality Information
*% =========================================================
*OpenUI *Quality/Quality: PickOne
*OrderDependency: 15 AnySetup *Quality
*DefaultQuality: Standard
*Quality Standard/Standard: "<< /HWResolution [600 600] /PixelDepth 4 >> setpagedevice"
*Quality High/High Resolution: "<</HWResolution [1200 1200]>> setpagedevice"
*CloseUI: *Quality
*DefaultResolution: 600dpi
*DefaultHalftoneType: 9
*ScreenFreq: "106.0"
*ScreenAngle: "45.0"
*% =========================================================
*% Toner Save
*% =========================================================
*JCLOpenUI *JCLEconomode/Toner Save: PickOne
*OrderDependency: 10 JCLSetup *JCLEconomode
*DefaultJCLEconomode: Off
*JCLEconomode Off/Off: "@PJL SET ECONOMODE = OFF<0A>"
*JCLEconomode On/On: "@PJL SET ECONOMODE = ON<0A>"
*JCLCloseUI: *JCLEconomode
*% =========================================================
*% Edge Enhance
*% =========================================================
*JCLOpenUI *JCLEdgeEnhance/Edge Enhancement: PickOne
*OrderDependency: 10 JCLSetup *JCLEdgeEnhance
*DefaultJCLEdgeEnhance: Normal
*JCLEdgeEnhance Off/Off: "@PJL SET EDGEENHANCE=OFF<0D0A>"
*JCLEdgeEnhance Normal/Normal: "@PJL SET EDGEENHANCE=NORMAL<0D0A>"
*JCLEdgeEnhance Maximum/Maximum: "@PJL SET EDGEENHANCE=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLEdgeEnhance
*% =========================================================
*% Clear Text
*% =========================================================
*JCLOpenUI *JCLDarkenText/Clear Text: PickOne
*OrderDependency: 10 JCLSetup *JCLDarkenText
*DefaultJCLDarkenText: Off
*JCLDarkenText Off/Off: "@PJL SET DARKENTEXT=OFF<0D0A>"
*JCLDarkenText Medium/Medium: "@PJL SET DARKENTEXT=ON<0D0A>"
*JCLDarkenText Maximum/Maximum: "@PJL SET DARKENTEXT=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLDarkenText
*% =========================================================
*% JCLSkipBlankPages
*% =========================================================
*JCLOpenUI *JCLSkipBlankPages/Skip Blank Pages: Boolean
*OrderDependency: 10 JCLSetup *JCLSkipBlankPages
*DefaultJCLSkipBlankPages: False
*JCLSkipBlankPages False/Off: "@PJL SET XIGNOREFF=OFF<0D0A>"
*JCLSkipBlankPages True/On: "@PJL SET XIGNOREFF=ON<0D0A>"
*JCLCloseUI: *JCLSkipBlankPages
*% =========================================================
*% JCLColorAdjustment - Brightness
*% =========================================================
*JCLOpenUI *JCLBrightness/[Adjustment Levels] Brightness: PickOne
*DefaultJCLBrightness: 50
*OrderDependency: 10 JCLSetup *JCLBrightness
*JCLBrightness 0/0: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=0<0D0A>"
*JCLBrightness 10/10: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=10<0D0A>"
*JCLBrightness 20/20: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=20<0D0A>"
*JCLBrightness 30/30: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=30<0D0A>"
*JCLBrightness 40/40: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=40<0D0A>"
*JCLBrightness 50/50: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=50<0D0A>"
*JCLBrightness 60/60: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=60<0D0A>"
*JCLBrightness 70/70: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=70<0D0A>"
*JCLBrightness 80/80: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=80<0D0A>"
*JCLBrightness 90/90: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=90<0D0A>"
*JCLBrightness 100/100: "@PJL SET ESCMSCOLORADJUSTMENT=ON<0D0A>@PJL SET ESCMSBRIGHTNESS=100<0D0A>"
*JCLCloseUI: *JCLBrightness
*% =========================================================
*% JCLColorAdjustment - Contrast
*% =========================================================
*JCLOpenUI *JCLContrast/[Adjustment Levels] Contrast: PickOne
*DefaultJCLContrast: 50
*OrderDependency: 10 JCLSetup *JCLContrast
*JCLContrast 0/0: "@PJL SET ESCMSCONTRAST=0<0D0A>"
*JCLContrast 10/10: "@PJL SET ESCMSCONTRAST=10<0D0A>"
*JCLContrast 20/20: "@PJL SET ESCMSCONTRAST=20<0D0A>"
*JCLContrast 30/30: "@PJL SET ESCMSCONTRAST=30<0D0A>"
*JCLContrast 40/40: "@PJL SET ESCMSCONTRAST=40<0D0A>"
*JCLContrast 50/50: "@PJL SET ESCMSCONTRAST=50<0D0A>"
*JCLContrast 60/60: "@PJL SET ESCMSCONTRAST=60<0D0A>"
*JCLContrast 70/70: "@PJL SET ESCMSCONTRAST=70<0D0A>"
*JCLContrast 80/80: "@PJL SET ESCMSCONTRAST=80<0D0A>"
*JCLContrast 90/90: "@PJL SET ESCMSCONTRAST=90<0D0A>"
*JCLContrast 100/100: "@PJL SET ESCMSCONTRAST=100<0D0A>"
*JCLCloseUI: *JCLContrast
*% =========================================================
*% JCLSortOptions
*% =========================================================
*JCLOpenUI *JCLSortOptions/Sort Options: PickOne
*OrderDependency: 10 JCLSetup *JCLSortOptions
*DefaultJCLSortOptions: None
*JCLSortOptions None/None: ""
*JCLSortOptions Offset/Offset: "@PJL SET SORT=OFFSET<0D0A>"
*JCLSortOptions Rotate/Rotate: "@PJL SET SORT=ROTATE<0D0A>"
*JCLCloseUI: *JCLSortOptions
*% =========================================================
*% StapleLocation
*% =========================================================
*JCLOpenUI *JCLStapleLocation/Staple: PickOne
*OrderDependency: 10 JCLSetup *JCLStapleLocation
*DefaultJCLStapleLocation: None
*JCLStapleLocation None/None: ""
*JCLStapleLocation 1Staple_P/1 Staple (Portrait): "@PJL SET STAPLE=PORTRAIT<0D0A>@PJL SET STAPLENUM=1<0D0A>"
*JCLStapleLocation 1Staple_L/1 Staple (Landscape): "@PJL SET STAPLE=LANDSCAPE<0D0A>@PJL SET STAPLENUM=1<0D0A>"
*JCLStapleLocation 2Staple_P/2 Staple (Portrait): "@PJL SET STAPLE=PORTRAIT<0D0A>@PJL SET STAPLENUM=2<0D0A>"
*JCLStapleLocation 2Staple_L/2 Staple (Landscape): "@PJL SET STAPLE=LANDSCAPE<0D0A>@PJL SET STAPLENUM=2<0D0A>"
*JCLCloseUI: *JCLStapleLocation
*% =========================================================
*% StaplePosition
*% =========================================================
*JCLOpenUI *JCLStaplePosition/Staple Position: PickOne
*OrderDependency: 10 JCLSetup *JCLStaplePosition
*DefaultJCLStaplePosition: None
*JCLStaplePosition None/None: ""
*JCLStaplePosition Left/Left: "@PJL SET STAPLEPOSITION=LEFT<0D0A>"
*JCLStaplePosition Right/Right: "@PJL SET STAPLEPOSITION=RIGHT<0D0A>"
*JCLStaplePosition Top/Top: "@PJL SET STAPLEPOSITION=TOP<0D0A>"
*JCLCloseUI: *JCLStaplePosition
*% =========================================================
*% Punching
*% =========================================================
*JCLOpenUI *JCLPunchLocation/Hole Punch: PickOne
*OrderDependency: 10 JCLSetup *JCLPunchLocation
*DefaultJCLPunchLocation: None
*JCLPunchLocation None/None: ""
*JCLPunchLocation 2Hole_P/2 Hole (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=2<0D0A>"
*JCLPunchLocation 2Hole_L/2 Hole (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=2<0D0A>"
*JCLPunchLocation 3Hole_P/3 Hole (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=3<0D0A>"
*JCLPunchLocation 3Hole_L/3 Hole (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=3<0D0A>"
*JCLPunchLocation 4Hole_P/4 Hole (Portrait): "@PJL SET PUNCH=PORTRAIT<0D0A>@PJL SET PUNCHNUM=4<0D0A>"
*JCLPunchLocation 4Hole_L/4 Hole (Landscape): "@PJL SET PUNCH=LANDSCAPE<0D0A>@PJL SET PUNCHNUM=4<0D0A>"
*JCLCloseUI: *JCLPunchLocation
*% =========================================================
*% PunchPosition
*% =========================================================
*JCLOpenUI *JCLPunchPosition/Hole Punch Position: PickOne
*OrderDependency: 10 JCLSetup *JCLPunchPosition
*DefaultJCLPunchPosition: None
*JCLPunchPosition None/None: ""
*JCLPunchPosition Left/Left: "@PJL SET PUNCHPOSITION=LEFT<0D0A>"
*JCLPunchPosition Right/Right: "@PJL SET PUNCHPOSITION=RIGHT<0D0A>"
*JCLPunchPosition Top/Top: "@PJL SET PUNCHPOSITION=TOP<0D0A>"
*JCLCloseUI: *JCLPunchPosition
*% =========================================================
*% C-Folding - Folding Option
*% =========================================================
*JCLOpenUI *JCLFoldingOption/Fold: PickOne
*OrderDependency: 10 JCLSetup *JCLFoldingOption
*DefaultJCLFoldingOption: None
*JCLFoldingOption None/None: "@PJL SET CFOLDING = OFF<0D0A>"
*JCLFoldingOption C-Folding/C-Folding: "@PJL SET CFOLDING = ON<0D0A>"
*JCLFoldingOption V-Folding/V-Folding: "@PJL SET VFOLD = ON<0D0A>"
*JCLCloseUI: *JCLFoldingOption
*% =========================================================
*% C-Folding - Pattern
*% =========================================================
*JCLOpenUI *JCLCFoldingPattern/[C-Folding] Pattern: PickOne
*OrderDependency: 10 JCLSetup *JCLCFoldingPattern
*DefaultJCLCFoldingPattern: None
*JCLCFoldingPattern None/None: ""
*JCLCFoldingPattern Pattern1/Outside, Top: "@PJL SET CFOLDINGPATTERN = 1<0D0A>"
*JCLCFoldingPattern Pattern2/Outside, Bottom: "@PJL SET CFOLDINGPATTERN = 2<0D0A>"
*JCLCFoldingPattern Pattern3/Inside, Top: "@PJL SET CFOLDINGPATTERN = 3<0D0A>"
*JCLCFoldingPattern Pattern4/Inside, Bottom: "@PJL SET CFOLDINGPATTERN = 4<0D0A>"
*JCLCloseUI: *JCLCFoldingPattern
*% =========================================================
*% C-Folding - Divide Into Sets
*% =========================================================
*JCLOpenUI *JCLCFoldingDIS/[C-Folding] Divide Into Sets: PickOne
*OrderDependency: 10 JCLSetup *JCLCFoldingDIS
*DefaultJCLCFoldingDIS: None
*JCLCFoldingDIS None/None: ""
*JCLCFoldingDIS 1/1: "@PJL SET CFOLDING_DIVIDESET = 1<0D0A>"
*JCLCFoldingDIS 2/2: "@PJL SET CFOLDING_DIVIDESET = 2<0D0A>"
*JCLCFoldingDIS 3/3: "@PJL SET CFOLDING_DIVIDESET = 3<0D0A>"
*JCLCloseUI: *JCLCFoldingDIS
*% =========================================================
*% V-Folding - Pattern
*% =========================================================
*JCLOpenUI *JCLVFoldingPattern/[V-Folding] Pattern: PickOne
*OrderDependency: 10 JCLSetup *JCLVFoldingPattern
*DefaultJCLVFoldingPattern: None
*JCLVFoldingPattern None/None: ""
*JCLVFoldingPattern Inside/Inside: "@PJL SET VFOLDTYPE = INSIDE<0D0A>"
*JCLVFoldingPattern Outside/Outside: "@PJL SET VFOLDTYPE = OUTSIDE<0D0A>"
*JCLCloseUI: *JCLVFoldingPattern
*% =========================================================
*% V-Folding - Divide Into Sets
*% =========================================================
*JCLOpenUI *JCLVFoldingDIS/[V-Folding] Divide Into Sets: PickOne
*OrderDependency: 10 JCLSetup *JCLVFoldingDIS
*DefaultJCLVFoldingDIS: None
*JCLVFoldingDIS None/None: ""
*JCLVFoldingDIS 1/1: "@PJL SET BOOKLET = ON<0D0A>@PJL SET DIVIDESET = 1<0D0A>"
*JCLVFoldingDIS 2/2: "@PJL SET BOOKLET = ON<0D0A>@PJL SET DIVIDESET = 2<0D0A>"
*JCLVFoldingDIS 3/3: "@PJL SET BOOKLET = ON<0D0A>@PJL SET DIVIDESET = 3<0D0A>"
*JCLVFoldingDIS 4/4: "@PJL SET BOOKLET = ON<0D0A>@PJL SET DIVIDESET = 4<0D0A>"
*JCLVFoldingDIS 5/5: "@PJL SET BOOKLET = ON<0D0A>@PJL SET DIVIDESET = 5<0D0A>"
*JCLCloseUI: *JCLVFoldingDIS
*% =========================================================
*% Finisher Output bin
*% =========================================================
*JCLOpenUI *JCLFinisherOutBin/Output Bin: PickOne
*OrderDependency: 10 JCLSetup *JCLFinisherOutBin
*DefaultJCLFinisherOutBin: None
*JCLFinisherOutBin None/Printer Setting: ""
*JCLFinisherOutBin Standard/Standard Bin: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Top/Top Bin: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Inner/Inner Bin: "@PJL SET OUTBIN=INNER<0D0A>"
*JCLFinisherOutBin Finishing/Finishing Bin: "@PJL SET OUTBIN=FINISHERBIN<0D0A>"
*JCLFinisherOutBin Booklet/Booklet Bin: "@PJL SET OUTBIN=BOOKLETBIN<0D0A>"
*JCLCloseUI: *JCLFinisherOutBin
*% =========================================================
*% Transparency Separator [Option]
*% =========================================================
*JCLOpenUI *JCLSeparatorsOption/Transparency Separator: PickOne
*OrderDependency: 10 JCLSetup *JCLSeparatorsOption
*DefaultJCLSeparatorsOption: None
*JCLSeparatorsOption None/No Separator: ""
*JCLSeparatorsOption PrintedSeparator/Printed Separator: "@PJL SET OHP_SEPARATOR_OPTION=<22>PRINTED<220D0A>"
*JCLSeparatorsOption BlankSeparator/Blank Separator: "@PJL SET OHP_SEPARATOR_OPTION=<22>BLANK<220D0A>"
*JCLCloseUI: *JCLSeparatorsOption
*% =========================================================
*% Transparency Separator [Source]
*% =========================================================
*JCLOpenUI *JCLSeparatorsSource/Separators Source: PickOne
*OrderDependency: 10 JCLSetup *JCLSeparatorsSource
*DefaultJCLSeparatorsSource: None
*JCLSeparatorsSource None/None: "@PJL SET OHP_SEPARATOR_TRAY=<22>AUTO<220D0A>"
*JCLSeparatorsSource Multi/MP Tray: "@PJL SET OHP_SEPARATOR_TRAY=<22>MPTRAY<220D0A>"
*JCLSeparatorsSource Upper/Tray 1: "@PJL SET OHP_SEPARATOR_TRAY=<22>UPPER<220D0A>"
*JCLSeparatorsSource Lower/Tray 2: "@PJL SET OHP_SEPARATOR_TRAY=<22>LOWER<220D0A>"
*JCLSeparatorsSource Tray3/Tray 3: "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLSeparatorsSource Tray3HB/Tray 3 (High Capacity - Bottom): "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLSeparatorsSource Tray4/Tray 4: "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLSeparatorsSource Tray4HS/Tray 4 (High Capacity - Side): "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLSeparatorsSource Tray5HS/Tray 5 (High Capacity - Side): "@PJL SET OHP_SEPARATOR_TRAY=<22>OPTIONTRAY5<220D0A>"
*JCLCloseUI: *JCLSeparatorsSource
*% =========================================================
*% Paper Source
*% =========================================================
*OpenUI *InputSlot/Paper Source: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot Auto/Auto Select:"
<</ManualFeed false /MediaPosition null>> setpagedevice"
*End
*InputSlot Multi/MP Tray:"
<< /ManualFeed false /MediaPosition 2 >> setpagedevice"
*End
*InputSlot Upper/Tray 1:"
<< /ManualFeed false /MediaPosition 1 >> setpagedevice"
*End
*InputSlot Lower/Tray 2:"
<< /ManualFeed false /MediaPosition 3 >> setpagedevice"
*End
*InputSlot Tray3/Tray 3:"
<< /ManualFeed false /MediaPosition 4 >> setpagedevice"
*End
*InputSlot Tray3HB/Tray 3 (High Capacity - Bottom):"
<< /ManualFeed false /MediaPosition 4 >> setpagedevice"
*End
*InputSlot Tray4/Tray 4:"
<< /ManualFeed false /MediaPosition 5 >> setpagedevice"
*End
*InputSlot Tray4HS/Tray 4 (High Capacity - Side):"
<< /ManualFeed false /MediaPosition 5 >> setpagedevice"
*End
*InputSlot Tray5HS/Tray 5 (High Capacity - Side):"
<< /ManualFeed false /MediaPosition 6 >> setpagedevice"
*End
*CloseUI: *InputSlot
*% =========================================================
*% Paper Handling
*% =========================================================
*% Use these entries to set paper size unless there is a specific
*% reason to use PageRegion, such as when using manual feed.
*OpenUI *PageSize/Paper Size: PickOne
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "<</PageSize [612 792] /ImagingBBox null>> setpagedevice"
*PageSize Legal/Legal: "<</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
*PageSize Executive/Executive: "<</PageSize [522 756] /ImagingBBox null>> setpagedevice"
*PageSize A4/A4: "<</PageSize [595 842] /ImagingBBox null>> setpagedevice"
*PageSize A5/A5: "<</PageSize [420 595] /ImagingBBox null>> setpagedevice"
*PageSize B5-JIS/B5(JIS): "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageSize US-Folio/Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageSize Env10/No 10 Envelope: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageSize EnvDL/DL Envelope: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageSize EnvC5/C5 Envelope: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageSize EnvC6/C6 Envelope: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageSize B5-ISO/B5(ISO): "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageSize EnvMonarch/Monarch Envelope: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageSize A6/A6: "<</PageSize [297 420] /ImagingBBox null>> setpagedevice"
*PageSize B6/B6(JIS): "<</PageSize [363 516] /ImagingBBox null>> setpagedevice"
*PageSize Oficio_S/Oficio: "<</PageSize [612 972] /ImagingBBox null>> setpagedevice"
*PageSize Statement/Statement: "<</PageSize [396 612] /ImagingBBox null>> setpagedevice"
*PageSize Postcard_S/Postcard 4x6: "<</PageSize [288 432] /ImagingBBox null>> setpagedevice"
*PageSize A3/A3: "<</PageSize [842 1191] /ImagingBBox null>> setpagedevice"
*PageSize Env9/No 9 Envelope: "<</PageSize [279 639] /ImagingBBox null>> setpagedevice"
*PageSize C4/C4: "<</PageSize [649 918] /ImagingBBox null>> setpagedevice"
*PageSize B4/B4: "<</PageSize [729 1032] /ImagingBBox null>> setpagedevice"
*PageSize SRA3/SRA3: "<</PageSize [907 1276] /ImagingBBox null>> setpagedevice"
*PageSize 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageSize 16K/16K: "<</PageSize [553 766] /ImagingBBox null>> setpagedevice"
*PageSize 12x18/Tabloid Extra: "<</PageSize [864 1296] /ImagingBBox null>> setpagedevice"
*PageSize Tabloid/Ledger: "<</PageSize [792 1224] /ImagingBBox null>> setpagedevice"
*?PageSize: "
save currentpagedevice /PageSize get aload pop
2 copy gt {exch} if (Unknown) 27 dict
dup [792 1224] (Tabloid) put
dup [864 1296] (12x18) put
dup [553 766] (16K) put
dup [766 1106] (8K) put
dup [907 1276] (SRA3) put
dup [729 1032] (B4) put
dup [649 918] (C4) put
dup [279 639] (Env9) put
dup [842 1191] (A3) put
dup [288 432] (Postcard_S) put
dup [396 612] (Statement) put
dup [612 972] (Oficio_S) put
dup [363 516] (B6) put
dup [297 420] (A6) put
dup [279 540] (EnvMonarch) put
dup [499 709] (B5-ISO) put
dup [323 459] (EnvC6) put
dup [459 649] (EnvC5) put
dup [312 624] (EnvDL) put
dup [297 684] (Env10) put
dup [612 936] (US-Folio) put
dup [516 729] (B5-JIS) put
dup [420 595] (A5) put
dup [595 842] (A4) put
dup [522 756] (Executive) put
dup [612 1008] (Legal) put
dup [612 792] (Letter) put
{exch aload pop 4 index sub abs 5 le exch 5 index
sub abs 5 le and {exch pop exit} {pop} ifelse}
bind forall = flush pop pop restore
"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion: PickOne
*OrderDependency: 40 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "<</PageSize [612 792] /ImagingBBox null>> setpagedevice"
*PageRegion Legal/Legal: "<</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
*PageRegion Executive/Executive: "<</PageSize [522 756] /ImagingBBox null>> setpagedevice"
*PageRegion A4/A4: "<</PageSize [595 842] /ImagingBBox null>> setpagedevice"
*PageRegion A5/A5: "<</PageSize [420 595] /ImagingBBox null>> setpagedevice"
*PageRegion B5-JIS/B5(JIS): "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageRegion US-Folio/Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageRegion Env10/No 10 Envelope: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageRegion EnvDL/DL Envelope: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC5/C5 Envelope: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC6/C6 Envelope: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageRegion B5-ISO/B5(ISO): "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageRegion EnvMonarch/Monarch Envelope: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageRegion A6/A6: "<</PageSize [297 420] /ImagingBBox null>> setpagedevice"
*PageRegion B6/B6(JIS): "<</PageSize [363 516] /ImagingBBox null>> setpagedevice"
*PageRegion Oficio_S/Oficio: "<</PageSize [612 972] /ImagingBBox null>> setpagedevice"
*PageRegion Statement/Statement: "<</PageSize [396 612] /ImagingBBox null>> setpagedevice"
*PageRegion Postcard_S/Postcard 4x6: "<</PageSize [288 432] /ImagingBBox null>> setpagedevice"
*PageRegion A3/A3: "<</PageSize [842 1191] /ImagingBBox null>> setpagedevice"
*PageRegion Env9/No 9 Envelope: "<</PageSize [279 639] /ImagingBBox null>> setpagedevice"
*PageRegion C4/C4: "<</PageSize [649 918] /ImagingBBox null>> setpagedevice"
*PageRegion B4/B4: "<</PageSize [729 1032] /ImagingBBox null>> setpagedevice"
*PageRegion SRA3/SRA3: "<</PageSize [907 1276] /ImagingBBox null>> setpagedevice"
*PageRegion 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageRegion 16K/16K: "<</PageSize [553 766] /ImagingBBox null>> setpagedevice"
*PageRegion 12x18/Tabloid Extra: "<</PageSize [864 1296] /ImagingBBox null>> setpagedevice"
*PageRegion Tabloid/Ledger: "<</PageSize [792 1224] /ImagingBBox null>> setpagedevice"
*CloseUI: *PageRegion
*% These entries provide the imageable areas of the media option keywords
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12.50 12.50 599.50 779.50"
*ImageableArea Legal/Legal: "12.50 12.50 599.50 995.50"
*ImageableArea Executive/Executive: "12.50 11.00 509.50 744.00"
*ImageableArea A4/A4: "12.50 12.50 582.50 829.50"
*ImageableArea A5/A5: "12.50 12.50 407.50 582.50"
*ImageableArea B5-JIS/B5(JIS): "12.50 12.50 503.50 715.50"
*ImageableArea US-Folio/Folio: "12.50 12.50 599.50 923.50"
*ImageableArea Env10/No 10 Envelope: "12.50 12.50 284.50 670.50"
*ImageableArea EnvDL/DL Envelope: "12.50 12.50 299.50 610.50"
*ImageableArea EnvC5/C5 Envelope: "12.50 12.50 446.50 635.50"
*ImageableArea EnvC6/C6 Envelope: "12.50 12.50 310.50 446.50"
*ImageableArea B5-ISO/B5(ISO): "12.50 12.50 485.50 695.50"
*ImageableArea EnvMonarch/Monarch Envelope: "12.50 12.50 266.50 527.50"
*ImageableArea A6/A6: "12.50 12.50 284.50 407.50"
*ImageableArea B6/B6(JIS): "12.50 12.50 350.50 503.50"
*ImageableArea Oficio_S/Oficio: "12.50 12.50 599.50 959.50"
*ImageableArea Statement/Statement: "12.50 12.50 383.50 599.50"
*ImageableArea Postcard_S/Postcard 4x6: "12.50 12.50 275.50 419.50"
*ImageableArea A3/A3: "12.50 12.50 829.50 1178.50"
*ImageableArea Env9/No 9 Envelope: "12.50 12.50 266.50 626.50"
*ImageableArea C4/C4: "12.50 12.50 636.50 905.50"
*ImageableArea B4/B4: "12.50 12.50 716.50 1019.50"
*ImageableArea SRA3/SRA3: "12.50 12.50 894.50 1263.50"
*ImageableArea 8K/8K: "12.50 12.50 753.50 1085.50"
*ImageableArea 16K/16K: "12.50 12.50 540.50 753.50"
*ImageableArea 12x18/Tabloid Extra: "12.50 12.50 851.50 1283.50"
*ImageableArea Tabloid/Ledger: "12.50 12.50 779.50 1211.50"
*?ImageableArea: "
save /cvp { cvi ( ) cvs print ( ) print } bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat flush
restore"
*End
*% These provide the physical dimensions of the media, by option keyword.
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension B5-JIS/B5(JIS): "516 729"
*PaperDimension US-Folio/Folio: "612 936"
*PaperDimension Env10/No 10 Envelope: "297 684"
*PaperDimension EnvDL/DL Envelope: "312 624"
*PaperDimension EnvC5/C5 Envelope: "459 649"
*PaperDimension EnvC6/C6 Envelope: "323 459"
*PaperDimension B5-ISO/B5(ISO): "499 709"
*PaperDimension EnvMonarch/Monarch Envelope: "279 540"
*PaperDimension A6/A6: "297 420"
*PaperDimension B6/B6(JIS): "363 516"
*PaperDimension Oficio_S/Oficio: "612 972"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension Postcard_S/Postcard 4x6: "288 432"
*PaperDimension A3/A3: "842 1191"
*PaperDimension Env9/No 9 Envelope: "279 639"
*PaperDimension C4/C4: "649 918"
*PaperDimension B4/B4: "729 1032"
*PaperDimension SRA3/SRA3: "907 1276"
*PaperDimension 8K/8K: "766 1106"
*PaperDimension 16K/16K: "553 766"
*PaperDimension 12x18/Tabloid Extra: "864 1296"
*PaperDimension Tabloid/Ledger: "791 1224"
*RequiresPageRegion All: True
*LandscapeOrientation: Plus90
*HWMargins: 12.5 12.5 12.5 12.5
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
*ParamCustomPageSize Width: 1 points 277.00 908.00
*ParamCustomPageSize Height: 2 points 396.00 3402.00
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 0
*% =========================================================
*% User Interface Constraints
*% =========================================================
*% =========================================================
*% Installable Option : OptInnerOutBin - InnerFinisher
*% =========================================================
*UIConstraints: *OptInnerOutBin True *Finisher InnerFinisher
*UIConstraints: *Finisher InnerFinisher *OptInnerOutBin True
*% =========================================================
*% Installable Option : OptionalTray - InputSlot
*% =========================================================
*UIConstraints: *OptionalTray None *InputSlot Tray3
*UIConstraints: *OptionalTray None *InputSlot Tray3HB
*UIConstraints: *OptionalTray None *InputSlot Tray4
*UIConstraints: *OptionalTray None *InputSlot Tray4HS
*UIConstraints: *OptionalTray None *InputSlot Tray5HS
*UIConstraints: *OptionalTray Tray3HB *InputSlot Tray3
*UIConstraints: *OptionalTray Tray3HB *InputSlot Tray4
*UIConstraints: *OptionalTray Tray3HB *InputSlot Tray4HS
*UIConstraints: *OptionalTray Tray3HB *InputSlot Tray5HS
*UIConstraints: *OptionalTray Tray34 *InputSlot Tray3HB
*UIConstraints: *OptionalTray Tray34 *InputSlot Tray4HS
*UIConstraints: *OptionalTray Tray34 *InputSlot Tray5HS
*UIConstraints: *OptionalTray Tray3HB4HS *InputSlot Tray3
*UIConstraints: *OptionalTray Tray3HB4HS *InputSlot Tray4
*UIConstraints: *OptionalTray Tray3HB4HS *InputSlot Tray5HS
*UIConstraints: *OptionalTray Tray345HS *InputSlot Tray3HB
*UIConstraints: *OptionalTray Tray345HS *InputSlot Tray4HS
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray3
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray3HB
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray4
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray4HS
*UIConstraints: *OptionalTray None *JCLSeparatorsSource Tray5HS
*UIConstraints: *OptionalTray Tray3HB *JCLSeparatorsSource Tray3
*UIConstraints: *OptionalTray Tray3HB *JCLSeparatorsSource Tray4
*UIConstraints: *OptionalTray Tray3HB *JCLSeparatorsSource Tray4HS
*UIConstraints: *OptionalTray Tray3HB *JCLSeparatorsSource Tray5HS
*UIConstraints: *OptionalTray Tray34 *JCLSeparatorsSource Tray3HB
*UIConstraints: *OptionalTray Tray34 *JCLSeparatorsSource Tray4HS
*UIConstraints: *OptionalTray Tray34 *JCLSeparatorsSource Tray5HS
*UIConstraints: *OptionalTray Tray3HB4HS *JCLSeparatorsSource Tray3
*UIConstraints: *OptionalTray Tray3HB4HS *JCLSeparatorsSource Tray4
*UIConstraints: *OptionalTray Tray3HB4HS *JCLSeparatorsSource Tray5HS
*UIConstraints: *OptionalTray Tray345HS *JCLSeparatorsSource Tray3HB
*UIConstraints: *OptionalTray Tray345HS *JCLSeparatorsSource Tray4HS
*% =========================================================
*% Installable Option : Finisher - OptPunch
*% =========================================================
*UIConstraints: *Finisher None *OptPunch 2-3Hole
*UIConstraints: *Finisher None *OptPunch 2-4Hole
*UIConstraints: *Finisher None *OptPunch Scan-4Hole
*UIConstraints: *OptPunch 2-3Hole *Finisher None
*UIConstraints: *OptPunch 2-4Hole *Finisher None
*UIConstraints: *OptPunch Scan-4Hole *Finisher None
*% =========================================================
*% Installable Option : Finisher - StapleLocation
*% =========================================================
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_P
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_L
*UIConstraints: *Finisher None *JCLStapleLocation 2Staple_P
*UIConstraints: *Finisher None *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLStapleLocation 1Staple_P *Finisher None
*UIConstraints: *JCLStapleLocation 1Staple_L *Finisher None
*UIConstraints: *JCLStapleLocation 2Staple_P *Finisher None
*UIConstraints: *JCLStapleLocation 2Staple_L *Finisher None
*% =========================================================
*% Installable Option : Finisher - Outputbin
*% =========================================================
*UIConstraints: *Finisher None *JCLFinisherOutBin Top
*UIConstraints: *Finisher None *JCLFinisherOutBin Finishing
*UIConstraints: *Finisher None *JCLFinisherOutBin Booklet
*UIConstraints: *JCLFinisherOutBin Top *Finisher None
*UIConstraints: *JCLFinisherOutBin Finishing *Finisher None
*UIConstraints: *JCLFinisherOutBin Booklet *Finisher None
*UIConstraints: *Finisher InnerFinisher *JCLFinisherOutBin Standard
*UIConstraints: *Finisher StandardFinisher *JCLFinisherOutBin Standard
*UIConstraints: *Finisher BookletFinisher *JCLFinisherOutBin Standard
*UIConstraints: *JCLFinisherOutBin Standard *Finisher InnerFinisher
*UIConstraints: *JCLFinisherOutBin Standard *Finisher StandardFinisher
*UIConstraints: *JCLFinisherOutBin Standard *Finisher BookletFinisher
*UIConstraints: *JCLFinisherOutBin Booklet *Finisher InnerFinisher
*UIConstraints: *JCLFinisherOutBin Booklet *Finisher StandardFinisher
*UIConstraints: *Finisher InnerFinisher *JCLFinisherOutBin Booklet
*UIConstraints: *Finisher StandardFinisher *JCLFinisherOutBin Booklet
*% =========================================================
*% Cosmos Mono - optional inner/Outputbin
*% =========================================================
*UIConstraints: *OptInnerOutBin False *JCLFinisherOutBin Inner
*UIConstraints: *JCLFinisherOutBin Inner *OptInnerOutBin False
*% =========================================================
*% Installable Option : Finisher - Offset
*% =========================================================
*UIConstraints: *Finisher None *JCLSortOptions Offset
*UIConstraints: *JCLSortOptions Offset *Finisher None
*% =========================================================
*% Installable Option : Finisher - Sort
*% =========================================================
*UIConstraints: *Finisher InnerFinisher *JCLSortOptions Rotate
*UIConstraints: *Finisher StandardFinisher *JCLSortOptions Rotate
*UIConstraints: *Finisher BookletFinisher *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *Finisher InnerFinisher
*UIConstraints: *JCLSortOptions Rotate *Finisher StandardFinisher
*UIConstraints: *JCLSortOptions Rotate *Finisher BookletFinisher
*% =========================================================
*% Cosmos - OptPunch/Punch
*% =========================================================
*UIConstraints: *OptPunch None *JCLPunchLocation 2Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 2Hole_L
*UIConstraints: *OptPunch None *JCLPunchLocation 3Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 3Hole_L
*UIConstraints: *OptPunch None *JCLPunchLocation 4Hole_P
*UIConstraints: *OptPunch None *JCLPunchLocation 4Hole_L
*UIConstraints: *OptPunch None *JCLPunchPosition Left
*UIConstraints: *OptPunch None *JCLPunchPosition Right
*UIConstraints: *OptPunch None *JCLPunchPosition Top
*UIConstraints: *JCLPunchLocation 2Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 2Hole_L *OptPunch None
*UIConstraints: *JCLPunchLocation 3Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 3Hole_L *OptPunch None
*UIConstraints: *JCLPunchLocation 4Hole_P *OptPunch None
*UIConstraints: *JCLPunchLocation 4Hole_L *OptPunch None
*UIConstraints: *JCLPunchPosition Left *OptPunch None
*UIConstraints: *JCLPunchPosition Right *OptPunch None
*UIConstraints: *JCLPunchPosition Top *OptPunch None
*UIConstraints: *OptPunch 2-3Hole *JCLPunchLocation 4Hole_P
*UIConstraints: *OptPunch 2-3Hole *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLPunchLocation 4Hole_P *OptPunch 2-3Hole
*UIConstraints: *JCLPunchLocation 4Hole_L *OptPunch 2-3Hole
*UIConstraints: *OptPunch 2-4Hole *JCLPunchLocation 3Hole_P
*UIConstraints: *OptPunch 2-4Hole *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLPunchLocation 3Hole_P *OptPunch 2-4Hole
*UIConstraints: *JCLPunchLocation 3Hole_L *OptPunch 2-4Hole
*UIConstraints: *OptPunch Scan-4Hole *JCLPunchLocation 2Hole_P
*UIConstraints: *OptPunch Scan-4Hole *JCLPunchLocation 2Hole_L
*UIConstraints: *OptPunch Scan-4Hole *JCLPunchLocation 3Hole_P
*UIConstraints: *OptPunch Scan-4Hole *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLPunchLocation 2Hole_P *OptPunch Scan-4Hole
*UIConstraints: *JCLPunchLocation 2Hole_L *OptPunch Scan-4Hole
*UIConstraints: *JCLPunchLocation 3Hole_P *OptPunch Scan-4Hole
*UIConstraints: *JCLPunchLocation 3Hole_L *OptPunch Scan-4Hole
*% =========================================================
*% Reverse Duplex - Duplex
*% =========================================================
*UIConstraints: *Duplex None *SECReverseDuplex True
*UIConstraints: *SECReverseDuplex True *Duplex None
*% =========================================================
*% Duplex - MediaType
*% =========================================================
*UIConstraints: *MediaType ExtraHeavyWeight3 *Duplex DuplexNoTumble
*UIConstraints: *MediaType ExtraHeavyWeight3 *Duplex DuplexTumble
*UIConstraints: *MediaType ExtraHeavyWeight4 *Duplex DuplexNoTumble
*UIConstraints: *MediaType ExtraHeavyWeight4 *Duplex DuplexTumble
*UIConstraints: *MediaType ExtraHeavyCardStock1 *Duplex DuplexNoTumble
*UIConstraints: *MediaType ExtraHeavyCardStock1 *Duplex DuplexTumble
*UIConstraints: *MediaType ExtraHeavyCardStock2 *Duplex DuplexTumble
*UIConstraints: *MediaType ExtraHeavyCardStock2 *Duplex DuplexNoTumble
*UIConstraints: *MediaType ThinGlossy *Duplex DuplexTumble
*UIConstraints: *MediaType ThinGlossy *Duplex DuplexNoTumble
*UIConstraints: *MediaType ThickGlossy *Duplex DuplexTumble
*UIConstraints: *MediaType ThickGlossy *Duplex DuplexNoTumble
*UIConstraints: *MediaType HeavyGlossy *Duplex DuplexTumble
*UIConstraints: *MediaType HeavyGlossy *Duplex DuplexNoTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexTumble
*UIConstraints: *MediaType ThickEnv *Duplex DuplexNoTumble
*UIConstraints: *MediaType ThickEnv *Duplex DuplexTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavyWeight3
*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavyWeight3
*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavyWeight4
*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavyWeight4
*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavyCardStock1
*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavyCardStock1
*UIConstraints: *Duplex DuplexNoTumble *MediaType ExtraHeavyCardStock2
*UIConstraints: *Duplex DuplexTumble *MediaType ExtraHeavyCardStock2
*UIConstraints: *Duplex DuplexNoTumble *MediaType ThinGlossy
*UIConstraints: *Duplex DuplexTumble *MediaType ThinGlossy
*UIConstraints: *Duplex DuplexNoTumble *MediaType ThickGlossy
*UIConstraints: *Duplex DuplexTumble *MediaType ThickGlossy
*UIConstraints: *Duplex DuplexNoTumble *MediaType HeavyGlossy
*UIConstraints: *Duplex DuplexTumble *MediaType HeavyGlossy
*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexNoTumble *MediaType ThickEnv
*UIConstraints: *Duplex DuplexTumble *MediaType ThickEnv
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*% =========================================================
*% Envelope(PageSize) - MediaType
*% =========================================================
*UIConstraints: *PageSize EnvMonarch *MediaType None
*UIConstraints: *PageSize EnvMonarch *MediaType Plain
*UIConstraints: *PageSize EnvMonarch *MediaType Thick
*UIConstraints: *PageSize EnvMonarch *MediaType Thin
*UIConstraints: *PageSize EnvMonarch *MediaType Bond
*UIConstraints: *PageSize EnvMonarch *MediaType Archive
*UIConstraints: *PageSize EnvMonarch *MediaType Color
*UIConstraints: *PageSize EnvMonarch *MediaType Labels
*UIConstraints: *PageSize EnvMonarch *MediaType Transparency
*UIConstraints: *PageSize EnvMonarch *MediaType Preprinted
*UIConstraints: *PageSize EnvMonarch *MediaType Recycled
*UIConstraints: *PageSize EnvMonarch *MediaType Cotton
*UIConstraints: *PageSize EnvMonarch *MediaType Punched
*UIConstraints: *PageSize EnvMonarch *MediaType Letterhead
*UIConstraints: *PageSize EnvMonarch *MediaType HeavyWeight
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageSize EnvMonarch *MediaType ThickCardStock
*UIConstraints: *PageSize EnvMonarch *MediaType HeavyCardStock
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize EnvMonarch *MediaType ThinGlossy
*UIConstraints: *PageSize EnvMonarch *MediaType ThickGlossy
*UIConstraints: *PageSize EnvMonarch *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize EnvMonarch
*UIConstraints: *MediaType Plain *PageSize EnvMonarch
*UIConstraints: *MediaType Thick *PageSize EnvMonarch
*UIConstraints: *MediaType Thin *PageSize EnvMonarch
*UIConstraints: *MediaType Bond *PageSize EnvMonarch
*UIConstraints: *MediaType Archive *PageSize EnvMonarch
*UIConstraints: *MediaType Color *PageSize EnvMonarch
*UIConstraints: *MediaType Labels *PageSize EnvMonarch
*UIConstraints: *MediaType Transparency *PageSize EnvMonarch
*UIConstraints: *MediaType Preprinted *PageSize EnvMonarch
*UIConstraints: *MediaType Recycled *PageSize EnvMonarch
*UIConstraints: *MediaType Cotton *PageSize EnvMonarch
*UIConstraints: *MediaType Punched *PageSize EnvMonarch
*UIConstraints: *MediaType Letterhead *PageSize EnvMonarch
*UIConstraints: *MediaType HeavyWeight *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageSize EnvMonarch
*UIConstraints: *MediaType ThickCardStock *PageSize EnvMonarch
*UIConstraints: *MediaType HeavyCardStock *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize EnvMonarch
*UIConstraints: *MediaType ThinGlossy *PageSize EnvMonarch
*UIConstraints: *MediaType ThickGlossy *PageSize EnvMonarch
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvMonarch
*UIConstraints: *PageSize EnvDL *MediaType None
*UIConstraints: *PageSize EnvDL *MediaType Plain
*UIConstraints: *PageSize EnvDL *MediaType Thick
*UIConstraints: *PageSize EnvDL *MediaType Thin
*UIConstraints: *PageSize EnvDL *MediaType Bond
*UIConstraints: *PageSize EnvDL *MediaType Archive
*UIConstraints: *PageSize EnvDL *MediaType Color
*UIConstraints: *PageSize EnvDL *MediaType Labels
*UIConstraints: *PageSize EnvDL *MediaType Transparency
*UIConstraints: *PageSize EnvDL *MediaType Preprinted
*UIConstraints: *PageSize EnvDL *MediaType Recycled
*UIConstraints: *PageSize EnvDL *MediaType Cotton
*UIConstraints: *PageSize EnvDL *MediaType Punched
*UIConstraints: *PageSize EnvDL *MediaType Letterhead
*UIConstraints: *PageSize EnvDL *MediaType HeavyWeight
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize EnvDL *MediaType ThinCardStock
*UIConstraints: *PageSize EnvDL *MediaType ThickCardStock
*UIConstraints: *PageSize EnvDL *MediaType HeavyCardStock
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize EnvDL *MediaType ThinGlossy
*UIConstraints: *PageSize EnvDL *MediaType ThickGlossy
*UIConstraints: *PageSize EnvDL *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize EnvDL
*UIConstraints: *MediaType Plain *PageSize EnvDL
*UIConstraints: *MediaType Thick *PageSize EnvDL
*UIConstraints: *MediaType Thin *PageSize EnvDL
*UIConstraints: *MediaType Bond *PageSize EnvDL
*UIConstraints: *MediaType Archive *PageSize EnvDL
*UIConstraints: *MediaType Color *PageSize EnvDL
*UIConstraints: *MediaType Labels *PageSize EnvDL
*UIConstraints: *MediaType Transparency *PageSize EnvDL
*UIConstraints: *MediaType Preprinted *PageSize EnvDL
*UIConstraints: *MediaType Recycled *PageSize EnvDL
*UIConstraints: *MediaType Cotton *PageSize EnvDL
*UIConstraints: *MediaType Punched *PageSize EnvDL
*UIConstraints: *MediaType Letterhead *PageSize EnvDL
*UIConstraints: *MediaType HeavyWeight *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize EnvDL
*UIConstraints: *MediaType ThinCardStock *PageSize EnvDL
*UIConstraints: *MediaType ThickCardStock *PageSize EnvDL
*UIConstraints: *MediaType HeavyCardStock *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize EnvDL
*UIConstraints: *MediaType ThinGlossy *PageSize EnvDL
*UIConstraints: *MediaType ThickGlossy *PageSize EnvDL
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvDL
*UIConstraints: *PageSize EnvC5 *MediaType None
*UIConstraints: *PageSize EnvC5 *MediaType Plain
*UIConstraints: *PageSize EnvC5 *MediaType Thick
*UIConstraints: *PageSize EnvC5 *MediaType Thin
*UIConstraints: *PageSize EnvC5 *MediaType Bond
*UIConstraints: *PageSize EnvC5 *MediaType Archive
*UIConstraints: *PageSize EnvC5 *MediaType Color
*UIConstraints: *PageSize EnvC5 *MediaType Labels
*UIConstraints: *PageSize EnvC5 *MediaType Transparency
*UIConstraints: *PageSize EnvC5 *MediaType Preprinted
*UIConstraints: *PageSize EnvC5 *MediaType Recycled
*UIConstraints: *PageSize EnvC5 *MediaType Cotton
*UIConstraints: *PageSize EnvC5 *MediaType Punched
*UIConstraints: *PageSize EnvC5 *MediaType Letterhead
*UIConstraints: *PageSize EnvC5 *MediaType HeavyWeight
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC5 *MediaType ThickCardStock
*UIConstraints: *PageSize EnvC5 *MediaType HeavyCardStock
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize EnvC5 *MediaType ThinGlossy
*UIConstraints: *PageSize EnvC5 *MediaType ThickGlossy
*UIConstraints: *PageSize EnvC5 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize EnvC5
*UIConstraints: *MediaType Plain *PageSize EnvC5
*UIConstraints: *MediaType Thick *PageSize EnvC5
*UIConstraints: *MediaType Thin *PageSize EnvC5
*UIConstraints: *MediaType Bond *PageSize EnvC5
*UIConstraints: *MediaType Archive *PageSize EnvC5
*UIConstraints: *MediaType Color *PageSize EnvC5
*UIConstraints: *MediaType Labels *PageSize EnvC5
*UIConstraints: *MediaType Transparency *PageSize EnvC5
*UIConstraints: *MediaType Preprinted *PageSize EnvC5
*UIConstraints: *MediaType Recycled *PageSize EnvC5
*UIConstraints: *MediaType Cotton *PageSize EnvC5
*UIConstraints: *MediaType Punched *PageSize EnvC5
*UIConstraints: *MediaType Letterhead *PageSize EnvC5
*UIConstraints: *MediaType HeavyWeight *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize EnvC5
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC5
*UIConstraints: *MediaType ThickCardStock *PageSize EnvC5
*UIConstraints: *MediaType HeavyCardStock *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize EnvC5
*UIConstraints: *MediaType ThinGlossy *PageSize EnvC5
*UIConstraints: *MediaType ThickGlossy *PageSize EnvC5
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvC5
*UIConstraints: *PageSize EnvC6 *MediaType None
*UIConstraints: *PageSize EnvC6 *MediaType Plain
*UIConstraints: *PageSize EnvC6 *MediaType Thick
*UIConstraints: *PageSize EnvC6 *MediaType Thin
*UIConstraints: *PageSize EnvC6 *MediaType Bond
*UIConstraints: *PageSize EnvC6 *MediaType Archive
*UIConstraints: *PageSize EnvC6 *MediaType Color
*UIConstraints: *PageSize EnvC6 *MediaType Labels
*UIConstraints: *PageSize EnvC6 *MediaType Transparency
*UIConstraints: *PageSize EnvC6 *MediaType Preprinted
*UIConstraints: *PageSize EnvC6 *MediaType Recycled
*UIConstraints: *PageSize EnvC6 *MediaType Cotton
*UIConstraints: *PageSize EnvC6 *MediaType Punched
*UIConstraints: *PageSize EnvC6 *MediaType Letterhead
*UIConstraints: *PageSize EnvC6 *MediaType HeavyWeight
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC6 *MediaType ThickCardStock
*UIConstraints: *PageSize EnvC6 *MediaType HeavyCardStock
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize EnvC6 *MediaType ThinGlossy
*UIConstraints: *PageSize EnvC6 *MediaType ThickGlossy
*UIConstraints: *PageSize EnvC6 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize EnvC6
*UIConstraints: *MediaType Plain *PageSize EnvC6
*UIConstraints: *MediaType Thick *PageSize EnvC6
*UIConstraints: *MediaType Thin *PageSize EnvC6
*UIConstraints: *MediaType Bond *PageSize EnvC6
*UIConstraints: *MediaType Archive *PageSize EnvC6
*UIConstraints: *MediaType Color *PageSize EnvC6
*UIConstraints: *MediaType Labels *PageSize EnvC6
*UIConstraints: *MediaType Transparency *PageSize EnvC6
*UIConstraints: *MediaType Preprinted *PageSize EnvC6
*UIConstraints: *MediaType Recycled *PageSize EnvC6
*UIConstraints: *MediaType Cotton *PageSize EnvC6
*UIConstraints: *MediaType Punched *PageSize EnvC6
*UIConstraints: *MediaType Letterhead *PageSize EnvC6
*UIConstraints: *MediaType HeavyWeight *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize EnvC6
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC6
*UIConstraints: *MediaType ThickCardStock *PageSize EnvC6
*UIConstraints: *MediaType HeavyCardStock *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize EnvC6
*UIConstraints: *MediaType ThinGlossy *PageSize EnvC6
*UIConstraints: *MediaType ThickGlossy *PageSize EnvC6
*UIConstraints: *MediaType HeavyGlossy *PageSize EnvC6
*UIConstraints: *PageSize Env10 *MediaType None
*UIConstraints: *PageSize Env10 *MediaType Plain
*UIConstraints: *PageSize Env10 *MediaType Thick
*UIConstraints: *PageSize Env10 *MediaType Thin
*UIConstraints: *PageSize Env10 *MediaType Bond
*UIConstraints: *PageSize Env10 *MediaType Archive
*UIConstraints: *PageSize Env10 *MediaType Color
*UIConstraints: *PageSize Env10 *MediaType Labels
*UIConstraints: *PageSize Env10 *MediaType Transparency
*UIConstraints: *PageSize Env10 *MediaType Preprinted
*UIConstraints: *PageSize Env10 *MediaType Recycled
*UIConstraints: *PageSize Env10 *MediaType Cotton
*UIConstraints: *PageSize Env10 *MediaType Punched
*UIConstraints: *PageSize Env10 *MediaType Letterhead
*UIConstraints: *PageSize Env10 *MediaType HeavyWeight
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize Env10 *MediaType ThinCardStock
*UIConstraints: *PageSize Env10 *MediaType ThickCardStock
*UIConstraints: *PageSize Env10 *MediaType HeavyCardStock
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize Env10 *MediaType ThinGlossy
*UIConstraints: *PageSize Env10 *MediaType ThickGlossy
*UIConstraints: *PageSize Env10 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize Env10
*UIConstraints: *MediaType Plain *PageSize Env10
*UIConstraints: *MediaType Thick *PageSize Env10
*UIConstraints: *MediaType Thin *PageSize Env10
*UIConstraints: *MediaType Bond *PageSize Env10
*UIConstraints: *MediaType Archive *PageSize Env10
*UIConstraints: *MediaType Color *PageSize Env10
*UIConstraints: *MediaType Labels *PageSize Env10
*UIConstraints: *MediaType Transparency *PageSize Env10
*UIConstraints: *MediaType Preprinted *PageSize Env10
*UIConstraints: *MediaType Recycled *PageSize Env10
*UIConstraints: *MediaType Cotton *PageSize Env10
*UIConstraints: *MediaType Punched *PageSize Env10
*UIConstraints: *MediaType Letterhead *PageSize Env10
*UIConstraints: *MediaType HeavyWeight *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize Env10
*UIConstraints: *MediaType ThinCardStock *PageSize Env10
*UIConstraints: *MediaType ThickCardStock *PageSize Env10
*UIConstraints: *MediaType HeavyCardStock *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize Env10
*UIConstraints: *MediaType ThinGlossy *PageSize Env10
*UIConstraints: *MediaType ThickGlossy *PageSize Env10
*UIConstraints: *MediaType HeavyGlossy *PageSize Env10
*UIConstraints: *PageSize Env9 *MediaType None
*UIConstraints: *PageSize Env9 *MediaType Plain
*UIConstraints: *PageSize Env9 *MediaType Thick
*UIConstraints: *PageSize Env9 *MediaType Thin
*UIConstraints: *PageSize Env9 *MediaType Bond
*UIConstraints: *PageSize Env9 *MediaType Archive
*UIConstraints: *PageSize Env9 *MediaType Color
*UIConstraints: *PageSize Env9 *MediaType Labels
*UIConstraints: *PageSize Env9 *MediaType Transparency
*UIConstraints: *PageSize Env9 *MediaType Preprinted
*UIConstraints: *PageSize Env9 *MediaType Recycled
*UIConstraints: *PageSize Env9 *MediaType Cotton
*UIConstraints: *PageSize Env9 *MediaType Punched
*UIConstraints: *PageSize Env9 *MediaType Letterhead
*UIConstraints: *PageSize Env9 *MediaType HeavyWeight
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize Env9 *MediaType ThinCardStock
*UIConstraints: *PageSize Env9 *MediaType ThickCardStock
*UIConstraints: *PageSize Env9 *MediaType HeavyCardStock
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize Env9 *MediaType ThinGlossy
*UIConstraints: *PageSize Env9 *MediaType ThickGlossy
*UIConstraints: *PageSize Env9 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize Env9
*UIConstraints: *MediaType Plain *PageSize Env9
*UIConstraints: *MediaType Thick *PageSize Env9
*UIConstraints: *MediaType Thin *PageSize Env9
*UIConstraints: *MediaType Bond *PageSize Env9
*UIConstraints: *MediaType Archive *PageSize Env9
*UIConstraints: *MediaType Color *PageSize Env9
*UIConstraints: *MediaType Labels *PageSize Env9
*UIConstraints: *MediaType Transparency *PageSize Env9
*UIConstraints: *MediaType Preprinted *PageSize Env9
*UIConstraints: *MediaType Recycled *PageSize Env9
*UIConstraints: *MediaType Cotton *PageSize Env9
*UIConstraints: *MediaType Punched *PageSize Env9
*UIConstraints: *MediaType Letterhead *PageSize Env9
*UIConstraints: *MediaType HeavyWeight *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize Env9
*UIConstraints: *MediaType ThinCardStock *PageSize Env9
*UIConstraints: *MediaType ThickCardStock *PageSize Env9
*UIConstraints: *MediaType HeavyCardStock *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize Env9
*UIConstraints: *MediaType ThinGlossy *PageSize Env9
*UIConstraints: *MediaType ThickGlossy *PageSize Env9
*UIConstraints: *MediaType HeavyGlossy *PageSize Env9
*UIConstraints: *PageSize C4 *MediaType None
*UIConstraints: *PageSize C4 *MediaType Plain
*UIConstraints: *PageSize C4 *MediaType Thick
*UIConstraints: *PageSize C4 *MediaType Thin
*UIConstraints: *PageSize C4 *MediaType Bond
*UIConstraints: *PageSize C4 *MediaType Archive
*UIConstraints: *PageSize C4 *MediaType Color
*UIConstraints: *PageSize C4 *MediaType Labels
*UIConstraints: *PageSize C4 *MediaType Transparency
*UIConstraints: *PageSize C4 *MediaType Preprinted
*UIConstraints: *PageSize C4 *MediaType Recycled
*UIConstraints: *PageSize C4 *MediaType Cotton
*UIConstraints: *PageSize C4 *MediaType Punched
*UIConstraints: *PageSize C4 *MediaType Letterhead
*UIConstraints: *PageSize C4 *MediaType HeavyWeight
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize C4 *MediaType ThinCardStock
*UIConstraints: *PageSize C4 *MediaType ThickCardStock
*UIConstraints: *PageSize C4 *MediaType HeavyCardStock
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize C4 *MediaType ThinGlossy
*UIConstraints: *PageSize C4 *MediaType ThickGlossy
*UIConstraints: *PageSize C4 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageSize C4
*UIConstraints: *MediaType Plain *PageSize C4
*UIConstraints: *MediaType Thick *PageSize C4
*UIConstraints: *MediaType Thin *PageSize C4
*UIConstraints: *MediaType Bond *PageSize C4
*UIConstraints: *MediaType Archive *PageSize C4
*UIConstraints: *MediaType Color *PageSize C4
*UIConstraints: *MediaType Labels *PageSize C4
*UIConstraints: *MediaType Transparency *PageSize C4
*UIConstraints: *MediaType Preprinted *PageSize C4
*UIConstraints: *MediaType Recycled *PageSize C4
*UIConstraints: *MediaType Cotton *PageSize C4
*UIConstraints: *MediaType Punched *PageSize C4
*UIConstraints: *MediaType Letterhead *PageSize C4
*UIConstraints: *MediaType HeavyWeight *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize C4
*UIConstraints: *MediaType ThinCardStock *PageSize C4
*UIConstraints: *MediaType ThickCardStock *PageSize C4
*UIConstraints: *MediaType HeavyCardStock *PageSize C4
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize C4
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize C4
*UIConstraints: *MediaType ThinGlossy *PageSize C4
*UIConstraints: *MediaType ThickGlossy *PageSize C4
*UIConstraints: *MediaType HeavyGlossy *PageSize C4
*% =========================================================
*% Envelope(PageRegion) - MediaType
*% =========================================================
*UIConstraints: *PageRegion EnvMonarch *MediaType None
*UIConstraints: *PageRegion EnvMonarch *MediaType Plain
*UIConstraints: *PageRegion EnvMonarch *MediaType Thick
*UIConstraints: *PageRegion EnvMonarch *MediaType Thin
*UIConstraints: *PageRegion EnvMonarch *MediaType Bond
*UIConstraints: *PageRegion EnvMonarch *MediaType Archive
*UIConstraints: *PageRegion EnvMonarch *MediaType Color
*UIConstraints: *PageRegion EnvMonarch *MediaType Labels
*UIConstraints: *PageRegion EnvMonarch *MediaType Transparency
*UIConstraints: *PageRegion EnvMonarch *MediaType Preprinted
*UIConstraints: *PageRegion EnvMonarch *MediaType Recycled
*UIConstraints: *PageRegion EnvMonarch *MediaType Cotton
*UIConstraints: *PageRegion EnvMonarch *MediaType Punched
*UIConstraints: *PageRegion EnvMonarch *MediaType Letterhead
*UIConstraints: *PageRegion EnvMonarch *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvMonarch *MediaType ThickCardStock
*UIConstraints: *PageRegion EnvMonarch *MediaType HeavyCardStock
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion EnvMonarch *MediaType ThinGlossy
*UIConstraints: *PageRegion EnvMonarch *MediaType ThickGlossy
*UIConstraints: *PageRegion EnvMonarch *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion EnvMonarch
*UIConstraints: *MediaType Plain *PageRegion EnvMonarch
*UIConstraints: *MediaType Thick *PageRegion EnvMonarch
*UIConstraints: *MediaType Thin *PageRegion EnvMonarch
*UIConstraints: *MediaType Bond *PageRegion EnvMonarch
*UIConstraints: *MediaType Archive *PageRegion EnvMonarch
*UIConstraints: *MediaType Color *PageRegion EnvMonarch
*UIConstraints: *MediaType Labels *PageRegion EnvMonarch
*UIConstraints: *MediaType Transparency *PageRegion EnvMonarch
*UIConstraints: *MediaType Preprinted *PageRegion EnvMonarch
*UIConstraints: *MediaType Recycled *PageRegion EnvMonarch
*UIConstraints: *MediaType Cotton *PageRegion EnvMonarch
*UIConstraints: *MediaType Punched *PageRegion EnvMonarch
*UIConstraints: *MediaType Letterhead *PageRegion EnvMonarch
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvMonarch
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvMonarch
*UIConstraints: *MediaType HeavyCardStock *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion EnvMonarch
*UIConstraints: *MediaType ThinGlossy *PageRegion EnvMonarch
*UIConstraints: *MediaType ThickGlossy *PageRegion EnvMonarch
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvDL *MediaType None
*UIConstraints: *PageRegion EnvDL *MediaType Plain
*UIConstraints: *PageRegion EnvDL *MediaType Thick
*UIConstraints: *PageRegion EnvDL *MediaType Thin
*UIConstraints: *PageRegion EnvDL *MediaType Bond
*UIConstraints: *PageRegion EnvDL *MediaType Archive
*UIConstraints: *PageRegion EnvDL *MediaType Color
*UIConstraints: *PageRegion EnvDL *MediaType Labels
*UIConstraints: *PageRegion EnvDL *MediaType Transparency
*UIConstraints: *PageRegion EnvDL *MediaType Preprinted
*UIConstraints: *PageRegion EnvDL *MediaType Recycled
*UIConstraints: *PageRegion EnvDL *MediaType Cotton
*UIConstraints: *PageRegion EnvDL *MediaType Punched
*UIConstraints: *PageRegion EnvDL *MediaType Letterhead
*UIConstraints: *PageRegion EnvDL *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion EnvDL *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvDL *MediaType ThickCardStock
*UIConstraints: *PageRegion EnvDL *MediaType HeavyCardStock
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion EnvDL *MediaType ThinGlossy
*UIConstraints: *PageRegion EnvDL *MediaType ThickGlossy
*UIConstraints: *PageRegion EnvDL *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion EnvDL
*UIConstraints: *MediaType Plain *PageRegion EnvDL
*UIConstraints: *MediaType Thick *PageRegion EnvDL
*UIConstraints: *MediaType Thin *PageRegion EnvDL
*UIConstraints: *MediaType Bond *PageRegion EnvDL
*UIConstraints: *MediaType Archive *PageRegion EnvDL
*UIConstraints: *MediaType Color *PageRegion EnvDL
*UIConstraints: *MediaType Labels *PageRegion EnvDL
*UIConstraints: *MediaType Transparency *PageRegion EnvDL
*UIConstraints: *MediaType Preprinted *PageRegion EnvDL
*UIConstraints: *MediaType Recycled *PageRegion EnvDL
*UIConstraints: *MediaType Cotton *PageRegion EnvDL
*UIConstraints: *MediaType Punched *PageRegion EnvDL
*UIConstraints: *MediaType Letterhead *PageRegion EnvDL
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion EnvDL
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvDL
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvDL
*UIConstraints: *MediaType HeavyCardStock *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion EnvDL
*UIConstraints: *MediaType ThinGlossy *PageRegion EnvDL
*UIConstraints: *MediaType ThickGlossy *PageRegion EnvDL
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvDL
*UIConstraints: *PageRegion EnvC5 *MediaType None
*UIConstraints: *PageRegion EnvC5 *MediaType Plain
*UIConstraints: *PageRegion EnvC5 *MediaType Thick
*UIConstraints: *PageRegion EnvC5 *MediaType Thin
*UIConstraints: *PageRegion EnvC5 *MediaType Bond
*UIConstraints: *PageRegion EnvC5 *MediaType Archive
*UIConstraints: *PageRegion EnvC5 *MediaType Color
*UIConstraints: *PageRegion EnvC5 *MediaType Labels
*UIConstraints: *PageRegion EnvC5 *MediaType Transparency
*UIConstraints: *PageRegion EnvC5 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC5 *MediaType Recycled
*UIConstraints: *PageRegion EnvC5 *MediaType Cotton
*UIConstraints: *PageRegion EnvC5 *MediaType Punched
*UIConstraints: *PageRegion EnvC5 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC5 *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC5 *MediaType ThickCardStock
*UIConstraints: *PageRegion EnvC5 *MediaType HeavyCardStock
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion EnvC5 *MediaType ThinGlossy
*UIConstraints: *PageRegion EnvC5 *MediaType ThickGlossy
*UIConstraints: *PageRegion EnvC5 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion EnvC5
*UIConstraints: *MediaType Plain *PageRegion EnvC5
*UIConstraints: *MediaType Thick *PageRegion EnvC5
*UIConstraints: *MediaType Thin *PageRegion EnvC5
*UIConstraints: *MediaType Bond *PageRegion EnvC5
*UIConstraints: *MediaType Archive *PageRegion EnvC5
*UIConstraints: *MediaType Color *PageRegion EnvC5
*UIConstraints: *MediaType Labels *PageRegion EnvC5
*UIConstraints: *MediaType Transparency *PageRegion EnvC5
*UIConstraints: *MediaType Preprinted *PageRegion EnvC5
*UIConstraints: *MediaType Recycled *PageRegion EnvC5
*UIConstraints: *MediaType Cotton *PageRegion EnvC5
*UIConstraints: *MediaType Punched *PageRegion EnvC5
*UIConstraints: *MediaType Letterhead *PageRegion EnvC5
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion EnvC5
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC5
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvC5
*UIConstraints: *MediaType HeavyCardStock *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion EnvC5
*UIConstraints: *MediaType ThinGlossy *PageRegion EnvC5
*UIConstraints: *MediaType ThickGlossy *PageRegion EnvC5
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC6 *MediaType None
*UIConstraints: *PageRegion EnvC6 *MediaType Plain
*UIConstraints: *PageRegion EnvC6 *MediaType Thick
*UIConstraints: *PageRegion EnvC6 *MediaType Thin
*UIConstraints: *PageRegion EnvC6 *MediaType Bond
*UIConstraints: *PageRegion EnvC6 *MediaType Archive
*UIConstraints: *PageRegion EnvC6 *MediaType Color
*UIConstraints: *PageRegion EnvC6 *MediaType Labels
*UIConstraints: *PageRegion EnvC6 *MediaType Transparency
*UIConstraints: *PageRegion EnvC6 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC6 *MediaType Recycled
*UIConstraints: *PageRegion EnvC6 *MediaType Cotton
*UIConstraints: *PageRegion EnvC6 *MediaType Punched
*UIConstraints: *PageRegion EnvC6 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC6 *MediaType HeavyWeight
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC6 *MediaType ThickCardStock
*UIConstraints: *PageRegion EnvC6 *MediaType HeavyCardStock
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion EnvC6 *MediaType ThinGlossy
*UIConstraints: *PageRegion EnvC6 *MediaType ThickGlossy
*UIConstraints: *PageRegion EnvC6 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion EnvC6
*UIConstraints: *MediaType Plain *PageRegion EnvC6
*UIConstraints: *MediaType Thick *PageRegion EnvC6
*UIConstraints: *MediaType Thin *PageRegion EnvC6
*UIConstraints: *MediaType Bond *PageRegion EnvC6
*UIConstraints: *MediaType Archive *PageRegion EnvC6
*UIConstraints: *MediaType Color *PageRegion EnvC6
*UIConstraints: *MediaType Labels *PageRegion EnvC6
*UIConstraints: *MediaType Transparency *PageRegion EnvC6
*UIConstraints: *MediaType Preprinted *PageRegion EnvC6
*UIConstraints: *MediaType Recycled *PageRegion EnvC6
*UIConstraints: *MediaType Cotton *PageRegion EnvC6
*UIConstraints: *MediaType Punched *PageRegion EnvC6
*UIConstraints: *MediaType Letterhead *PageRegion EnvC6
*UIConstraints: *MediaType HeavyWeight *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion EnvC6
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC6
*UIConstraints: *MediaType ThickCardStock *PageRegion EnvC6
*UIConstraints: *MediaType HeavyCardStock *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion EnvC6
*UIConstraints: *MediaType ThinGlossy *PageRegion EnvC6
*UIConstraints: *MediaType ThickGlossy *PageRegion EnvC6
*UIConstraints: *MediaType HeavyGlossy *PageRegion EnvC6
*UIConstraints: *PageRegion Env10 *MediaType None
*UIConstraints: *PageRegion Env10 *MediaType Plain
*UIConstraints: *PageRegion Env10 *MediaType Thick
*UIConstraints: *PageRegion Env10 *MediaType Thin
*UIConstraints: *PageRegion Env10 *MediaType Bond
*UIConstraints: *PageRegion Env10 *MediaType Archive
*UIConstraints: *PageRegion Env10 *MediaType Color
*UIConstraints: *PageRegion Env10 *MediaType Labels
*UIConstraints: *PageRegion Env10 *MediaType Transparency
*UIConstraints: *PageRegion Env10 *MediaType Preprinted
*UIConstraints: *PageRegion Env10 *MediaType Recycled
*UIConstraints: *PageRegion Env10 *MediaType Cotton
*UIConstraints: *PageRegion Env10 *MediaType Punched
*UIConstraints: *PageRegion Env10 *MediaType Letterhead
*UIConstraints: *PageRegion Env10 *MediaType HeavyWeight
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion Env10 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env10 *MediaType ThickCardStock
*UIConstraints: *PageRegion Env10 *MediaType HeavyCardStock
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion Env10 *MediaType ThinGlossy
*UIConstraints: *PageRegion Env10 *MediaType ThickGlossy
*UIConstraints: *PageRegion Env10 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion Env10
*UIConstraints: *MediaType Plain *PageRegion Env10
*UIConstraints: *MediaType Thick *PageRegion Env10
*UIConstraints: *MediaType Thin *PageRegion Env10
*UIConstraints: *MediaType Bond *PageRegion Env10
*UIConstraints: *MediaType Archive *PageRegion Env10
*UIConstraints: *MediaType Color *PageRegion Env10
*UIConstraints: *MediaType Labels *PageRegion Env10
*UIConstraints: *MediaType Transparency *PageRegion Env10
*UIConstraints: *MediaType Preprinted *PageRegion Env10
*UIConstraints: *MediaType Recycled *PageRegion Env10
*UIConstraints: *MediaType Cotton *PageRegion Env10
*UIConstraints: *MediaType Punched *PageRegion Env10
*UIConstraints: *MediaType Letterhead *PageRegion Env10
*UIConstraints: *MediaType HeavyWeight *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion Env10
*UIConstraints: *MediaType ThinCardStock *PageRegion Env10
*UIConstraints: *MediaType ThickCardStock *PageRegion Env10
*UIConstraints: *MediaType HeavyCardStock *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion Env10
*UIConstraints: *MediaType ThinGlossy *PageRegion Env10
*UIConstraints: *MediaType ThickGlossy *PageRegion Env10
*UIConstraints: *MediaType HeavyGlossy *PageRegion Env10
*UIConstraints: *PageRegion Env9 *MediaType None
*UIConstraints: *PageRegion Env9 *MediaType Plain
*UIConstraints: *PageRegion Env9 *MediaType Thick
*UIConstraints: *PageRegion Env9 *MediaType Thin
*UIConstraints: *PageRegion Env9 *MediaType Bond
*UIConstraints: *PageRegion Env9 *MediaType Archive
*UIConstraints: *PageRegion Env9 *MediaType Color
*UIConstraints: *PageRegion Env9 *MediaType Labels
*UIConstraints: *PageRegion Env9 *MediaType Transparency
*UIConstraints: *PageRegion Env9 *MediaType Preprinted
*UIConstraints: *PageRegion Env9 *MediaType Recycled
*UIConstraints: *PageRegion Env9 *MediaType Cotton
*UIConstraints: *PageRegion Env9 *MediaType Punched
*UIConstraints: *PageRegion Env9 *MediaType Letterhead
*UIConstraints: *PageRegion Env9 *MediaType HeavyWeight
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion Env9 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env9 *MediaType ThickCardStock
*UIConstraints: *PageRegion Env9 *MediaType HeavyCardStock
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion Env9 *MediaType ThinGlossy
*UIConstraints: *PageRegion Env9 *MediaType ThickGlossy
*UIConstraints: *PageRegion Env9 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion Env9
*UIConstraints: *MediaType Plain *PageRegion Env9
*UIConstraints: *MediaType Thick *PageRegion Env9
*UIConstraints: *MediaType Thin *PageRegion Env9
*UIConstraints: *MediaType Bond *PageRegion Env9
*UIConstraints: *MediaType Archive *PageRegion Env9
*UIConstraints: *MediaType Color *PageRegion Env9
*UIConstraints: *MediaType Labels *PageRegion Env9
*UIConstraints: *MediaType Transparency *PageRegion Env9
*UIConstraints: *MediaType Preprinted *PageRegion Env9
*UIConstraints: *MediaType Recycled *PageRegion Env9
*UIConstraints: *MediaType Cotton *PageRegion Env9
*UIConstraints: *MediaType Punched *PageRegion Env9
*UIConstraints: *MediaType Letterhead *PageRegion Env9
*UIConstraints: *MediaType HeavyWeight *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion Env9
*UIConstraints: *MediaType ThinCardStock *PageRegion Env9
*UIConstraints: *MediaType ThickCardStock *PageRegion Env9
*UIConstraints: *MediaType HeavyCardStock *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion Env9
*UIConstraints: *MediaType ThinGlossy *PageRegion Env9
*UIConstraints: *MediaType ThickGlossy *PageRegion Env9
*UIConstraints: *MediaType HeavyGlossy *PageRegion Env9
*UIConstraints: *PageRegion C4 *MediaType None
*UIConstraints: *PageRegion C4 *MediaType Plain
*UIConstraints: *PageRegion C4 *MediaType Thick
*UIConstraints: *PageRegion C4 *MediaType Thin
*UIConstraints: *PageRegion C4 *MediaType Bond
*UIConstraints: *PageRegion C4 *MediaType Archive
*UIConstraints: *PageRegion C4 *MediaType Color
*UIConstraints: *PageRegion C4 *MediaType Labels
*UIConstraints: *PageRegion C4 *MediaType Transparency
*UIConstraints: *PageRegion C4 *MediaType Preprinted
*UIConstraints: *PageRegion C4 *MediaType Recycled
*UIConstraints: *PageRegion C4 *MediaType Cotton
*UIConstraints: *PageRegion C4 *MediaType Punched
*UIConstraints: *PageRegion C4 *MediaType Letterhead
*UIConstraints: *PageRegion C4 *MediaType HeavyWeight
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion C4 *MediaType ThinCardStock
*UIConstraints: *PageRegion C4 *MediaType ThickCardStock
*UIConstraints: *PageRegion C4 *MediaType HeavyCardStock
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion C4 *MediaType ThinGlossy
*UIConstraints: *PageRegion C4 *MediaType ThickGlossy
*UIConstraints: *PageRegion C4 *MediaType HeavyGlossy
*UIConstraints: *MediaType None *PageRegion C4
*UIConstraints: *MediaType Plain *PageRegion C4
*UIConstraints: *MediaType Thick *PageRegion C4
*UIConstraints: *MediaType Thin *PageRegion C4
*UIConstraints: *MediaType Bond *PageRegion C4
*UIConstraints: *MediaType Archive *PageRegion C4
*UIConstraints: *MediaType Color *PageRegion C4
*UIConstraints: *MediaType Labels *PageRegion C4
*UIConstraints: *MediaType Transparency *PageRegion C4
*UIConstraints: *MediaType Preprinted *PageRegion C4
*UIConstraints: *MediaType Recycled *PageRegion C4
*UIConstraints: *MediaType Cotton *PageRegion C4
*UIConstraints: *MediaType Punched *PageRegion C4
*UIConstraints: *MediaType Letterhead *PageRegion C4
*UIConstraints: *MediaType HeavyWeight *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion C4
*UIConstraints: *MediaType ThinCardStock *PageRegion C4
*UIConstraints: *MediaType ThickCardStock *PageRegion C4
*UIConstraints: *MediaType HeavyCardStock *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion C4
*UIConstraints: *MediaType ThinGlossy *PageRegion C4
*UIConstraints: *MediaType ThickGlossy *PageRegion C4
*UIConstraints: *MediaType HeavyGlossy *PageRegion C4
*% =========================================================
*% PageSize Postcard_S - MediaType
*% =========================================================
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyWeight2
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyWeight3
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyWeight4
*UIConstraints: *PageSize Postcard_S *MediaType None
*UIConstraints: *PageSize Postcard_S *MediaType Plain
*UIConstraints: *PageSize Postcard_S *MediaType Thick
*UIConstraints: *PageSize Postcard_S *MediaType Thin
*UIConstraints: *PageSize Postcard_S *MediaType Cotton
*UIConstraints: *PageSize Postcard_S *MediaType Color
*UIConstraints: *PageSize Postcard_S *MediaType Preprinted
*UIConstraints: *PageSize Postcard_S *MediaType Recycled
*UIConstraints: *PageSize Postcard_S *MediaType Bond
*UIConstraints: *PageSize Postcard_S *MediaType Archive
*UIConstraints: *PageSize Postcard_S *MediaType Letterhead
*UIConstraints: *PageSize Postcard_S *MediaType Punched
*UIConstraints: *PageSize Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageSize Postcard_S *MediaType ThickCardStock
*UIConstraints: *PageSize Postcard_S *MediaType HeavyCardStock
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType ThickEnv
*UIConstraints: *PageSize Postcard_S *MediaType Transparency
*UIConstraints: *PageSize Postcard_S *MediaType Labels
*UIConstraints: *PageSize Postcard_S *MediaType ThinGlossy
*UIConstraints: *PageSize Postcard_S *MediaType ThickGlossy
*UIConstraints: *PageSize Postcard_S *MediaType HeavyGlossy
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageSize Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageSize Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageSize Postcard_S
*UIConstraints: *MediaType None *PageSize Postcard_S
*UIConstraints: *MediaType Plain *PageSize Postcard_S
*UIConstraints: *MediaType Thick *PageSize Postcard_S
*UIConstraints: *MediaType Thin *PageSize Postcard_S
*UIConstraints: *MediaType Cotton *PageSize Postcard_S
*UIConstraints: *MediaType Color *PageSize Postcard_S
*UIConstraints: *MediaType Preprinted *PageSize Postcard_S
*UIConstraints: *MediaType Recycled *PageSize Postcard_S
*UIConstraints: *MediaType Bond *PageSize Postcard_S
*UIConstraints: *MediaType Archive *PageSize Postcard_S
*UIConstraints: *MediaType Letterhead *PageSize Postcard_S
*UIConstraints: *MediaType Punched *PageSize Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageSize Postcard_S
*UIConstraints: *MediaType ThickCardStock *PageSize Postcard_S
*UIConstraints: *MediaType HeavyCardStock *PageSize Postcard_S
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageSize Postcard_S
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType ThickEnv *PageSize Postcard_S
*UIConstraints: *MediaType Transparency *PageSize Postcard_S
*UIConstraints: *MediaType Labels *PageSize Postcard_S
*UIConstraints: *MediaType ThinGlossy *PageSize Postcard_S
*UIConstraints: *MediaType ThickGlossy *PageSize Postcard_S
*UIConstraints: *MediaType HeavyGlossy *PageSize Postcard_S
*% =========================================================
*% PageRegion Postcard_S - MediaType
*% =========================================================
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyWeight2
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyWeight3
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyWeight4
*UIConstraints: *PageRegion Postcard_S *MediaType None
*UIConstraints: *PageRegion Postcard_S *MediaType Plain
*UIConstraints: *PageRegion Postcard_S *MediaType Thick
*UIConstraints: *PageRegion Postcard_S *MediaType Thin
*UIConstraints: *PageRegion Postcard_S *MediaType Cotton
*UIConstraints: *PageRegion Postcard_S *MediaType Color
*UIConstraints: *PageRegion Postcard_S *MediaType Preprinted
*UIConstraints: *PageRegion Postcard_S *MediaType Recycled
*UIConstraints: *PageRegion Postcard_S *MediaType Bond
*UIConstraints: *PageRegion Postcard_S *MediaType Archive
*UIConstraints: *PageRegion Postcard_S *MediaType Letterhead
*UIConstraints: *PageRegion Postcard_S *MediaType Punched
*UIConstraints: *PageRegion Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType ThickCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType HeavyCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyCardStock1
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyCardStock2
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType ThickEnv
*UIConstraints: *PageRegion Postcard_S *MediaType Transparency
*UIConstraints: *PageRegion Postcard_S *MediaType Labels
*UIConstraints: *PageRegion Postcard_S *MediaType ThinGlossy
*UIConstraints: *PageRegion Postcard_S *MediaType ThickGlossy
*UIConstraints: *PageRegion Postcard_S *MediaType HeavyGlossy
*UIConstraints: *MediaType ExtraHeavyWeight2 *PageRegion Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight3 *PageRegion Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight4 *PageRegion Postcard_S
*UIConstraints: *MediaType None *PageRegion Postcard_S
*UIConstraints: *MediaType Plain *PageRegion Postcard_S
*UIConstraints: *MediaType Thick *PageRegion Postcard_S
*UIConstraints: *MediaType Thin *PageRegion Postcard_S
*UIConstraints: *MediaType Cotton *PageRegion Postcard_S
*UIConstraints: *MediaType Color *PageRegion Postcard_S
*UIConstraints: *MediaType Preprinted *PageRegion Postcard_S
*UIConstraints: *MediaType Recycled *PageRegion Postcard_S
*UIConstraints: *MediaType Bond *PageRegion Postcard_S
*UIConstraints: *MediaType Archive *PageRegion Postcard_S
*UIConstraints: *MediaType Letterhead *PageRegion Postcard_S
*UIConstraints: *MediaType Punched *PageRegion Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType ThickCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType HeavyCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType ExtraHeavyCardStock1 *PageRegion Postcard_S
*UIConstraints: *MediaType ExtraHeavyCardStock2 *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType ThickEnv *PageRegion Postcard_S
*UIConstraints: *MediaType Transparency *PageRegion Postcard_S
*UIConstraints: *MediaType Labels *PageRegion Postcard_S
*UIConstraints: *MediaType ThinGlossy *PageRegion Postcard_S
*UIConstraints: *MediaType ThickGlossy *PageRegion Postcard_S
*UIConstraints: *MediaType HeavyGlossy *PageRegion Postcard_S
*% =========================================================
*% PageSize - Envelope(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType Envelope
*UIConstraints: *PageSize Executive *MediaType Envelope
*UIConstraints: *PageSize US-Folio *MediaType Envelope
*UIConstraints: *PageSize Oficio_S *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize A3 *MediaType Envelope
*UIConstraints: *PageSize B4 *MediaType Envelope
*UIConstraints: *PageSize SRA3 *MediaType Envelope
*UIConstraints: *PageSize 8K *MediaType Envelope
*UIConstraints: *PageSize 16K *MediaType Envelope
*UIConstraints: *PageSize 12x18 *MediaType Envelope
*UIConstraints: *PageSize Tabloid *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Legal
*UIConstraints: *MediaType Envelope *PageSize Executive
*UIConstraints: *MediaType Envelope *PageSize US-Folio
*UIConstraints: *MediaType Envelope *PageSize Oficio_S
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize A3
*UIConstraints: *MediaType Envelope *PageSize B4
*UIConstraints: *MediaType Envelope *PageSize SRA3
*UIConstraints: *MediaType Envelope *PageSize 8K
*UIConstraints: *MediaType Envelope *PageSize 16K
*UIConstraints: *MediaType Envelope *PageSize 12x18
*UIConstraints: *MediaType Envelope *PageSize Tabloid
*% =========================================================
*% PageRegion - Envelope(MediaType)
*% =========================================================
*UIConstraints: *PageRegion Legal *MediaType Envelope
*UIConstraints: *PageRegion Executive *MediaType Envelope
*UIConstraints: *PageRegion US-Folio *MediaType Envelope
*UIConstraints: *PageRegion Oficio_S *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion A3 *MediaType Envelope
*UIConstraints: *PageRegion B4 *MediaType Envelope
*UIConstraints: *PageRegion SRA3 *MediaType Envelope
*UIConstraints: *PageRegion 8K *MediaType Envelope
*UIConstraints: *PageRegion 16K *MediaType Envelope
*UIConstraints: *PageRegion 12x18 *MediaType Envelope
*UIConstraints: *PageRegion Tabloid *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageRegion Legal
*UIConstraints: *MediaType Envelope *PageRegion Executive
*UIConstraints: *MediaType Envelope *PageRegion US-Folio
*UIConstraints: *MediaType Envelope *PageRegion Oficio_S
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion A3
*UIConstraints: *MediaType Envelope *PageRegion B4
*UIConstraints: *MediaType Envelope *PageRegion SRA3
*UIConstraints: *MediaType Envelope *PageRegion 8K
*UIConstraints: *MediaType Envelope *PageRegion 16K
*UIConstraints: *MediaType Envelope *PageRegion 12x18
*UIConstraints: *MediaType Envelope *PageRegion Tabloid
*% =========================================================
*% PageSize - ThickEnvelope(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType ThickEnv
*UIConstraints: *PageSize Executive *MediaType ThickEnv
*UIConstraints: *PageSize US-Folio *MediaType ThickEnv
*UIConstraints: *PageSize Oficio_S *MediaType ThickEnv
*UIConstraints: *PageSize Postcard_S *MediaType ThickEnv
*UIConstraints: *PageSize A3 *MediaType ThickEnv
*UIConstraints: *PageSize B4 *MediaType ThickEnv
*UIConstraints: *PageSize SRA3 *MediaType ThickEnv
*UIConstraints: *PageSize 8K *MediaType ThickEnv
*UIConstraints: *PageSize 16K *MediaType ThickEnv
*UIConstraints: *PageSize 12x18 *MediaType ThickEnv
*UIConstraints: *PageSize Tabloid *MediaType ThickEnv
*UIConstraints: *MediaType ThickEnv *PageSize Legal
*UIConstraints: *MediaType ThickEnv *PageSize Executive
*UIConstraints: *MediaType ThickEnv *PageSize US-Folio
*UIConstraints: *MediaType ThickEnv *PageSize Oficio_S
*UIConstraints: *MediaType ThickEnv *PageSize Postcard_S
*UIConstraints: *MediaType ThickEnv *PageSize A3
*UIConstraints: *MediaType ThickEnv *PageSize B4
*UIConstraints: *MediaType ThickEnv *PageSize SRA3
*UIConstraints: *MediaType ThickEnv *PageSize 8K
*UIConstraints: *MediaType ThickEnv *PageSize 16K
*UIConstraints: *MediaType ThickEnv *PageSize 12x18
*UIConstraints: *MediaType ThickEnv *PageSize Tabloid
*% =========================================================
*% PageRegion - ThickEnvelope(MediaType)
*% =========================================================
*UIConstraints: *PageRegion Legal *MediaType ThickEnv
*UIConstraints: *PageRegion Executive *MediaType ThickEnv
*UIConstraints: *PageRegion US-Folio *MediaType ThickEnv
*UIConstraints: *PageRegion Oficio_S *MediaType ThickEnv
*UIConstraints: *PageRegion Postcard_S *MediaType ThickEnv
*UIConstraints: *PageRegion A3 *MediaType ThickEnv
*UIConstraints: *PageRegion B4 *MediaType ThickEnv
*UIConstraints: *PageRegion SRA3 *MediaType ThickEnv
*UIConstraints: *PageRegion 8K *MediaType ThickEnv
*UIConstraints: *PageRegion 16K *MediaType ThickEnv
*UIConstraints: *PageRegion 12x18 *MediaType ThickEnv
*UIConstraints: *PageRegion Tabloid *MediaType ThickEnv
*UIConstraints: *MediaType ThickEnv *PageRegion Legal
*UIConstraints: *MediaType ThickEnv *PageRegion Executive
*UIConstraints: *MediaType ThickEnv *PageRegion US-Folio
*UIConstraints: *MediaType ThickEnv *PageRegion Oficio_S
*UIConstraints: *MediaType ThickEnv *PageRegion Postcard_S
*UIConstraints: *MediaType ThickEnv *PageRegion A3
*UIConstraints: *MediaType ThickEnv *PageRegion B4
*UIConstraints: *MediaType ThickEnv *PageRegion SRA3
*UIConstraints: *MediaType ThickEnv *PageRegion 8K
*UIConstraints: *MediaType ThickEnv *PageRegion 16K
*UIConstraints: *MediaType ThickEnv *PageRegion 12x18
*UIConstraints: *MediaType ThickEnv *PageRegion Tabloid
*% =========================================================
*% PageSize - Transparency(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType Transparency
*UIConstraints: *PageSize Executive *MediaType Transparency
*UIConstraints: *PageSize Statement *MediaType Transparency
*UIConstraints: *PageSize A3 *MediaType Transparency
*UIConstraints: *PageSize A5 *MediaType Transparency
*UIConstraints: *PageSize B4 *MediaType Transparency
*UIConstraints: *PageSize B5-JIS *MediaType Transparency
*UIConstraints: *PageSize A6 *MediaType Transparency
*UIConstraints: *PageSize B6 *MediaType Transparency
*UIConstraints: *PageSize B5-ISO *MediaType Transparency
*UIConstraints: *PageSize US-Folio *MediaType Transparency
*UIConstraints: *PageSize Oficio_S *MediaType Transparency
*UIConstraints: *PageSize 12x18 *MediaType Transparency
*UIConstraints: *PageSize SRA3 *MediaType Transparency
*UIConstraints: *PageSize 8K *MediaType Transparency
*UIConstraints: *PageSize 16K *MediaType Transparency
*UIConstraints: *PageSize Tabloid *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageSize Legal
*UIConstraints: *MediaType Transparency *PageSize Executive
*UIConstraints: *MediaType Transparency *PageSize Statement
*UIConstraints: *MediaType Transparency *PageSize A3
*UIConstraints: *MediaType Transparency *PageSize A5
*UIConstraints: *MediaType Transparency *PageSize B4
*UIConstraints: *MediaType Transparency *PageSize B5-JIS
*UIConstraints: *MediaType Transparency *PageSize A6
*UIConstraints: *MediaType Transparency *PageSize B6
*UIConstraints: *MediaType Transparency *PageSize B5-ISO
*UIConstraints: *MediaType Transparency *PageSize US-Folio
*UIConstraints: *MediaType Transparency *PageSize Oficio_S
*UIConstraints: *MediaType Transparency *PageSize 12x18
*UIConstraints: *MediaType Transparency *PageSize SRA3
*UIConstraints: *MediaType Transparency *PageSize 8K
*UIConstraints: *MediaType Transparency *PageSize 16K
*UIConstraints: *MediaType Transparency *PageSize Tabloid
*% =========================================================
*% PageRegion - Transparency(MediaType)
*% =========================================================
*UIConstraints: *PageRegion Legal *MediaType Transparency
*UIConstraints: *PageRegion Executive *MediaType Transparency
*UIConstraints: *PageRegion Statement *MediaType Transparency
*UIConstraints: *PageRegion A3 *MediaType Transparency
*UIConstraints: *PageRegion A5 *MediaType Transparency
*UIConstraints: *PageRegion B4 *MediaType Transparency
*UIConstraints: *PageRegion B5-JIS *MediaType Transparency
*UIConstraints: *PageRegion A6 *MediaType Transparency
*UIConstraints: *PageRegion B6 *MediaType Transparency
*UIConstraints: *PageRegion B5-ISO *MediaType Transparency
*UIConstraints: *PageRegion US-Folio *MediaType Transparency
*UIConstraints: *PageRegion Oficio_S *MediaType Transparency
*UIConstraints: *PageRegion 12x18 *MediaType Transparency
*UIConstraints: *PageRegion SRA3 *MediaType Transparency
*UIConstraints: *PageRegion 8K *MediaType Transparency
*UIConstraints: *PageRegion 16K *MediaType Transparency
*UIConstraints: *PageRegion Tabloid *MediaType Transparency
*UIConstraints: *MediaType Transparency *PageRegion Legal
*UIConstraints: *MediaType Transparency *PageRegion Executive
*UIConstraints: *MediaType Transparency *PageRegion Statement
*UIConstraints: *MediaType Transparency *PageRegion A3
*UIConstraints: *MediaType Transparency *PageRegion A5
*UIConstraints: *MediaType Transparency *PageRegion B4
*UIConstraints: *MediaType Transparency *PageRegion B5-JIS
*UIConstraints: *MediaType Transparency *PageRegion A6
*UIConstraints: *MediaType Transparency *PageRegion B6
*UIConstraints: *MediaType Transparency *PageRegion B5-ISO
*UIConstraints: *MediaType Transparency *PageRegion US-Folio
*UIConstraints: *MediaType Transparency *PageRegion Oficio_S
*UIConstraints: *MediaType Transparency *PageRegion 12x18
*UIConstraints: *MediaType Transparency *PageRegion SRA3
*UIConstraints: *MediaType Transparency *PageRegion 8K
*UIConstraints: *MediaType Transparency *PageRegion 16K
*UIConstraints: *MediaType Transparency *PageRegion Tabloid
*% =========================================================
*% PageSize - Labels(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType Labels
*UIConstraints: *PageSize Executive *MediaType Labels
*UIConstraints: *PageSize Statement *MediaType Labels
*UIConstraints: *PageSize A3 *MediaType Labels
*UIConstraints: *PageSize A5 *MediaType Labels
*UIConstraints: *PageSize B4 *MediaType Labels
*UIConstraints: *PageSize B5-JIS *MediaType Labels
*UIConstraints: *PageSize A6 *MediaType Labels
*UIConstraints: *PageSize B6 *MediaType Labels
*UIConstraints: *PageSize B5-ISO *MediaType Labels
*UIConstraints: *PageSize US-Folio *MediaType Labels
*UIConstraints: *PageSize Oficio_S *MediaType Labels
*UIConstraints: *PageSize 12x18 *MediaType Labels
*UIConstraints: *PageSize SRA3 *MediaType Labels
*UIConstraints: *PageSize 8K *MediaType Labels
*UIConstraints: *PageSize 16K *MediaType Labels
*UIConstraints: *PageSize Tabloid *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize Legal
*UIConstraints: *MediaType Labels *PageSize Executive
*UIConstraints: *MediaType Labels *PageSize Statement
*UIConstraints: *MediaType Labels *PageSize A3
*UIConstraints: *MediaType Labels *PageSize A5
*UIConstraints: *MediaType Labels *PageSize B4
*UIConstraints: *MediaType Labels *PageSize B5-JIS
*UIConstraints: *MediaType Labels *PageSize A6
*UIConstraints: *MediaType Labels *PageSize B6
*UIConstraints: *MediaType Labels *PageSize B5-ISO
*UIConstraints: *MediaType Labels *PageSize US-Folio
*UIConstraints: *MediaType Labels *PageSize Oficio_S
*UIConstraints: *MediaType Labels *PageSize 12x18
*UIConstraints: *MediaType Labels *PageSize SRA3
*UIConstraints: *MediaType Labels *PageSize 8K
*UIConstraints: *MediaType Labels *PageSize 16K
*UIConstraints: *MediaType Labels *PageSize Tabloid
*% =========================================================
*% PageRegion - Labels(MediaType)
*% =========================================================
*UIConstraints: *PageRegion Legal *MediaType Labels
*UIConstraints: *PageRegion Executive *MediaType Labels
*UIConstraints: *PageRegion Statement *MediaType Labels
*UIConstraints: *PageRegion A3 *MediaType Labels
*UIConstraints: *PageRegion A5 *MediaType Labels
*UIConstraints: *PageRegion B4 *MediaType Labels
*UIConstraints: *PageRegion B5-JIS *MediaType Labels
*UIConstraints: *PageRegion A6 *MediaType Labels
*UIConstraints: *PageRegion B6 *MediaType Labels
*UIConstraints: *PageRegion B5-ISO *MediaType Labels
*UIConstraints: *PageRegion US-Folio *MediaType Labels
*UIConstraints: *PageRegion Oficio_S *MediaType Labels
*UIConstraints: *PageRegion 12x18 *MediaType Labels
*UIConstraints: *PageRegion SRA3 *MediaType Labels
*UIConstraints: *PageRegion 8K *MediaType Labels
*UIConstraints: *PageRegion 16K *MediaType Labels
*UIConstraints: *PageRegion Tabloid *MediaType Labels
*UIConstraints: *MediaType Labels *PageRegion Legal
*UIConstraints: *MediaType Labels *PageRegion Executive
*UIConstraints: *MediaType Labels *PageRegion Statement
*UIConstraints: *MediaType Labels *PageRegion A3
*UIConstraints: *MediaType Labels *PageRegion A5
*UIConstraints: *MediaType Labels *PageRegion B4
*UIConstraints: *MediaType Labels *PageRegion B5-JIS
*UIConstraints: *MediaType Labels *PageRegion A6
*UIConstraints: *MediaType Labels *PageRegion B6
*UIConstraints: *MediaType Labels *PageRegion B5-ISO
*UIConstraints: *MediaType Labels *PageRegion US-Folio
*UIConstraints: *MediaType Labels *PageRegion Oficio_S
*UIConstraints: *MediaType Labels *PageRegion 12x18
*UIConstraints: *MediaType Labels *PageRegion SRA3
*UIConstraints: *MediaType Labels *PageRegion 8K
*UIConstraints: *MediaType Labels *PageRegion 16K
*UIConstraints: *MediaType Labels *PageRegion Tabloid
*% =========================================================
*% PageSize - Duplex
*% =========================================================
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize B6 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexTumble
*UIConstraints: *PageSize Postcard_S *Duplex DuplexNoTumble
*UIConstraints: *PageSize Postcard_S *Duplex DuplexTumble
*UIConstraints: *PageSize C4 *Duplex DuplexNoTumble
*UIConstraints: *PageSize C4 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *Duplex DuplexNoTumble *PageSize B6
*UIConstraints: *Duplex DuplexTumble *PageSize B6
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageSize EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexTumble *PageSize EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexTumble *PageSize EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env10
*UIConstraints: *Duplex DuplexTumble *PageSize Env10
*UIConstraints: *Duplex DuplexNoTumble *PageSize Env9
*UIConstraints: *Duplex DuplexTumble *PageSize Env9
*UIConstraints: *Duplex DuplexNoTumble *PageSize Postcard_S
*UIConstraints: *Duplex DuplexTumble *PageSize Postcard_S
*UIConstraints: *Duplex DuplexNoTumble *PageSize C4
*UIConstraints: *Duplex DuplexTumble *PageSize C4
*% =========================================================
*% PageRegion - Duplex
*% =========================================================
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *PageRegion B6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion B6 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC5 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion EnvC6 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexTumble
*UIConstraints: *PageRegion Postcard_S *Duplex DuplexNoTumble
*UIConstraints: *PageRegion Postcard_S *Duplex DuplexTumble
*UIConstraints: *PageRegion C4 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion C4 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion B6
*UIConstraints: *Duplex DuplexTumble *PageRegion B6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvMonarch
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvDL
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC5
*UIConstraints: *Duplex DuplexNoTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexTumble *PageRegion EnvC6
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env10
*UIConstraints: *Duplex DuplexTumble *PageRegion Env10
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Env9
*UIConstraints: *Duplex DuplexTumble *PageRegion Env9
*UIConstraints: *Duplex DuplexNoTumble *PageRegion Postcard_S
*UIConstraints: *Duplex DuplexTumble *PageRegion Postcard_S
*UIConstraints: *Duplex DuplexNoTumble *PageRegion C4
*UIConstraints: *Duplex DuplexTumble *PageRegion C4
*% =========================================================
*% MediaType: InputSlot(Middle) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Upper *MediaType ExtraHeavyCardStock2
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Upper
*% =========================================================
*% MediaType: InputSlot(Lower) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Lower *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Lower *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Lower *MediaType Envelope
*UIConstraints: *InputSlot Lower *MediaType ThickEnv
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Lower
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Lower
*UIConstraints: *MediaType Envelope *InputSlot Lower
*UIConstraints: *MediaType ThickEnv *InputSlot Lower
*% =========================================================
*% MediaType: InputSlot(Tray3) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Tray3 *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Tray3 *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *InputSlot Tray3 *MediaType ThickEnv
*UIConstraints: *InputSlot Tray3 *MediaType Transparency
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Tray3
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Tray3
*UIConstraints: *MediaType Envelope *InputSlot Tray3
*UIConstraints: *MediaType ThickEnv *InputSlot Tray3
*UIConstraints: *MediaType Transparency *InputSlot Tray3
*UIConstraints: *MediaType Labels *InputSlot Tray3
*% =========================================================
*% MediaType: InputSlot(Tray4) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Tray4 *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Tray4 *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*UIConstraints: *InputSlot Tray4 *MediaType ThickEnv
*UIConstraints: *InputSlot Tray4 *MediaType Transparency
*UIConstraints: *InputSlot Tray4 *MediaType Labels
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Tray4
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Tray4
*UIConstraints: *MediaType Envelope *InputSlot Tray4
*UIConstraints: *MediaType ThickEnv *InputSlot Tray4
*UIConstraints: *MediaType Transparency *InputSlot Tray4
*UIConstraints: *MediaType Labels *InputSlot Tray4
*% =========================================================
*% MediaType: InputSlot(Tray3H) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Tray3HB *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Tray3HB *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Tray3HB *MediaType Envelope
*UIConstraints: *InputSlot Tray3HB *MediaType ThickEnv
*UIConstraints: *InputSlot Tray3HB *MediaType Transparency
*UIConstraints: *InputSlot Tray3HB *MediaType Labels
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Tray3HB
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Tray3HB
*UIConstraints: *MediaType Envelope *InputSlot Tray3HB
*UIConstraints: *MediaType ThickEnv *InputSlot Tray3HB
*UIConstraints: *MediaType Transparency *InputSlot Tray3HB
*UIConstraints: *MediaType Labels *InputSlot Tray3HB
*% =========================================================
*% MediaType: InputSlot(Tray4L) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Tray4HS *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Tray4HS *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Tray4HS *MediaType Envelope
*UIConstraints: *InputSlot Tray4HS *MediaType ThickEnv
*UIConstraints: *InputSlot Tray4HS *MediaType Transparency
*UIConstraints: *InputSlot Tray4HS *MediaType Labels
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Tray4HS
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Tray4HS
*UIConstraints: *MediaType Envelope *InputSlot Tray4HS
*UIConstraints: *MediaType ThickEnv *InputSlot Tray4HS
*UIConstraints: *MediaType Transparency *InputSlot Tray4HS
*UIConstraints: *MediaType Labels *InputSlot Tray4HS
*% =========================================================
*% MediaType: InputSlot(Tray5L) - MediaType
*% =========================================================
*UIConstraints: *InputSlot Tray5HS *MediaType ExtraHeavyWeight4
*UIConstraints: *InputSlot Tray5HS *MediaType ExtraHeavyCardStock2
*UIConstraints: *InputSlot Tray5HS *MediaType Envelope
*UIConstraints: *InputSlot Tray5HS *MediaType ThickEnv
*UIConstraints: *InputSlot Tray5HS *MediaType Transparency
*UIConstraints: *InputSlot Tray5HS *MediaType Labels
*UIConstraints: *InputSlot Tray5HS *MediaType ThinGlossy
*UIConstraints: *InputSlot Tray5HS *MediaType ThickGlossy
*UIConstraints: *InputSlot Tray5HS *MediaType HeavyGlossy
*UIConstraints: *MediaType ExtraHeavyWeight4 *InputSlot Tray5HS
*UIConstraints: *MediaType ExtraHeavyCardStock2 *InputSlot Tray5HS
*UIConstraints: *MediaType Envelope *InputSlot Tray5HS
*UIConstraints: *MediaType ThickEnv *InputSlot Tray5HS
*UIConstraints: *MediaType Transparency *InputSlot Tray5HS
*UIConstraints: *MediaType Labels *InputSlot Tray5HS
*UIConstraints: *MediaType ThinGlossy *InputSlot Tray5HS
*UIConstraints: *MediaType ThickGlossy *InputSlot Tray5HS
*UIConstraints: *MediaType HeavyGlossy *InputSlot Tray5HS
*% =========================================================
*% MediaType: InputSlot(Tray3H) - PageSize
*% =========================================================
*UIConstraints: *InputSlot Tray3HB *PageSize Legal
*UIConstraints: *InputSlot Tray3HB *PageSize Executive
*UIConstraints: *InputSlot Tray3HB *PageSize A5
*UIConstraints: *InputSlot Tray3HB *PageSize B5-JIS
*UIConstraints: *InputSlot Tray3HB *PageSize US-Folio
*UIConstraints: *InputSlot Tray3HB *PageSize Env10
*UIConstraints: *InputSlot Tray3HB *PageSize EnvDL
*UIConstraints: *InputSlot Tray3HB *PageSize EnvC5
*UIConstraints: *InputSlot Tray3HB *PageSize EnvC6
*UIConstraints: *InputSlot Tray3HB *PageSize B5-ISO
*UIConstraints: *InputSlot Tray3HB *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3HB *PageSize A6
*UIConstraints: *InputSlot Tray3HB *PageSize B6
*UIConstraints: *InputSlot Tray3HB *PageSize Oficio_S
*UIConstraints: *InputSlot Tray3HB *PageSize Statement
*UIConstraints: *InputSlot Tray3HB *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3HB *PageSize A3
*UIConstraints: *InputSlot Tray3HB *PageSize Env9
*UIConstraints: *InputSlot Tray3HB *PageSize C4
*UIConstraints: *InputSlot Tray3HB *PageSize B4
*UIConstraints: *InputSlot Tray3HB *PageSize SRA3
*UIConstraints: *InputSlot Tray3HB *PageSize 8K
*UIConstraints: *InputSlot Tray3HB *PageSize 16K
*UIConstraints: *InputSlot Tray3HB *PageSize 12x18
*UIConstraints: *InputSlot Tray3HB *PageSize Tabloid
*UIConstraints: *PageSize Legal *InputSlot Tray3HB
*UIConstraints: *PageSize Executive *InputSlot Tray3HB
*UIConstraints: *PageSize A5 *InputSlot Tray3HB
*UIConstraints: *PageSize B5-JIS *InputSlot Tray3HB
*UIConstraints: *PageSize US-Folio *InputSlot Tray3HB
*UIConstraints: *PageSize Env10 *InputSlot Tray3HB
*UIConstraints: *PageSize EnvDL *InputSlot Tray3HB
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3HB
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3HB
*UIConstraints: *PageSize B5-ISO *InputSlot Tray3HB
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3HB
*UIConstraints: *PageSize A6 *InputSlot Tray3HB
*UIConstraints: *PageSize B6 *InputSlot Tray3HB
*UIConstraints: *PageSize Oficio_S *InputSlot Tray3HB
*UIConstraints: *PageSize Statement *InputSlot Tray3HB
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3HB
*UIConstraints: *PageSize A3 *InputSlot Tray3HB
*UIConstraints: *PageSize Env9 *InputSlot Tray3HB
*UIConstraints: *PageSize C4 *InputSlot Tray3HB
*UIConstraints: *PageSize B4 *InputSlot Tray3HB
*UIConstraints: *PageSize SRA3 *InputSlot Tray3HB
*UIConstraints: *PageSize 8K *InputSlot Tray3HB
*UIConstraints: *PageSize 16K *InputSlot Tray3HB
*UIConstraints: *PageSize 12x18 *InputSlot Tray3HB
*UIConstraints: *PageSize Tabloid *InputSlot Tray3HB
*% =========================================================
*% MediaType: InputSlot(Tray3H) - PageRegion
*% =========================================================
*UIConstraints: *InputSlot Tray3HB *PageRegion Legal
*UIConstraints: *InputSlot Tray3HB *PageRegion Executive
*UIConstraints: *InputSlot Tray3HB *PageRegion A5
*UIConstraints: *InputSlot Tray3HB *PageRegion B5-JIS
*UIConstraints: *InputSlot Tray3HB *PageRegion US-Folio
*UIConstraints: *InputSlot Tray3HB *PageRegion Env10
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3HB *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3HB *PageRegion A6
*UIConstraints: *InputSlot Tray3HB *PageRegion B6
*UIConstraints: *InputSlot Tray3HB *PageRegion Oficio_S
*UIConstraints: *InputSlot Tray3HB *PageRegion Statement
*UIConstraints: *InputSlot Tray3HB *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3HB *PageRegion A3
*UIConstraints: *InputSlot Tray3HB *PageRegion Env9
*UIConstraints: *InputSlot Tray3HB *PageRegion C4
*UIConstraints: *InputSlot Tray3HB *PageRegion B4
*UIConstraints: *InputSlot Tray3HB *PageRegion SRA3
*UIConstraints: *InputSlot Tray3HB *PageRegion 8K
*UIConstraints: *InputSlot Tray3HB *PageRegion 16K
*UIConstraints: *InputSlot Tray3HB *PageRegion 12x18
*UIConstraints: *InputSlot Tray3HB *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *InputSlot Tray3HB
*UIConstraints: *PageRegion Executive *InputSlot Tray3HB
*UIConstraints: *PageRegion A5 *InputSlot Tray3HB
*UIConstraints: *PageRegion B5-JIS *InputSlot Tray3HB
*UIConstraints: *PageRegion US-Folio *InputSlot Tray3HB
*UIConstraints: *PageRegion Env10 *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3HB
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3HB
*UIConstraints: *PageRegion A6 *InputSlot Tray3HB
*UIConstraints: *PageRegion B6 *InputSlot Tray3HB
*UIConstraints: *PageRegion Oficio_S *InputSlot Tray3HB
*UIConstraints: *PageRegion Statement *InputSlot Tray3HB
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3HB
*UIConstraints: *PageRegion A3 *InputSlot Tray3HB
*UIConstraints: *PageRegion Env9 *InputSlot Tray3HB
*UIConstraints: *PageRegion C4 *InputSlot Tray3HB
*UIConstraints: *PageRegion B4 *InputSlot Tray3HB
*UIConstraints: *PageRegion SRA3 *InputSlot Tray3HB
*UIConstraints: *PageRegion 8K *InputSlot Tray3HB
*UIConstraints: *PageRegion 16K *InputSlot Tray3HB
*UIConstraints: *PageRegion 12x18 *InputSlot Tray3HB
*UIConstraints: *PageRegion Tabloid *InputSlot Tray3HB
*% =========================================================
*% MediaType: InputSlot(Tray4L) - PageSize
*% =========================================================
*UIConstraints: *InputSlot Tray4HS *PageSize Legal
*UIConstraints: *InputSlot Tray4HS *PageSize Executive
*UIConstraints: *InputSlot Tray4HS *PageSize A5
*UIConstraints: *InputSlot Tray4HS *PageSize B5-JIS
*UIConstraints: *InputSlot Tray4HS *PageSize US-Folio
*UIConstraints: *InputSlot Tray4HS *PageSize Env10
*UIConstraints: *InputSlot Tray4HS *PageSize EnvDL
*UIConstraints: *InputSlot Tray4HS *PageSize EnvC5
*UIConstraints: *InputSlot Tray4HS *PageSize EnvC6
*UIConstraints: *InputSlot Tray4HS *PageSize B5-ISO
*UIConstraints: *InputSlot Tray4HS *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4HS *PageSize A6
*UIConstraints: *InputSlot Tray4HS *PageSize B6
*UIConstraints: *InputSlot Tray4HS *PageSize Oficio_S
*UIConstraints: *InputSlot Tray4HS *PageSize Statement
*UIConstraints: *InputSlot Tray4HS *PageSize Postcard_S
*UIConstraints: *InputSlot Tray4HS *PageSize A3
*UIConstraints: *InputSlot Tray4HS *PageSize Env9
*UIConstraints: *InputSlot Tray4HS *PageSize C4
*UIConstraints: *InputSlot Tray4HS *PageSize B4
*UIConstraints: *InputSlot Tray4HS *PageSize SRA3
*UIConstraints: *InputSlot Tray4HS *PageSize 8K
*UIConstraints: *InputSlot Tray4HS *PageSize 16K
*UIConstraints: *InputSlot Tray4HS *PageSize 12x18
*UIConstraints: *InputSlot Tray4HS *PageSize Tabloid
*UIConstraints: *PageSize Legal *InputSlot Tray4HS
*UIConstraints: *PageSize Executive *InputSlot Tray4HS
*UIConstraints: *PageSize A5 *InputSlot Tray4HS
*UIConstraints: *PageSize B5-JIS *InputSlot Tray4HS
*UIConstraints: *PageSize US-Folio *InputSlot Tray4HS
*UIConstraints: *PageSize Env10 *InputSlot Tray4HS
*UIConstraints: *PageSize EnvDL *InputSlot Tray4HS
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4HS
*UIConstraints: *PageSize EnvC6 *InputSlot Tray4HS
*UIConstraints: *PageSize B5-ISO *InputSlot Tray4HS
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4HS
*UIConstraints: *PageSize A6 *InputSlot Tray4HS
*UIConstraints: *PageSize B6 *InputSlot Tray4HS
*UIConstraints: *PageSize Oficio_S *InputSlot Tray4HS
*UIConstraints: *PageSize Statement *InputSlot Tray4HS
*UIConstraints: *PageSize Postcard_S *InputSlot Tray4HS
*UIConstraints: *PageSize A3 *InputSlot Tray4HS
*UIConstraints: *PageSize Env9 *InputSlot Tray4HS
*UIConstraints: *PageSize C4 *InputSlot Tray4HS
*UIConstraints: *PageSize B4 *InputSlot Tray4HS
*UIConstraints: *PageSize SRA3 *InputSlot Tray4HS
*UIConstraints: *PageSize 8K *InputSlot Tray4HS
*UIConstraints: *PageSize 16K *InputSlot Tray4HS
*UIConstraints: *PageSize 12x18 *InputSlot Tray4HS
*UIConstraints: *PageSize Tabloid *InputSlot Tray4HS
*% =========================================================
*% MediaType: InputSlot(Tray4L) - PageRegion
*% =========================================================
*UIConstraints: *InputSlot Tray4HS *PageRegion Legal
*UIConstraints: *InputSlot Tray4HS *PageRegion Executive
*UIConstraints: *InputSlot Tray4HS *PageRegion A5
*UIConstraints: *InputSlot Tray4HS *PageRegion B5-JIS
*UIConstraints: *InputSlot Tray4HS *PageRegion US-Folio
*UIConstraints: *InputSlot Tray4HS *PageRegion Env10
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvDL
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvC5
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvC6
*UIConstraints: *InputSlot Tray4HS *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray4HS *PageRegion A6
*UIConstraints: *InputSlot Tray4HS *PageRegion B6
*UIConstraints: *InputSlot Tray4HS *PageRegion Oficio_S
*UIConstraints: *InputSlot Tray4HS *PageRegion Statement
*UIConstraints: *InputSlot Tray4HS *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray4HS *PageRegion A3
*UIConstraints: *InputSlot Tray4HS *PageRegion Env9
*UIConstraints: *InputSlot Tray4HS *PageRegion C4
*UIConstraints: *InputSlot Tray4HS *PageRegion B4
*UIConstraints: *InputSlot Tray4HS *PageRegion SRA3
*UIConstraints: *InputSlot Tray4HS *PageRegion 8K
*UIConstraints: *InputSlot Tray4HS *PageRegion 16K
*UIConstraints: *InputSlot Tray4HS *PageRegion 12x18
*UIConstraints: *InputSlot Tray4HS *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *InputSlot Tray4HS
*UIConstraints: *PageRegion Executive *InputSlot Tray4HS
*UIConstraints: *PageRegion A5 *InputSlot Tray4HS
*UIConstraints: *PageRegion B5-JIS *InputSlot Tray4HS
*UIConstraints: *PageRegion US-Folio *InputSlot Tray4HS
*UIConstraints: *PageRegion Env10 *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray4HS
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4HS
*UIConstraints: *PageRegion A6 *InputSlot Tray4HS
*UIConstraints: *PageRegion B6 *InputSlot Tray4HS
*UIConstraints: *PageRegion Oficio_S *InputSlot Tray4HS
*UIConstraints: *PageRegion Statement *InputSlot Tray4HS
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray4HS
*UIConstraints: *PageRegion A3 *InputSlot Tray4HS
*UIConstraints: *PageRegion Env9 *InputSlot Tray4HS
*UIConstraints: *PageRegion C4 *InputSlot Tray4HS
*UIConstraints: *PageRegion B4 *InputSlot Tray4HS
*UIConstraints: *PageRegion SRA3 *InputSlot Tray4HS
*UIConstraints: *PageRegion 8K *InputSlot Tray4HS
*UIConstraints: *PageRegion 16K *InputSlot Tray4HS
*UIConstraints: *PageRegion 12x18 *InputSlot Tray4HS
*UIConstraints: *PageRegion Tabloid *InputSlot Tray4HS
*% =========================================================
*% MediaType: InputSlot(Tray5L) - PageSize
*% =========================================================
*UIConstraints: *InputSlot Tray5HS *PageSize Legal
*UIConstraints: *InputSlot Tray5HS *PageSize Executive
*UIConstraints: *InputSlot Tray5HS *PageSize A5
*UIConstraints: *InputSlot Tray5HS *PageSize B5-JIS
*UIConstraints: *InputSlot Tray5HS *PageSize US-Folio
*UIConstraints: *InputSlot Tray5HS *PageSize Env10
*UIConstraints: *InputSlot Tray5HS *PageSize EnvDL
*UIConstraints: *InputSlot Tray5HS *PageSize EnvC5
*UIConstraints: *InputSlot Tray5HS *PageSize EnvC6
*UIConstraints: *InputSlot Tray5HS *PageSize B5-ISO
*UIConstraints: *InputSlot Tray5HS *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray5HS *PageSize A6
*UIConstraints: *InputSlot Tray5HS *PageSize B6
*UIConstraints: *InputSlot Tray5HS *PageSize Oficio_S
*UIConstraints: *InputSlot Tray5HS *PageSize Statement
*UIConstraints: *InputSlot Tray5HS *PageSize Postcard_S
*UIConstraints: *InputSlot Tray5HS *PageSize A3
*UIConstraints: *InputSlot Tray5HS *PageSize Env9
*UIConstraints: *InputSlot Tray5HS *PageSize C4
*UIConstraints: *InputSlot Tray5HS *PageSize B4
*UIConstraints: *InputSlot Tray5HS *PageSize SRA3
*UIConstraints: *InputSlot Tray5HS *PageSize 8K
*UIConstraints: *InputSlot Tray5HS *PageSize 16K
*UIConstraints: *InputSlot Tray5HS *PageSize 12x18
*UIConstraints: *InputSlot Tray5HS *PageSize Tabloid
*UIConstraints: *PageSize Legal *InputSlot Tray5HS
*UIConstraints: *PageSize Executive *InputSlot Tray5HS
*UIConstraints: *PageSize A5 *InputSlot Tray5HS
*UIConstraints: *PageSize B5-JIS *InputSlot Tray5HS
*UIConstraints: *PageSize US-Folio *InputSlot Tray5HS
*UIConstraints: *PageSize Env10 *InputSlot Tray5HS
*UIConstraints: *PageSize EnvDL *InputSlot Tray5HS
*UIConstraints: *PageSize EnvC5 *InputSlot Tray5HS
*UIConstraints: *PageSize EnvC6 *InputSlot Tray5HS
*UIConstraints: *PageSize B5-ISO *InputSlot Tray5HS
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray5HS
*UIConstraints: *PageSize A6 *InputSlot Tray5HS
*UIConstraints: *PageSize B6 *InputSlot Tray5HS
*UIConstraints: *PageSize Oficio_S *InputSlot Tray5HS
*UIConstraints: *PageSize Statement *InputSlot Tray5HS
*UIConstraints: *PageSize Postcard_S *InputSlot Tray5HS
*UIConstraints: *PageSize A3 *InputSlot Tray5HS
*UIConstraints: *PageSize Env9 *InputSlot Tray5HS
*UIConstraints: *PageSize C4 *InputSlot Tray5HS
*UIConstraints: *PageSize B4 *InputSlot Tray5HS
*UIConstraints: *PageSize SRA3 *InputSlot Tray5HS
*UIConstraints: *PageSize 8K *InputSlot Tray5HS
*UIConstraints: *PageSize 16K *InputSlot Tray5HS
*UIConstraints: *PageSize 12x18 *InputSlot Tray5HS
*UIConstraints: *PageSize Tabloid *InputSlot Tray5HS
*% =========================================================
*% MediaType: InputSlot(Tray5L) - PageRegion
*% =========================================================
*UIConstraints: *InputSlot Tray5HS *PageRegion Legal
*UIConstraints: *InputSlot Tray5HS *PageRegion Executive
*UIConstraints: *InputSlot Tray5HS *PageRegion A5
*UIConstraints: *InputSlot Tray5HS *PageRegion B5-JIS
*UIConstraints: *InputSlot Tray5HS *PageRegion US-Folio
*UIConstraints: *InputSlot Tray5HS *PageRegion Env10
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvDL
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvC5
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvC6
*UIConstraints: *InputSlot Tray5HS *PageRegion B5-ISO
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray5HS *PageRegion A6
*UIConstraints: *InputSlot Tray5HS *PageRegion B6
*UIConstraints: *InputSlot Tray5HS *PageRegion Oficio_S
*UIConstraints: *InputSlot Tray5HS *PageRegion Statement
*UIConstraints: *InputSlot Tray5HS *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray5HS *PageRegion A3
*UIConstraints: *InputSlot Tray5HS *PageRegion Env9
*UIConstraints: *InputSlot Tray5HS *PageRegion C4
*UIConstraints: *InputSlot Tray5HS *PageRegion B4
*UIConstraints: *InputSlot Tray5HS *PageRegion SRA3
*UIConstraints: *InputSlot Tray5HS *PageRegion 8K
*UIConstraints: *InputSlot Tray5HS *PageRegion 16K
*UIConstraints: *InputSlot Tray5HS *PageRegion 12x18
*UIConstraints: *InputSlot Tray5HS *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *InputSlot Tray5HS
*UIConstraints: *PageRegion Executive *InputSlot Tray5HS
*UIConstraints: *PageRegion A5 *InputSlot Tray5HS
*UIConstraints: *PageRegion B5-JIS *InputSlot Tray5HS
*UIConstraints: *PageRegion US-Folio *InputSlot Tray5HS
*UIConstraints: *PageRegion Env10 *InputSlot Tray5HS
*UIConstraints: *PageRegion EnvDL *InputSlot Tray5HS
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray5HS
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray5HS
*UIConstraints: *PageRegion B5-ISO *InputSlot Tray5HS
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray5HS
*UIConstraints: *PageRegion A6 *InputSlot Tray5HS
*UIConstraints: *PageRegion B6 *InputSlot Tray5HS
*UIConstraints: *PageRegion Oficio_S *InputSlot Tray5HS
*UIConstraints: *PageRegion Statement *InputSlot Tray5HS
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray5HS
*UIConstraints: *PageRegion A3 *InputSlot Tray5HS
*UIConstraints: *PageRegion Env9 *InputSlot Tray5HS
*UIConstraints: *PageRegion C4 *InputSlot Tray5HS
*UIConstraints: *PageRegion B4 *InputSlot Tray5HS
*UIConstraints: *PageRegion SRA3 *InputSlot Tray5HS
*UIConstraints: *PageRegion 8K *InputSlot Tray5HS
*UIConstraints: *PageRegion 16K *InputSlot Tray5HS
*UIConstraints: *PageRegion 12x18 *InputSlot Tray5HS
*UIConstraints: *PageRegion Tabloid *InputSlot Tray5HS
*% =========================================================
*% PageSize: A6 - InputSlot
*% =========================================================
*UIConstraints: *PageSize A6 *InputSlot Lower
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageSize A6 *InputSlot Tray3HB
*UIConstraints: *PageSize A6 *InputSlot Tray4HS
*UIConstraints: *PageSize A6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray3HB *PageSize A6
*UIConstraints: *InputSlot Tray4HS *PageSize A6
*UIConstraints: *InputSlot Tray5HS *PageSize A6
*% =========================================================
*% PageRegion: A6 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion A6 *InputSlot Lower
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *PageRegion A6 *InputSlot Tray3HB
*UIConstraints: *PageRegion A6 *InputSlot Tray4HS
*UIConstraints: *PageRegion A6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion A6
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *InputSlot Tray3HB *PageRegion A6
*UIConstraints: *InputSlot Tray4HS *PageRegion A6
*UIConstraints: *InputSlot Tray5HS *PageRegion A6
*% =========================================================
*% PageSize: B6 - InputSlot
*% =========================================================
*UIConstraints: *PageSize B6 *InputSlot Lower
*UIConstraints: *PageSize B6 *InputSlot Tray3
*UIConstraints: *PageSize B6 *InputSlot Tray4
*UIConstraints: *PageSize B6 *InputSlot Tray3HB
*UIConstraints: *PageSize B6 *InputSlot Tray4HS
*UIConstraints: *PageSize B6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize B6
*UIConstraints: *InputSlot Tray3 *PageSize B6
*UIConstraints: *InputSlot Tray4 *PageSize B6
*UIConstraints: *InputSlot Tray3HB *PageSize B6
*UIConstraints: *InputSlot Tray4HS *PageSize B6
*UIConstraints: *InputSlot Tray5HS *PageSize B6
*% =========================================================
*% PageRegion: B6 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion B6 *InputSlot Lower
*UIConstraints: *PageRegion B6 *InputSlot Tray3
*UIConstraints: *PageRegion B6 *InputSlot Tray4
*UIConstraints: *PageRegion B6 *InputSlot Tray3HB
*UIConstraints: *PageRegion B6 *InputSlot Tray4HS
*UIConstraints: *PageRegion B6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion B6
*UIConstraints: *InputSlot Tray3 *PageRegion B6
*UIConstraints: *InputSlot Tray4 *PageRegion B6
*UIConstraints: *InputSlot Tray3HB *PageRegion B6
*UIConstraints: *InputSlot Tray4HS *PageRegion B6
*UIConstraints: *InputSlot Tray5HS *PageRegion B6
*% =========================================================
*% PageSize: EnvMonarch - InputSlot
*% =========================================================
*UIConstraints: *PageSize EnvMonarch *InputSlot Lower
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3HB
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4HS
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3HB *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4HS *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray5HS *PageSize EnvMonarch
*% =========================================================
*% PageRegion: EnvMonarch - InputSlot
*% =========================================================
*UIConstraints: *PageRegion EnvMonarch *InputSlot Lower
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvMonarch
*% =========================================================
*% PageSize: EnvDL - InputSlot
*% =========================================================
*UIConstraints: *PageSize EnvDL *InputSlot Lower
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageSize EnvDL *InputSlot Tray3HB
*UIConstraints: *PageSize EnvDL *InputSlot Tray4HS
*UIConstraints: *PageSize EnvDL *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3HB *PageSize EnvDL
*UIConstraints: *InputSlot Tray4HS *PageSize EnvDL
*UIConstraints: *InputSlot Tray5HS *PageSize EnvDL
*% =========================================================
*% PageRegion: EnvDL - InputSlot
*% =========================================================
*UIConstraints: *PageRegion EnvDL *InputSlot Lower
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvDL *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvDL
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvDL
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvDL
*% =========================================================
*% PageSize: EnvC5 - InputSlot
*% =========================================================
*UIConstraints: *PageSize EnvC5 *InputSlot Lower
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3HB
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4HS
*UIConstraints: *PageSize EnvC5 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3HB *PageSize EnvC5
*UIConstraints: *InputSlot Tray4HS *PageSize EnvC5
*UIConstraints: *InputSlot Tray5HS *PageSize EnvC5
*% =========================================================
*% PageRegion: EnvC5 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion EnvC5 *InputSlot Lower
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvC5
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvC5
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvC5
*% =========================================================
*% PageSize: EnvC6 - InputSlot
*% =========================================================
*UIConstraints: *PageSize EnvC6 *InputSlot Lower
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3
*UIConstraints: *PageSize EnvC6 *InputSlot Tray4
*UIConstraints: *PageSize EnvC6 *InputSlot Tray3HB
*UIConstraints: *PageSize EnvC6 *InputSlot Tray4HS
*UIConstraints: *PageSize EnvC6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize EnvC6
*UIConstraints: *InputSlot Tray3 *PageSize EnvC6
*UIConstraints: *InputSlot Tray4 *PageSize EnvC6
*UIConstraints: *InputSlot Tray3HB *PageSize EnvC6
*UIConstraints: *InputSlot Tray4HS *PageSize EnvC6
*UIConstraints: *InputSlot Tray5HS *PageSize EnvC6
*% =========================================================
*% PageRegion: EnvC6 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion EnvC6 *InputSlot Lower
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray4
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray3HB
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray4HS
*UIConstraints: *PageRegion EnvC6 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC6
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC6
*UIConstraints: *InputSlot Tray3HB *PageRegion EnvC6
*UIConstraints: *InputSlot Tray4HS *PageRegion EnvC6
*UIConstraints: *InputSlot Tray5HS *PageRegion EnvC6
*% =========================================================
*% PageSize: Env10 - InputSlot
*% =========================================================
*UIConstraints: *PageSize Env10 *InputSlot Lower
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageSize Env10 *InputSlot Tray3HB
*UIConstraints: *PageSize Env10 *InputSlot Tray4HS
*UIConstraints: *PageSize Env10 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray3HB *PageSize Env10
*UIConstraints: *InputSlot Tray4HS *PageSize Env10
*UIConstraints: *InputSlot Tray5HS *PageSize Env10
*% =========================================================
*% PageRegion: Env10 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion Env10 *InputSlot Lower
*UIConstraints: *PageRegion Env10 *InputSlot Tray3
*UIConstraints: *PageRegion Env10 *InputSlot Tray4
*UIConstraints: *PageRegion Env10 *InputSlot Tray3HB
*UIConstraints: *PageRegion Env10 *InputSlot Tray4HS
*UIConstraints: *PageRegion Env10 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion Env10
*UIConstraints: *InputSlot Tray3 *PageRegion Env10
*UIConstraints: *InputSlot Tray4 *PageRegion Env10
*UIConstraints: *InputSlot Tray3HB *PageRegion Env10
*UIConstraints: *InputSlot Tray4HS *PageRegion Env10
*UIConstraints: *InputSlot Tray5HS *PageRegion Env10
*% =========================================================
*% PageSize: Env9 - InputSlot
*% =========================================================
*UIConstraints: *PageSize Env9 *InputSlot Lower
*UIConstraints: *PageSize Env9 *InputSlot Tray3
*UIConstraints: *PageSize Env9 *InputSlot Tray4
*UIConstraints: *PageSize Env9 *InputSlot Tray3HB
*UIConstraints: *PageSize Env9 *InputSlot Tray4HS
*UIConstraints: *PageSize Env9 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize Env9
*UIConstraints: *InputSlot Tray3 *PageSize Env9
*UIConstraints: *InputSlot Tray4 *PageSize Env9
*UIConstraints: *InputSlot Tray3HB *PageSize Env9
*UIConstraints: *InputSlot Tray4HS *PageSize Env9
*UIConstraints: *InputSlot Tray5HS *PageSize Env9
*% =========================================================
*% PageRegion: Env9 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion Env9 *InputSlot Lower
*UIConstraints: *PageRegion Env9 *InputSlot Tray3
*UIConstraints: *PageRegion Env9 *InputSlot Tray4
*UIConstraints: *PageRegion Env9 *InputSlot Tray3HB
*UIConstraints: *PageRegion Env9 *InputSlot Tray4HS
*UIConstraints: *PageRegion Env9 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion Env9
*UIConstraints: *InputSlot Tray3 *PageRegion Env9
*UIConstraints: *InputSlot Tray4 *PageRegion Env9
*UIConstraints: *InputSlot Tray3HB *PageRegion Env9
*UIConstraints: *InputSlot Tray4HS *PageRegion Env9
*UIConstraints: *InputSlot Tray5HS *PageRegion Env9
*% =========================================================
*% PageSize: Postcard_S - InputSlot
*% =========================================================
*UIConstraints: *PageSize Postcard_S *InputSlot Lower
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3
*UIConstraints: *PageSize Postcard_S *InputSlot Tray4
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3HB
*UIConstraints: *PageSize Postcard_S *InputSlot Tray4HS
*UIConstraints: *PageSize Postcard_S *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3 *PageSize Postcard_S
*UIConstraints: *InputSlot Tray4 *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3HB *PageSize Postcard_S
*UIConstraints: *InputSlot Tray4HS *PageSize Postcard_S
*UIConstraints: *InputSlot Tray5HS *PageSize Postcard_S
*% =========================================================
*% PageRegion: Postcard_S - InputSlot
*% =========================================================
*UIConstraints: *PageRegion Postcard_S *InputSlot Lower
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray4
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3HB
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray4HS
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3 *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray4 *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3HB *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray4HS *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray5HS *PageRegion Postcard_S
*% =========================================================
*% PageSize: C4 - InputSlot
*% =========================================================
*UIConstraints: *PageSize C4 *InputSlot Lower
*UIConstraints: *PageSize C4 *InputSlot Tray3
*UIConstraints: *PageSize C4 *InputSlot Tray4
*UIConstraints: *PageSize C4 *InputSlot Tray3HB
*UIConstraints: *PageSize C4 *InputSlot Tray4HS
*UIConstraints: *PageSize C4 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageSize C4
*UIConstraints: *InputSlot Tray3 *PageSize C4
*UIConstraints: *InputSlot Tray4 *PageSize C4
*UIConstraints: *InputSlot Tray3HB *PageSize C4
*UIConstraints: *InputSlot Tray4HS *PageSize C4
*UIConstraints: *InputSlot Tray5HS *PageSize C4
*% =========================================================
*% PageRegion: C4 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion C4 *InputSlot Lower
*UIConstraints: *PageRegion C4 *InputSlot Tray3
*UIConstraints: *PageRegion C4 *InputSlot Tray4
*UIConstraints: *PageRegion C4 *InputSlot Tray3HB
*UIConstraints: *PageRegion C4 *InputSlot Tray4HS
*UIConstraints: *PageRegion C4 *InputSlot Tray5HS
*UIConstraints: *InputSlot Lower *PageRegion C4
*UIConstraints: *InputSlot Tray3 *PageRegion C4
*UIConstraints: *InputSlot Tray4 *PageRegion C4
*UIConstraints: *InputSlot Tray3HB *PageRegion C4
*UIConstraints: *InputSlot Tray4HS *PageRegion C4
*UIConstraints: *InputSlot Tray5HS *PageRegion C4
*% =========================================================
*% MediaType - JCLSeparatorsSource
*% =========================================================
*UIConstraints: *MediaType None *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Plain *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Thick *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Thin *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Bond *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Color *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Labels *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Envelope *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThickEnv *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Preprinted *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Cotton *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Recycled *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Archive *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Punched *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType Letterhead *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyWeight1 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyWeight2 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType HeavyCardStock *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThinGlossy *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType ThickGlossy *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType HeavyGlossy *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *MediaType None *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Plain *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Thick *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Thin *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Bond *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Color *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Labels *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Envelope *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThickEnv *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Preprinted *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Cotton *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Recycled *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Archive *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Punched *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType Letterhead *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyWeight1 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyWeight2 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThinCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThickCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType HeavyCardStock *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThinGlossy *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType ThickGlossy *JCLSeparatorsOption BlankSeparator
*UIConstraints: *MediaType HeavyGlossy *JCLSeparatorsOption BlankSeparator
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType None
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Plain
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Thick
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Thin
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Bond
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Color
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Labels
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Envelope
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThickEnv
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Preprinted
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Cotton
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Recycled
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Archive
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Punched
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType Letterhead
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType HeavyWeight
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyWeight1
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyWeight2
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType HeavyCardStock
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThinGlossy
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType ThickGlossy
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *MediaType HeavyGlossy
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType None
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Plain
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Thick
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Thin
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Bond
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Color
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Labels
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Envelope
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThickEnv
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Preprinted
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Cotton
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Recycled
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Archive
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Punched
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType Letterhead
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType HeavyWeight
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyWeight1
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyWeight2
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThinCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThickCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType HeavyCardStock
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThinGlossy
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType ThickGlossy
*UIConstraints: *JCLSeparatorsOption BlankSeparator *MediaType HeavyGlossy
*% =========================================================
*% JCLSeparatorsOption - JCLSeparatorsSource
*% =========================================================
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Multi
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Upper
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Lower
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Tray3
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Tray3HB
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Tray4HS
*UIConstraints: *JCLSeparatorsOption None *JCLSeparatorsSource Tray5HS
*UIConstraints: *JCLSeparatorsSource Multi *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Upper *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Lower *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Tray3 *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Tray3HB *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Tray4HS *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsSource Tray5HS *JCLSeparatorsOption None
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *JCLSeparatorsSource None
*UIConstraints: *JCLSeparatorsOption BlankSeparator *JCLSeparatorsSource None
*UIConstraints: *JCLSeparatorsSource None *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *JCLSeparatorsSource None *JCLSeparatorsOption BlankSeparator
*% =========================================================
*% Cosmos - 1 StapleLocation/ Top StaplePosition
*% =========================================================
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation 1Staple_L
*% =========================================================
*% Cosmos - StapleLocation 1-Staple/MediaType
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Labels
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Transparency
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Envelope
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType ThickEnv
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType ExtraHeavyCardStock2
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType Transparency *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType ThickEnv *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Labels
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Transparency
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Envelope
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType ThickEnv
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType ExtraHeavyCardStock2
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType Transparency *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType Envelope *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType ThickEnv *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLStapleLocation 1Staple_L
*% =========================================================
*% Cosmos - StapleLocation 1-Staple/PageSize
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Env10
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize B6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Env9
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize SRA3
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize C4
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize B6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Env9 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize C4 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize 12x18 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Env10
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize B6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Env9
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize SRA3
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize C4
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize B6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Env9 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize C4 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize 12x18 *JCLStapleLocation 1Staple_L
*% =========================================================
*% Cosmos - JCLStapleLocation 1-Staple/PageRegion
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Env10
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion B6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Env9
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion SRA3
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion C4
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion B6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion C4 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion 12x18 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Env10
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion B6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Env9
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion SRA3
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion C4
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion B6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion C4 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion 12x18 *JCLStapleLocation 1Staple_L
*% =========================================================
*% Cosmos - StapleLocation 2-Staple/MediaType
*% =========================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Labels
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Transparency
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType Envelope
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType ThickEnv
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLStapleLocation 2Staple_P *MediaType ExtraHeavyCardStock2
*UIConstraints: *MediaType Labels *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType Transparency *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType Envelope *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType ThickEnv *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLStapleLocation 2Staple_P
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Labels
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Transparency
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType Envelope
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType ThickEnv
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLStapleLocation 2Staple_L *MediaType ExtraHeavyCardStock2
*UIConstraints: *MediaType Labels *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType Transparency *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType Envelope *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType ThickEnv *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLStapleLocation 2Staple_L
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLStapleLocation 2Staple_L
*% =========================================================
*% Cosmos - StapleLocation 2-Staple/PageSize
*% =========================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Env10
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize A6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize B6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize Env9
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize SRA3
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize C4
*UIConstraints: *JCLStapleLocation 2Staple_P *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize A6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize B6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize Env9 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize C4 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageSize 12x18 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Env10
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize A6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize B6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize Env9
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize SRA3
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize C4
*UIConstraints: *JCLStapleLocation 2Staple_L *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvDL *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvC5 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvMonarch *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize A6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize B6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize Env9 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize SRA3 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize C4 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageSize 12x18 *JCLStapleLocation 2Staple_L
*% =========================================================
*% Cosmos - JCLStapleLocation 2-Staple/PageRegion
*% =========================================================
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Env10
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion A6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion B6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion Env9
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion SRA3
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion C4
*UIConstraints: *JCLStapleLocation 2Staple_P *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion A6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion B6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion C4 *JCLStapleLocation 2Staple_P
*UIConstraints: *PageRegion 12x18 *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Env10
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvDL
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvC5
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvMonarch
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion A6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion B6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion Env9
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion SRA3
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion EnvC6
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion C4
*UIConstraints: *JCLStapleLocation 2Staple_L *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvDL *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvC5 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvMonarch *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion A6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion B6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion Env9 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion SRA3 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion EnvC6 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion C4 *JCLStapleLocation 2Staple_L
*UIConstraints: *PageRegion 12x18 *JCLStapleLocation 2Staple_L
*% =========================================================
*% Cosmos - Punch 2Hole/MediaType
*% =========================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType ThickGlossy
*UIConstraints: *JCLPunchLocation 2Hole_P *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 2Hole_P
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType ThickGlossy
*UIConstraints: *JCLPunchLocation 2Hole_L *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 2Hole_L
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 2Hole_L
*% =========================================================
*% Cosmos - Punch 2Hole/PageSize
*% =========================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize B6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize SRA3
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize 12x18
*UIConstraints: *JCLPunchLocation 2Hole_P *PageSize C4
*UIConstraints: *PageSize Env10 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize B6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize B6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize SRA3
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize 12x18
*UIConstraints: *JCLPunchLocation 2Hole_L *PageSize C4
*UIConstraints: *PageSize Env10 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize B6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 2Hole_L
*% =========================================================
*% Cosmos - PunchLocation 2Hole/PageRegion
*% =========================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion B6
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion 12x18
*UIConstraints: *JCLPunchLocation 2Hole_P *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion B6 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 2Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion B6
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion 12x18
*UIConstraints: *JCLPunchLocation 2Hole_L *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion B6 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 2Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 2Hole_L
*% =========================================================
*% Cosmos - Punch 3Hole/MediaType
*% =========================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType HeavyGlossy
*UIConstraints: *JCLPunchLocation 3Hole_P *MediaType ThickGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 3Hole_P
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType ThickGlossy
*UIConstraints: *JCLPunchLocation 3Hole_L *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 3Hole_L
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 3Hole_L
*% =========================================================
*% Cosmos - Punch 3Hole/PageSize
*% =========================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize B6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize C4
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize SRA3
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize A5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Statement
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize 16K
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Legal
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize US-Folio
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize Oficio_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize B6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize A5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Statement *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize 16K *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Legal *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize US-Folio *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize Oficio_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize B6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize C4
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize SRA3
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize A5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Statement
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize 16K
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Legal
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize US-Folio
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize Oficio_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize B6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize A5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Statement *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize 16K *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Legal *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize US-Folio *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize Oficio_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 3Hole_L
*% =========================================================
*% Cosmos - JCLPunchLocation 3Hole/PageRegion
*% =========================================================
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion B6
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion C4
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion A5
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Statement
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion 16K
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Legal
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion US-Folio
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion Oficio_S
*UIConstraints: *JCLPunchLocation 3Hole_P *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion B6 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion A5 *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Statement *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion 16K *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Legal *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion US-Folio *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion Oficio_S *JCLPunchLocation 3Hole_P
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion B6
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion C4
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion A5
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Statement
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion 16K
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Legal
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion US-Folio
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion Oficio_S
*UIConstraints: *JCLPunchLocation 3Hole_L *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion B6 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion A5 *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Statement *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion 16K *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Legal *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion US-Folio *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion Oficio_S *JCLPunchLocation 3Hole_L
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 3Hole_L
*% =========================================================
*% Cosmos - Punch 4Hole/MediaType
*% =========================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Labels
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Transparency
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Envelope
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType Punched
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType ThickGlossy
*UIConstraints: *JCLPunchLocation 4Hole_P *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Transparency *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Envelope *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType Punched *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 4Hole_P
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Labels
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Transparency
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Envelope
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ThickEnv
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType Punched
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ThickCardStock
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType HeavyCardStock
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType ThickGlossy
*UIConstraints: *JCLPunchLocation 4Hole_L *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Transparency *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Envelope *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ThickEnv *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType Punched *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight3 *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ThickCardStock *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType HeavyCardStock *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType ThickGlossy *JCLPunchLocation 4Hole_L
*UIConstraints: *MediaType HeavyGlossy *JCLPunchLocation 4Hole_L
*% =========================================================
*% Cosmos - Punch 4Hole/PageSize
*% =========================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Env10
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize A6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize B6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize Env9
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize SRA3
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize 12x18
*UIConstraints: *JCLPunchLocation 4Hole_P *PageSize C4
*UIConstraints: *PageSize Env10 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize A6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize B6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize Env9 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageSize C4 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Env10
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize A6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize B6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize Env9
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize SRA3
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize 12x18
*UIConstraints: *JCLPunchLocation 4Hole_L *PageSize C4
*UIConstraints: *PageSize Env10 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvDL *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvC5 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvC6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize EnvMonarch *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize A6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize B6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize Postcard_S *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize Env9 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize SRA3 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize 12x18 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageSize C4 *JCLPunchLocation 4Hole_L
*% =========================================================
*% Cosmos - PunchLocation 4Hole/PageRegion
*% =========================================================
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Env10
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion A6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion B6
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion Env9
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion 12x18
*UIConstraints: *JCLPunchLocation 4Hole_P *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion A6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion B6 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 4Hole_P
*UIConstraints: *PageRegion C4 *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Env10
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvDL
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvC5
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvC6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion EnvMonarch
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion A6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion B6
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Postcard_S
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion Env9
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion SRA3
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion 12x18
*UIConstraints: *JCLPunchLocation 4Hole_L *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvDL *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvC5 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvC6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion EnvMonarch *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion A6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion B6 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion Postcard_S *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion Env9 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion SRA3 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion 12x18 *JCLPunchLocation 4Hole_L
*UIConstraints: *PageRegion C4 *JCLPunchLocation 4Hole_L
*% =========================================================
*% Inner Bin - PageSize
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Inner *PageSize Env10
*UIConstraints: *JCLFinisherOutBin Inner *PageSize EnvDL
*UIConstraints: *JCLFinisherOutBin Inner *PageSize EnvC5
*UIConstraints: *JCLFinisherOutBin Inner *PageSize EnvC6
*UIConstraints: *JCLFinisherOutBin Inner *PageSize EnvMonarch
*UIConstraints: *JCLFinisherOutBin Inner *PageSize Env9
*UIConstraints: *JCLFinisherOutBin Inner *PageSize A6
*UIConstraints: *JCLFinisherOutBin Inner *PageSize B6
*UIConstraints: *JCLFinisherOutBin Inner *PageSize Postcard_S
*UIConstraints: *JCLFinisherOutBin Inner *PageSize C4
*UIConstraints: *JCLFinisherOutBin Inner *PageSize 12x18
*UIConstraints: *JCLFinisherOutBin Inner *PageSize SRA3
*UIConstraints: *PageSize Env10 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize EnvDL *JCLFinisherOutBin Inner
*UIConstraints: *PageSize EnvC5 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize EnvC6 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize EnvMonarch *JCLFinisherOutBin Inner
*UIConstraints: *PageSize Env9 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize B6 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Inner
*UIConstraints: *PageSize C4 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize 12x18 *JCLFinisherOutBin Inner
*UIConstraints: *PageSize SRA3 *JCLFinisherOutBin Inner
*% =========================================================
*% Inner Bin - PageRegion
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion Env10
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion EnvDL
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion EnvC5
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion EnvC6
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion EnvMonarch
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion Env9
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion A6
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion B6
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion Postcard_S
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion C4
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion 12x18
*UIConstraints: *JCLFinisherOutBin Inner *PageRegion SRA3
*UIConstraints: *PageRegion Env10 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion EnvDL *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion EnvC5 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion EnvC6 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion EnvMonarch *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion Env9 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion B6 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion C4 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion 12x18 *JCLFinisherOutBin Inner
*UIConstraints: *PageRegion SRA3 *JCLFinisherOutBin Inner
*% =========================================================
*% Finishing Bin - PageSize
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize Env10
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize EnvDL
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize EnvC5
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize EnvC6
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize EnvMonarch
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize Env9
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize A6
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize B6
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize Postcard_S
*UIConstraints: *JCLFinisherOutBin Finishing *PageSize C4
*UIConstraints: *PageSize Env10 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize EnvDL *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize EnvC5 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize EnvC6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize EnvMonarch *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize Env9 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize B6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Finishing
*UIConstraints: *PageSize C4 *JCLFinisherOutBin Finishing
*% =========================================================
*% Finishing Bin - PageRegion
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion Env10
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion EnvDL
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion EnvC5
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion EnvC6
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion EnvMonarch
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion Env9
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion A6
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion B6
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion Postcard_S
*UIConstraints: *JCLFinisherOutBin Finishing *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion EnvDL *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion EnvC5 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion EnvC6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion EnvMonarch *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion Env9 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion B6 *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Finishing
*UIConstraints: *PageRegion C4 *JCLFinisherOutBin Finishing
*% =========================================================
*% Booklet Bin - PageSize
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize Env10
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize EnvDL
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize EnvC5
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize EnvC6
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize EnvMonarch
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize Env9
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize A6
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize B6
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize Postcard_S
*UIConstraints: *JCLFinisherOutBin Booklet *PageSize C4
*UIConstraints: *PageSize Env10 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize EnvDL *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize EnvC5 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize EnvC6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize EnvMonarch *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize Env9 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize B6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Booklet
*UIConstraints: *PageSize C4 *JCLFinisherOutBin Booklet
*% =========================================================
*% Booklet Bin - PageRegion
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion Env10
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion EnvDL
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion EnvC5
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion EnvC6
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion EnvMonarch
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion Env9
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion A6
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion B6
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion Postcard_S
*UIConstraints: *JCLFinisherOutBin Booklet *PageRegion C4
*UIConstraints: *PageRegion Env10 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion EnvDL *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion EnvC5 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion EnvC6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion EnvMonarch *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion Env9 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion B6 *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Booklet
*UIConstraints: *PageRegion C4 *JCLFinisherOutBin Booklet
*% =========================================================
*% Inner Bin - MediaType
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Inner *MediaType Labels
*UIConstraints: *JCLFinisherOutBin Inner *MediaType Transparency
*UIConstraints: *JCLFinisherOutBin Inner *MediaType Envelope
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ThickEnv
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ThinGlossy
*UIConstraints: *JCLFinisherOutBin Inner *MediaType ThickGlossy
*UIConstraints: *JCLFinisherOutBin Inner *MediaType HeavyGlossy
*UIConstraints: *MediaType Labels *JCLFinisherOutBin Inner
*UIConstraints: *MediaType Transparency *JCLFinisherOutBin Inner
*UIConstraints: *MediaType Envelope *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ThickEnv *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ExtraHeavyWeight4 *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ExtraHeavyCardStock1 *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ExtraHeavyCardStock2 *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ThinGlossy *JCLFinisherOutBin Inner
*UIConstraints: *MediaType ThickGlossy *JCLFinisherOutBin Inner
*UIConstraints: *MediaType HeavyGlossy *JCLFinisherOutBin Inner
*% =========================================================
*% Finishing Bin - MediaType
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Finishing *MediaType Labels
*UIConstraints: *JCLFinisherOutBin Finishing *MediaType Envelope
*UIConstraints: *JCLFinisherOutBin Finishing *MediaType ThickEnv
*UIConstraints: *MediaType Labels *JCLFinisherOutBin Finishing
*UIConstraints: *MediaType Envelope *JCLFinisherOutBin Finishing
*UIConstraints: *MediaType ThickEnv *JCLFinisherOutBin Finishing
*% =========================================================
*% StapleLocation - StaplePosition
*% =========================================================
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Left
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Right
*UIConstraints: *JCLStapleLocation None *JCLStaplePosition Top
*UIConstraints: *JCLStaplePosition Left *JCLStapleLocation None
*UIConstraints: *JCLStaplePosition Right *JCLStapleLocation None
*UIConstraints: *JCLStaplePosition Top *JCLStapleLocation None
*% =========================================================
*% PunchLocation - PunchPosition
*% =========================================================
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Left
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Right
*UIConstraints: *JCLPunchLocation None *JCLPunchPosition Top
*UIConstraints: *JCLPunchPosition Left *JCLPunchLocation None
*UIConstraints: *JCLPunchPosition Right *JCLPunchLocation None
*UIConstraints: *JCLPunchPosition Top *JCLPunchLocation None
*% =========================================================
*% Rotate - PageSize
*% =========================================================
*UIConstraints: *JCLSortOptions Rotate *PageSize Legal
*UIConstraints: *JCLSortOptions Rotate *PageSize Executive
*UIConstraints: *JCLSortOptions Rotate *PageSize A5
*UIConstraints: *JCLSortOptions Rotate *PageSize B5-JIS
*UIConstraints: *JCLSortOptions Rotate *PageSize US-Folio
*UIConstraints: *JCLSortOptions Rotate *PageSize Env10
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvDL
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvC5
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvC6
*UIConstraints: *JCLSortOptions Rotate *PageSize B5-ISO
*UIConstraints: *JCLSortOptions Rotate *PageSize EnvMonarch
*UIConstraints: *JCLSortOptions Rotate *PageSize A6
*UIConstraints: *JCLSortOptions Rotate *PageSize B6
*UIConstraints: *JCLSortOptions Rotate *PageSize Oficio_S
*UIConstraints: *JCLSortOptions Rotate *PageSize Statement
*UIConstraints: *JCLSortOptions Rotate *PageSize Postcard_S
*UIConstraints: *JCLSortOptions Rotate *PageSize A3
*UIConstraints: *JCLSortOptions Rotate *PageSize Env9
*UIConstraints: *JCLSortOptions Rotate *PageSize C4
*UIConstraints: *JCLSortOptions Rotate *PageSize B4
*UIConstraints: *JCLSortOptions Rotate *PageSize SRA3
*UIConstraints: *JCLSortOptions Rotate *PageSize 8K
*UIConstraints: *JCLSortOptions Rotate *PageSize 16K
*UIConstraints: *JCLSortOptions Rotate *PageSize 12x18
*UIConstraints: *JCLSortOptions Rotate *PageSize Tabloid
*UIConstraints: *PageSize Legal *JCLSortOptions Rotate
*UIConstraints: *PageSize Executive *JCLSortOptions Rotate
*UIConstraints: *PageSize A5 *JCLSortOptions Rotate
*UIConstraints: *PageSize B5-JIS *JCLSortOptions Rotate
*UIConstraints: *PageSize US-Folio *JCLSortOptions Rotate
*UIConstraints: *PageSize Env10 *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvDL *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvC5 *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvC6 *JCLSortOptions Rotate
*UIConstraints: *PageSize B5-ISO *JCLSortOptions Rotate
*UIConstraints: *PageSize EnvMonarch *JCLSortOptions Rotate
*UIConstraints: *PageSize A6 *JCLSortOptions Rotate
*UIConstraints: *PageSize B6 *JCLSortOptions Rotate
*UIConstraints: *PageSize Oficio_S *JCLSortOptions Rotate
*UIConstraints: *PageSize Statement *JCLSortOptions Rotate
*UIConstraints: *PageSize Postcard_S *JCLSortOptions Rotate
*UIConstraints: *PageSize A3 *JCLSortOptions Rotate
*UIConstraints: *PageSize Env9 *JCLSortOptions Rotate
*UIConstraints: *PageSize C4 *JCLSortOptions Rotate
*UIConstraints: *PageSize B4 *JCLSortOptions Rotate
*UIConstraints: *PageSize SRA3 *JCLSortOptions Rotate
*UIConstraints: *PageSize 8K *JCLSortOptions Rotate
*UIConstraints: *PageSize 16K *JCLSortOptions Rotate
*UIConstraints: *PageSize 12x18 *JCLSortOptions Rotate
*UIConstraints: *PageSize Tabloid *JCLSortOptions Rotate
*% =========================================================
*% Rotate - PageRegion
*% =========================================================
*UIConstraints: *JCLSortOptions Rotate *PageRegion Legal
*UIConstraints: *JCLSortOptions Rotate *PageRegion Executive
*UIConstraints: *JCLSortOptions Rotate *PageRegion A5
*UIConstraints: *JCLSortOptions Rotate *PageRegion B5-JIS
*UIConstraints: *JCLSortOptions Rotate *PageRegion US-Folio
*UIConstraints: *JCLSortOptions Rotate *PageRegion Env10
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvDL
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvC5
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvC6
*UIConstraints: *JCLSortOptions Rotate *PageRegion B5-ISO
*UIConstraints: *JCLSortOptions Rotate *PageRegion EnvMonarch
*UIConstraints: *JCLSortOptions Rotate *PageRegion A6
*UIConstraints: *JCLSortOptions Rotate *PageRegion B6
*UIConstraints: *JCLSortOptions Rotate *PageRegion Oficio_S
*UIConstraints: *JCLSortOptions Rotate *PageRegion Statement
*UIConstraints: *JCLSortOptions Rotate *PageRegion Postcard_S
*UIConstraints: *JCLSortOptions Rotate *PageRegion A3
*UIConstraints: *JCLSortOptions Rotate *PageRegion Env9
*UIConstraints: *JCLSortOptions Rotate *PageRegion C4
*UIConstraints: *JCLSortOptions Rotate *PageRegion B4
*UIConstraints: *JCLSortOptions Rotate *PageRegion SRA3
*UIConstraints: *JCLSortOptions Rotate *PageRegion 8K
*UIConstraints: *JCLSortOptions Rotate *PageRegion 16K
*UIConstraints: *JCLSortOptions Rotate *PageRegion 12x18
*UIConstraints: *JCLSortOptions Rotate *PageRegion Tabloid
*UIConstraints: *PageRegion Legal *JCLSortOptions Rotate
*UIConstraints: *PageRegion Executive *JCLSortOptions Rotate
*UIConstraints: *PageRegion A5 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B5-JIS *JCLSortOptions Rotate
*UIConstraints: *PageRegion US-Folio *JCLSortOptions Rotate
*UIConstraints: *PageRegion Env10 *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvDL *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvC5 *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvC6 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B5-ISO *JCLSortOptions Rotate
*UIConstraints: *PageRegion EnvMonarch *JCLSortOptions Rotate
*UIConstraints: *PageRegion A6 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B6 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Oficio_S *JCLSortOptions Rotate
*UIConstraints: *PageRegion Statement *JCLSortOptions Rotate
*UIConstraints: *PageRegion Postcard_S *JCLSortOptions Rotate
*UIConstraints: *PageRegion A3 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Env9 *JCLSortOptions Rotate
*UIConstraints: *PageRegion C4 *JCLSortOptions Rotate
*UIConstraints: *PageRegion B4 *JCLSortOptions Rotate
*UIConstraints: *PageRegion SRA3 *JCLSortOptions Rotate
*UIConstraints: *PageRegion 8K *JCLSortOptions Rotate
*UIConstraints: *PageRegion 16K *JCLSortOptions Rotate
*UIConstraints: *PageRegion 12x18 *JCLSortOptions Rotate
*UIConstraints: *PageRegion Tabloid *JCLSortOptions Rotate
*% =========================================================
*% Rotate - OHP Separator
*% =========================================================
*UIConstraints: *JCLSortOptions Rotate *JCLSeparatorsOption PrintedSeparator
*UIConstraints: *JCLSortOptions Rotate *JCLSeparatorsOption BlankSeparator
*UIConstraints: *JCLSeparatorsOption PrintedSeparator *JCLSortOptions Rotate
*UIConstraints: *JCLSeparatorsOption BlankSeparator *JCLSortOptions Rotate
*% =========================================================
*% Offset - PageSize
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *PageSize Env10
*UIConstraints: *JCLSortOptions Offset *PageSize EnvDL
*UIConstraints: *JCLSortOptions Offset *PageSize EnvC5
*UIConstraints: *JCLSortOptions Offset *PageSize EnvC6
*UIConstraints: *JCLSortOptions Offset *PageSize EnvMonarch
*UIConstraints: *JCLSortOptions Offset *PageSize Env9
*UIConstraints: *JCLSortOptions Offset *PageSize A6
*UIConstraints: *JCLSortOptions Offset *PageSize B6
*UIConstraints: *JCLSortOptions Offset *PageSize Postcard_S
*UIConstraints: *JCLSortOptions Offset *PageSize C4
*UIConstraints: *JCLSortOptions Offset *PageSize SRA3
*UIConstraints: *JCLSortOptions Offset *PageSize 12x18
*UIConstraints: *PageSize Env10 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvDL *JCLSortOptions Offset
*UIConstraints: *PageSize EnvC5 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvC6 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvMonarch *JCLSortOptions Offset
*UIConstraints: *PageSize Env9 *JCLSortOptions Offset
*UIConstraints: *PageSize A6 *JCLSortOptions Offset
*UIConstraints: *PageSize B6 *JCLSortOptions Offset
*UIConstraints: *PageSize Postcard_S *JCLSortOptions Offset
*UIConstraints: *PageSize C4 *JCLSortOptions Offset
*UIConstraints: *PageSize SRA3 *JCLSortOptions Offset
*UIConstraints: *PageSize 12x18 *JCLSortOptions Offset
*% =========================================================
*% Offset - PageRegion
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *PageRegion Env10
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvDL
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvC5
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvC6
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvMonarch
*UIConstraints: *JCLSortOptions Offset *PageRegion Env9
*UIConstraints: *JCLSortOptions Offset *PageRegion A6
*UIConstraints: *JCLSortOptions Offset *PageRegion B6
*UIConstraints: *JCLSortOptions Offset *PageRegion Postcard_S
*UIConstraints: *JCLSortOptions Offset *PageRegion C4
*UIConstraints: *JCLSortOptions Offset *PageRegion SRA3
*UIConstraints: *JCLSortOptions Offset *PageRegion 12x18
*UIConstraints: *PageRegion Env10 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvDL *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvC5 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvC6 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvMonarch *JCLSortOptions Offset
*UIConstraints: *PageRegion Env9 *JCLSortOptions Offset
*UIConstraints: *PageRegion A6 *JCLSortOptions Offset
*UIConstraints: *PageRegion B6 *JCLSortOptions Offset
*UIConstraints: *PageRegion Postcard_S *JCLSortOptions Offset
*UIConstraints: *PageRegion C4 *JCLSortOptions Offset
*UIConstraints: *PageRegion SRA3 *JCLSortOptions Offset
*UIConstraints: *PageRegion 12x18 *JCLSortOptions Offset
*% =========================================================
*% Staple - Finisher Output bin 1,2,3
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Standard
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Top
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Inner
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Standard
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Top
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Inner
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Standard
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Top
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLFinisherOutBin Inner
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Standard
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Top
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLFinisherOutBin Inner
*UIConstraints: *JCLFinisherOutBin Standard *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Top *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Inner *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Standard *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Top *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Inner *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Standard *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Top *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Inner *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLFinisherOutBin Standard *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLFinisherOutBin Top *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLFinisherOutBin Inner *JCLStapleLocation 2Staple_L
*% =========================================================
*% Punch - Finisher Output bin 1,2,3
*% =========================================================
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 2Hole_P *JCLFinisherOutBin Inner
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 2Hole_L *JCLFinisherOutBin Inner
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 3Hole_P *JCLFinisherOutBin Inner
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 3Hole_L *JCLFinisherOutBin Inner
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 4Hole_P *JCLFinisherOutBin Inner
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Standard
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Top
*UIConstraints: *JCLPunchLocation 4Hole_L *JCLFinisherOutBin Inner
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 2Hole_P
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 2Hole_L
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 3Hole_P
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 3Hole_L
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 4Hole_P
*UIConstraints: *JCLFinisherOutBin Standard *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLFinisherOutBin Top *JCLPunchLocation 4Hole_L
*UIConstraints: *JCLFinisherOutBin Inner *JCLPunchLocation 4Hole_L
*% =========================================================
*% Offset - Finisher Output Bin2(Top Bin), Bin5(Booklet Bin)
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *JCLFinisherOutBin Top
*UIConstraints: *JCLSortOptions Offset *JCLFinisherOutBin Booklet
*UIConstraints: *JCLFinisherOutBin Top *JCLSortOptions Offset
*UIConstraints: *JCLFinisherOutBin Booklet *JCLSortOptions Offset
*% =========================================================
*% Offset - Folding
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *JCLFoldingOption C-Folding
*UIConstraints: *JCLSortOptions Offset *JCLFoldingOption V-Folding
*UIConstraints: *JCLFoldingOption C-Folding *JCLSortOptions Offset
*UIConstraints: *JCLFoldingOption V-Folding *JCLSortOptions Offset
*% =========================================================
*% Folding - Pattern
*% =========================================================
*UIConstraints: *JCLFoldingOption None *JCLCFoldingPattern Pattern1
*UIConstraints: *JCLFoldingOption None *JCLCFoldingPattern Pattern2
*UIConstraints: *JCLFoldingOption None *JCLCFoldingPattern Pattern3
*UIConstraints: *JCLFoldingOption None *JCLCFoldingPattern Pattern4
*UIConstraints: *JCLCFoldingPattern Pattern1 *JCLFoldingOption None
*UIConstraints: *JCLCFoldingPattern Pattern2 *JCLFoldingOption None
*UIConstraints: *JCLCFoldingPattern Pattern3 *JCLFoldingOption None
*UIConstraints: *JCLCFoldingPattern Pattern4 *JCLFoldingOption None
*UIConstraints: *JCLFoldingOption C-Folding *JCLCFoldingPattern None
*UIConstraints: *JCLCFoldingPattern None *JCLFoldingOption C-Folding
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingPattern Pattern1
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingPattern Pattern2
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingPattern Pattern3
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingPattern Pattern4
*UIConstraints: *JCLCFoldingPattern Pattern1 *JCLFoldingOption V-Folding
*UIConstraints: *JCLCFoldingPattern Pattern2 *JCLFoldingOption V-Folding
*UIConstraints: *JCLCFoldingPattern Pattern3 *JCLFoldingOption V-Folding
*UIConstraints: *JCLCFoldingPattern Pattern4 *JCLFoldingOption V-Folding
*% =========================================================
*% Folding - Divide Into Sets
*% =========================================================
*UIConstraints: *JCLFoldingOption None *JCLCFoldingDIS 1
*UIConstraints: *JCLFoldingOption None *JCLCFoldingDIS 2
*UIConstraints: *JCLFoldingOption None *JCLCFoldingDIS 3
*UIConstraints: *JCLCFoldingDIS 1 *JCLFoldingOption None
*UIConstraints: *JCLCFoldingDIS 2 *JCLFoldingOption None
*UIConstraints: *JCLCFoldingDIS 3 *JCLFoldingOption None
*UIConstraints: *JCLFoldingOption C-Folding *JCLCFoldingDIS None
*UIConstraints: *JCLCFoldingDIS None *JCLFoldingOption C-Folding
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingDIS 1
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingDIS 2
*UIConstraints: *JCLFoldingOption V-Folding *JCLCFoldingDIS 3
*UIConstraints: *JCLCFoldingDIS 1 *JCLFoldingOption V-Folding
*UIConstraints: *JCLCFoldingDIS 2 *JCLFoldingOption V-Folding
*UIConstraints: *JCLCFoldingDIS 3 *JCLFoldingOption V-Folding
*% =========================================================
*% Folding - JCLFinisherOutBin
*% =========================================================
*UIConstraints: *JCLFoldingOption C-Folding *JCLFinisherOutBin None
*UIConstraints: *JCLFoldingOption C-Folding *JCLFinisherOutBin Standard
*UIConstraints: *JCLFoldingOption C-Folding *JCLFinisherOutBin Top
*UIConstraints: *JCLFoldingOption C-Folding *JCLFinisherOutBin Inner
*UIConstraints: *JCLFoldingOption C-Folding *JCLFinisherOutBin Finishing
*UIConstraints: *JCLFinisherOutBin None *JCLFoldingOption C-Folding
*UIConstraints: *JCLFinisherOutBin Standard *JCLFoldingOption C-Folding
*UIConstraints: *JCLFinisherOutBin Top *JCLFoldingOption C-Folding
*UIConstraints: *JCLFinisherOutBin Inner *JCLFoldingOption C-Folding
*UIConstraints: *JCLFinisherOutBin Finishing *JCLFoldingOption C-Folding
*% =========================================================
*% V-Folding - Pattern
*% =========================================================
*UIConstraints: *JCLFoldingOption None *JCLVFoldingPattern Inside
*UIConstraints: *JCLFoldingOption None *JCLVFoldingPattern Outside
*UIConstraints: *JCLVFoldingPattern Inside *JCLFoldingOption None
*UIConstraints: *JCLVFoldingPattern Outside *JCLFoldingOption None
*UIConstraints: *JCLFoldingOption V-Folding *JCLVFoldingPattern None
*UIConstraints: *JCLVFoldingPattern None *JCLFoldingOption V-Folding
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingPattern Inside
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingPattern Outside
*UIConstraints: *JCLVFoldingPattern Inside *JCLFoldingOption C-Folding
*UIConstraints: *JCLVFoldingPattern Outside *JCLFoldingOption C-Folding
*% =========================================================
*% V-Folding - Divide Into Sets
*% =========================================================
*UIConstraints: *JCLFoldingOption None *JCLVFoldingDIS 1
*UIConstraints: *JCLFoldingOption None *JCLVFoldingDIS 2
*UIConstraints: *JCLFoldingOption None *JCLVFoldingDIS 3
*UIConstraints: *JCLFoldingOption None *JCLVFoldingDIS 4
*UIConstraints: *JCLFoldingOption None *JCLVFoldingDIS 5
*UIConstraints: *JCLVFoldingDIS 1 *JCLFoldingOption None
*UIConstraints: *JCLVFoldingDIS 2 *JCLFoldingOption None
*UIConstraints: *JCLVFoldingDIS 3 *JCLFoldingOption None
*UIConstraints: *JCLVFoldingDIS 4 *JCLFoldingOption None
*UIConstraints: *JCLVFoldingDIS 5 *JCLFoldingOption None
*UIConstraints: *JCLFoldingOption V-Folding *JCLVFoldingDIS None
*UIConstraints: *JCLVFoldingDIS None *JCLFoldingOption V-Folding
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingDIS 1
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingDIS 2
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingDIS 3
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingDIS 4
*UIConstraints: *JCLFoldingOption C-Folding *JCLVFoldingDIS 5
*UIConstraints: *JCLVFoldingDIS 1 *JCLFoldingOption C-Folding
*UIConstraints: *JCLVFoldingDIS 2 *JCLFoldingOption C-Folding
*UIConstraints: *JCLVFoldingDIS 3 *JCLFoldingOption C-Folding
*UIConstraints: *JCLVFoldingDIS 4 *JCLFoldingOption C-Folding
*UIConstraints: *JCLVFoldingDIS 5 *JCLFoldingOption C-Folding
*% =========================================================
*% V-Folding - JCLFinisherOutBin
*% =========================================================
*UIConstraints: *JCLFoldingOption V-Folding *JCLFinisherOutBin None
*UIConstraints: *JCLFoldingOption V-Folding *JCLFinisherOutBin Standard
*UIConstraints: *JCLFoldingOption V-Folding *JCLFinisherOutBin Top
*UIConstraints: *JCLFoldingOption V-Folding *JCLFinisherOutBin Inner
*UIConstraints: *JCLFoldingOption V-Folding *JCLFinisherOutBin Finishing
*UIConstraints: *JCLFinisherOutBin None *JCLFoldingOption V-Folding
*UIConstraints: *JCLFinisherOutBin Standard *JCLFoldingOption V-Folding
*UIConstraints: *JCLFinisherOutBin Top *JCLFoldingOption V-Folding
*UIConstraints: *JCLFinisherOutBin Inner *JCLFoldingOption V-Folding
*UIConstraints: *JCLFinisherOutBin Finishing *JCLFoldingOption V-Folding
*% =========================================================
*% Folding - PageSize
*% =========================================================
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Legal
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Executive
*UIConstraints: *JCLFoldingOption C-Folding *PageSize A5
*UIConstraints: *JCLFoldingOption C-Folding *PageSize B5-JIS
*UIConstraints: *JCLFoldingOption C-Folding *PageSize US-Folio
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Env10
*UIConstraints: *JCLFoldingOption C-Folding *PageSize EnvDL
*UIConstraints: *JCLFoldingOption C-Folding *PageSize EnvC5
*UIConstraints: *JCLFoldingOption C-Folding *PageSize EnvC6
*UIConstraints: *JCLFoldingOption C-Folding *PageSize B5-ISO
*UIConstraints: *JCLFoldingOption C-Folding *PageSize EnvMonarch
*UIConstraints: *JCLFoldingOption C-Folding *PageSize A6
*UIConstraints: *JCLFoldingOption C-Folding *PageSize B6
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Oficio_S
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Statement
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Postcard_S
*UIConstraints: *JCLFoldingOption C-Folding *PageSize A3
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Env9
*UIConstraints: *JCLFoldingOption C-Folding *PageSize C4
*UIConstraints: *JCLFoldingOption C-Folding *PageSize B4
*UIConstraints: *JCLFoldingOption C-Folding *PageSize SRA3
*UIConstraints: *JCLFoldingOption C-Folding *PageSize 8K
*UIConstraints: *JCLFoldingOption C-Folding *PageSize 16K
*UIConstraints: *JCLFoldingOption C-Folding *PageSize 12x18
*UIConstraints: *JCLFoldingOption C-Folding *PageSize Tabloid
*% =========================================================
*% Folding - PageRegion
*% =========================================================
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Legal
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Executive
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion A5
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion B5-JIS
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion US-Folio
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Env10
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion EnvDL
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion EnvC5
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion EnvC6
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion B5-ISO
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion EnvMonarch
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion A6
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion B6
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Oficio_S
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Statement
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Postcard_S
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion A3
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Env9
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion C4
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion B4
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion SRA3
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion 8K
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion 16K
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion 12x18
*UIConstraints: *JCLFoldingOption C-Folding *PageRegion Tabloid
*% =========================================================
*% Folding - MediaType
*% =========================================================
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Thick
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Bond
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Labels
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Transparency
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Envelope
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ThickEnv
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Cotton
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Archive
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Punched
*UIConstraints: *JCLFoldingOption C-Folding *MediaType Letterhead
*UIConstraints: *JCLFoldingOption C-Folding *MediaType HeavyWeight
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyWeight1
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyWeight2
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyWeight3
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyWeight4
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ThinCardStock
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ThickCardStock
*UIConstraints: *JCLFoldingOption C-Folding *MediaType HeavyCardStock
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyCardStock1
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ExtraHeavyCardStock2
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ThinGlossy
*UIConstraints: *JCLFoldingOption C-Folding *MediaType ThickGlossy
*UIConstraints: *JCLFoldingOption C-Folding *MediaType HeavyGlossy
*% =========================================================
*% Offset - Staple
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLSortOptions Offset *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLSortOptions Offset *JCLStapleLocation 2Staple_P
*UIConstraints: *JCLSortOptions Offset *JCLStapleLocation 2Staple_L
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLSortOptions Offset
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLSortOptions Offset
*UIConstraints: *JCLStapleLocation 2Staple_P *JCLSortOptions Offset
*UIConstraints: *JCLStapleLocation 2Staple_L *JCLSortOptions Offset
*% ++++++++++++++++++++++
*% Font Information
*% ++++++++++++++++++++++
*DefaultFont: Courier
*Font AlbertusMT-Italic: Standard "(001.001)" Standard ROM
*Font AlbertusMT-Light: Standard "(001.001)" Standard ROM
*Font AlbertusMT: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Bold: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Compact: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Italic: Standard "(001.001)" Standard ROM
*Font AntiqueOlive-Roman: Standard "(001.001)" Standard ROM
*Font Apple-Chancery: Standard "(001.001)" ExtendedRoman ROM
*Font Arial-BoldItalicMT: Standard "(001.001)" Standard ROM
*Font Arial-BoldMT: Standard "(001.001)" Standard ROM
*Font Arial-ItalicMT: Standard "(001.001)" Standard ROM
*Font ArialMT: Standard "(001.001)" Standard ROM
*Font AvantGarde-Book: Standard "(001.001)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM
*Font Bodoni-Bold: Standard "(001.001)" Standard ROM
*Font Bodoni-BoldItalic: Standard "(001.001)" Standard ROM
*Font Bodoni-Italic: Standard "(001.001)" Standard ROM
*Font Bodoni-Poster: Standard "(001.001)" Standard ROM
*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard ROM
*Font Bodoni: Standard "(001.001)" Standard ROM
*Font Bookman-Demi: Standard "(001.001)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
*Font Bookman-Light: Standard "(001.001)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
*Font Candid: Special "(001.001)" Special ROM
*Font Chicago: Standard "(001.001)" ExtendedRoman ROM
*Font Clarendon-Bold: Standard "(001.001)" Standard ROM
*Font Clarendon-Light: Standard "(001.001)" Standard ROM
*Font Clarendon: Standard "(001.001)" Standard ROM
*Font CooperBlack-Italic: Standard "(001.001)" Standard ROM
*Font CooperBlack: Standard "(001.001)" Standard ROM
*Font Copperplate-ThirtyThreeBC: Standard "(001.001)" Standard ROM
*Font Copperplate-ThirtyTwoBC: Standard "(001.001)" Standard ROM
*Font Coronet-Regular: Standard "(001.001)" Standard ROM
*Font Courier-Bold: Standard "(001.001)" Standard ROM
*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM
*Font Courier-Oblique: Standard "(001.001)" Standard ROM
*Font Courier: Standard "(001.001)" Standard ROM
*Font Eurostile-Bold: Standard "(001.001)" Standard ROM
*Font Eurostile-BoldExtendedTwo: Standard "(001.001)" Standard ROM
*Font Eurostile-ExtendedTwo: Standard "(001.001)" Standard ROM
*Font Eurostile: Standard "(001.001)" Standard ROM
*Font Geneva: Standard "(001.001)" ExtendedRoman ROM
*Font GillSans-Bold: Standard "(001.001)" Standard ROM
*Font GillSans-BoldCondensed: Standard "(001.001)" Standard ROM
*Font GillSans-BoldItalic: Standard "(001.001)" Standard ROM
*Font GillSans-Condensed: Standard "(001.001)" Standard ROM
*Font GillSans-ExtraBold: Standard "(001.001)" Standard ROM
*Font GillSans-Italic: Standard "(001.001)" Standard ROM
*Font GillSans-Light: Standard "(001.001)" Standard ROM
*Font GillSans-LightItalic: Standard "(001.001)" Standard ROM
*Font GillSans: Standard "(001.001)" Standard ROM
*Font Goudy-Bold: Standard "(001.001)" Standard ROM
*Font Goudy-BoldItalic: Standard "(001.000)" Standard ROM
*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
*Font Goudy-Italic: Standard "(001.001)" Standard ROM
*Font Goudy: Standard "(001.001)" Standard ROM
*Font Helvetica-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-BoldObl: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Condensed: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.001)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM
*Font Helvetica: Standard "(001.001)" Standard ROM
*Font HoeflerText-Black: Standard "(001.001)" ExtendedRoman ROM
*Font HoeflerText-BlackItalic: Standard "(001.001)" Standard ROM
*Font HoeflerText-Italic: Standard "(001.001)" ExtendedRoman ROM
*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
*Font HoeflerText-Regular: Standard "(001.001)" Standard ROM
*Font JoannaMT-Bold: Standard "(001.001)" Standard ROM
*Font JoannaMT-BoldItalic: Standard "(001.001)" Standard ROM
*Font JoannaMT-Italic: Standard "(001.001)" Standard ROM
*Font JoannaMT: Standard "(001.001)" Standard ROM
*Font LetterGothic-Bold: Standard "(001.001)" Standard ROM
*Font LetterGothic-BoldSlanted: Standard "(001.001)" Standard ROM
*Font LetterGothic-Slanted: Standard "(001.001)" Standard ROM
*Font LetterGothic: Standard "(001.001)" Standard ROM
*Font LubalinGraph-Book: Standard "(001.001)" Standard ROM
*Font LubalinGraph-BookOblique: Standard "(001.001)" Standard ROM
*Font LubalinGraph-Demi: Standard "(001.001)" Standard ROM
*Font LubalinGraph-DemiOblique: Standard "(001.001)" Standard ROM
*Font Marigold: Standard "(001.001)" Standard ROM
*Font Monaco: Standard "(001.001)" ExtendedRoman ROM
*Font MonaLisa-Recut: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.001)" Standard ROM
*Font NewYork: Standard "(001.001)" ExtendedRoman ROM
*Font Optima-Bold: Standard "(001.001)" Standard ROM
*Font Optima-BoldItalic: Standard "(001.001)" Standard ROM
*Font Optima-Italic: Standard "(001.001)" Standard ROM
*Font Optima: Standard "(001.001)" Standard ROM
*Font Oxford: Standard "(001.001)" Standard ROM
*Font Palatino-Bold: Standard "(001.001)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM
*Font Palatino-Italic: Standard "(001.001)" Standard ROM
*Font Palatino-Roman: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Bold: Standard "(001.001)" Standard ROM
*Font StempelGaramond-BoldItalic: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Italic: Standard "(001.001)" Standard ROM
*Font StempelGaramond-Roman: Standard "(001.001)" Standard ROM
*Font Symbol: Special "(001.001)" Special ROM
*Font Taffy: Standard "(001.001)" Standard ROM
*Font Times-Bold: Standard "(001.001)" Standard ROM
*Font Times-BoldItalic: Standard "(001.001)" Standard ROM
*Font Times-Italic: Standard "(001.001)" Standard ROM
*Font Times-Roman: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-BoldItalicMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-BoldMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPS-ItalicMT: Standard "(001.001)" Standard ROM
*Font TimesNewRomanPSMT: Standard "(001.001)" Standard ROM
*Font Univers-Bold: Standard "(001.001)" Standard ROM
*Font Univers-BoldExt: Standard "(001.001)" Standard ROM
*Font Univers-BoldExtObl: Standard "(001.001)" Standard ROM
*Font Univers-BoldOblique: Standard "(001.001)" Standard ROM
*Font Univers-Condensed: Standard "(001.001)" Standard ROM
*Font Univers-CondensedBold: Standard "(001.001)" Standard ROM
*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard ROM
*Font Univers-CondensedOblique: Standard "(001.001)" Standard ROM
*Font Univers-Extended: Standard "(001.001)" Standard ROM
*Font Univers-ExtendedObl: Standard "(001.001)" Standard ROM
*Font Univers-Light: Standard "(001.001)" Standard ROM
*Font Univers-LightOblique: Standard "(001.001)" Standard ROM
*Font Univers-Oblique: Standard "(001.001)" Standard ROM
*Font Univers: Standard "(001.001)" Standard ROM
*Font Wingdings-Regular: Special "(001.001)" Special ROM
*Font ZapfChancery-MediumItalic: Standard "(001.001)" Standard ROM
*Font ZapfDingbats: Special "(001.001)" Special ROM
*?FontQuery: "save
{count 1 gt
{exch dup 127 string cvs (/)print print (:)print
/Font resourcestatus
{pop pop (Yes)} {(No)} ifelse =
}
{exit}
ifelse
} bind loop
(*) = flush
restore"
*End
*?FontList: "save
(*) {cvn ==} 128 string /Font resourceforall
(*) = flush
restore"
*End
|