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
|
*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 CLX-981x Series PS
*% For Linux Only
*% =========================================
*%
*%
*%
*% Copyright (c) 2013 Samsung Electronics Co., Ltd.
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- please see www.opensource.org]
*%
*% =========================================
*FileVersion: "1.5"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PCFileName: "CLX981x.ppd"
*Product: "(Samsung CLX-981x Series)"
*Manufacturer: "Samsung"
*PSVersion: "(3015 ) 0"
*ModelName: "Samsung CLX-981x Series"
*ShortNickName: "CLX-981x"
*NickName: "Samsung CLX-981x Series PS"
*LanguageLevel: "3"
*Protocols: PJL TBCP
*FreeVM: "60300000"
*ColorDevice: True
*DefaultColorSpace: CMYK
*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 Tray34/Tray 3, 4: ""
*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/Not Installed: ""
*Finisher 2BinFinisher/Inner Finisher: ""
*CloseUI: *Finisher
*CloseGroup: InstallableOptions
*% =========================================
*% Job Accounting - Type
*% =========================================
*JCLOpenUI *JCLJACType/[Job Accounting] Type: PickOne
*OrderDependency: 12 JCLSetup *JCLJACType
*DefaultJCLJACType: Accounting
*JCLJACType Accounting/Accounting: ""
*JCLJACType IDOnly/ID Only: ""
*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=User1<0D0A>"
*JCLCloseUI: *JCLJACUserID
*% Custom JACUserID
*CustomJCLJACUserID True: "@PJL SET ACCOUNTING_INFORMATION_USERID=\1<0D0A>"
*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=1111<0D0A>"
*JCLCloseUI: *JCLJACPassword
*% Custom JACPassword
*CustomJCLJACPassword True: "@PJL SET ACCOUNTING_INFORMATION_PASSWORD=\1<0D0A>"
*ParamCustomJCLJACPassword Custom/Custom Password: 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-8 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 8
*% =========================================================
*% 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/Double-sided Printing: 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
*% =========================================================
*% Media Type
*% =========================================================
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 50 AnySetup *MediaType
*DefaultMediaType: None
*MediaType None/Printer Default: "<</MediaType (system-default)>> setpagedevice"
*MediaType Plain/Plain: "<</MediaType (Plain)>> setpagedevice"
*MediaType Thick/Thick: "<</MediaType (THICK)>> setpagedevice"
*MediaType Thin/Thin: "<</MediaType (THIN)>> setpagedevice"
*MediaType Bond/Bond: "<</MediaType (Bond)>> setpagedevice"
*MediaType Color/Color: "<</MediaType (Color)>> setpagedevice"
*MediaType Labels/Labels: "<</MediaType (Labels)>> setpagedevice"
*MediaType Envelope/Envelope: "<</MediaType (Envelope)>> setpagedevice"
*MediaType Preprinted/Preprinted: "<</MediaType (Preprinted)>> setpagedevice"
*MediaType Recycled/Recycled: "<</MediaType (Recycled)>> setpagedevice"
*MediaType Cotton/Cotton: "<</MediaType (COTTEN)>> setpagedevice"
*MediaType Archive/Archive: "<</MediaType (ARCHIVE)>> setpagedevice"
*MediaType Punched/Punched: "<</MediaType (Prepunched)>> setpagedevice"
*MediaType Letterhead/Letterhead: "<</MediaType (Letterhead)>> setpagedevice"
*MediaType HeavyWeight/Heavy Weight: "<</MediaType (HeavyWeight)>> setpagedevice"
*MediaType ExtraHeavyWeight1/Extra Heavy Weight 1: "<</MediaType (ExtraHeavyWeight1)>> setpagedevice"
*MediaType ThinCardStock/Thin CardStock: "<</MediaType (ThinCardStock)>> setpagedevice"
*MediaType ThinGlossy/Thin Glossy: "<</MediaType (ThinGlossy)>> setpagedevice"
*CloseUI: *MediaType
*% =========================================================
*% Quality Information
*% =========================================================
*OpenUI *Quality/Quality: PickOne
*OrderDependency: 15 AnySetup *Quality
*DefaultQuality: Normal
*Quality High/High Resolution: "<</HWResolution [1200 1200]>> setpagedevice"
*Quality Best/Best: "<< /HWResolution [600 600] /PixelDepth 4 >> setpagedevice"
*Quality Normal/Normal: "<< /HWResolution [600 600] /PixelDepth 2 >> setpagedevice"
*CloseUI: *Quality
*DefaultResolution: 600dpi
*DefaultHalftoneType: 9
*ScreenFreq: "106.0"
*ScreenAngle: "45.0"
*% =========================================================
*% Color & Gray Option
*% =========================================================
*OpenUI *ColorMode/Color Mode: PickOne
*OrderDependency: 20 AnySetup *ColorMode
*DefaultColorMode: True
*ColorMode False/Grayscale: "<</ProcessColorModel /DeviceGray>> setpagedevice"
*ColorMode True/Color: "<</ProcessColorModel /DeviceCMYK>> setpagedevice"
*CloseUI: *ColorMode
*% =========================================================
*% Black Optimization
*% =========================================================
*JCLOpenUI *JCLBlackOptimization/Black Optimization: Boolean
*OrderDependency: 70 JCLSetup *JCLBlackOptimization
*DefaultJCLBlackOptimization: False
*JCLBlackOptimization False/Off : "@PJL SET BLACKOPTIMIZATION=OFF<0A>"
*JCLBlackOptimization True/On : "@PJL SET BLACKOPTIMIZATION=ON<0A>"
*JCLCloseUI: *JCLBlackOptimization
*%========================================================
*% JCLRGB Color Intent
*%========================================================
*JCLOpenUI *JCLRGBColor/[Samsung Color Management] Intent: PickOne
*DefaultJCLRGBColor: Standard
*OrderDependency: 10 JCLSetup *JCLRGBColor
*JCLRGBColor Standard/Standard: "@PJL SET RGBCOLOR=STANDARD<0A>"
*JCLRGBColor Vivid/Vivid: "@PJL SET RGBCOLOR=VIVID<0A>"
*JCLRGBColor Device/Device: "@PJL SET RGBCOLOR=DEVICE<0A>"
*JCLRGBColor CoImaging/Corporate Imaging: "@PJL SET RGBCOLOR=CUSTOMCMS<0A>"
*JCLCloseUI: *JCLRGBColor
*%========================================================
*% JCLRGB Color Simulator
*%========================================================
*JCLOpenUI *JCLRGBSimulator/[Samsung Color Management] Simulator: PickOne
*DefaultJCLRGBSimulator: PrinterDefault
*OrderDependency: 10 JCLSetup *JCLRGBSimulator
*JCLRGBSimulator PrinterDefault/Printer Default: ""
*JCLRGBSimulator SimulDefault/Default Simulation: "@PJL SET RGBSIMULATOR=DEFAULT<0A>"
*JCLRGBSimulator SimulA/Simulation A: "@PJL SET RGBSIMULATOR=SIMUL_A<0A>"
*JCLRGBSimulator SimulB/Simulation B: "@PJL SET RGBSIMULATOR=SIMUL_B<0A>"
*JCLRGBSimulator SimulC/Simulation C: "@PJL SET RGBSIMULATOR=SIMUL_C<0A>"
*JCLRGBSimulator SimulD/Simulation D: "@PJL SET RGBSIMULATOR=SIMUL_D<0A>"
*JCLCloseUI: *JCLRGBSimulator
*% =========================================================
*% 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
*% =========================================================
*% Trapping
*% =========================================================
*JCLOpenUI *JCLTrapping/Trapping: PickOne
*OrderDependency: 10 JCLSetup *JCLTrapping
*DefaultJCLTrapping: Medium
*JCLTrapping Off/Off: "@PJL SET TRAPPING=OFF<0D0A>"
*JCLTrapping Medium/Normal: "@PJL SET TRAPPING=NORMAL<0D0A>"
*JCLTrapping Maximum/Maximum: "@PJL SET TRAPPING=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLTrapping
*% =========================================================
*% 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
*% =======================================================================================
*% Clear Text
*% =======================================================================================
*JCLOpenUI *JCLDarkenText/Clear Text: PickOne
*OrderDependency: 10 JCLSetup *JCLDarkenText
*DefaultJCLDarkenText: Off
*JCLDarkenText Off/Off: "@PJL SET DARKENTEXT=OFF<0D0A>"
*JCLDarkenText Normal/Medium: "@PJL SET DARKENTEXT=ON<0D0A>"
*JCLDarkenText Maximum/Maximum: "@PJL SET DARKENTEXT=MAXIMUM<0D0A>"
*JCLCloseUI: *JCLDarkenText
*% =========================================================
*% JCLScreen
*% =========================================================
*JCLOpenUI *JCLScreen/Screen: PickOne
*DefaultJCLScreen: Enhanced
*OrderDependency: 10 JCLSetup *JCLScreen
*JCLScreen PrinterDefault/Printer Default:""
*JCLScreen Normal/Normal: "@PJL SET SCREENMATCHING=Normal<0D0A>"
*JCLScreen Enhanced/Enhanced: "@PJL SET SCREENMATCHING=Enhanced<0D0A>"
*JCLScreen Detailed/Detailed: "@PJL SET SCREENMATCHING=Detailed<0D0A>"
*JCLCloseUI: *JCLScreen
*% =========================================================
*% JCLDocumentType
*% =========================================================
*JCLOpenUI *JCLDocumentType/Document Type: PickOne
*DefaultJCLDocumentType: Standard
*OrderDependency: 10 JCLSetup *JCLDocumentType
*JCLDocumentType Standard/Standard: "@PJL SET ESCMSDOCTYPE=STANDARD<0D0A>"
*JCLDocumentType Photo/Photo: "@PJL SET ESCMSDOCTYPE=PHOTO<0D0A>"
*JCLDocumentType Business/Business Graphic: "@PJL SET ESCMSDOCTYPE=BUSINESS<0D0A>"
*JCLDocumentType CAD/CAD: "@PJL SET ESCMSDOCTYPE=CAD<0D0A>"
*JCLDocumentType Browser/Browser: "@PJL SET ESCMSDOCTYPE=WEBPAGE<0D0A>"
*JCLCloseUI: *JCLDocumentType
*% =========================================================
*% 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
*% =========================================================
*% JCLColorAdjustment - Saturation
*% =========================================================
*JCLOpenUI *JCLSaturation/[Adjustment Levels] Saturation: PickOne
*DefaultJCLSaturation: 50
*OrderDependency: 10 JCLSetup *JCLSaturation
*JCLSaturation 0/0: "@PJL SET ESCMSSATURATION=0<0D0A>"
*JCLSaturation 10/10: "@PJL SET ESCMSSATURATION=10<0D0A>"
*JCLSaturation 20/20: "@PJL SET ESCMSSATURATION=20<0D0A>"
*JCLSaturation 30/30: "@PJL SET ESCMSSATURATION=30<0D0A>"
*JCLSaturation 40/40: "@PJL SET ESCMSSATURATION=40<0D0A>"
*JCLSaturation 50/50: "@PJL SET ESCMSSATURATION=50<0D0A>"
*JCLSaturation 60/60: "@PJL SET ESCMSSATURATION=60<0D0A>"
*JCLSaturation 70/70: "@PJL SET ESCMSSATURATION=70<0D0A>"
*JCLSaturation 80/80: "@PJL SET ESCMSSATURATION=80<0D0A>"
*JCLSaturation 90/90: "@PJL SET ESCMSSATURATION=90<0D0A>"
*JCLSaturation 100/100: "@PJL SET ESCMSSATURATION=100<0D0A>"
*JCLCloseUI: *JCLSaturation
*% =========================================================
*% JCLColorAdjustment - Cyan-Red
*% =========================================================
*JCLOpenUI *JCLCyanRed/[Adjustment Levels] Cyan-Red: PickOne
*DefaultJCLCyanRed: 50
*OrderDependency: 10 JCLSetup *JCLCyanRed
*JCLCyanRed 0/0: "@PJL SET ESCMSCRBALANCE=0<0D0A>"
*JCLCyanRed 10/10: "@PJL SET ESCMSCRBALANCE=10<0D0A>"
*JCLCyanRed 20/20: "@PJL SET ESCMSCRBALANCE=20<0D0A>"
*JCLCyanRed 30/30: "@PJL SET ESCMSCRBALANCE=30<0D0A>"
*JCLCyanRed 40/40: "@PJL SET ESCMSCRBALANCE=40<0D0A>"
*JCLCyanRed 50/50: "@PJL SET ESCMSCRBALANCE=50<0D0A>"
*JCLCyanRed 60/60: "@PJL SET ESCMSCRBALANCE=60<0D0A>"
*JCLCyanRed 70/70: "@PJL SET ESCMSCRBALANCE=70<0D0A>"
*JCLCyanRed 80/80: "@PJL SET ESCMSCRBALANCE=80<0D0A>"
*JCLCyanRed 90/90: "@PJL SET ESCMSCRBALANCE=90<0D0A>"
*JCLCyanRed 100/100: "@PJL SET ESCMSCRBALANCE=100<0D0A>"
*JCLCloseUI: *JCLCyanRed
*% =========================================================
*% JCLColorAdjustment - Magenta-Green
*% =========================================================
*JCLOpenUI *JCLMagentaGreen/[Adjustment Levels] Magenta-Green: PickOne
*DefaultJCLMagentaGreen: 50
*OrderDependency: 10 JCLSetup *JCLMagentaGreen
*JCLMagentaGreen 0/0: "@PJL SET ESCMSMGBALANCE=0<0D0A>"
*JCLMagentaGreen 10/10: "@PJL SET ESCMSMGBALANCE=10<0D0A>"
*JCLMagentaGreen 20/20: "@PJL SET ESCMSMGBALANCE=20<0D0A>"
*JCLMagentaGreen 30/30: "@PJL SET ESCMSMGBALANCE=30<0D0A>"
*JCLMagentaGreen 40/40: "@PJL SET ESCMSMGBALANCE=40<0D0A>"
*JCLMagentaGreen 50/50: "@PJL SET ESCMSMGBALANCE=50<0D0A>"
*JCLMagentaGreen 60/60: "@PJL SET ESCMSMGBALANCE=60<0D0A>"
*JCLMagentaGreen 70/70: "@PJL SET ESCMSMGBALANCE=70<0D0A>"
*JCLMagentaGreen 80/80: "@PJL SET ESCMSMGBALANCE=80<0D0A>"
*JCLMagentaGreen 90/90: "@PJL SET ESCMSMGBALANCE=90<0D0A>"
*JCLMagentaGreen 100/100: "@PJL SET ESCMSMGBALANCE=100<0D0A>"
*JCLCloseUI: *JCLMagentaGreen
*% =========================================================
*% JCLColorAdjustment - Yellow-Blue
*% =========================================================
*JCLOpenUI *JCLYellowBlue/[Adjustment Levels] Yellow-Blue: PickOne
*DefaultJCLYellowBlue: 50
*OrderDependency: 10 JCLSetup *JCLYellowBlue
*JCLYellowBlue 0/0: "@PJL SET ESCMSYBBALANCE=0<0D0A>"
*JCLYellowBlue 10/10: "@PJL SET ESCMSYBBALANCE=10<0D0A>"
*JCLYellowBlue 20/20: "@PJL SET ESCMSYBBALANCE=20<0D0A>"
*JCLYellowBlue 30/30: "@PJL SET ESCMSYBBALANCE=30<0D0A>"
*JCLYellowBlue 40/40: "@PJL SET ESCMSYBBALANCE=40<0D0A>"
*JCLYellowBlue 50/50: "@PJL SET ESCMSYBBALANCE=50<0D0A>"
*JCLYellowBlue 60/60: "@PJL SET ESCMSYBBALANCE=60<0D0A>"
*JCLYellowBlue 70/70: "@PJL SET ESCMSYBBALANCE=70<0D0A>"
*JCLYellowBlue 80/80: "@PJL SET ESCMSYBBALANCE=80<0D0A>"
*JCLYellowBlue 90/90: "@PJL SET ESCMSYBBALANCE=90<0D0A>"
*JCLYellowBlue 100/100: "@PJL SET ESCMSYBBALANCE=100<0D0A>"
*JCLCloseUI: *JCLYellowBlue
*% =========================================================
*% 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>"
*JCLCloseUI: *JCLStapleLocation
*% =========================================================
*% Finisher Output bin
*% =========================================================
*JCLOpenUI *JCLFinisherOutBin/Output Bin: PickOne
*OrderDependency: 10 JCLSetup *JCLFinisherOutBin
*DefaultJCLFinisherOutBin: None
*JCLFinisherOutBin None/Printer setting: ""
*JCLFinisherOutBin Bin1/Standard Bin: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Bin2/Top Bin: "@PJL SET OUTBIN=UPPER<0D0A>"
*JCLFinisherOutBin Bin3/Inner Bin: "@PJL SET OUTBIN=INNER<0D0A>"
*JCLFinisherOutBin Bin4/Finishing bin: "@PJL SET OUTBIN=FINISHERBIN<0D0A>"
*JCLCloseUI: *JCLFinisherOutBin
*% =========================================================
*% Front Cover [OPTION]
*% =========================================================
*JCLOpenUI *JCLFrontCoverOption/Front Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverOption
*DefaultJCLFrontCoverOption: None
*JCLFrontCoverOption None/No Covers: ""
*JCLFrontCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>BLANK<220D0A>"
*JCLFrontCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLFrontCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONT<220D0A>@PJL SET FRONT_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLFrontCoverOption
*% =========================================================
*% Front Cover [Source]
*% =========================================================
*JCLOpenUI *JCLFrontCoverSource/Front Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverSource
*DefaultJCLFrontCoverSource: None
*JCLFrontCoverSource None/None: ""
*JCLFrontCoverSource Auto/Auto Selection: "@PJL SET FRONT_COVER_TRAY=<22>AUTO<220D0A>"
*JCLFrontCoverSource Upper/MP Tray: "@PJL SET FRONT_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLFrontCoverSource Middle/Tray 1: "@PJL SET FRONT_COVER_TRAY=<22>UPPER<220D0A>"
*JCLFrontCoverSource Lower/Tray 2: "@PJL SET FRONT_COVER_TRAY=<22>LOWER<220D0A>"
*JCLFrontCoverSource Tray3/Tray 3: "@PJL SET FRONT_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontCoverSource Tray4/Tray 4: "@PJL SET FRONT_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLFrontCoverSource
*% =========================================================
*% Front Cover [Type]
*% =========================================================
*JCLOpenUI *JCLFrontCoverType/Front Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontCoverType
*DefaultJCLFrontCoverType: None
*JCLFrontCoverType None/None: ""
*JCLFrontCoverType PrinterDefault/Printer Default: "@PJL SET FRONT_COVER_TYPE=<22>OFF<220D0A>"
*JCLFrontCoverType Plain/Plain: "@PJL SET FRONT_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLFrontCoverType Thick/Thick: "@PJL SET FRONT_COVER_TYPE=<22>THICK<220D0A>"
*JCLFrontCoverType Thin/Thin: "@PJL SET FRONT_COVER_TYPE=<22>THIN<220D0A>"
*JCLFrontCoverType Bond/Bond: "@PJL SET FRONT_COVER_TYPE=<22>BOND<220D0A>"
*JCLFrontCoverType Color/Color: "@PJL SET FRONT_COVER_TYPE=<22>COLOR<220D0A>"
*JCLFrontCoverType Labels/Labels: "@PJL SET FRONT_COVER_TYPE=<22>LABEL<220D0A>"
*JCLFrontCoverType Envelope/Envelope: "@PJL SET FRONT_COVER_TYPE=<22>ENV<220D0A>"
*JCLFrontCoverType Preprinted/Preprinted: "@PJL SET FRONT_COVER_TYPE=<22>USED<220D0A>"
*JCLFrontCoverType Cotton/Cotton: "@PJL SET FRONT_COVER_TYPE=<22>COTTON<220D0A>"
*JCLFrontCoverType Recycled/Recycled: "@PJL SET FRONT_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLFrontCoverType Archive/Archive: "@PJL SET FRONT_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLFrontCoverType Punched/Punched: "@PJL SET FRONT_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLFrontCoverType Letterhead/Letterhead: "@PJL SET FRONT_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLFrontCoverType HeavyWeight/Heavy Weight: "@PJL SET FRONT_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLFrontCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET FRONT_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLFrontCoverType ThinCardStock/Thin CardStock: "@PJL SET FRONT_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLFrontCoverType ThinGlossy/Thin Glossy: "@PJL SET FRONT_COVER_TYPE=<22>THINGLOSSY<220D0A>"
*JCLCloseUI: *JCLFrontCoverType
*% =========================================================
*% Back Cover [OPTION]
*% =========================================================
*JCLOpenUI *JCLBackCoverOption/Back Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverOption
*DefaultJCLBackCoverOption: None
*JCLBackCoverOption None/No Covers: ""
*JCLBackCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>BLANK<220D0A>"
*JCLBackCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLBackCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>BACK<220D0A>@PJL SET BACK_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLBackCoverOption
*% =========================================================
*% Back Cover [Source]
*% =========================================================
*JCLOpenUI *JCLBackCoverSource/Back Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverSource
*DefaultJCLBackCoverSource: None
*JCLBackCoverSource None/None: ""
*JCLBackCoverSource Auto/Auto Selection: "@PJL SET BACK_COVER_TRAY=<22>AUTO<220D0A>"
*JCLBackCoverSource Upper/MP Tray: "@PJL SET BACK_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLBackCoverSource Middle/Tray 1: "@PJL SET BACK_COVER_TRAY=<22>UPPER<220D0A>"
*JCLBackCoverSource Lower/Tray 2: "@PJL SET BACK_COVER_TRAY=<22>LOWER<220D0A>"
*JCLBackCoverSource Tray3/Tray 3: "@PJL SET BACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLBackCoverSource Tray4/Tray 4: "@PJL SET BACK_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLBackCoverSource
*% =========================================================
*% Back Cover [Type]
*% =========================================================
*JCLOpenUI *JCLBackCoverType/Back Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLBackCoverType
*DefaultJCLBackCoverType: None
*JCLBackCoverType None/None: ""
*JCLBackCoverType PrinterDefault/Printer Default: "@PJL SET BACK_COVER_TYPE=<22>OFF<220D0A>"
*JCLBackCoverType Plain/Plain: "@PJL SET BACK_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLBackCoverType Thick/Thick: "@PJL SET BACK_COVER_TYPE=<22>THICK<220D0A>"
*JCLBackCoverType Thin/Thin: "@PJL SET BACK_COVER_TYPE=<22>THIN<220D0A>"
*JCLBackCoverType Bond/Bond: "@PJL SET BACK_COVER_TYPE=<22>BOND<220D0A>"
*JCLBackCoverType Color/Color: "@PJL SET BACK_COVER_TYPE=<22>COLOR<220D0A>"
*JCLBackCoverType Labels/Labels: "@PJL SET BACK_COVER_TYPE=<22>LABEL<220D0A>"
*JCLBackCoverType Envelope/Envelope: "@PJL SET BACK_COVER_TYPE=<22>ENV<220D0A>"
*JCLBackCoverType Preprinted/Preprinted: "@PJL SET BACK_COVER_TYPE=<22>USED<220D0A>"
*JCLBackCoverType Cotton/Cotton: "@PJL SET BACK_COVER_TYPE=<22>COTTON<220D0A>"
*JCLBackCoverType Recycled/Recycled: "@PJL SET BACK_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLBackCoverType Archive/Archive: "@PJL SET BACK_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLBackCoverType Punched/Punched: "@PJL SET BACK_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLBackCoverType Letterhead/Letterhead: "@PJL SET BACK_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLBackCoverType HeavyWeight/Heavy Weight: "@PJL SET BACK_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLBackCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET BACK_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLBackCoverType ThinCardStock/Thin CardStock: "@PJL SET BACK_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLBackCoverType ThinGlossy/Thin Glossy: "@PJL SET BACK_COVER_TYPE=<22>THINGLOSSY<220D0A>"
*JCLCloseUI: *JCLBackCoverType
*% =========================================================
*% Front and Back Cover [OPTION]
*% =========================================================
*JCLOpenUI *JCLFrontBackCoverOption/Front and Back Cover Option: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverOption
*DefaultJCLFrontBackCoverOption: None
*JCLFrontBackCoverOption None/No Covers: ""
*JCLFrontBackCoverOption BlankPreprinted/Blank or Preprinted: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>BLANK<220D0A>"
*JCLFrontBackCoverOption 1SidedPrinted/1-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>1SIDEPRINTED<220D0A>"
*JCLFrontBackCoverOption 2SidedPrinted/2-Sided Printed: "@PJL SET FRONTBACK_COVER_ATTRIBUTE=<22>FRONTBACK<220D0A>@PJL SET FRONTBACK_COVER_OPTION=<22>2SIDEPRINTED<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverOption
*% =========================================================
*% Front and Back Cover [Source]
*% =========================================================
*JCLOpenUI *JCLFrontBackCoverSource/Front and Back Cover Source: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverSource
*DefaultJCLFrontBackCoverSource: None
*JCLFrontBackCoverSource None/None: ""
*JCLFrontBackCoverSource Auto/Auto Selection: "@PJL SET FRONTBACK_COVER_TRAY=<22>AUTO<220D0A>"
*JCLFrontBackCoverSource Upper/MP Tray: "@PJL SET FRONTBACK_COVER_TRAY=<22>MPTRAY<220D0A>"
*JCLFrontBackCoverSource Middle/Tray 1: "@PJL SET FRONTBACK_COVER_TRAY=<22>UPPER<220D0A>"
*JCLFrontBackCoverSource Lower/Tray 2: "@PJL SET FRONTBACK_COVER_TRAY=<22>LOWER<220D0A>"
*JCLFrontBackCoverSource Tray3/Tray 3: "@PJL SET FRONTBACK_COVER_TRAY=<22>OPTIONTRAY3<220D0A>"
*JCLFrontBackCoverSource Tray4/Tray 4: "@PJL SET FRONTBACK_COVER_TRAY=<22>OPTIONTRAY4<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverSource
*% =========================================================
*% Front and Back Cover [Type]
*% =========================================================
*JCLOpenUI *JCLFrontBackCoverType/Front and Back Cover Type: PickOne
*OrderDependency: 10 JCLSetup *JCLFrontBackCoverType
*DefaultJCLFrontBackCoverType: None
*JCLFrontBackCoverType None/None: ""
*JCLFrontBackCoverType PrinterDefault/Printer Default: "@PJL SET FRONTBACK_COVER_TYPE=<22>OFF<220D0A>"
*JCLFrontBackCoverType Plain/Plain: "@PJL SET FRONTBACK_COVER_TYPE=<22>NORMAL<220D0A>"
*JCLFrontBackCoverType Thick/Thick: "@PJL SET FRONTBACK_COVER_TYPE=<22>THICK<220D0A>"
*JCLFrontBackCoverType Thin/Thin: "@PJL SET FRONTBACK_COVER_TYPE=<22>THIN<220D0A>"
*JCLFrontBackCoverType Bond/Bond: "@PJL SET FRONTBACK_COVER_TYPE=<22>BOND<220D0A>"
*JCLFrontBackCoverType Color/Color: "@PJL SET FRONTBACK_COVER_TYPE=<22>COLOR<220D0A>"
*JCLFrontBackCoverType Labels/Labels: "@PJL SET FRONTBACK_COVER_TYPE=<22>LABEL<220D0A>"
*JCLFrontBackCoverType Envelope/Envelope: "@PJL SET FRONTBACK_COVER_TYPE=<22>ENV<220D0A>"
*JCLFrontBackCoverType Preprinted/Preprinted: "@PJL SET FRONTBACK_COVER_TYPE=<22>USED<220D0A>"
*JCLFrontBackCoverType Recycled/Recycled: "@PJL SET FRONTBACK_COVER_TYPE=<22>RECYCLED<220D0A>"
*JCLFrontBackCoverType Cotton/Cotton: "@PJL SET FRONTBACK_COVER_TYPE=<22>COTTON<220D0A>"
*JCLFrontBackCoverType Archive/Archive: "@PJL SET FRONTBACK_COVER_TYPE=<22>ARCHIVE<220D0A>"
*JCLFrontBackCoverType Punched/Punched: "@PJL SET FRONTBACK_COVER_TYPE=<22>PUNCHED<220D0A>"
*JCLFrontBackCoverType Letterhead/Letterhead: "@PJL SET FRONTBACK_COVER_TYPE=<22>LETTERHEAD<220D0A>"
*JCLFrontBackCoverType HeavyWeight/Heavy Weight: "@PJL SET FRONTBACK_COVER_TYPE=<22>HEAVYWEIGHT<220D0A>"
*JCLFrontBackCoverType ExtraHeavyWeight1/Extra Heavy Weight 1: "@PJL SET FRONTBACK_COVER_TYPE=<22>EXTRAHEAVYWEIGHT1<220D0A>"
*JCLFrontBackCoverType ThinCardStock/Thin CardStock: "@PJL SET FRONTBACK_COVER_TYPE=<22>THINCARDSTOCK<220D0A>"
*JCLFrontBackCoverType ThinGlossy/Thin Glossy: "@PJL SET FRONTBACK_COVER_TYPE=<22>THINGLOSSY<220D0A>"
*JCLCloseUI: *JCLFrontBackCoverType
*% =========================================================
*% Paper Source
*% =========================================================
*OpenUI *InputSlot/Paper Source: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Auto
*InputSlot Auto/Printer Auto Selection:"
<</ManualFeed false /MediaPosition null>> setpagedevice"
*End
*InputSlot Upper/MP Tray:"
<< /ManualFeed false /MediaPosition 2 >> setpagedevice"
*End
*InputSlot Middle/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 Tray4/Tray 4:"
<< /ManualFeed false /MediaPosition 5 >> 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/Page 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/JIS B5: "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageSize US-Folio/US Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageSize Env10/No.10 Env.: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageSize EnvDL/DL Env.: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageSize EnvC5/C5 Env.: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageSize EnvC6/C6 Env.: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageSize B5-ISO/ISO B5: "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageSize EnvMonarch/Monarch Env.: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageSize A6/A6: "<</PageSize [297 420] /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 Env.: "<</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 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageSize 16K/16K: "<</PageSize [553 766] /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) 24 dict
dup [649 918] (C4) put
dup [792 1224] (Tabloid) put
dup [729 1032] (B4) put
dup [279 639] (Env9) put
dup [553 766] (16K) put
dup [766 1106] (8K) put
dup [842 1191] (A3) put
dup [288 432] (Postcard_S) put
dup [396 612] (Statement) put
dup [612 972] (Oficio_S) 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/JIS B5: "<</PageSize [516 729] /ImagingBBox null>> setpagedevice"
*PageRegion US-Folio/US Folio: "<</PageSize [612 936] /ImagingBBox null>> setpagedevice"
*PageRegion Env10/No.10 Env.: "<</PageSize [297 684] /ImagingBBox null>> setpagedevice"
*PageRegion EnvDL/DL Env.: "<</PageSize [312 624] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC5/C5 Env.: "<</PageSize [459 649] /ImagingBBox null>> setpagedevice"
*PageRegion EnvC6/C6 Env.: "<</PageSize [323 459] /ImagingBBox null>> setpagedevice"
*PageRegion B5-ISO/ISO B5: "<</PageSize [499 709] /ImagingBBox null>> setpagedevice"
*PageRegion EnvMonarch/Monarch Env.: "<</PageSize [279 540] /ImagingBBox null>> setpagedevice"
*PageRegion A6/A6: "<</PageSize [297 420] /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 Env.: "<</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 8K/8K: "<</PageSize [766 1106] /ImagingBBox null>> setpagedevice"
*PageRegion 16K/16K: "<</PageSize [553 766] /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/JIS B5: "12.50 12.50 503.50 715.50"
*ImageableArea US-Folio/US Folio: "12.50 12.50 599.50 923.50"
*ImageableArea Env10/No.10 Env.: "12.50 12.50 284.50 670.50"
*ImageableArea EnvDL/DL Env.: "12.50 12.50 299.50 610.50"
*ImageableArea EnvC5/C5 Env.: "12.50 12.50 446.50 635.50"
*ImageableArea EnvC6/C6 Env.: "12.50 12.50 310.50 446.50"
*ImageableArea B5-ISO/ISO B5: "12.50 12.50 485.50 695.50"
*ImageableArea EnvMonarch/Monarch Env.: "12.50 12.50 266.50 527.50"
*ImageableArea A6/A6: "12.50 12.50 284.50 407.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 Env.: "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 8K/8K: "12.50 12.50 753.50 1085.50"
*ImageableArea 16K/16K: "12.50 12.50 540.50 753.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/JIS B5: "516 729"
*PaperDimension US-Folio/US Folio: "612 936"
*PaperDimension Env10/No.10 Env.: "297 684"
*PaperDimension EnvDL/DL Env.: "312 624"
*PaperDimension EnvC5/C5 Env.: "459 649"
*PaperDimension EnvC6/C6 Env.: "323 459"
*PaperDimension B5-ISO/ISO B5: "499 709"
*PaperDimension EnvMonarch/Monarch Env.: "279 540"
*PaperDimension A6/A6: "297 420"
*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 Env.: "279 639"
*PaperDimension C4/C4: "649 918"
*PaperDimension B4/B4: "729 1032"
*PaperDimension 8K/8K: "766 1106"
*PaperDimension 16K/16K: "553 766"
*PaperDimension Tabloid/Ledger: "791 1224"
*RequiresPageRegion All: True
*LandscapeOrientation: Plus90
*% =========================================================
*% User Interface Constraints
*% =========================================================
*% =========================================================
*% OptionalTray None - Tray3, 4
*% =========================================================
*UIConstraints: *OptionalTray None *InputSlot Tray3
*UIConstraints: *OptionalTray None *InputSlot Tray4
*UIConstraints: *OptionalTray None *JCLFrontCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLFrontCoverSource Tray4
*UIConstraints: *OptionalTray None *JCLBackCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLBackCoverSource Tray4
*UIConstraints: *OptionalTray None *JCLFrontBackCoverSource Tray3
*UIConstraints: *OptionalTray None *JCLFrontBackCoverSource Tray4
*UIConstraints: *InputSlot Tray3 *OptionalTray None
*UIConstraints: *InputSlot Tray4 *OptionalTray None
*UIConstraints: *JCLFrontCoverSource Tray3 *OptionalTray None
*UIConstraints: *JCLFrontCoverSource Tray4 *OptionalTray None
*UIConstraints: *JCLBackCoverSource Tray3 *OptionalTray None
*UIConstraints: *JCLBackCoverSource Tray4 *OptionalTray None
*UIConstraints: *JCLFrontBackCoverSource Tray3 *OptionalTray None
*UIConstraints: *JCLFrontBackCoverSource Tray4 *OptionalTray None
*% ===============================================================
*% Optional InnerOutBint - JCLFinisherOutBin
*% ===============================================================
*UIConstraints: *OptInnerOutBin False *JCLFinisherOutBin Bin3
*UIConstraints: *JCLFinisherOutBin Bin3 *OptInnerOutBin False
*% ===============================================================
*% Installable finisher - Sort Options
*% ===============================================================
*UIConstraints: *Finisher None *JCLSortOptions Offset
*UIConstraints: *JCLSortOptions Offset *Finisher None
*UIConstraints: *Finisher 2BinFinisher *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *Finisher 2BinFinisher
*% =================================================================
*% Finisher - StapleLocation
*% =================================================================
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_P
*UIConstraints: *Finisher None *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLStapleLocation 1Staple_P *Finisher None
*UIConstraints: *JCLStapleLocation 1Staple_L *Finisher None
*% ================================================================
*% Finisher - Outputbin
*% ================================================================
*UIConstraints: *Finisher None *JCLFinisherOutBin Bin2
*UIConstraints: *JCLFinisherOutBin Bin2 *Finisher None
*UIConstraints: *Finisher None *JCLFinisherOutBin Bin4
*UIConstraints: *JCLFinisherOutBin Bin4 *Finisher None
*UIConstraints: *Finisher 2BinFinisher *JCLFinisherOutBin Bin1
*UIConstraints: *JCLFinisherOutBin Bin1 *Finisher 2BinFinisher
*% ===============================================================
*% Color Mode - Black Optimization
*% ===============================================================
*UIConstraints: *ColorMode False *JCLBlackOptimization True
*UIConstraints: *JCLBlackOptimization True *ColorMode False
*% =========================================================
*% PostCard (PageSize) - MediaType
*% =========================================================
*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 Bond
*UIConstraints: *PageSize Postcard_S *MediaType Color
*UIConstraints: *PageSize Postcard_S *MediaType Labels
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType Preprinted
*UIConstraints: *PageSize Postcard_S *MediaType Recycled
*UIConstraints: *PageSize Postcard_S *MediaType Cotton
*UIConstraints: *PageSize Postcard_S *MediaType Archive
*UIConstraints: *PageSize Postcard_S *MediaType Punched
*UIConstraints: *PageSize Postcard_S *MediaType Letterhead
*UIConstraints: *PageSize Postcard_S *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageSize Postcard_S *MediaType ThinGlossy
*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 Bond *PageSize Postcard_S
*UIConstraints: *MediaType Color *PageSize Postcard_S
*UIConstraints: *MediaType Labels *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType Preprinted *PageSize Postcard_S
*UIConstraints: *MediaType Recycled *PageSize Postcard_S
*UIConstraints: *MediaType Cotton *PageSize Postcard_S
*UIConstraints: *MediaType Archive *PageSize Postcard_S
*UIConstraints: *MediaType Punched *PageSize Postcard_S
*UIConstraints: *MediaType Letterhead *PageSize Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageSize Postcard_S
*UIConstraints: *MediaType ThinGlossy *PageSize Postcard_S
*% =========================================================
*% PostCard (PageRegion) - MediaType
*% =========================================================
*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 Bond
*UIConstraints: *PageRegion Postcard_S *MediaType Color
*UIConstraints: *PageRegion Postcard_S *MediaType Labels
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType Preprinted
*UIConstraints: *PageRegion Postcard_S *MediaType Recycled
*UIConstraints: *PageRegion Postcard_S *MediaType Cotton
*UIConstraints: *PageRegion Postcard_S *MediaType Archive
*UIConstraints: *PageRegion Postcard_S *MediaType Punched
*UIConstraints: *PageRegion Postcard_S *MediaType Letterhead
*UIConstraints: *PageRegion Postcard_S *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Postcard_S *MediaType ThinCardStock
*UIConstraints: *PageRegion Postcard_S *MediaType ThinGlossy
*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 Bond *PageRegion Postcard_S
*UIConstraints: *MediaType Color *PageRegion Postcard_S
*UIConstraints: *MediaType Labels *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType Preprinted *PageRegion Postcard_S
*UIConstraints: *MediaType Recycled *PageRegion Postcard_S
*UIConstraints: *MediaType Cotton *PageRegion Postcard_S
*UIConstraints: *MediaType Archive *PageRegion Postcard_S
*UIConstraints: *MediaType Punched *PageRegion Postcard_S
*UIConstraints: *MediaType Letterhead *PageRegion Postcard_S
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Postcard_S
*UIConstraints: *MediaType ThinCardStock *PageRegion Postcard_S
*UIConstraints: *MediaType ThinGlossy *PageRegion Postcard_S
*% =========================================================
*% 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 Color
*UIConstraints: *PageSize EnvMonarch *MediaType Labels
*UIConstraints: *PageSize EnvMonarch *MediaType Preprinted
*UIConstraints: *PageSize EnvMonarch *MediaType Recycled
*UIConstraints: *PageSize EnvMonarch *MediaType Cotton
*UIConstraints: *PageSize EnvMonarch *MediaType Archive
*UIConstraints: *PageSize EnvMonarch *MediaType Punched
*UIConstraints: *PageSize EnvMonarch *MediaType Letterhead
*UIConstraints: *PageSize EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageSize EnvMonarch *MediaType ThinGlossy
*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 Color *PageSize EnvMonarch
*UIConstraints: *MediaType Labels *PageSize EnvMonarch
*UIConstraints: *MediaType Preprinted *PageSize EnvMonarch
*UIConstraints: *MediaType Recycled *PageSize EnvMonarch
*UIConstraints: *MediaType Cotton *PageSize EnvMonarch
*UIConstraints: *MediaType Archive *PageSize EnvMonarch
*UIConstraints: *MediaType Punched *PageSize EnvMonarch
*UIConstraints: *MediaType Letterhead *PageSize EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageSize EnvMonarch
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize EnvDL *MediaType Labels
*UIConstraints: *PageSize EnvDL *MediaType Preprinted
*UIConstraints: *PageSize EnvDL *MediaType Recycled
*UIConstraints: *PageSize EnvDL *MediaType Cotton
*UIConstraints: *PageSize EnvDL *MediaType Archive
*UIConstraints: *PageSize EnvDL *MediaType Punched
*UIConstraints: *PageSize EnvDL *MediaType Letterhead
*UIConstraints: *PageSize EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvDL *MediaType ThinCardStock
*UIConstraints: *PageSize EnvDL *MediaType ThinGlossy
*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 Color *PageSize EnvDL
*UIConstraints: *MediaType Labels *PageSize EnvDL
*UIConstraints: *MediaType Preprinted *PageSize EnvDL
*UIConstraints: *MediaType Recycled *PageSize EnvDL
*UIConstraints: *MediaType Cotton *PageSize EnvDL
*UIConstraints: *MediaType Archive *PageSize EnvDL
*UIConstraints: *MediaType Punched *PageSize EnvDL
*UIConstraints: *MediaType Letterhead *PageSize EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvDL
*UIConstraints: *MediaType ThinCardStock *PageSize EnvDL
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize EnvC5 *MediaType Labels
*UIConstraints: *PageSize EnvC5 *MediaType Preprinted
*UIConstraints: *PageSize EnvC5 *MediaType Recycled
*UIConstraints: *PageSize EnvC5 *MediaType Cotton
*UIConstraints: *PageSize EnvC5 *MediaType Archive
*UIConstraints: *PageSize EnvC5 *MediaType Punched
*UIConstraints: *PageSize EnvC5 *MediaType Letterhead
*UIConstraints: *PageSize EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC5 *MediaType ThinGlossy
*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 Color *PageSize EnvC5
*UIConstraints: *MediaType Labels *PageSize EnvC5
*UIConstraints: *MediaType Preprinted *PageSize EnvC5
*UIConstraints: *MediaType Recycled *PageSize EnvC5
*UIConstraints: *MediaType Cotton *PageSize EnvC5
*UIConstraints: *MediaType Archive *PageSize EnvC5
*UIConstraints: *MediaType Punched *PageSize EnvC5
*UIConstraints: *MediaType Letterhead *PageSize EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC5
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC5
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize EnvC6 *MediaType Labels
*UIConstraints: *PageSize EnvC6 *MediaType Preprinted
*UIConstraints: *PageSize EnvC6 *MediaType Recycled
*UIConstraints: *PageSize EnvC6 *MediaType Cotton
*UIConstraints: *PageSize EnvC6 *MediaType Archive
*UIConstraints: *PageSize EnvC6 *MediaType Punched
*UIConstraints: *PageSize EnvC6 *MediaType Letterhead
*UIConstraints: *PageSize EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageSize EnvC6 *MediaType ThinGlossy
*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 Color *PageSize EnvC6
*UIConstraints: *MediaType Labels *PageSize EnvC6
*UIConstraints: *MediaType Preprinted *PageSize EnvC6
*UIConstraints: *MediaType Recycled *PageSize EnvC6
*UIConstraints: *MediaType Cotton *PageSize EnvC6
*UIConstraints: *MediaType Archive *PageSize EnvC6
*UIConstraints: *MediaType Punched *PageSize EnvC6
*UIConstraints: *MediaType Letterhead *PageSize EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize EnvC6
*UIConstraints: *MediaType ThinCardStock *PageSize EnvC6
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize Env10 *MediaType Labels
*UIConstraints: *PageSize Env10 *MediaType Preprinted
*UIConstraints: *PageSize Env10 *MediaType Recycled
*UIConstraints: *PageSize Env10 *MediaType Cotton
*UIConstraints: *PageSize Env10 *MediaType Archive
*UIConstraints: *PageSize Env10 *MediaType Punched
*UIConstraints: *PageSize Env10 *MediaType Letterhead
*UIConstraints: *PageSize Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env10 *MediaType ThinCardStock
*UIConstraints: *PageSize Env10 *MediaType ThinGlossy
*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 Color *PageSize Env10
*UIConstraints: *MediaType Labels *PageSize Env10
*UIConstraints: *MediaType Preprinted *PageSize Env10
*UIConstraints: *MediaType Recycled *PageSize Env10
*UIConstraints: *MediaType Cotton *PageSize Env10
*UIConstraints: *MediaType Archive *PageSize Env10
*UIConstraints: *MediaType Punched *PageSize Env10
*UIConstraints: *MediaType Letterhead *PageSize Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env10
*UIConstraints: *MediaType ThinCardStock *PageSize Env10
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize Env9 *MediaType Labels
*UIConstraints: *PageSize Env9 *MediaType Preprinted
*UIConstraints: *PageSize Env9 *MediaType Recycled
*UIConstraints: *PageSize Env9 *MediaType Cotton
*UIConstraints: *PageSize Env9 *MediaType Archive
*UIConstraints: *PageSize Env9 *MediaType Punched
*UIConstraints: *PageSize Env9 *MediaType Letterhead
*UIConstraints: *PageSize Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize Env9 *MediaType ThinCardStock
*UIConstraints: *PageSize Env9 *MediaType ThinGlossy
*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 Color *PageSize Env9
*UIConstraints: *MediaType Labels *PageSize Env9
*UIConstraints: *MediaType Preprinted *PageSize Env9
*UIConstraints: *MediaType Recycled *PageSize Env9
*UIConstraints: *MediaType Cotton *PageSize Env9
*UIConstraints: *MediaType Archive *PageSize Env9
*UIConstraints: *MediaType Punched *PageSize Env9
*UIConstraints: *MediaType Letterhead *PageSize Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize Env9
*UIConstraints: *MediaType ThinCardStock *PageSize Env9
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageSize C4 *MediaType Labels
*UIConstraints: *PageSize C4 *MediaType Preprinted
*UIConstraints: *PageSize C4 *MediaType Recycled
*UIConstraints: *PageSize C4 *MediaType Cotton
*UIConstraints: *PageSize C4 *MediaType Archive
*UIConstraints: *PageSize C4 *MediaType Punched
*UIConstraints: *PageSize C4 *MediaType Letterhead
*UIConstraints: *PageSize C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageSize C4 *MediaType ThinCardStock
*UIConstraints: *PageSize C4 *MediaType ThinGlossy
*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 Color *PageSize C4
*UIConstraints: *MediaType Labels *PageSize C4
*UIConstraints: *MediaType Preprinted *PageSize C4
*UIConstraints: *MediaType Recycled *PageSize C4
*UIConstraints: *MediaType Cotton *PageSize C4
*UIConstraints: *MediaType Archive *PageSize C4
*UIConstraints: *MediaType Punched *PageSize C4
*UIConstraints: *MediaType Letterhead *PageSize C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageSize C4
*UIConstraints: *MediaType ThinCardStock *PageSize C4
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion EnvMonarch *MediaType Labels
*UIConstraints: *PageRegion EnvMonarch *MediaType Preprinted
*UIConstraints: *PageRegion EnvMonarch *MediaType Recycled
*UIConstraints: *PageRegion EnvMonarch *MediaType Cotton
*UIConstraints: *PageRegion EnvMonarch *MediaType Archive
*UIConstraints: *PageRegion EnvMonarch *MediaType Punched
*UIConstraints: *PageRegion EnvMonarch *MediaType Letterhead
*UIConstraints: *PageRegion EnvMonarch *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvMonarch *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvMonarch *MediaType ThinGlossy
*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 Color *PageRegion EnvMonarch
*UIConstraints: *MediaType Labels *PageRegion EnvMonarch
*UIConstraints: *MediaType Preprinted *PageRegion EnvMonarch
*UIConstraints: *MediaType Recycled *PageRegion EnvMonarch
*UIConstraints: *MediaType Cotton *PageRegion EnvMonarch
*UIConstraints: *MediaType Archive *PageRegion EnvMonarch
*UIConstraints: *MediaType Punched *PageRegion EnvMonarch
*UIConstraints: *MediaType Letterhead *PageRegion EnvMonarch
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvMonarch
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvMonarch
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion EnvDL *MediaType Labels
*UIConstraints: *PageRegion EnvDL *MediaType Preprinted
*UIConstraints: *PageRegion EnvDL *MediaType Recycled
*UIConstraints: *PageRegion EnvDL *MediaType Cotton
*UIConstraints: *PageRegion EnvDL *MediaType Archive
*UIConstraints: *PageRegion EnvDL *MediaType Punched
*UIConstraints: *PageRegion EnvDL *MediaType Letterhead
*UIConstraints: *PageRegion EnvDL *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvDL *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvDL *MediaType ThinGlossy
*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 Color *PageRegion EnvDL
*UIConstraints: *MediaType Labels *PageRegion EnvDL
*UIConstraints: *MediaType Preprinted *PageRegion EnvDL
*UIConstraints: *MediaType Recycled *PageRegion EnvDL
*UIConstraints: *MediaType Cotton *PageRegion EnvDL
*UIConstraints: *MediaType Archive *PageRegion EnvDL
*UIConstraints: *MediaType Punched *PageRegion EnvDL
*UIConstraints: *MediaType Letterhead *PageRegion EnvDL
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvDL
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvDL
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion EnvC5 *MediaType Labels
*UIConstraints: *PageRegion EnvC5 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC5 *MediaType Recycled
*UIConstraints: *PageRegion EnvC5 *MediaType Cotton
*UIConstraints: *PageRegion EnvC5 *MediaType Archive
*UIConstraints: *PageRegion EnvC5 *MediaType Punched
*UIConstraints: *PageRegion EnvC5 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC5 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC5 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC5 *MediaType ThinGlossy
*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 Color *PageRegion EnvC5
*UIConstraints: *MediaType Labels *PageRegion EnvC5
*UIConstraints: *MediaType Preprinted *PageRegion EnvC5
*UIConstraints: *MediaType Recycled *PageRegion EnvC5
*UIConstraints: *MediaType Cotton *PageRegion EnvC5
*UIConstraints: *MediaType Archive *PageRegion EnvC5
*UIConstraints: *MediaType Punched *PageRegion EnvC5
*UIConstraints: *MediaType Letterhead *PageRegion EnvC5
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC5
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC5
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion EnvC6 *MediaType Labels
*UIConstraints: *PageRegion EnvC6 *MediaType Preprinted
*UIConstraints: *PageRegion EnvC6 *MediaType Recycled
*UIConstraints: *PageRegion EnvC6 *MediaType Cotton
*UIConstraints: *PageRegion EnvC6 *MediaType Archive
*UIConstraints: *PageRegion EnvC6 *MediaType Punched
*UIConstraints: *PageRegion EnvC6 *MediaType Letterhead
*UIConstraints: *PageRegion EnvC6 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion EnvC6 *MediaType ThinCardStock
*UIConstraints: *PageRegion EnvC6 *MediaType ThinGlossy
*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 Color *PageRegion EnvC6
*UIConstraints: *MediaType Labels *PageRegion EnvC6
*UIConstraints: *MediaType Preprinted *PageRegion EnvC6
*UIConstraints: *MediaType Recycled *PageRegion EnvC6
*UIConstraints: *MediaType Cotton *PageRegion EnvC6
*UIConstraints: *MediaType Archive *PageRegion EnvC6
*UIConstraints: *MediaType Punched *PageRegion EnvC6
*UIConstraints: *MediaType Letterhead *PageRegion EnvC6
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion EnvC6
*UIConstraints: *MediaType ThinCardStock *PageRegion EnvC6
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion Env10 *MediaType Labels
*UIConstraints: *PageRegion Env10 *MediaType Preprinted
*UIConstraints: *PageRegion Env10 *MediaType Recycled
*UIConstraints: *PageRegion Env10 *MediaType Cotton
*UIConstraints: *PageRegion Env10 *MediaType Archive
*UIConstraints: *PageRegion Env10 *MediaType Punched
*UIConstraints: *PageRegion Env10 *MediaType Letterhead
*UIConstraints: *PageRegion Env10 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env10 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env10 *MediaType ThinGlossy
*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 Color *PageRegion Env10
*UIConstraints: *MediaType Labels *PageRegion Env10
*UIConstraints: *MediaType Preprinted *PageRegion Env10
*UIConstraints: *MediaType Recycled *PageRegion Env10
*UIConstraints: *MediaType Cotton *PageRegion Env10
*UIConstraints: *MediaType Archive *PageRegion Env10
*UIConstraints: *MediaType Punched *PageRegion Env10
*UIConstraints: *MediaType Letterhead *PageRegion Env10
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env10
*UIConstraints: *MediaType ThinCardStock *PageRegion Env10
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion Env9 *MediaType Labels
*UIConstraints: *PageRegion Env9 *MediaType Preprinted
*UIConstraints: *PageRegion Env9 *MediaType Recycled
*UIConstraints: *PageRegion Env9 *MediaType Cotton
*UIConstraints: *PageRegion Env9 *MediaType Archive
*UIConstraints: *PageRegion Env9 *MediaType Punched
*UIConstraints: *PageRegion Env9 *MediaType Letterhead
*UIConstraints: *PageRegion Env9 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion Env9 *MediaType ThinCardStock
*UIConstraints: *PageRegion Env9 *MediaType ThinGlossy
*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 Color *PageRegion Env9
*UIConstraints: *MediaType Labels *PageRegion Env9
*UIConstraints: *MediaType Preprinted *PageRegion Env9
*UIConstraints: *MediaType Recycled *PageRegion Env9
*UIConstraints: *MediaType Cotton *PageRegion Env9
*UIConstraints: *MediaType Archive *PageRegion Env9
*UIConstraints: *MediaType Punched *PageRegion Env9
*UIConstraints: *MediaType Letterhead *PageRegion Env9
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion Env9
*UIConstraints: *MediaType ThinCardStock *PageRegion Env9
*UIConstraints: *MediaType ThinGlossy *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 Color
*UIConstraints: *PageRegion C4 *MediaType Labels
*UIConstraints: *PageRegion C4 *MediaType Preprinted
*UIConstraints: *PageRegion C4 *MediaType Recycled
*UIConstraints: *PageRegion C4 *MediaType Cotton
*UIConstraints: *PageRegion C4 *MediaType Archive
*UIConstraints: *PageRegion C4 *MediaType Punched
*UIConstraints: *PageRegion C4 *MediaType Letterhead
*UIConstraints: *PageRegion C4 *MediaType ExtraHeavyWeight1
*UIConstraints: *PageRegion C4 *MediaType ThinCardStock
*UIConstraints: *PageRegion C4 *MediaType ThinGlossy
*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 Color *PageRegion C4
*UIConstraints: *MediaType Labels *PageRegion C4
*UIConstraints: *MediaType Preprinted *PageRegion C4
*UIConstraints: *MediaType Recycled *PageRegion C4
*UIConstraints: *MediaType Cotton *PageRegion C4
*UIConstraints: *MediaType Archive *PageRegion C4
*UIConstraints: *MediaType Punched *PageRegion C4
*UIConstraints: *MediaType Letterhead *PageRegion C4
*UIConstraints: *MediaType ExtraHeavyWeight1 *PageRegion C4
*UIConstraints: *MediaType ThinCardStock *PageRegion C4
*UIConstraints: *MediaType ThinGlossy *PageRegion C4
*% =========================================================
*% PageSize - Envelope(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType Envelope
*UIConstraints: *PageSize Oficio_S *MediaType Envelope
*UIConstraints: *PageSize US-Folio *MediaType Envelope
*UIConstraints: *PageSize B5-JIS *MediaType Envelope
*UIConstraints: *PageSize B5-ISO *MediaType Envelope
*UIConstraints: *PageSize Executive *MediaType Envelope
*UIConstraints: *PageSize Statement *MediaType Envelope
*UIConstraints: *PageSize Postcard_S *MediaType Envelope
*UIConstraints: *PageSize A5 *MediaType Envelope
*UIConstraints: *PageSize A6 *MediaType Envelope
*UIConstraints: *PageSize A3 *MediaType Envelope
*UIConstraints: *PageSize B4 *MediaType Envelope
*UIConstraints: *PageSize 8K *MediaType Envelope
*UIConstraints: *PageSize 16K *MediaType Envelope
*UIConstraints: *PageSize Tabloid *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageSize Legal
*UIConstraints: *MediaType Envelope *PageSize Oficio_S
*UIConstraints: *MediaType Envelope *PageSize US-Folio
*UIConstraints: *MediaType Envelope *PageSize B5-JIS
*UIConstraints: *MediaType Envelope *PageSize B5-ISO
*UIConstraints: *MediaType Envelope *PageSize Executive
*UIConstraints: *MediaType Envelope *PageSize Statement
*UIConstraints: *MediaType Envelope *PageSize Postcard_S
*UIConstraints: *MediaType Envelope *PageSize A5
*UIConstraints: *MediaType Envelope *PageSize A6
*UIConstraints: *MediaType Envelope *PageSize A3
*UIConstraints: *MediaType Envelope *PageSize B4
*UIConstraints: *MediaType Envelope *PageSize 8K
*UIConstraints: *MediaType Envelope *PageSize 16K
*UIConstraints: *MediaType Envelope *PageSize Tabloid
*% =========================================================
*% PageRegion - Envelope(MediaType)
*% =========================================================
*UIConstraints: *PageRegion Legal *MediaType Envelope
*UIConstraints: *PageRegion Oficio_S *MediaType Envelope
*UIConstraints: *PageRegion US-Folio *MediaType Envelope
*UIConstraints: *PageRegion B5-JIS *MediaType Envelope
*UIConstraints: *PageRegion B5-ISO *MediaType Envelope
*UIConstraints: *PageRegion Executive *MediaType Envelope
*UIConstraints: *PageRegion Statement *MediaType Envelope
*UIConstraints: *PageRegion Postcard_S *MediaType Envelope
*UIConstraints: *PageRegion A5 *MediaType Envelope
*UIConstraints: *PageRegion A6 *MediaType Envelope
*UIConstraints: *PageRegion A3 *MediaType Envelope
*UIConstraints: *PageRegion B4 *MediaType Envelope
*UIConstraints: *PageRegion 8K *MediaType Envelope
*UIConstraints: *PageRegion 16K *MediaType Envelope
*UIConstraints: *PageRegion Tabloid *MediaType Envelope
*UIConstraints: *MediaType Envelope *PageRegion Legal
*UIConstraints: *MediaType Envelope *PageRegion Oficio_S
*UIConstraints: *MediaType Envelope *PageRegion US-Folio
*UIConstraints: *MediaType Envelope *PageRegion B5-JIS
*UIConstraints: *MediaType Envelope *PageRegion B5-ISO
*UIConstraints: *MediaType Envelope *PageRegion Executive
*UIConstraints: *MediaType Envelope *PageRegion Statement
*UIConstraints: *MediaType Envelope *PageRegion Postcard_S
*UIConstraints: *MediaType Envelope *PageRegion A5
*UIConstraints: *MediaType Envelope *PageRegion A6
*UIConstraints: *MediaType Envelope *PageRegion A3
*UIConstraints: *MediaType Envelope *PageRegion B4
*UIConstraints: *MediaType Envelope *PageRegion 8K
*UIConstraints: *MediaType Envelope *PageRegion 16K
*UIConstraints: *MediaType Envelope *PageRegion Tabloid
*% =========================================================
*% PageSize - Labels(MediaType)
*% =========================================================
*UIConstraints: *PageSize Legal *MediaType Labels
*UIConstraints: *PageSize Oficio_S *MediaType Labels
*UIConstraints: *PageSize US-Folio *MediaType Labels
*UIConstraints: *PageSize B5-JIS *MediaType Labels
*UIConstraints: *PageSize B5-ISO *MediaType Labels
*UIConstraints: *PageSize Executive *MediaType Labels
*UIConstraints: *PageSize Statement *MediaType Labels
*UIConstraints: *PageSize Postcard_S *MediaType Labels
*UIConstraints: *PageSize A5 *MediaType Labels
*UIConstraints: *PageSize A6 *MediaType Labels
*UIConstraints: *PageSize A3 *MediaType Labels
*UIConstraints: *PageSize B4 *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 Oficio_S
*UIConstraints: *MediaType Labels *PageSize US-Folio
*UIConstraints: *MediaType Labels *PageSize B5-JIS
*UIConstraints: *MediaType Labels *PageSize B5-ISO
*UIConstraints: *MediaType Labels *PageSize Executive
*UIConstraints: *MediaType Labels *PageSize Statement
*UIConstraints: *MediaType Labels *PageSize Postcard_S
*UIConstraints: *MediaType Labels *PageSize A5
*UIConstraints: *MediaType Labels *PageSize A6
*UIConstraints: *MediaType Labels *PageSize A3
*UIConstraints: *MediaType Labels *PageSize B4
*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 Oficio_S *MediaType Labels
*UIConstraints: *PageRegion US-Folio *MediaType Labels
*UIConstraints: *PageRegion B5-JIS *MediaType Labels
*UIConstraints: *PageRegion B5-ISO *MediaType Labels
*UIConstraints: *PageRegion Executive *MediaType Labels
*UIConstraints: *PageRegion Statement *MediaType Labels
*UIConstraints: *PageRegion Postcard_S *MediaType Labels
*UIConstraints: *PageRegion A5 *MediaType Labels
*UIConstraints: *PageRegion A6 *MediaType Labels
*UIConstraints: *PageRegion A3 *MediaType Labels
*UIConstraints: *PageRegion B4 *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 Oficio_S
*UIConstraints: *MediaType Labels *PageRegion US-Folio
*UIConstraints: *MediaType Labels *PageRegion B5-JIS
*UIConstraints: *MediaType Labels *PageRegion B5-ISO
*UIConstraints: *MediaType Labels *PageRegion Executive
*UIConstraints: *MediaType Labels *PageRegion Statement
*UIConstraints: *MediaType Labels *PageRegion Postcard_S
*UIConstraints: *MediaType Labels *PageRegion A5
*UIConstraints: *MediaType Labels *PageRegion A6
*UIConstraints: *MediaType Labels *PageRegion A3
*UIConstraints: *MediaType Labels *PageRegion B4
*UIConstraints: *MediaType Labels *PageRegion 8K
*UIConstraints: *MediaType Labels *PageRegion 16K
*UIConstraints: *MediaType Labels *PageRegion Tabloid
*% =========================================================
*% Duplex - MediaType
*% =========================================================
*UIConstraints: *MediaType Envelope *Duplex DuplexNoTumble
*UIConstraints: *MediaType Envelope *Duplex DuplexTumble
*UIConstraints: *MediaType Labels *Duplex DuplexNoTumble
*UIConstraints: *MediaType Labels *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexTumble *MediaType Envelope
*UIConstraints: *Duplex DuplexNoTumble *MediaType Labels
*UIConstraints: *Duplex DuplexTumble *MediaType Labels
*% =========================================================
*% PageSize A6 - Duplex
*% =========================================================
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*% =========================================================
*% PageRegion A6 - Duplex
*% =========================================================
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*% =========================================================
*% MediaType Envelope - InputSlot
*% =========================================================
*UIConstraints: *MediaType Envelope *InputSlot Middle
*UIConstraints: *MediaType Envelope *InputSlot Lower
*UIConstraints: *MediaType Envelope *InputSlot Tray3
*UIConstraints: *MediaType Envelope *InputSlot Tray4
*UIConstraints: *InputSlot Middle *MediaType Envelope
*UIConstraints: *InputSlot Lower *MediaType Envelope
*UIConstraints: *InputSlot Tray3 *MediaType Envelope
*UIConstraints: *InputSlot Tray4 *MediaType Envelope
*% =========================================================
*% MediaType Labels - InputSlot
*% =========================================================
*UIConstraints: *MediaType Labels *InputSlot Middle
*UIConstraints: *MediaType Labels *InputSlot Lower
*UIConstraints: *MediaType Labels *InputSlot Tray3
*UIConstraints: *MediaType Labels *InputSlot Tray4
*UIConstraints: *InputSlot Middle *MediaType Labels
*UIConstraints: *InputSlot Lower *MediaType Labels
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *InputSlot Tray4 *MediaType Labels
*% =========================================================
*% PageSize A6 - InputSlot
*% =========================================================
*UIConstraints: *PageSize A6 *InputSlot Middle
*UIConstraints: *PageSize A6 *InputSlot Lower
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *InputSlot Middle *PageSize A6
*UIConstraints: *InputSlot Lower *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize A6
*% =========================================================
*% PageRegion A6 - InputSlot
*% =========================================================
*UIConstraints: *PageRegion A6 *InputSlot Middle
*UIConstraints: *PageRegion A6 *InputSlot Lower
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *InputSlot Middle *PageRegion A6
*UIConstraints: *InputSlot Lower *PageRegion A6
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*% =========================================================
*% PageSize Postcard_S - InputSlot
*% =========================================================
*UIConstraints: *PageSize Postcard_S *InputSlot Middle
*UIConstraints: *PageSize Postcard_S *InputSlot Lower
*UIConstraints: *PageSize Postcard_S *InputSlot Tray3
*UIConstraints: *PageSize Postcard_S *InputSlot Tray4
*UIConstraints: *InputSlot Middle *PageSize Postcard_S
*UIConstraints: *InputSlot Lower *PageSize Postcard_S
*UIConstraints: *InputSlot Tray3 *PageSize Postcard_S
*UIConstraints: *InputSlot Tray4 *PageSize Postcard_S
*% =========================================================
*% PageRegion Postcard_S - InputSlot
*% =========================================================
*UIConstraints: *PageRegion Postcard_S *InputSlot Middle
*UIConstraints: *PageRegion Postcard_S *InputSlot Lower
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray3
*UIConstraints: *PageRegion Postcard_S *InputSlot Tray4
*UIConstraints: *InputSlot Middle *PageRegion Postcard_S
*UIConstraints: *InputSlot Lower *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray3 *PageRegion Postcard_S
*UIConstraints: *InputSlot Tray4 *PageRegion Postcard_S
*% =========================================================
*% OutputBin - MediaType Envelope
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Envelope
*UIConstraints: *JCLFinisherOutBin Bin4 *MediaType Envelope
*UIConstraints: *MediaType Envelope *JCLFinisherOutBin Bin3
*UIConstraints: *MediaType Envelope *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - MediaType Labels
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *MediaType Labels
*UIConstraints: *MediaType Labels *JCLFinisherOutBin Bin3
*% =========================================================
*% OutputBin - PageSize Postcard_S
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize Postcard_S
*UIConstraints: *JCLFinisherOutBin Bin4 *PageSize Postcard_S
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize Postcard_S *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - PageRegion Postcard_S
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion Postcard_S
*UIConstraints: *JCLFinisherOutBin Bin4 *PageRegion Postcard_S
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion Postcard_S *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - PageSize A6
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageSize A6
*UIConstraints: *JCLFinisherOutBin Bin4 *PageSize A6
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageSize A6 *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - PageRegion A6
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin3 *PageRegion A6
*UIConstraints: *JCLFinisherOutBin Bin4 *PageRegion A6
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Bin3
*UIConstraints: *PageRegion A6 *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - PageSize Statement
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin4 *PageSize Statement
*UIConstraints: *PageSize Statement *JCLFinisherOutBin Bin4
*% =========================================================
*% OutputBin - PageRegion Statement
*% =========================================================
*UIConstraints: *JCLFinisherOutBin Bin4 *PageRegion Statement
*UIConstraints: *PageRegion Statement *JCLFinisherOutBin Bin4
*% =========================================================
*% Staple - MediaType Envelope / Labels
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Envelope
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Envelope
*UIConstraints: *JCLStapleLocation 1Staple_P *MediaType Labels
*UIConstraints: *JCLStapleLocation 1Staple_L *MediaType Labels
*UIConstraints: *MediaType Envelope *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType Envelope *JCLStapleLocation 1Staple_L
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_P
*UIConstraints: *MediaType Labels *JCLStapleLocation 1Staple_L
*% =========================================================
*% Staple - PageSize Postcard_S / A6 / Statement / A5 / B5-ISO / B5-JIS / Executive / 16k
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Statement
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Statement
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize A5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize A5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize B5-ISO
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize B5-ISO
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize B5-JIS
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize B5-JIS
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize Executive
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize Executive
*UIConstraints: *JCLStapleLocation 1Staple_P *PageSize 16K
*UIConstraints: *JCLStapleLocation 1Staple_L *PageSize 16K
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Statement *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Statement *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize A5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize A5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize B5-ISO *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize B5-ISO *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize B5-JIS *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize B5-JIS *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize Executive *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize Executive *JCLStapleLocation 1Staple_L
*UIConstraints: *PageSize 16K *JCLStapleLocation 1Staple_P
*UIConstraints: *PageSize 16K *JCLStapleLocation 1Staple_L
*% =========================================================
*% Staple - PageRegion Postcard_S / A6 / Statement / A5 / B5-ISO / B5-JIS / Executive / 16k
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Postcard_S
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion A6
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Statement
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Statement
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion A5
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion A5
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion B5-ISO
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion B5-ISO
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion B5-JIS
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion B5-JIS
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion Executive
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion Executive
*UIConstraints: *JCLStapleLocation 1Staple_P *PageRegion 16K
*UIConstraints: *JCLStapleLocation 1Staple_L *PageRegion 16K
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Postcard_S *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion A6 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Statement *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Statement *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion A5 *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion A5 *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion B5-ISO *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion B5-ISO *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion B5-JIS *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion B5-JIS *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion Executive *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion Executive *JCLStapleLocation 1Staple_L
*UIConstraints: *PageRegion 16K *JCLStapleLocation 1Staple_P
*UIConstraints: *PageRegion 16K *JCLStapleLocation 1Staple_L
*% =========================================================
*% Front CoverOption - Front CoverSource
*% =========================================================
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Auto
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Upper
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Middle
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Lower
*UIConstraints: *JCLFrontCoverOption None *JCLFrontCoverSource Tray3
*UIConstraints: *JCLFrontCoverSource Auto *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Upper *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Middle *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Lower *JCLFrontCoverOption None
*UIConstraints: *JCLFrontCoverSource Tray3 *JCLFrontCoverOption None
*% =========================================================
*% Front CoverType - Front CoverSource
*% =========================================================
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType PrinterDefault
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Plain
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Thick
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Thin
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Bond
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Color
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Labels
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Envelope
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Preprinted
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Cotton
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Recycled
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Archive
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Punched
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType Letterhead
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType HeavyWeight
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType ExtraHeavyWeight1
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType ThinCardStock
*UIConstraints: *JCLFrontCoverSource None *JCLFrontCoverType ThinGlossy
*UIConstraints: *JCLFrontCoverType PrinterDefault *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Plain *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Thick *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Thin *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Bond *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Color *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Labels *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Envelope *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Preprinted *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Cotton *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Recycled *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Archive *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Punched *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType Letterhead *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType HeavyWeight *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType ExtraHeavyWeight1 *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType ThinCardStock *JCLFrontCoverSource None
*UIConstraints: *JCLFrontCoverType ThinGlossy *JCLFrontCoverSource None
*% =========================================================
*% Back CoverOption - Back CoverSource
*% =========================================================
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Auto
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Upper
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Middle
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Lower
*UIConstraints: *JCLBackCoverOption None *JCLBackCoverSource Tray3
*UIConstraints: *JCLBackCoverSource Auto *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Upper *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Middle *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Lower *JCLBackCoverOption None
*UIConstraints: *JCLBackCoverSource Tray3 *JCLBackCoverOption None
*% =========================================================
*% Back CoverType - Back CoverSource
*% =========================================================
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType PrinterDefault
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Plain
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Thick
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Thin
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Bond
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Color
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Labels
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Envelope
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Preprinted
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Cotton
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Recycled
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Archive
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Punched
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType Letterhead
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType HeavyWeight
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType ExtraHeavyWeight1
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType ThinCardStock
*UIConstraints: *JCLBackCoverSource None *JCLBackCoverType ThinGlossy
*UIConstraints: *JCLBackCoverType PrinterDefault *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Plain *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Thick *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Thin *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Bond *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Color *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Labels *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Envelope *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Preprinted *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Cotton *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Recycled *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Archive *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Punched *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType Letterhead *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType HeavyWeight *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType ExtraHeavyWeight1 *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType ThinCardStock *JCLBackCoverSource None
*UIConstraints: *JCLBackCoverType ThinGlossy *JCLBackCoverSource None
*% =========================================================
*% FrontBack CoverOption - FrontBack CoverSource
*% =========================================================
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Auto
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Upper
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Middle
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Lower
*UIConstraints: *JCLFrontBackCoverOption None *JCLFrontBackCoverSource Tray3
*UIConstraints: *JCLFrontBackCoverSource Auto *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Upper *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Middle *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Lower *JCLFrontBackCoverOption None
*UIConstraints: *JCLFrontBackCoverSource Tray3 *JCLFrontBackCoverOption None
*% =========================================================
*% FrontBack CoverType - Front CoverSource
*% =========================================================
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType PrinterDefault
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Plain
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Thick
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Thin
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Bond
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Color
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Labels
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Envelope
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Preprinted
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Cotton
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Recycled
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Archive
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Punched
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType Letterhead
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType HeavyWeight
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType ExtraHeavyWeight1
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType ThinCardStock
*UIConstraints: *JCLFrontBackCoverSource None *JCLFrontBackCoverType ThinGlossy
*UIConstraints: *JCLFrontBackCoverType PrinterDefault *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Plain *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Thick *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Thin *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Bond *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Color *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Labels *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Envelope *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Preprinted *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Cotton *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Recycled *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Archive *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Punched *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType Letterhead *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType HeavyWeight *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType ExtraHeavyWeight1 *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType ThinCardStock *JCLFrontBackCoverSource None
*UIConstraints: *JCLFrontBackCoverType ThinGlossy *JCLFrontBackCoverSource None
*% =========================================================
*% Front CoverOption - Back CoverOption
*% =========================================================
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*% =========================================================
*% Front CoverOption - FrontBack CoverOption
*% =========================================================
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLFrontCoverOption 2SidedPrinted
*% =========================================================
*% Back CoverOption - FrontBack CoverOption
*% =========================================================
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLBackCoverOption 2SidedPrinted
*% =========================================================
*% 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 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 8K
*UIConstraints: *JCLSortOptions Rotate *PageSize 16K
*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 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 8K *JCLSortOptions Rotate
*UIConstraints: *PageSize 16K *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 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 8K
*UIConstraints: *JCLSortOptions Rotate *PageRegion 16K
*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 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 8K *JCLSortOptions Rotate
*UIConstraints: *PageRegion 16K *JCLSortOptions Rotate
*UIConstraints: *PageRegion Tabloid *JCLSortOptions Rotate
*% =========================================================
*% Rotate - InputSlot
*% =========================================================
*UIConstraints: *JCLSortOptions Rotate *InputSlot Upper
*UIConstraints: *JCLSortOptions Rotate *InputSlot Middle
*UIConstraints: *JCLSortOptions Rotate *InputSlot Lower
*UIConstraints: *JCLSortOptions Rotate *InputSlot Tray3
*UIConstraints: *JCLSortOptions Rotate *InputSlot Tray4
*UIConstraints: *InputSlot Upper *JCLSortOptions Rotate
*UIConstraints: *InputSlot Middle *JCLSortOptions Rotate
*UIConstraints: *InputSlot Lower *JCLSortOptions Rotate
*UIConstraints: *InputSlot Tray3 *JCLSortOptions Rotate
*UIConstraints: *InputSlot Tray4 *JCLSortOptions Rotate
*% =========================================================
*% Rotate - Cover Page
*% =========================================================
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontCoverOption 2SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLBackCoverOption 2SidedPrinted
*UIConstraints: *JCLBackCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLBackCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLBackCoverOption 2SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption BlankPreprinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption 1SidedPrinted
*UIConstraints: *JCLSortOptions Rotate *JCLFrontBackCoverOption 2SidedPrinted
*UIConstraints: *JCLFrontBackCoverOption BlankPreprinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontBackCoverOption 1SidedPrinted *JCLSortOptions Rotate
*UIConstraints: *JCLFrontBackCoverOption 2SidedPrinted *JCLSortOptions Rotate
*% =========================================================
*% Staple - Finisher Output bin 1,2,3
*% =========================================================
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 1Staple_P *JCLFinisherOutBin Bin3
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin1
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin2
*UIConstraints: *JCLStapleLocation 1Staple_L *JCLFinisherOutBin Bin3
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 1Staple_P
*UIConstraints: *JCLFinisherOutBin Bin1 *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Bin2 *JCLStapleLocation 1Staple_L
*UIConstraints: *JCLFinisherOutBin Bin3 *JCLStapleLocation 1Staple_L
*% =========================================================
*% Offset - Page Size
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *PageSize A5
*UIConstraints: *JCLSortOptions Offset *PageSize Env9
*UIConstraints: *JCLSortOptions Offset *PageSize EnvMonarch
*UIConstraints: *JCLSortOptions Offset *PageSize Postcard_S
*UIConstraints: *JCLSortOptions Offset *PageSize A6
*UIConstraints: *JCLSortOptions Offset *PageSize Env10
*UIConstraints: *JCLSortOptions Offset *PageSize EnvDL
*UIConstraints: *JCLSortOptions Offset *PageSize EnvC6
*UIConstraints: *JCLSortOptions Offset *PageSize Statement
*UIConstraints: *JCLSortOptions Offset *PageSize A5
*UIConstraints: *JCLSortOptions Offset *PageSize EnvC5
*UIConstraints: *JCLSortOptions Offset *PageSize B5-ISO
*UIConstraints: *JCLSortOptions Offset *PageSize B5-JIS
*UIConstraints: *JCLSortOptions Offset *PageSize Executive
*UIConstraints: *JCLSortOptions Offset *PageSize C4
*UIConstraints: *PageSize A5 *JCLSortOptions Offset
*UIConstraints: *PageSize Env9 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvMonarch *JCLSortOptions Offset
*UIConstraints: *PageSize Postcard_S *JCLSortOptions Offset
*UIConstraints: *PageSize A6 *JCLSortOptions Offset
*UIConstraints: *PageSize Env10 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvDL *JCLSortOptions Offset
*UIConstraints: *PageSize EnvC6 *JCLSortOptions Offset
*UIConstraints: *PageSize Statement *JCLSortOptions Offset
*UIConstraints: *PageSize A5 *JCLSortOptions Offset
*UIConstraints: *PageSize EnvC5 *JCLSortOptions Offset
*UIConstraints: *PageSize B5-ISO *JCLSortOptions Offset
*UIConstraints: *PageSize B5-JIS *JCLSortOptions Offset
*UIConstraints: *PageSize Executive *JCLSortOptions Offset
*UIConstraints: *PageSize C4 *JCLSortOptions Offset
*% =========================================================
*% Offset - Page Size
*% =========================================================
*UIConstraints: *JCLSortOptions Offset *PageRegion A5
*UIConstraints: *JCLSortOptions Offset *PageRegion Env9
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvMonarch
*UIConstraints: *JCLSortOptions Offset *PageRegion Postcard_S
*UIConstraints: *JCLSortOptions Offset *PageRegion A6
*UIConstraints: *JCLSortOptions Offset *PageRegion Env10
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvDL
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvC6
*UIConstraints: *JCLSortOptions Offset *PageRegion Statement
*UIConstraints: *JCLSortOptions Offset *PageRegion A5
*UIConstraints: *JCLSortOptions Offset *PageRegion EnvC5
*UIConstraints: *JCLSortOptions Offset *PageRegion B5-ISO
*UIConstraints: *JCLSortOptions Offset *PageRegion B5-JIS
*UIConstraints: *JCLSortOptions Offset *PageRegion Executive
*UIConstraints: *JCLSortOptions Offset *PageRegion C4
*UIConstraints: *PageRegion A5 *JCLSortOptions Offset
*UIConstraints: *PageRegion Env9 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvMonarch *JCLSortOptions Offset
*UIConstraints: *PageRegion Postcard_S *JCLSortOptions Offset
*UIConstraints: *PageRegion A6 *JCLSortOptions Offset
*UIConstraints: *PageRegion Env10 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvDL *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvC6 *JCLSortOptions Offset
*UIConstraints: *PageRegion Statement *JCLSortOptions Offset
*UIConstraints: *PageRegion A5 *JCLSortOptions Offset
*UIConstraints: *PageRegion EnvC5 *JCLSortOptions Offset
*UIConstraints: *PageRegion B5-ISO *JCLSortOptions Offset
*UIConstraints: *PageRegion B5-JIS *JCLSortOptions Offset
*UIConstraints: *PageRegion Executive *JCLSortOptions Offset
*UIConstraints: *PageRegion C4 *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
|