1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838
|
*PPD-Adobe: "4.3"
*%*****************************************************************************
*% Adobe PostScript(R) Printer Description File
*% For Lexmark C522 LaserPrinter
*% Produced by Lexmark International, Inc.
*%
*% Copyright 2005 Lexmark International, Inc. All Rights Reserved.
*%
*%******************************************************************************
*% License
*%******************************************************************************
*%
*%Redistribution of this file, with or without modification, is permitted
*%provided that the following conditions are met:
*%
*% Redistributions of this file must reproduce the above copyright notice,
*% this list of conditions and the following disclaimer in the file and
*% documentation and/or other materials provided with the distribution.
*%
*% Neither the name of Lexmark International, Inc. nor the names of its
*% contributors may be used to endorse or promote products derived
*% from this file without specific prior written permission.
*%
*%THIS FILE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
*%ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
*%WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
*%DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
*%FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
*%DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
*%SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
*%CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
*%OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
*%OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*%
*%******************************************************************************
*% General Information
*%******************************************************************************
*FormatVersion: "4.3"
*FileVersion: "10.6.0.1"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*cupsLanguages: "de es fr it ja pt zh_CN zh_TW ko"
*cupsVersion: "1.2"
*PCFileName: "LXC522.PPD"
*LXCountPIN: "4"
*LXlowPINchar: "0"
*LXhiPINchar: "9"
*Product: "(Lexmark C522)"
*PSVersion: "(3010.010) 20040929"
*Manufacturer: "Lexmark"
*ModelName: "Lexmark C522"
*ShortNickName: "Lexmark C522"
*NickName: "Lexmark C522"
*1284DeviceID: "MFG: Lexmark International ;MDL: Lexmark C522"
*cupsCommands: "ReportLevels"
*PrinterType: "Laser"
*%*****************************************************************************
*% Basic Capabilities
*%*****************************************************************************
*Protocols: TBCP
*LanguageLevel: "3"
*Throughput: "20"
*ColorDevice: True
*DefaultColorSpace: CMYK
*TTRasterizer: Type42
*?TTRasterizer: ""
*FileSystem: True
*?FileSystem: ""
*Password: "0"
*ExitServer: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec"
*End
*Reset: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot reset printer.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*% Do Not Delete the Next Line
*JobPatchFile 1: "%%Lexmark Linux PPD File 1"
*%*****************************************************************************
*% Installable Options
*%*****************************************************************************
*OpenGroup: InstallableOptions/Options Installed
*de.Translation InstallableOptions/Installierte Optionen: ""
*es.Translation InstallableOptions/Opciones instaladas: ""
*fr.Translation InstallableOptions/Options installées: ""
*it.Translation InstallableOptions/Opzioni Installate: ""
*ja.Translation InstallableOptions/装着済みオプション: ""
*pt.Translation InstallableOptions/Opcionais Instalados: ""
*zh_CN.Translation InstallableOptions/已安装选件: ""
*zh_TW.Translation InstallableOptions/已安裝選購品: ""
*ko.Translation InstallableOptions/설치된 옵션: ""
*OpenUI *Trays/Trays: PickOne
*de.Translation Trays/Fächer: ""
*es.Translation Trays/Bandejas: ""
*fr.Translation Trays/Tiroirs: ""
*it.Translation Trays/Vassoi: ""
*ja.Translation Trays/給紙カセット: ""
*pt.Translation Trays/Bandejas: ""
*zh_CN.Translation Trays/进纸匣: ""
*zh_TW.Translation Trays/裝紙匣: ""
*ko.Translation Trays/트레이: ""
*DefaultTrays: Tray12
*Trays Tray1/Tray 1: ""
*de.Trays Tray1/Fach 1: ""
*es.Trays Tray1/Bandeja 1: ""
*fr.Trays Tray1/Tiroir 1: ""
*it.Trays Tray1/Vassoio 1: ""
*ja.Trays Tray1/カセット 1: ""
*pt.Trays Tray1/Bandeja 1: ""
*zh_CN.Trays Tray1/进纸匣 1: ""
*zh_TW.Trays Tray1/裝紙匣 1: ""
*ko.Trays Tray1/트레이 1: ""
*Trays Tray12/Tray 1+2: ""
*de.Trays Tray12/Fach 1+2: ""
*es.Trays Tray12/Bandejas 1+2: ""
*fr.Trays Tray12/Tiroir 1+2: ""
*it.Trays Tray12/Vassoio 1+2: ""
*ja.Trays Tray12/カセット 1+2: ""
*pt.Trays Tray12/Bandejas 1+2: ""
*zh_CN.Trays Tray12/进纸匣 1+2: ""
*zh_TW.Trays Tray12/裝紙匣 1+2: ""
*ko.Trays Tray12/트레이 1+2: ""
*?Trays: "
gsave
currentpagedevice /InputAttributes get
1 get null eq
{(Tray1)} {(Tray12)}
ifelse
= flush
grestore"
*End
*CloseUI: *Trays
*OpenUI *Flash/Flash: PickOne
*de.Translation Flash/Flash Speicher: ""
*es.Translation Flash/Tarjeta Memoria Flash: ""
*fr.Translation Flash/Carte Mémoire Flash: ""
*it.Translation Flash/Memoria flash: ""
*ja.Translation Flash/フラッシュ: ""
*pt.Translation Flash/Placa Memória Flash: ""
*zh_CN.Translation Flash/闪烁存储器: ""
*zh_TW.Translation Flash/快閃: ""
*ko.Translation Flash/플래시: ""
*DefaultFlash: InstalledF
*Flash NotInstalledF/Not Installed: ""
*de.Flash NotInstalledF/Nicht Eingebaut: ""
*es.Flash NotInstalledF/No Instalada: ""
*fr.Flash NotInstalledF/Non Installée: ""
*it.Flash NotInstalledF/Non installata: ""
*ja.Flash NotInstalledF/インストールされていません: ""
*pt.Flash NotInstalledF/Não instalada: ""
*zh_CN.Flash NotInstalledF/未安装: ""
*zh_TW.Flash NotInstalledF/未安裝: ""
*ko.Flash NotInstalledF/설치 안됨: ""
*Flash InstalledF/Installed: ""
*de.Flash InstalledF/Eingebaut: ""
*es.Flash InstalledF/Instalada: ""
*fr.Flash InstalledF/Installée: ""
*it.Flash InstalledF/Installata: ""
*ja.Flash InstalledF/インストール済み: ""
*pt.Flash InstalledF/Instalada: ""
*zh_CN.Flash InstalledF/已安装: ""
*zh_TW.Flash InstalledF/已安裝: ""
*ko.Flash InstalledF/설치됨: ""
*?Flash: "
(%flash%) devstatus
false eq {(NotInstalledF)} {(InstalledF)} ifelse
= flush"
*End
*CloseUI: *Flash
*OpenUI *Disk/Disk: PickOne
*de.Translation Disk/Festplatte: ""
*es.Translation Disk/Disco de Impresora: ""
*fr.Translation Disk/Disque Dur lmprimante: ""
*it.Translation Disk/Disco fisso della stampante: ""
*ja.Translation Disk/ディスク: ""
*pt.Translation Disk/Disco Rígido da Impressora: ""
*zh_CN.Translation Disk/磁盘: ""
*zh_TW.Translation Disk/磁碟: ""
*ko.Translation Disk/디스크: ""
*DefaultDisk: InstalledM
*Disk NotInstalledM/Not Installed: ""
*de.Disk NotInstalledM/Nicht Eingebaut: ""
*es.Disk NotInstalledM/No Instalado: ""
*fr.Disk NotInstalledM/Non Installé: ""
*it.Disk NotInstalledM/Non installato: ""
*ja.Disk NotInstalledM/インストールされていません: ""
*pt.Disk NotInstalledM/Não instalado: ""
*zh_CN.Disk NotInstalledM/未安装: ""
*zh_TW.Disk NotInstalledM/未安裝: ""
*ko.Disk NotInstalledM/설치 안됨: ""
*Disk InstalledM/Installed: ""
*de.Disk InstalledM/Eingebaut: ""
*es.Disk InstalledM/Instalado: ""
*fr.Disk InstalledM/Installé: ""
*it.Disk InstalledM/Installato: ""
*ja.Disk InstalledM/インストール済み: ""
*pt.Disk InstalledM/Instalado: ""
*zh_CN.Disk InstalledM/已安装: ""
*zh_TW.Disk InstalledM/已安裝: ""
*ko.Disk InstalledM/설치됨: ""
*?Disk: "
(%disk%) devstatus
false eq {(NotInstalledM)} {(InstalledM)} ifelse
= flush"
*End
*CloseUI: *Disk
*OpenUI *InstalledMemory/Printer Memory: PickOne
*de.Translation InstalledMemory/Druckerspeicher: ""
*es.Translation InstalledMemory/Memoria de Impresora: ""
*fr.Translation InstalledMemory/Mémoire d'Imprimante: ""
*it.Translation InstalledMemory/Memoria della stampante: ""
*ja.Translation InstalledMemory/メモリー: ""
*pt.Translation InstalledMemory/Memória da Impressora: ""
*zh_CN.Translation InstalledMemory/打印机内存: ""
*zh_TW.Translation InstalledMemory/印表機記憶體: ""
*ko.Translation InstalledMemory/프린터 메모리: ""
*DefaultInstalledMemory: 640Meg
*InstalledMemory 64Meg/64 MB Memory: ""
*de.InstalledMemory 64Meg/64 MB Speicher: ""
*es.InstalledMemory 64Meg/Memoria 64 MB: ""
*fr.InstalledMemory 64Meg/Mémoire 64 Mo: ""
*it.InstalledMemory 64Meg/Memoria 64 MB: ""
*ja.InstalledMemory 64Meg/64 MB メモリー: ""
*pt.InstalledMemory 64Meg/64 MB Memória: ""
*zh_CN.InstalledMemory 64Meg/64 MB 内存: ""
*zh_TW.InstalledMemory 64Meg/64 MB 記憶體: ""
*ko.InstalledMemory 64Meg/64 MB 메모리: ""
*InstalledMemory 128Meg/128 MB Memory: ""
*de.InstalledMemory 128Meg/128 MB Speicher: ""
*es.InstalledMemory 128Meg/Memoria 128 MB: ""
*fr.InstalledMemory 128Meg/Mémoire 128 Mo: ""
*it.InstalledMemory 128Meg/Memoria 128 MB: ""
*ja.InstalledMemory 128Meg/128 MB メモリー: ""
*pt.InstalledMemory 128Meg/128 MB Memória: ""
*zh_CN.InstalledMemory 128Meg/128 MB 内存: ""
*zh_TW.InstalledMemory 128Meg/128 MB 記憶體: ""
*ko.InstalledMemory 128Meg/128 MB 메모리: ""
*InstalledMemory 192Meg/192 MB Memory: ""
*de.InstalledMemory 192Meg/192 MB Speicher: ""
*es.InstalledMemory 192Meg/Memoria 192 MB: ""
*fr.InstalledMemory 192Meg/Mémoire 192 Mo: ""
*it.InstalledMemory 192Meg/Memoria 192 MB: ""
*ja.InstalledMemory 192Meg/192 MB メモリー: ""
*pt.InstalledMemory 192Meg/192 MB Memória: ""
*zh_CN.InstalledMemory 192Meg/192 MB 内存: ""
*zh_TW.InstalledMemory 192Meg/192 MB 記憶體: ""
*ko.InstalledMemory 192Meg/192 MB 메모리: ""
*InstalledMemory 256Meg/256 MB Memory: ""
*de.InstalledMemory 256Meg/256 MB Speicher: ""
*es.InstalledMemory 256Meg/Memoria 256 MB: ""
*fr.InstalledMemory 256Meg/Mémoire 256 Mo: ""
*it.InstalledMemory 256Meg/Memoria 256 MB: ""
*ja.InstalledMemory 256Meg/256 MB メモリー: ""
*pt.InstalledMemory 256Meg/256 MB Memória: ""
*zh_CN.InstalledMemory 256Meg/256 MB 内存: ""
*zh_TW.InstalledMemory 256Meg/256 MB 記憶體: ""
*ko.InstalledMemory 256Meg/256 MB 메모리: ""
*InstalledMemory 320Meg/320 MB Memory: ""
*de.InstalledMemory 320Meg/320 MB Speicher: ""
*es.InstalledMemory 320Meg/Memoria 320 MB: ""
*fr.InstalledMemory 320Meg/Mémoire 320 Mo: ""
*it.InstalledMemory 320Meg/Memoria 320 MB: ""
*ja.InstalledMemory 320Meg/320 MB メモリー: ""
*pt.InstalledMemory 320Meg/320 MB Memória: ""
*zh_CN.InstalledMemory 320Meg/320 MB 内存: ""
*zh_TW.InstalledMemory 320Meg/320 MB 記憶體: ""
*ko.InstalledMemory 320Meg/320 MB 메모리: ""
*InstalledMemory 384Meg/384 MB Memory: ""
*de.InstalledMemory 384Meg/384 MB Speicher: ""
*es.InstalledMemory 384Meg/Memoria 384 MB: ""
*fr.InstalledMemory 384Meg/Mémoire 384 Mo: ""
*it.InstalledMemory 384Meg/Memoria 384 MB: ""
*ja.InstalledMemory 384Meg/384 MB メモリー: ""
*pt.InstalledMemory 384Meg/384 MB Memória: ""
*zh_CN.InstalledMemory 384Meg/384 MB 内存: ""
*zh_TW.InstalledMemory 384Meg/384 MB 記憶體: ""
*ko.InstalledMemory 384Meg/384 MB 메모리: ""
*InstalledMemory 576Meg/576 MB Memory: ""
*de.InstalledMemory 576Meg/576 MB Speicher: ""
*es.InstalledMemory 576Meg/Memoria 576 MB: ""
*fr.InstalledMemory 576Meg/Mémoire 576 Mo: ""
*it.InstalledMemory 576Meg/Memoria 576 MB: ""
*ja.InstalledMemory 576Meg/576 MB メモリー: ""
*pt.InstalledMemory 576Meg/576 MB Memória: ""
*zh_CN.InstalledMemory 576Meg/576 MB 内存: ""
*zh_TW.InstalledMemory 576Meg/576 MB 記憶體: ""
*ko.InstalledMemory 576Meg/576 MB 메모리: ""
*InstalledMemory 640Meg/640 MB Memory: ""
*de.InstalledMemory 640Meg/640 MB Speicher: ""
*es.InstalledMemory 640Meg/Memoria 640 MB: ""
*fr.InstalledMemory 640Meg/Mémoire 640 Mo: ""
*it.InstalledMemory 640Meg/Memoria 640 MB: ""
*ja.InstalledMemory 640Meg/640 MB メモリー: ""
*pt.InstalledMemory 640Meg/640 MB Memória: ""
*zh_CN.InstalledMemory 640Meg/640 MB 内存: ""
*zh_TW.InstalledMemory 640Meg/640 MB 記憶體: ""
*ko.InstalledMemory 640Meg/640 MB 메모리: ""
*?InstalledMemory: "
gsave
currentsystemparams /InstalledRam get
1048576 div cvi 6 string cvs dup length dup 3 add string dup 3 index 0 exch putinterval dup
2 index (Meg) putinterval exch pop exch pop = flush
grestore"
*End
*?OIDInstalledMemory: ".1.3.6.1.2.1.25.2.2.0"
*OIDInstalledMemory 64Meg: "65536 KBytes"
*OIDInstalledMemory 128Meg: "131072 KBytes"
*OIDInstalledMemory 192Meg: "196608 KBytes"
*OIDInstalledMemory 256Meg: "262144 KBytes"
*OIDInstalledMemory 320Meg: "327680 KBytes"
*OIDInstalledMemory 384Meg: "393216 KBytes"
*OIDInstalledMemory 576Meg: "589824 KBytes"
*OIDInstalledMemory 640Meg: "655360 KBytes"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*%*****************************************************************************
*% VM
*%*****************************************************************************
*FreeVM: "60000000"
*VMOption 64Meg: "60000000"
*VMOption 128Meg: "124000000"
*VMOption 192Meg: "188000000"
*VMOption 256Meg: "252000000"
*VMOption 320Meg: "312000000"
*VMOption 384Meg: "372000000"
*VMOption 576Meg: "576000000"
*VMOption 640Meg: "640000000"
*%*****************************************************************************
*% Constraints
*%*****************************************************************************
*UIConstraints: *Trays Tray1 *InputSlot Tray2
*UIConstraints: *Trays Tray1 *SepSource Tray2
*UIConstraints: *InputSlot Tray1 *PageSize Statement
*UIConstraints: *InputSlot Tray1 *PageRegion Statement
*UIConstraints: *InputSlot Tray2 *PageSize Statement
*UIConstraints: *InputSlot Tray2 *PageRegion Statement
*UIConstraints: *InputSlot ManualEnv *PageSize A4
*UIConstraints: *InputSlot ManualEnv *PageSize A5
*UIConstraints: *InputSlot ManualEnv *PageSize B5
*UIConstraints: *InputSlot ManualEnv *PageSize Folio
*UIConstraints: *InputSlot ManualEnv *PageSize Statement
*UIConstraints: *InputSlot ManualEnv *PageSize Executive
*UIConstraints: *InputSlot ManualEnv *PageSize Letter
*UIConstraints: *InputSlot ManualEnv *PageSize Legal
*UIConstraints: *MediaColor Auto *ManualRGBImage Vivid
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBImage DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualRGBText Vivid
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBText DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualRGBGraphics Vivid
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBDisplay
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBVivid
*UIConstraints: *MediaColor Auto *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *MediaColor Auto *ManualCMYK USCMYK
*UIConstraints: *MediaColor Auto *ManualCMYK EuroCMYK
*UIConstraints: *MediaColor Auto *ManualCMYK VividCMYK
*UIConstraints: *MediaColor FalseM *ManualRGBImage Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBImage DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualRGBText Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBText DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics Vivid
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBDisplay
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBVivid
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *MediaColor FalseM *ManualCMYK USCMYK
*UIConstraints: *MediaColor FalseM *ManualCMYK EuroCMYK
*UIConstraints: *MediaColor FalseM *ManualCMYK VividCMYK
*UIConstraints: *SepPages NoneF *SepSource Tray1
*UIConstraints: *SepPages NoneF *SepSource Tray2
*%*****************************************************************************
*% Halftone Information
*%*****************************************************************************
*ScreenFreq: "154.0"
*ScreenAngle: "50.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
sub }{dup mul exch dup mul add 1 exch sub }ifelse }"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
*DefaultTransfer: Factory
*Transfer Factory: "{}"
*Transfer Factory.Inverse: "{1 exch sub }"
*%******************************************************************************
*% Quality Group
*%******************************************************************************
*OpenGroup: Quality/Quality
*de.Translation Quality/Qualität: ""
*es.Translation Quality/Calidad: ""
*fr.Translation Quality/Qualité: ""
*it.Translation Quality/Qualità: ""
*ja.Translation Quality/品質: ""
*pt.Translation Quality/Qualidade: ""
*zh_CN.Translation Quality/质量: ""
*zh_TW.Translation Quality/品質: ""
*ko.Translation Quality/품질: ""
*%******************************************************************************
*% Print Quality
*%******************************************************************************
*OpenUI *Resolution/Resolution: PickOne
*de.Translation Resolution/Auflösung: ""
*es.Translation Resolution/Resolución: ""
*fr.Translation Resolution/Résolution: ""
*it.Translation Resolution/Risoluzione: ""
*ja.Translation Resolution/印刷品質: ""
*pt.Translation Resolution/Resolução: ""
*zh_CN.Translation Resolution/打印分辨率: ""
*zh_TW.Translation Resolution/列印解析度: ""
*ko.Translation Resolution/인쇄 해상도: ""
*OrderDependency: 11 AnySetup *Resolution
*DefaultResolution: 2400x1200dpi
*Resolution 1200dpi/1200 dpi: "<< /HWResolution [1200 1200] >> setpagedevice"
*de.Resolution 1200dpi/1200 dpi: ""
*es.Resolution 1200dpi/1200 ppp: ""
*fr.Resolution 1200dpi/1200 ppp: ""
*it.Resolution 1200dpi/1200 dpi: ""
*ja.Resolution 1200dpi/1200 DPI: ""
*pt.Resolution 1200dpi/1200 dpi: ""
*zh_CN.Resolution 1200dpi/1200 dpi: ""
*zh_TW.Resolution 1200dpi/1200 dpi: ""
*ko.Resolution 1200dpi/1200 dpi: ""
*Resolution 2400x1200dpi/4800 Color Quality: "1 dict dup /HWResolution [600 600] put setpagedevice"
*de.Resolution 2400x1200dpi/4800 Color Quality: ""
*es.Resolution 2400x1200dpi/4800 Color Quality: ""
*fr.Resolution 2400x1200dpi/4800 Color Quality: ""
*it.Resolution 2400x1200dpi/4800 Color Quality: ""
*ja.Resolution 2400x1200dpi/4800 Color Quality: ""
*pt.Resolution 2400x1200dpi/4800 Color Quality: ""
*zh_CN.Resolution 2400x1200dpi/4800 Color Quality: ""
*zh_TW.Resolution 2400x1200dpi/4800 Color Quality: ""
*ko.Resolution 2400x1200dpi/4800 Color Quality: ""
*CloseUI: *Resolution
*%******************************************************************************
*% Toner Darkness
*%******************************************************************************
*OpenUI *TonerDarkness/Toner Darkness: PickOne
*de.Translation TonerDarkness/Tonerdeckung: ""
*es.Translation TonerDarkness/Intensidad del tóner: ""
*fr.Translation TonerDarkness/Intensité Toner: ""
*it.Translation TonerDarkness/Intensità del toner: ""
*ja.Translation TonerDarkness/トナーの濃さ: ""
*pt.Translation TonerDarkness/Tonalidade de toner: ""
*zh_CN.Translation TonerDarkness/鼓粉浓度: ""
*zh_TW.Translation TonerDarkness/碳粉明暗度: ""
*ko.Translation TonerDarkness/토너 어둡기: ""
*OrderDependency: 16 AnySetup *TonerDarkness
*DefaultTonerDarkness: PrinterS
*TonerDarkness PrinterS/Printer Setting: ""
*de.TonerDarkness PrinterS/Druckereinstellung: ""
*es.TonerDarkness PrinterS/Valor de la impresora: ""
*fr.TonerDarkness PrinterS/Paramètres de l'imprimante: ""
*it.TonerDarkness PrinterS/Impostazione stampante: ""
*ja.TonerDarkness PrinterS/プリンタ設定: ""
*pt.TonerDarkness PrinterS/Padrao da Impressora: ""
*zh_CN.TonerDarkness PrinterS/打印机设置: ""
*zh_TW.TonerDarkness PrinterS/印表機設置: ""
*ko.TonerDarkness PrinterS/프린터 설정 : ""
*TonerDarkness 1/1: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 1 >> >> setpagedevice"
*End
*de.TonerDarkness 1/1: ""
*es.TonerDarkness 1/1: ""
*fr.TonerDarkness 1/1: ""
*it.TonerDarkness 1/1: ""
*ja.TonerDarkness 1/1: ""
*pt.TonerDarkness 1/1: ""
*zh_CN.TonerDarkness 1/1: ""
*zh_TW.TonerDarkness 1/1: ""
*ko.TonerDarkness 1/1: ""
*TonerDarkness 2/2: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 2 >> >> setpagedevice"
*End
*de.TonerDarkness 2/2: ""
*es.TonerDarkness 2/2: ""
*fr.TonerDarkness 2/2: ""
*it.TonerDarkness 2/2: ""
*ja.TonerDarkness 2/2: ""
*pt.TonerDarkness 2/2: ""
*zh_CN.TonerDarkness 2/2: ""
*zh_TW.TonerDarkness 2/2: ""
*ko.TonerDarkness 2/2: ""
*TonerDarkness 3/3: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 3 >> >> setpagedevice"
*End
*de.TonerDarkness 3/3: ""
*es.TonerDarkness 3/3: ""
*fr.TonerDarkness 3/3: ""
*it.TonerDarkness 3/3: ""
*ja.TonerDarkness 3/3: ""
*pt.TonerDarkness 3/3: ""
*zh_CN.TonerDarkness 3/3: ""
*zh_TW.TonerDarkness 3/3: ""
*ko.TonerDarkness 3/3: ""
*TonerDarkness 4/4: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 4 >> >> setpagedevice"
*End
*de.TonerDarkness 4/4: ""
*es.TonerDarkness 4/4: ""
*fr.TonerDarkness 4/4: ""
*it.TonerDarkness 4/4: ""
*ja.TonerDarkness 4/4: ""
*pt.TonerDarkness 4/4: ""
*zh_CN.TonerDarkness 4/4: ""
*zh_TW.TonerDarkness 4/4: ""
*ko.TonerDarkness 4/4: ""
*TonerDarkness 5/5: "
<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 5 >> >> setpagedevice"
*End
*de.TonerDarkness 5/5: ""
*es.TonerDarkness 5/5: ""
*fr.TonerDarkness 5/5: ""
*it.TonerDarkness 5/5: ""
*ja.TonerDarkness 5/5: ""
*pt.TonerDarkness 5/5: ""
*zh_CN.TonerDarkness 5/5: ""
*zh_TW.TonerDarkness 5/5: ""
*ko.TonerDarkness 5/5: ""
*?TonerDarkness: "
gsave
currentpagedevice /DeviceRenderingInfo get /PrintDarkness get
= flush
grestore"
*End
*CloseUI: *TonerDarkness
*%******************************************************************************
*% Brightness
*%******************************************************************************
*OpenUI *LexBrightness/Brightness: PickOne
*de.Translation LexBrightness/Helligkeit: ""
*es.Translation LexBrightness/Brillo: ""
*fr.Translation LexBrightness/Luminosité: ""
*it.Translation LexBrightness/Luminosità: ""
*ja.Translation LexBrightness/明度: ""
*pt.Translation LexBrightness/Brilho: ""
*zh_CN.Translation LexBrightness/明亮度: ""
*zh_TW.Translation LexBrightness/亮度: ""
*ko.Translation LexBrightness/밝기: ""
*OrderDependency: 185 AnySetup *LexBrightness
*DefaultLexBrightness: PrinterS
*LexBrightness PrinterS/Printer Setting: ""
*de.LexBrightness PrinterS/Druckereinstellung: ""
*es.LexBrightness PrinterS/Valor de la impresora: ""
*fr.LexBrightness PrinterS/Paramètres de l'imprimante: ""
*it.LexBrightness PrinterS/Impostazione stampante: ""
*ja.LexBrightness PrinterS/プリンタ設定: ""
*pt.LexBrightness PrinterS/Padrao da Impressora: ""
*zh_CN.LexBrightness PrinterS/打印机设置: ""
*zh_TW.LexBrightness PrinterS/印表機設置: ""
*ko.LexBrightness PrinterS/프린터 설정 : ""
*LexBrightness -6/ -6: "
<< /DeviceRenderingInfo << /ImageBrightness -6 >> >> setpagedevice"
*End
*de.LexBrightness -6/ -6: ""
*es.LexBrightness -6/ -6: ""
*fr.LexBrightness -6/ -6: ""
*it.LexBrightness -6/ -6: ""
*ja.LexBrightness -6/ -6: ""
*pt.LexBrightness -6/ -6: ""
*zh_CN.LexBrightness -6/ -6: ""
*zh_TW.LexBrightness -6/ -6: ""
*ko.LexBrightness -6/ -6: ""
*LexBrightness -5/ -5: "
<< /DeviceRenderingInfo << /ImageBrightness -5 >> >> setpagedevice"
*End
*de.LexBrightness -5/ -5: ""
*es.LexBrightness -5/ -5: ""
*fr.LexBrightness -5/ -5: ""
*it.LexBrightness -5/ -5: ""
*ja.LexBrightness -5/ -5: ""
*pt.LexBrightness -5/ -5: ""
*zh_CN.LexBrightness -5/ -5: ""
*zh_TW.LexBrightness -5/ -5: ""
*ko.LexBrightness -5/ -5: ""
*LexBrightness -4/ -4: "
<< /DeviceRenderingInfo << /ImageBrightness -4 >> >> setpagedevice"
*End
*de.LexBrightness -4/ -4: ""
*es.LexBrightness -4/ -4: ""
*fr.LexBrightness -4/ -4: ""
*it.LexBrightness -4/ -4: ""
*ja.LexBrightness -4/ -4: ""
*pt.LexBrightness -4/ -4: ""
*zh_CN.LexBrightness -4/ -4: ""
*zh_TW.LexBrightness -4/ -4: ""
*ko.LexBrightness -4/ -4: ""
*LexBrightness -3/ -3: "
<< /DeviceRenderingInfo << /ImageBrightness -3 >> >> setpagedevice"
*End
*de.LexBrightness -3/ -3: ""
*es.LexBrightness -3/ -3: ""
*fr.LexBrightness -3/ -3: ""
*it.LexBrightness -3/ -3: ""
*ja.LexBrightness -3/ -3: ""
*pt.LexBrightness -3/ -3: ""
*zh_CN.LexBrightness -3/ -3: ""
*zh_TW.LexBrightness -3/ -3: ""
*ko.LexBrightness -3/ -3: ""
*LexBrightness -2/ -2: "
<< /DeviceRenderingInfo << /ImageBrightness -2 >> >> setpagedevice"
*End
*de.LexBrightness -2/ -2: ""
*es.LexBrightness -2/ -2: ""
*fr.LexBrightness -2/ -2: ""
*it.LexBrightness -2/ -2: ""
*ja.LexBrightness -2/ -2: ""
*pt.LexBrightness -2/ -2: ""
*zh_CN.LexBrightness -2/ -2: ""
*zh_TW.LexBrightness -2/ -2: ""
*ko.LexBrightness -2/ -2: ""
*LexBrightness -1/ -1: "
<< /DeviceRenderingInfo << /ImageBrightness -1 >> >> setpagedevice"
*End
*de.LexBrightness -1/ -1: ""
*es.LexBrightness -1/ -1: ""
*fr.LexBrightness -1/ -1: ""
*it.LexBrightness -1/ -1: ""
*ja.LexBrightness -1/ -1: ""
*pt.LexBrightness -1/ -1: ""
*zh_CN.LexBrightness -1/ -1: ""
*zh_TW.LexBrightness -1/ -1: ""
*ko.LexBrightness -1/ -1: ""
*LexBrightness 0/ 0: "
<< /DeviceRenderingInfo << /ImageBrightness 0 >> >> setpagedevice"
*End
*de.LexBrightness 0/ 0: ""
*es.LexBrightness 0/ 0: ""
*fr.LexBrightness 0/ 0: ""
*it.LexBrightness 0/ 0: ""
*ja.LexBrightness 0/ 0: ""
*pt.LexBrightness 0/ 0: ""
*zh_CN.LexBrightness 0/ 0: ""
*zh_TW.LexBrightness 0/ 0: ""
*ko.LexBrightness 0/ 0: ""
*LexBrightness +1/ +1: "
<< /DeviceRenderingInfo << /ImageBrightness 1 >> >> setpagedevice"
*End
*de.LexBrightness +1/ +1: ""
*es.LexBrightness +1/ +1: ""
*fr.LexBrightness +1/ +1: ""
*it.LexBrightness +1/ +1: ""
*ja.LexBrightness +1/ +1: ""
*pt.LexBrightness +1/ +1: ""
*zh_CN.LexBrightness +1/ +1: ""
*zh_TW.LexBrightness +1/ +1: ""
*ko.LexBrightness +1/ +1: ""
*LexBrightness +2/ +2: "
<< /DeviceRenderingInfo << /ImageBrightness 2 >> >> setpagedevice"
*End
*de.LexBrightness +2/ +2: ""
*es.LexBrightness +2/ +2: ""
*fr.LexBrightness +2/ +2: ""
*it.LexBrightness +2/ +2: ""
*ja.LexBrightness +2/ +2: ""
*pt.LexBrightness +2/ +2: ""
*zh_CN.LexBrightness +2/ +2: ""
*zh_TW.LexBrightness +2/ +2: ""
*ko.LexBrightness +2/ +2: ""
*LexBrightness +3/ +3: "
<< /DeviceRenderingInfo << /ImageBrightness 3 >> >> setpagedevice"
*End
*de.LexBrightness +3/ +3: ""
*es.LexBrightness +3/ +3: ""
*fr.LexBrightness +3/ +3: ""
*it.LexBrightness +3/ +3: ""
*ja.LexBrightness +3/ +3: ""
*pt.LexBrightness +3/ +3: ""
*zh_CN.LexBrightness +3/ +3: ""
*zh_TW.LexBrightness +3/ +3: ""
*ko.LexBrightness +3/ +3: ""
*LexBrightness +4/ +4: "
<< /DeviceRenderingInfo << /ImageBrightness 4 >> >> setpagedevice"
*End
*de.LexBrightness +4/ +4: ""
*es.LexBrightness +4/ +4: ""
*fr.LexBrightness +4/ +4: ""
*it.LexBrightness +4/ +4: ""
*ja.LexBrightness +4/ +4: ""
*pt.LexBrightness +4/ +4: ""
*zh_CN.LexBrightness +4/ +4: ""
*zh_TW.LexBrightness +4/ +4: ""
*ko.LexBrightness +4/ +4: ""
*LexBrightness +5/ +5: "
<< /DeviceRenderingInfo << /ImageBrightness 5 >> >> setpagedevice"
*End
*de.LexBrightness +5/ +5: ""
*es.LexBrightness +5/ +5: ""
*fr.LexBrightness +5/ +5: ""
*it.LexBrightness +5/ +5: ""
*ja.LexBrightness +5/ +5: ""
*pt.LexBrightness +5/ +5: ""
*zh_CN.LexBrightness +5/ +5: ""
*zh_TW.LexBrightness +5/ +5: ""
*ko.LexBrightness +5/ +5: ""
*LexBrightness +6/ +6: "
<< /DeviceRenderingInfo << /ImageBrightness 6 >> >> setpagedevice"
*End
*de.LexBrightness +6/ +6: ""
*es.LexBrightness +6/ +6: ""
*fr.LexBrightness +6/ +6: ""
*it.LexBrightness +6/ +6: ""
*ja.LexBrightness +6/ +6: ""
*pt.LexBrightness +6/ +6: ""
*zh_CN.LexBrightness +6/ +6: ""
*zh_TW.LexBrightness +6/ +6: ""
*ko.LexBrightness +6/ +6: ""
*?LexBrightness: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageBrightness get
= flush
grestore"
*End
*CloseUI: *LexBrightness
*%******************************************************************************
*% Contrast
*%******************************************************************************
*OpenUI *LexContrast/Contrast: PickOne
*de.Translation LexContrast/Kontrast: ""
*es.Translation LexContrast/Contraste: ""
*fr.Translation LexContrast/Contraste: ""
*it.Translation LexContrast/Contrasto: ""
*ja.Translation LexContrast/コントラスト: ""
*pt.Translation LexContrast/Contraste: ""
*zh_CN.Translation LexContrast/对比度: ""
*zh_TW.Translation LexContrast/對比: ""
*ko.Translation LexContrast/대비: ""
*OrderDependency: 190 AnySetup *LexContrast
*DefaultLexContrast: PrinterS
*LexContrast PrinterS/Printer Setting: ""
*de.LexContrast PrinterS/Druckereinstellung: ""
*es.LexContrast PrinterS/Valor de la impresora: ""
*fr.LexContrast PrinterS/Paramètres de l'imprimante: ""
*it.LexContrast PrinterS/Impostazione stampante: ""
*ja.LexContrast PrinterS/プリンタ設定: ""
*pt.LexContrast PrinterS/Padrao da Impressora: ""
*zh_CN.LexContrast PrinterS/打印机设置: ""
*zh_TW.LexContrast PrinterS/印表機設置: ""
*ko.LexContrast PrinterS/프린터 설정 : ""
*LexContrast 0/0: "
<< /DeviceRenderingInfo << /ImageContrast 0 >> >> setpagedevice"
*End
*de.LexContrast 0/0: ""
*es.LexContrast 0/0: ""
*fr.LexContrast 0/0: ""
*it.LexContrast 0/0: ""
*ja.LexContrast 0/0: ""
*pt.LexContrast 0/0: ""
*zh_CN.LexContrast 0/0: ""
*zh_TW.LexContrast 0/0: ""
*ko.LexContrast 0/0: ""
*LexContrast 1/1: "
<< /DeviceRenderingInfo << /ImageContrast 1 >> >> setpagedevice"
*End
*de.LexContrast 1/1: ""
*es.LexContrast 1/1: ""
*fr.LexContrast 1/1: ""
*it.LexContrast 1/1: ""
*ja.LexContrast 1/1: ""
*pt.LexContrast 1/1: ""
*zh_CN.LexContrast 1/1: ""
*zh_TW.LexContrast 1/1: ""
*ko.LexContrast 1/1: ""
*LexContrast 2/2: "
<< /DeviceRenderingInfo << /ImageContrast 2 >> >> setpagedevice"
*End
*de.LexContrast 2/2: ""
*es.LexContrast 2/2: ""
*fr.LexContrast 2/2: ""
*it.LexContrast 2/2: ""
*ja.LexContrast 2/2: ""
*pt.LexContrast 2/2: ""
*zh_CN.LexContrast 2/2: ""
*zh_TW.LexContrast 2/2: ""
*ko.LexContrast 2/2: ""
*LexContrast 3/3: "
<< /DeviceRenderingInfo << /ImageContrast 3 >> >> setpagedevice"
*End
*de.LexContrast 3/3: ""
*es.LexContrast 3/3: ""
*fr.LexContrast 3/3: ""
*it.LexContrast 3/3: ""
*ja.LexContrast 3/3: ""
*pt.LexContrast 3/3: ""
*zh_CN.LexContrast 3/3: ""
*zh_TW.LexContrast 3/3: ""
*ko.LexContrast 3/3: ""
*LexContrast 4/4: "
<< /DeviceRenderingInfo << /ImageContrast 4 >> >> setpagedevice"
*End
*de.LexContrast 4/4: ""
*es.LexContrast 4/4: ""
*fr.LexContrast 4/4: ""
*it.LexContrast 4/4: ""
*ja.LexContrast 4/4: ""
*pt.LexContrast 4/4: ""
*zh_CN.LexContrast 4/4: ""
*zh_TW.LexContrast 4/4: ""
*ko.LexContrast 4/4: ""
*LexContrast 5/5: "
<< /DeviceRenderingInfo << /ImageContrast 5 >> >> setpagedevice"
*End
*de.LexContrast 5/5: ""
*es.LexContrast 5/5: ""
*fr.LexContrast 5/5: ""
*it.LexContrast 5/5: ""
*ja.LexContrast 5/5: ""
*pt.LexContrast 5/5: ""
*zh_CN.LexContrast 5/5: ""
*zh_TW.LexContrast 5/5: ""
*ko.LexContrast 5/5: ""
*?LexContrast: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageContrast get
= flush
grestore"
*End
*CloseUI: *LexContrast
*%******************************************************************************
*% Saturation
*%******************************************************************************
*OpenUI *LexSaturation/Saturation: PickOne
*de.Translation LexSaturation/Farbsättigung: ""
*es.Translation LexSaturation/Saturación: ""
*fr.Translation LexSaturation/Saturation: ""
*it.Translation LexSaturation/Saturazione: ""
*ja.Translation LexSaturation/彩度: ""
*pt.Translation LexSaturation/Saturação: ""
*zh_CN.Translation LexSaturation/饱和度: ""
*zh_TW.Translation LexSaturation/飽和度: ""
*ko.Translation LexSaturation/채도: ""
*OrderDependency: 195 AnySetup *LexSaturation
*DefaultLexSaturation: PrinterS
*LexSaturation PrinterS/Printer Setting: ""
*de.LexSaturation PrinterS/Druckereinstellung: ""
*es.LexSaturation PrinterS/Valor de la impresora: ""
*fr.LexSaturation PrinterS/Paramètres de l'imprimante: ""
*it.LexSaturation PrinterS/Impostazione stampante: ""
*ja.LexSaturation PrinterS/プリンタ設定: ""
*pt.LexSaturation PrinterS/Padrao da Impressora: ""
*zh_CN.LexSaturation PrinterS/打印机设置: ""
*zh_TW.LexSaturation PrinterS/印表機設置: ""
*ko.LexSaturation PrinterS/프린터 설정 : ""
*LexSaturation 0/0: "
<< /DeviceRenderingInfo << /ImageSaturation 0 >> >> setpagedevice"
*End
*de.LexSaturation 0/0: ""
*es.LexSaturation 0/0: ""
*fr.LexSaturation 0/0: ""
*it.LexSaturation 0/0: ""
*ja.LexSaturation 0/0: ""
*pt.LexSaturation 0/0: ""
*zh_CN.LexSaturation 0/0: ""
*zh_TW.LexSaturation 0/0: ""
*ko.LexSaturation 0/0: ""
*LexSaturation 1/1: "
<< /DeviceRenderingInfo << /ImageSaturation 1 >> >> setpagedevice"
*End
*de.LexSaturation 1/1: ""
*es.LexSaturation 1/1: ""
*fr.LexSaturation 1/1: ""
*it.LexSaturation 1/1: ""
*ja.LexSaturation 1/1: ""
*pt.LexSaturation 1/1: ""
*zh_CN.LexSaturation 1/1: ""
*zh_TW.LexSaturation 1/1: ""
*ko.LexSaturation 1/1: ""
*LexSaturation 2/2: "
<< /DeviceRenderingInfo << /ImageSaturation 2 >> >> setpagedevice"
*End
*de.LexSaturation 2/2: ""
*es.LexSaturation 2/2: ""
*fr.LexSaturation 2/2: ""
*it.LexSaturation 2/2: ""
*ja.LexSaturation 2/2: ""
*pt.LexSaturation 2/2: ""
*zh_CN.LexSaturation 2/2: ""
*zh_TW.LexSaturation 2/2: ""
*ko.LexSaturation 2/2: ""
*LexSaturation 3/3: "
<< /DeviceRenderingInfo << /ImageSaturation 3 >> >> setpagedevice"
*End
*de.LexSaturation 3/3: ""
*es.LexSaturation 3/3: ""
*fr.LexSaturation 3/3: ""
*it.LexSaturation 3/3: ""
*ja.LexSaturation 3/3: ""
*pt.LexSaturation 3/3: ""
*zh_CN.LexSaturation 3/3: ""
*zh_TW.LexSaturation 3/3: ""
*ko.LexSaturation 3/3: ""
*LexSaturation 4/4: "
<< /DeviceRenderingInfo << /ImageSaturation 4 >> >> setpagedevice"
*End
*de.LexSaturation 4/4: ""
*es.LexSaturation 4/4: ""
*fr.LexSaturation 4/4: ""
*it.LexSaturation 4/4: ""
*ja.LexSaturation 4/4: ""
*pt.LexSaturation 4/4: ""
*zh_CN.LexSaturation 4/4: ""
*zh_TW.LexSaturation 4/4: ""
*ko.LexSaturation 4/4: ""
*LexSaturation 5/5: "
<< /DeviceRenderingInfo << /ImageSaturation 5 >> >> setpagedevice"
*End
*de.LexSaturation 5/5: ""
*es.LexSaturation 5/5: ""
*fr.LexSaturation 5/5: ""
*it.LexSaturation 5/5: ""
*ja.LexSaturation 5/5: ""
*pt.LexSaturation 5/5: ""
*zh_CN.LexSaturation 5/5: ""
*zh_TW.LexSaturation 5/5: ""
*ko.LexSaturation 5/5: ""
*?LexSaturation: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageSaturation get
= flush
grestore"
*End
*CloseUI: *LexSaturation
*%******************************************************************************
*% Image Smoothing
*%******************************************************************************
*OpenUI *ImageSmoothing/Image Smoothing: PickOne
*de.Translation ImageSmoothing/Bildglättung: ""
*es.Translation ImageSmoothing/Suavizar Imagen: ""
*fr.Translation ImageSmoothing/Lissage Image: ""
*it.Translation ImageSmoothing/Regol. immag.: ""
*ja.Translation ImageSmoothing/イメージ・スムージング: ""
*pt.Translation ImageSmoothing/Suavizar Imagem: ""
*zh_CN.Translation ImageSmoothing/图象平滑: ""
*zh_TW.Translation ImageSmoothing/影像平滑化: ""
*ko.Translation ImageSmoothing/이미지 고르기: ""
*OrderDependency: 15 AnySetup *ImageSmoothing
*DefaultImageSmoothing: PrinterS
*ImageSmoothing PrinterS/Printer Setting: ""
*de.ImageSmoothing PrinterS/Druckereinstellung: ""
*es.ImageSmoothing PrinterS/Valor de la impresora: ""
*fr.ImageSmoothing PrinterS/Paramètres de l'imprimante: ""
*it.ImageSmoothing PrinterS/Impostazione stampante: ""
*ja.ImageSmoothing PrinterS/プリンタ設定: ""
*pt.ImageSmoothing PrinterS/Padrao da Impressora: ""
*zh_CN.ImageSmoothing PrinterS/打印机设置: ""
*zh_TW.ImageSmoothing PrinterS/印表機設置: ""
*ko.ImageSmoothing PrinterS/프린터 설정 : ""
*ImageSmoothing FalseF/Off: "<< /Interpolate false >>"
*de.ImageSmoothing FalseF/Aus: ""
*es.ImageSmoothing FalseF/Desactivada: ""
*fr.ImageSmoothing FalseF/Hors Fonction: ""
*it.ImageSmoothing FalseF/Disabilitato: ""
*ja.ImageSmoothing FalseF/オフ: ""
*pt.ImageSmoothing FalseF/Desligada: ""
*zh_CN.ImageSmoothing FalseF/关: ""
*zh_TW.ImageSmoothing FalseF/關: ""
*ko.ImageSmoothing FalseF/꺼짐: ""
*ImageSmoothing TrueF/On: "<< /Interpolate true >>"
*de.ImageSmoothing TrueF/Ein: ""
*es.ImageSmoothing TrueF/Activada: ""
*fr.ImageSmoothing TrueF/En Fonction: ""
*it.ImageSmoothing TrueF/Abilitato: ""
*ja.ImageSmoothing TrueF/オン: ""
*pt.ImageSmoothing TrueF/Ativar: ""
*zh_CN.ImageSmoothing TrueF/开: ""
*zh_TW.ImageSmoothing TrueF/開: ""
*ko.ImageSmoothing TrueF/켜짐: ""
*CloseUI: *ImageSmoothing
*%******************************************************************************
*% Line Detail Mode
*%******************************************************************************
*OpenUI *LexLineDetail/Enhance Fine Lines: PickOne
*de.Translation LexLineDetail/Feine Linien verbessern: ""
*es.Translation LexLineDetail/Mejorar líneas finas: ""
*fr.Translation LexLineDetail/Améliorer traits fins: ""
*it.Translation LexLineDetail/Migliora linee sottili: ""
*ja.Translation LexLineDetail/細かい線を強調: ""
*pt.Translation LexLineDetail/Melhorar linhas finas: ""
*zh_CN.Translation LexLineDetail/增强细线: ""
*zh_TW.Translation LexLineDetail/美化細線: ""
*ko.Translation LexLineDetail/미세 라인 강화: ""
*OrderDependency: 180 AnySetup *LexLineDetail
*DefaultLexLineDetail: PrinterS
*LexLineDetail PrinterS/Printer Setting: ""
*de.LexLineDetail PrinterS/Druckereinstellung: ""
*es.LexLineDetail PrinterS/Valor de la impresora: ""
*fr.LexLineDetail PrinterS/Paramètres de l'imprimante: ""
*it.LexLineDetail PrinterS/Impostazione stampante: ""
*ja.LexLineDetail PrinterS/プリンタ設定: ""
*pt.LexLineDetail PrinterS/Padrao da Impressora: ""
*zh_CN.LexLineDetail PrinterS/打印机设置: ""
*zh_TW.LexLineDetail PrinterS/印表機設置: ""
*ko.LexLineDetail PrinterS/프린터 설정 : ""
*LexLineDetail FalseF/Off: "<< /DeviceRenderingInfo << /LineDetail /Off >> >> setpagedevice"
*de.LexLineDetail FalseF/Aus: ""
*es.LexLineDetail FalseF/Desactivada: ""
*fr.LexLineDetail FalseF/Hors Fonction: ""
*it.LexLineDetail FalseF/Disabilitato: ""
*ja.LexLineDetail FalseF/オフ: ""
*pt.LexLineDetail FalseF/Desligada: ""
*zh_CN.LexLineDetail FalseF/关: ""
*zh_TW.LexLineDetail FalseF/關: ""
*ko.LexLineDetail FalseF/꺼짐: ""
*LexLineDetail TrueF/On: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*de.LexLineDetail TrueF/Ein: ""
*es.LexLineDetail TrueF/Activada: ""
*fr.LexLineDetail TrueF/En Fonction: ""
*it.LexLineDetail TrueF/Abilitato: ""
*ja.LexLineDetail TrueF/オン: ""
*pt.LexLineDetail TrueF/Ativar: ""
*zh_CN.LexLineDetail TrueF/开: ""
*zh_TW.LexLineDetail TrueF/開: ""
*ko.LexLineDetail TrueF/켜짐: ""
*?LexLineDetail: "
gsave
2 dict
dup /On (TrueF) put
dup /Off (FalseF) put
currentpagedevice /DeviceRenderingInfo get /LineDetail get
= flush
grestore"
*End
*CloseUI: *LexLineDetail
*CloseGroup: Quality
*%*****************************************************************************
*% Color Group
*%*****************************************************************************
*OpenGroup: Color/Color
*de.Translation Color/Farbanpassung: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*es.Translation Color/Color: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*fr.Translation Color/Couleur: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*it.Translation Color/Colore: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*ja.Translation Color/カラー用紙: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*pt.Translation Color/Colorido: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*zh_CN.Translation Color/颜色: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*zh_TW.Translation Color/色彩: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*ko.Translation Color/칼라: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*%*****************************************************************************
*% Color Correction
*%*****************************************************************************
*OpenUI *MediaColor/Color Correction: PickOne
*de.Translation MediaColor/Farbanpassung: ""
*es.Translation MediaColor/Corrección de color: ""
*fr.Translation MediaColor/Correction des Couleurs: ""
*it.Translation MediaColor/Correzione Colore: ""
*ja.Translation MediaColor/色補正 : ""
*pt.Translation MediaColor/Correção de Cor: ""
*zh_CN.Translation MediaColor/颜色修正: ""
*zh_TW.Translation MediaColor/色彩修正: ""
*ko.Translation MediaColor/색상 교정: ""
*OrderDependency: 12 AnySetup *MediaColor
*DefaultMediaColor: PrinterS
*MediaColor PrinterS/Printer Setting: ""
*de.MediaColor PrinterS/Druckereinstellung: ""
*es.MediaColor PrinterS/Valor de la impresora: ""
*fr.MediaColor PrinterS/Paramètres de l'imprimante: ""
*it.MediaColor PrinterS/Impostazione stampante: ""
*ja.MediaColor PrinterS/プリンタ設定: ""
*pt.MediaColor PrinterS/Padrao da Impressora: ""
*zh_CN.MediaColor PrinterS/打印机设置: ""
*zh_TW.MediaColor PrinterS/印表機設置: ""
*ko.MediaColor PrinterS/프린터 설정 : ""
*MediaColor Auto/Auto: "<< /DeviceRenderingInfo << /ColorCorrection /Automatic >> >> setpagedevice"
*de.MediaColor Auto/Automatisch: ""
*es.MediaColor Auto/Automático: ""
*fr.MediaColor Auto/Automatique: ""
*it.MediaColor Auto/Automatico: ""
*ja.MediaColor Auto/自動: ""
*pt.MediaColor Auto/Automático: ""
*zh_CN.MediaColor Auto/自动: ""
*zh_TW.MediaColor Auto/自動: ""
*ko.MediaColor Auto/자동: ""
*MediaColor FalseM/Off: "<< /DeviceRenderingInfo << /ColorCorrection /Off >> >> setpagedevice"
*de.MediaColor FalseM/Aus: ""
*es.MediaColor FalseM/Desactivado: ""
*fr.MediaColor FalseM/Hors Fonction: ""
*it.MediaColor FalseM/Disabilitato: ""
*ja.MediaColor FalseM/オフ: ""
*pt.MediaColor FalseM/Desligado: ""
*zh_CN.MediaColor FalseM/关: ""
*zh_TW.MediaColor FalseM/關: ""
*ko.MediaColor FalseM/꺼짐: ""
*MediaColor Manual/Manual: "<< /DeviceRenderingInfo << /ColorCorrection /Manual >> >> setpagedevice"
*de.MediaColor Manual/Manuell: ""
*es.MediaColor Manual/Manual: ""
*fr.MediaColor Manual/Manuel: ""
*it.MediaColor Manual/Manuale: ""
*ja.MediaColor Manual/手差し: ""
*pt.MediaColor Manual/Manual: ""
*zh_CN.MediaColor Manual/手动: ""
*zh_TW.MediaColor Manual/手動: ""
*ko.MediaColor Manual/수동: ""
*?MediaColor: "
gsave
3 dict
dup /Automatic (Auto) put
dup /Manual (Manual) put
dup /Off (FalseM) put
currentpagedevice /DeviceRenderingInfo get /ColorCorrection get
get = flush
grestore"
*End
*CloseUI: *MediaColor
*%*****************************************************************************
*% Color Saver
*%*****************************************************************************
*OpenUI *ColorSaver/ColorSaver: PickOne
*de.Translation ColorSaver/ColorSaver: ""
*es.Translation ColorSaver/ColorSaver: ""
*fr.Translation ColorSaver/ColorSaver: ""
*it.Translation ColorSaver/ColorSaver: ""
*ja.Translation ColorSaver/ColorSaver: ""
*pt.Translation ColorSaver/ColorSaver: ""
*zh_CN.Translation ColorSaver/ColorSaver: ""
*zh_TW.Translation ColorSaver/ColorSaver: ""
*ko.Translation ColorSaver/ColorSaver: ""
*OrderDependency: 14 AnySetup *ColorSaver
*DefaultColorSaver: PrinterS
*ColorSaver PrinterS/Printer Setting: ""
*de.ColorSaver PrinterS/Druckereinstellung: ""
*es.ColorSaver PrinterS/Valor de la impresora: ""
*fr.ColorSaver PrinterS/Paramètres de l'imprimante: ""
*it.ColorSaver PrinterS/Impostazione stampante: ""
*ja.ColorSaver PrinterS/プリンタ設定: ""
*pt.ColorSaver PrinterS/Padrao da Impressora: ""
*zh_CN.ColorSaver PrinterS/打印机设置: ""
*zh_TW.ColorSaver PrinterS/印表機設置: ""
*ko.ColorSaver PrinterS/프린터 설정 : ""
*ColorSaver FalseM/Off: "<< /DeviceRenderingInfo << /ColorSaver /Off >> >> setpagedevice"
*de.ColorSaver FalseM/Aus: ""
*es.ColorSaver FalseM/Desactivado: ""
*fr.ColorSaver FalseM/Hors Fonction: ""
*it.ColorSaver FalseM/Disabilitato: ""
*ja.ColorSaver FalseM/オフ: ""
*pt.ColorSaver FalseM/Desligado: ""
*zh_CN.ColorSaver FalseM/关: ""
*zh_TW.ColorSaver FalseM/關: ""
*ko.ColorSaver FalseM/꺼짐: ""
*ColorSaver TrueM/On: "<< /DeviceRenderingInfo << /ColorSaver /On >> >> setpagedevice"
*de.ColorSaver TrueM/Ein: ""
*es.ColorSaver TrueM/Activado: ""
*fr.ColorSaver TrueM/En Fonction: ""
*it.ColorSaver TrueM/Abilitato: ""
*ja.ColorSaver TrueM/オン: ""
*pt.ColorSaver TrueM/Ativar: ""
*zh_CN.ColorSaver TrueM/开: ""
*zh_TW.ColorSaver TrueM/開: ""
*ko.ColorSaver TrueM/켜짐: ""
*?ColorSaver: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorSaver get
(On) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *ColorSaver
*%*****************************************************************************
*% Black And White
*%*****************************************************************************
*OpenUI *BLW/Black & White: PickOne
*de.Translation BLW/Schwarz/Weiß: ""
*es.Translation BLW/Blanco y negro: ""
*fr.Translation BLW/Noir & Blanc: ""
*it.Translation BLW/Bianco e nero: ""
*ja.Translation BLW/白黒(モノクロ): ""
*pt.Translation BLW/Preto & Branco: ""
*zh_CN.Translation BLW/黑色和白色: ""
*zh_TW.Translation BLW/黑白: ""
*ko.Translation BLW/흑백: ""
*OrderDependency: 13 AnySetup *BLW
*DefaultBLW: PrinterS
*BLW PrinterS/Printer Setting: ""
*de.BLW PrinterS/Druckereinstellung: ""
*es.BLW PrinterS/Valor de la impresora: ""
*fr.BLW PrinterS/Paramètres de l'imprimante: ""
*it.BLW PrinterS/Impostazione stampante: ""
*ja.BLW PrinterS/プリンタ設定: ""
*pt.BLW PrinterS/Padrao da Impressora: ""
*zh_CN.BLW PrinterS/打印机设置: ""
*zh_TW.BLW PrinterS/印表機設置: ""
*ko.BLW PrinterS/프린터 설정 : ""
*BLW FalseM/Off: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
*de.BLW FalseM/Aus: ""
*es.BLW FalseM/Desactivado: ""
*fr.BLW FalseM/Hors Fonction: ""
*it.BLW FalseM/Disabilitato: ""
*ja.BLW FalseM/オフ: ""
*pt.BLW FalseM/Desligado: ""
*zh_CN.BLW FalseM/关: ""
*zh_TW.BLW FalseM/關: ""
*ko.BLW FalseM/꺼짐: ""
*BLW TrueM/On: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*de.BLW TrueM/Ein: ""
*es.BLW TrueM/Activado: ""
*fr.BLW TrueM/En Fonction: ""
*it.BLW TrueM/Abilitato: ""
*ja.BLW TrueM/オン: ""
*pt.BLW TrueM/Ativar: ""
*zh_CN.BLW TrueM/开: ""
*zh_TW.BLW TrueM/開: ""
*ko.BLW TrueM/켜짐: ""
*?BLW: "
gsave
currentpagedevice /ProcessColorModel get /DeviceGray
(True) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *BLW
*CloseGroup: Color
*%*****************************************************************************
*% Color Balance Group
*%*****************************************************************************
*OpenGroup: ColorBalance/Color Balance
*de.Translation ColorBalance/Farbausgleich: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*es.Translation ColorBalance/Mezcla de color: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*fr.Translation ColorBalance/Equilibre des couleurs: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*it.Translation ColorBalance/Bilanciamento colore: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*ja.Translation ColorBalance/カラー バランス: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*pt.Translation ColorBalance/Equilíbrio de cores: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*zh_CN.Translation ColorBalance/颜色平衡: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*zh_TW.Translation ColorBalance/色彩平衡: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*ko.Translation ColorBalance/색상 균형: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*%*****************************************************************************
*% Color Balance - Cyan
*%*****************************************************************************
*OpenUI *CyanBalance/Cyan Balance: PickOne
*de.Translation CyanBalance/Farbausgleich cyan: ""
*es.Translation CyanBalance/Mezcla de cian: ""
*fr.Translation CyanBalance/Equilibre cyan: ""
*it.Translation CyanBalance/Bilanciamento Ciano: ""
*ja.Translation CyanBalance/シアン バランス: ""
*pt.Translation CyanBalance/EquilÌbrio de ciano: ""
*zh_CN.Translation CyanBalance/青色平衡: ""
*zh_TW.Translation CyanBalance/靛青色平衡: ""
*ko.Translation CyanBalance/청색 발란스: ""
*OrderDependency: 71 AnySetup *CyanBalance
*DefaultCyanBalance: PrinterS
*CyanBalance PrinterS/Printer Setting: ""
*de.CyanBalance PrinterS/Druckereinstellung: ""
*es.CyanBalance PrinterS/Valor de la impresora: ""
*fr.CyanBalance PrinterS/Paramètres de l'imprimante: ""
*it.CyanBalance PrinterS/Impostazione stampante: ""
*ja.CyanBalance PrinterS/プリンタ設定: ""
*pt.CyanBalance PrinterS/Padrao da Impressora: ""
*zh_CN.CyanBalance PrinterS/打印机设置: ""
*zh_TW.CyanBalance PrinterS/印表機設置: ""
*ko.CyanBalance PrinterS/프린터 설정 : ""
*CyanBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceCyan -5 >> >> setpagedevice"
*de.CyanBalance -5/ -5: ""
*es.CyanBalance -5/ -5: ""
*fr.CyanBalance -5/ -5: ""
*it.CyanBalance -5/ -5: ""
*ja.CyanBalance -5/ -5: ""
*pt.CyanBalance -5/ -5: ""
*zh_CN.CyanBalance -5/ -5: ""
*zh_TW.CyanBalance -5/ -5: ""
*ko.CyanBalance -5/ -5: ""
*CyanBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceCyan -4 >> >> setpagedevice"
*de.CyanBalance -4/ -4: ""
*es.CyanBalance -4/ -4: ""
*fr.CyanBalance -4/ -4: ""
*it.CyanBalance -4/ -4: ""
*ja.CyanBalance -4/ -4: ""
*pt.CyanBalance -4/ -4: ""
*zh_CN.CyanBalance -4/ -4: ""
*zh_TW.CyanBalance -4/ -4: ""
*ko.CyanBalance -4/ -4: ""
*CyanBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceCyan -3 >> >> setpagedevice"
*de.CyanBalance -3/ -3: ""
*es.CyanBalance -3/ -3: ""
*fr.CyanBalance -3/ -3: ""
*it.CyanBalance -3/ -3: ""
*ja.CyanBalance -3/ -3: ""
*pt.CyanBalance -3/ -3: ""
*zh_CN.CyanBalance -3/ -3: ""
*zh_TW.CyanBalance -3/ -3: ""
*ko.CyanBalance -3/ -3: ""
*CyanBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceCyan -2 >> >> setpagedevice"
*de.CyanBalance -2/ -2: ""
*es.CyanBalance -2/ -2: ""
*fr.CyanBalance -2/ -2: ""
*it.CyanBalance -2/ -2: ""
*ja.CyanBalance -2/ -2: ""
*pt.CyanBalance -2/ -2: ""
*zh_CN.CyanBalance -2/ -2: ""
*zh_TW.CyanBalance -2/ -2: ""
*ko.CyanBalance -2/ -2: ""
*CyanBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceCyan -1 >> >> setpagedevice"
*de.CyanBalance -1/ -1: ""
*es.CyanBalance -1/ -1: ""
*fr.CyanBalance -1/ -1: ""
*it.CyanBalance -1/ -1: ""
*ja.CyanBalance -1/ -1: ""
*pt.CyanBalance -1/ -1: ""
*zh_CN.CyanBalance -1/ -1: ""
*zh_TW.CyanBalance -1/ -1: ""
*ko.CyanBalance -1/ -1: ""
*CyanBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceCyan 0 >> >> setpagedevice"
*de.CyanBalance 0/ 0: ""
*es.CyanBalance 0/ 0: ""
*fr.CyanBalance 0/ 0: ""
*it.CyanBalance 0/ 0: ""
*ja.CyanBalance 0/ 0: ""
*pt.CyanBalance 0/ 0: ""
*zh_CN.CyanBalance 0/ 0: ""
*zh_TW.CyanBalance 0/ 0: ""
*ko.CyanBalance 0/ 0: ""
*CyanBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceCyan 1 >> >> setpagedevice"
*de.CyanBalance +1/ +1: ""
*es.CyanBalance +1/ +1: ""
*fr.CyanBalance +1/ +1: ""
*it.CyanBalance +1/ +1: ""
*ja.CyanBalance +1/ +1: ""
*pt.CyanBalance +1/ +1: ""
*zh_CN.CyanBalance +1/ +1: ""
*zh_TW.CyanBalance +1/ +1: ""
*ko.CyanBalance +1/ +1: ""
*CyanBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceCyan 2 >> >> setpagedevice"
*de.CyanBalance +2/ +2: ""
*es.CyanBalance +2/ +2: ""
*fr.CyanBalance +2/ +2: ""
*it.CyanBalance +2/ +2: ""
*ja.CyanBalance +2/ +2: ""
*pt.CyanBalance +2/ +2: ""
*zh_CN.CyanBalance +2/ +2: ""
*zh_TW.CyanBalance +2/ +2: ""
*ko.CyanBalance +2/ +2: ""
*CyanBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceCyan 3 >> >> setpagedevice"
*de.CyanBalance +3/ +3: ""
*es.CyanBalance +3/ +3: ""
*fr.CyanBalance +3/ +3: ""
*it.CyanBalance +3/ +3: ""
*ja.CyanBalance +3/ +3: ""
*pt.CyanBalance +3/ +3: ""
*zh_CN.CyanBalance +3/ +3: ""
*zh_TW.CyanBalance +3/ +3: ""
*ko.CyanBalance +3/ +3: ""
*CyanBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceCyan 4 >> >> setpagedevice"
*de.CyanBalance +4/ +4: ""
*es.CyanBalance +4/ +4: ""
*fr.CyanBalance +4/ +4: ""
*it.CyanBalance +4/ +4: ""
*ja.CyanBalance +4/ +4: ""
*pt.CyanBalance +4/ +4: ""
*zh_CN.CyanBalance +4/ +4: ""
*zh_TW.CyanBalance +4/ +4: ""
*ko.CyanBalance +4/ +4: ""
*CyanBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceCyan 5 >> >> setpagedevice"
*de.CyanBalance +5/ +5: ""
*es.CyanBalance +5/ +5: ""
*fr.CyanBalance +5/ +5: ""
*it.CyanBalance +5/ +5: ""
*ja.CyanBalance +5/ +5: ""
*pt.CyanBalance +5/ +5: ""
*zh_CN.CyanBalance +5/ +5: ""
*zh_TW.CyanBalance +5/ +5: ""
*ko.CyanBalance +5/ +5: ""
*?CyanBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceCyan get = flush
grestore"
*End
*CloseUI: *CyanBalance
*%*****************************************************************************
*% Color Balance - Magenta
*%*****************************************************************************
*OpenUI *MagentaBalance/Magenta Balance: PickOne
*de.Translation MagentaBalance/Farbausgleich magenta: ""
*es.Translation MagentaBalance/Mezcla de magenta: ""
*fr.Translation MagentaBalance/Equilibre magenta: ""
*it.Translation MagentaBalance/Bilanciamento Magenta: ""
*ja.Translation MagentaBalance/マゼンタ バランス: ""
*pt.Translation MagentaBalance/EquilÌbrio de magenta: ""
*zh_CN.Translation MagentaBalance/品红色平衡: ""
*zh_TW.Translation MagentaBalance/洋紅色平衡: ""
*ko.Translation MagentaBalance/적색 발란스: ""
*OrderDependency: 72 AnySetup *MagentaBalance
*DefaultMagentaBalance: PrinterS
*MagentaBalance PrinterS/Printer Setting: ""
*de.MagentaBalance PrinterS/Druckereinstellung: ""
*es.MagentaBalance PrinterS/Valor de la impresora: ""
*fr.MagentaBalance PrinterS/Paramètres de l'imprimante: ""
*it.MagentaBalance PrinterS/Impostazione stampante: ""
*ja.MagentaBalance PrinterS/プリンタ設定: ""
*pt.MagentaBalance PrinterS/Padrao da Impressora: ""
*zh_CN.MagentaBalance PrinterS/打印机设置: ""
*zh_TW.MagentaBalance PrinterS/印表機設置: ""
*ko.MagentaBalance PrinterS/프린터 설정 : ""
*MagentaBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -5 >> >> setpagedevice"
*de.MagentaBalance -5/ -5: ""
*es.MagentaBalance -5/ -5: ""
*fr.MagentaBalance -5/ -5: ""
*it.MagentaBalance -5/ -5: ""
*ja.MagentaBalance -5/ -5: ""
*pt.MagentaBalance -5/ -5: ""
*zh_CN.MagentaBalance -5/ -5: ""
*zh_TW.MagentaBalance -5/ -5: ""
*ko.MagentaBalance -5/ -5: ""
*MagentaBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -4 >> >> setpagedevice"
*de.MagentaBalance -4/ -4: ""
*es.MagentaBalance -4/ -4: ""
*fr.MagentaBalance -4/ -4: ""
*it.MagentaBalance -4/ -4: ""
*ja.MagentaBalance -4/ -4: ""
*pt.MagentaBalance -4/ -4: ""
*zh_CN.MagentaBalance -4/ -4: ""
*zh_TW.MagentaBalance -4/ -4: ""
*ko.MagentaBalance -4/ -4: ""
*MagentaBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -3 >> >> setpagedevice"
*de.MagentaBalance -3/ -3: ""
*es.MagentaBalance -3/ -3: ""
*fr.MagentaBalance -3/ -3: ""
*it.MagentaBalance -3/ -3: ""
*ja.MagentaBalance -3/ -3: ""
*pt.MagentaBalance -3/ -3: ""
*zh_CN.MagentaBalance -3/ -3: ""
*zh_TW.MagentaBalance -3/ -3: ""
*ko.MagentaBalance -3/ -3: ""
*MagentaBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -2 >> >> setpagedevice"
*de.MagentaBalance -2/ -2: ""
*es.MagentaBalance -2/ -2: ""
*fr.MagentaBalance -2/ -2: ""
*it.MagentaBalance -2/ -2: ""
*ja.MagentaBalance -2/ -2: ""
*pt.MagentaBalance -2/ -2: ""
*zh_CN.MagentaBalance -2/ -2: ""
*zh_TW.MagentaBalance -2/ -2: ""
*ko.MagentaBalance -2/ -2: ""
*MagentaBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -1 >> >> setpagedevice"
*de.MagentaBalance -1/ -1: ""
*es.MagentaBalance -1/ -1: ""
*fr.MagentaBalance -1/ -1: ""
*it.MagentaBalance -1/ -1: ""
*ja.MagentaBalance -1/ -1: ""
*pt.MagentaBalance -1/ -1: ""
*zh_CN.MagentaBalance -1/ -1: ""
*zh_TW.MagentaBalance -1/ -1: ""
*ko.MagentaBalance -1/ -1: ""
*MagentaBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 0 >> >> setpagedevice"
*de.MagentaBalance 0/ 0: ""
*es.MagentaBalance 0/ 0: ""
*fr.MagentaBalance 0/ 0: ""
*it.MagentaBalance 0/ 0: ""
*ja.MagentaBalance 0/ 0: ""
*pt.MagentaBalance 0/ 0: ""
*zh_CN.MagentaBalance 0/ 0: ""
*zh_TW.MagentaBalance 0/ 0: ""
*ko.MagentaBalance 0/ 0: ""
*MagentaBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 1 >> >> setpagedevice"
*de.MagentaBalance +1/ +1: ""
*es.MagentaBalance +1/ +1: ""
*fr.MagentaBalance +1/ +1: ""
*it.MagentaBalance +1/ +1: ""
*ja.MagentaBalance +1/ +1: ""
*pt.MagentaBalance +1/ +1: ""
*zh_CN.MagentaBalance +1/ +1: ""
*zh_TW.MagentaBalance +1/ +1: ""
*ko.MagentaBalance +1/ +1: ""
*MagentaBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 2 >> >> setpagedevice"
*de.MagentaBalance +2/ +2: ""
*es.MagentaBalance +2/ +2: ""
*fr.MagentaBalance +2/ +2: ""
*it.MagentaBalance +2/ +2: ""
*ja.MagentaBalance +2/ +2: ""
*pt.MagentaBalance +2/ +2: ""
*zh_CN.MagentaBalance +2/ +2: ""
*zh_TW.MagentaBalance +2/ +2: ""
*ko.MagentaBalance +2/ +2: ""
*MagentaBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 3 >> >> setpagedevice"
*de.MagentaBalance +3/ +3: ""
*es.MagentaBalance +3/ +3: ""
*fr.MagentaBalance +3/ +3: ""
*it.MagentaBalance +3/ +3: ""
*ja.MagentaBalance +3/ +3: ""
*pt.MagentaBalance +3/ +3: ""
*zh_CN.MagentaBalance +3/ +3: ""
*zh_TW.MagentaBalance +3/ +3: ""
*ko.MagentaBalance +3/ +3: ""
*MagentaBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 4 >> >> setpagedevice"
*de.MagentaBalance +4/ +4: ""
*es.MagentaBalance +4/ +4: ""
*fr.MagentaBalance +4/ +4: ""
*it.MagentaBalance +4/ +4: ""
*ja.MagentaBalance +4/ +4: ""
*pt.MagentaBalance +4/ +4: ""
*zh_CN.MagentaBalance +4/ +4: ""
*zh_TW.MagentaBalance +4/ +4: ""
*ko.MagentaBalance +4/ +4: ""
*MagentaBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 5 >> >> setpagedevice"
*de.MagentaBalance +5/ +5: ""
*es.MagentaBalance +5/ +5: ""
*fr.MagentaBalance +5/ +5: ""
*it.MagentaBalance +5/ +5: ""
*ja.MagentaBalance +5/ +5: ""
*pt.MagentaBalance +5/ +5: ""
*zh_CN.MagentaBalance +5/ +5: ""
*zh_TW.MagentaBalance +5/ +5: ""
*ko.MagentaBalance +5/ +5: ""
*?MagentaBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceMagenta get = flush
grestore"
*End
*CloseUI: *MagentaBalance
*%*****************************************************************************
*% Color Balance - Yellow
*%*****************************************************************************
*OpenUI *YellowBalance/Yellow Balance: PickOne
*de.Translation YellowBalance/Farbausgleich gelb: ""
*es.Translation YellowBalance/Mezcla de amarillo: ""
*fr.Translation YellowBalance/Equilibre jaune: ""
*it.Translation YellowBalance/Bilanciamento Giallo: ""
*ja.Translation YellowBalance/イエロー バランス: ""
*pt.Translation YellowBalance/EquilÌbrio de amarelo: ""
*zh_CN.Translation YellowBalance/黄色平衡: ""
*zh_TW.Translation YellowBalance/黃色平衡: ""
*ko.Translation YellowBalance/황색 발란스: ""
*OrderDependency: 73 AnySetup *YellowBalance
*DefaultYellowBalance: PrinterS
*YellowBalance PrinterS/Printer Setting: ""
*de.YellowBalance PrinterS/Druckereinstellung: ""
*es.YellowBalance PrinterS/Valor de la impresora: ""
*fr.YellowBalance PrinterS/Paramètres de l'imprimante: ""
*it.YellowBalance PrinterS/Impostazione stampante: ""
*ja.YellowBalance PrinterS/プリンタ設定: ""
*pt.YellowBalance PrinterS/Padrao da Impressora: ""
*zh_CN.YellowBalance PrinterS/打印机设置: ""
*zh_TW.YellowBalance PrinterS/印表機設置: ""
*ko.YellowBalance PrinterS/프린터 설정 : ""
*YellowBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceYellow -5 >> >> setpagedevice"
*de.YellowBalance -5/ -5: ""
*es.YellowBalance -5/ -5: ""
*fr.YellowBalance -5/ -5: ""
*it.YellowBalance -5/ -5: ""
*ja.YellowBalance -5/ -5: ""
*pt.YellowBalance -5/ -5: ""
*zh_CN.YellowBalance -5/ -5: ""
*zh_TW.YellowBalance -5/ -5: ""
*ko.YellowBalance -5/ -5: ""
*YellowBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceYellow -4 >> >> setpagedevice"
*de.YellowBalance -4/ -4: ""
*es.YellowBalance -4/ -4: ""
*fr.YellowBalance -4/ -4: ""
*it.YellowBalance -4/ -4: ""
*ja.YellowBalance -4/ -4: ""
*pt.YellowBalance -4/ -4: ""
*zh_CN.YellowBalance -4/ -4: ""
*zh_TW.YellowBalance -4/ -4: ""
*ko.YellowBalance -4/ -4: ""
*YellowBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceYellow -3 >> >> setpagedevice"
*de.YellowBalance -3/ -3: ""
*es.YellowBalance -3/ -3: ""
*fr.YellowBalance -3/ -3: ""
*it.YellowBalance -3/ -3: ""
*ja.YellowBalance -3/ -3: ""
*pt.YellowBalance -3/ -3: ""
*zh_CN.YellowBalance -3/ -3: ""
*zh_TW.YellowBalance -3/ -3: ""
*ko.YellowBalance -3/ -3: ""
*YellowBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceYellow -2 >> >> setpagedevice"
*de.YellowBalance -2/ -2: ""
*es.YellowBalance -2/ -2: ""
*fr.YellowBalance -2/ -2: ""
*it.YellowBalance -2/ -2: ""
*ja.YellowBalance -2/ -2: ""
*pt.YellowBalance -2/ -2: ""
*zh_CN.YellowBalance -2/ -2: ""
*zh_TW.YellowBalance -2/ -2: ""
*ko.YellowBalance -2/ -2: ""
*YellowBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceYellow -1 >> >> setpagedevice"
*de.YellowBalance -1/ -1: ""
*es.YellowBalance -1/ -1: ""
*fr.YellowBalance -1/ -1: ""
*it.YellowBalance -1/ -1: ""
*ja.YellowBalance -1/ -1: ""
*pt.YellowBalance -1/ -1: ""
*zh_CN.YellowBalance -1/ -1: ""
*zh_TW.YellowBalance -1/ -1: ""
*ko.YellowBalance -1/ -1: ""
*YellowBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceYellow 0 >> >> setpagedevice"
*de.YellowBalance 0/ 0: ""
*es.YellowBalance 0/ 0: ""
*fr.YellowBalance 0/ 0: ""
*it.YellowBalance 0/ 0: ""
*ja.YellowBalance 0/ 0: ""
*pt.YellowBalance 0/ 0: ""
*zh_CN.YellowBalance 0/ 0: ""
*zh_TW.YellowBalance 0/ 0: ""
*ko.YellowBalance 0/ 0: ""
*YellowBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceYellow 1 >> >> setpagedevice"
*de.YellowBalance +1/ +1: ""
*es.YellowBalance +1/ +1: ""
*fr.YellowBalance +1/ +1: ""
*it.YellowBalance +1/ +1: ""
*ja.YellowBalance +1/ +1: ""
*pt.YellowBalance +1/ +1: ""
*zh_CN.YellowBalance +1/ +1: ""
*zh_TW.YellowBalance +1/ +1: ""
*ko.YellowBalance +1/ +1: ""
*YellowBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceYellow 2 >> >> setpagedevice"
*de.YellowBalance +2/ +2: ""
*es.YellowBalance +2/ +2: ""
*fr.YellowBalance +2/ +2: ""
*it.YellowBalance +2/ +2: ""
*ja.YellowBalance +2/ +2: ""
*pt.YellowBalance +2/ +2: ""
*zh_CN.YellowBalance +2/ +2: ""
*zh_TW.YellowBalance +2/ +2: ""
*ko.YellowBalance +2/ +2: ""
*YellowBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceYellow 3 >> >> setpagedevice"
*de.YellowBalance +3/ +3: ""
*es.YellowBalance +3/ +3: ""
*fr.YellowBalance +3/ +3: ""
*it.YellowBalance +3/ +3: ""
*ja.YellowBalance +3/ +3: ""
*pt.YellowBalance +3/ +3: ""
*zh_CN.YellowBalance +3/ +3: ""
*zh_TW.YellowBalance +3/ +3: ""
*ko.YellowBalance +3/ +3: ""
*YellowBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceYellow 4 >> >> setpagedevice"
*de.YellowBalance +4/ +4: ""
*es.YellowBalance +4/ +4: ""
*fr.YellowBalance +4/ +4: ""
*it.YellowBalance +4/ +4: ""
*ja.YellowBalance +4/ +4: ""
*pt.YellowBalance +4/ +4: ""
*zh_CN.YellowBalance +4/ +4: ""
*zh_TW.YellowBalance +4/ +4: ""
*ko.YellowBalance +4/ +4: ""
*YellowBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceYellow 5 >> >> setpagedevice"
*de.YellowBalance +5/ +5: ""
*es.YellowBalance +5/ +5: ""
*fr.YellowBalance +5/ +5: ""
*it.YellowBalance +5/ +5: ""
*ja.YellowBalance +5/ +5: ""
*pt.YellowBalance +5/ +5: ""
*zh_CN.YellowBalance +5/ +5: ""
*zh_TW.YellowBalance +5/ +5: ""
*ko.YellowBalance +5/ +5: ""
*?YellowBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceYellow get = flush
grestore"
*End
*CloseUI: *YellowBalance
*%*****************************************************************************
*% Color Balance - Black
*%*****************************************************************************
*OpenUI *BlackBalance/Black Balance: PickOne
*de.Translation BlackBalance/Farbausgleich schwarz: ""
*es.Translation BlackBalance/Mezcla de negro: ""
*fr.Translation BlackBalance/Equilibre noir: ""
*it.Translation BlackBalance/Bilanciamento Nero: ""
*ja.Translation BlackBalance/ブラック バランス: ""
*pt.Translation BlackBalance/EquilÌbrio de preto: ""
*zh_CN.Translation BlackBalance/黑色平衡: ""
*zh_TW.Translation BlackBalance/黑色平衡: ""
*ko.Translation BlackBalance/흑색 발란스: ""
*OrderDependency: 74 AnySetup *BlackBalance
*DefaultBlackBalance: PrinterS
*BlackBalance PrinterS/Printer Setting: ""
*de.BlackBalance PrinterS/Druckereinstellung: ""
*es.BlackBalance PrinterS/Valor de la impresora: ""
*fr.BlackBalance PrinterS/Paramètres de l'imprimante: ""
*it.BlackBalance PrinterS/Impostazione stampante: ""
*ja.BlackBalance PrinterS/プリンタ設定: ""
*pt.BlackBalance PrinterS/Padrao da Impressora: ""
*zh_CN.BlackBalance PrinterS/打印机设置: ""
*zh_TW.BlackBalance PrinterS/印表機設置: ""
*ko.BlackBalance PrinterS/프린터 설정 : ""
*BlackBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceBlack -5 >> >> setpagedevice"
*de.BlackBalance -5/ -5: ""
*es.BlackBalance -5/ -5: ""
*fr.BlackBalance -5/ -5: ""
*it.BlackBalance -5/ -5: ""
*ja.BlackBalance -5/ -5: ""
*pt.BlackBalance -5/ -5: ""
*zh_CN.BlackBalance -5/ -5: ""
*zh_TW.BlackBalance -5/ -5: ""
*ko.BlackBalance -5/ -5: ""
*BlackBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceBlack -4 >> >> setpagedevice"
*de.BlackBalance -4/ -4: ""
*es.BlackBalance -4/ -4: ""
*fr.BlackBalance -4/ -4: ""
*it.BlackBalance -4/ -4: ""
*ja.BlackBalance -4/ -4: ""
*pt.BlackBalance -4/ -4: ""
*zh_CN.BlackBalance -4/ -4: ""
*zh_TW.BlackBalance -4/ -4: ""
*ko.BlackBalance -4/ -4: ""
*BlackBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceBlack -3 >> >> setpagedevice"
*de.BlackBalance -3/ -3: ""
*es.BlackBalance -3/ -3: ""
*fr.BlackBalance -3/ -3: ""
*it.BlackBalance -3/ -3: ""
*ja.BlackBalance -3/ -3: ""
*pt.BlackBalance -3/ -3: ""
*zh_CN.BlackBalance -3/ -3: ""
*zh_TW.BlackBalance -3/ -3: ""
*ko.BlackBalance -3/ -3: ""
*BlackBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceBlack -2 >> >> setpagedevice"
*de.BlackBalance -2/ -2: ""
*es.BlackBalance -2/ -2: ""
*fr.BlackBalance -2/ -2: ""
*it.BlackBalance -2/ -2: ""
*ja.BlackBalance -2/ -2: ""
*pt.BlackBalance -2/ -2: ""
*zh_CN.BlackBalance -2/ -2: ""
*zh_TW.BlackBalance -2/ -2: ""
*ko.BlackBalance -2/ -2: ""
*BlackBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceBlack -1 >> >> setpagedevice"
*de.BlackBalance -1/ -1: ""
*es.BlackBalance -1/ -1: ""
*fr.BlackBalance -1/ -1: ""
*it.BlackBalance -1/ -1: ""
*ja.BlackBalance -1/ -1: ""
*pt.BlackBalance -1/ -1: ""
*zh_CN.BlackBalance -1/ -1: ""
*zh_TW.BlackBalance -1/ -1: ""
*ko.BlackBalance -1/ -1: ""
*BlackBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceBlack 0 >> >> setpagedevice"
*de.BlackBalance 0/ 0: ""
*es.BlackBalance 0/ 0: ""
*fr.BlackBalance 0/ 0: ""
*it.BlackBalance 0/ 0: ""
*ja.BlackBalance 0/ 0: ""
*pt.BlackBalance 0/ 0: ""
*zh_CN.BlackBalance 0/ 0: ""
*zh_TW.BlackBalance 0/ 0: ""
*ko.BlackBalance 0/ 0: ""
*BlackBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceBlack 1 >> >> setpagedevice"
*de.BlackBalance +1/ +1: ""
*es.BlackBalance +1/ +1: ""
*fr.BlackBalance +1/ +1: ""
*it.BlackBalance +1/ +1: ""
*ja.BlackBalance +1/ +1: ""
*pt.BlackBalance +1/ +1: ""
*zh_CN.BlackBalance +1/ +1: ""
*zh_TW.BlackBalance +1/ +1: ""
*ko.BlackBalance +1/ +1: ""
*BlackBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceBlack 2 >> >> setpagedevice"
*de.BlackBalance +2/ +2: ""
*es.BlackBalance +2/ +2: ""
*fr.BlackBalance +2/ +2: ""
*it.BlackBalance +2/ +2: ""
*ja.BlackBalance +2/ +2: ""
*pt.BlackBalance +2/ +2: ""
*zh_CN.BlackBalance +2/ +2: ""
*zh_TW.BlackBalance +2/ +2: ""
*ko.BlackBalance +2/ +2: ""
*BlackBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceBlack 3 >> >> setpagedevice"
*de.BlackBalance +3/ +3: ""
*es.BlackBalance +3/ +3: ""
*fr.BlackBalance +3/ +3: ""
*it.BlackBalance +3/ +3: ""
*ja.BlackBalance +3/ +3: ""
*pt.BlackBalance +3/ +3: ""
*zh_CN.BlackBalance +3/ +3: ""
*zh_TW.BlackBalance +3/ +3: ""
*ko.BlackBalance +3/ +3: ""
*BlackBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceBlack 4 >> >> setpagedevice"
*de.BlackBalance +4/ +4: ""
*es.BlackBalance +4/ +4: ""
*fr.BlackBalance +4/ +4: ""
*it.BlackBalance +4/ +4: ""
*ja.BlackBalance +4/ +4: ""
*pt.BlackBalance +4/ +4: ""
*zh_CN.BlackBalance +4/ +4: ""
*zh_TW.BlackBalance +4/ +4: ""
*ko.BlackBalance +4/ +4: ""
*BlackBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*de.BlackBalance +5/ +5: ""
*es.BlackBalance +5/ +5: ""
*fr.BlackBalance +5/ +5: ""
*it.BlackBalance +5/ +5: ""
*ja.BlackBalance +5/ +5: ""
*pt.BlackBalance +5/ +5: ""
*zh_CN.BlackBalance +5/ +5: ""
*zh_TW.BlackBalance +5/ +5: ""
*ko.BlackBalance +5/ +5: ""
*?BlackBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceBlack get = flush
grestore"
*End
*CloseUI: *BlackBalance
*CloseGroup: ColorBalance
*%*****************************************************************************
*% Manual Color Group
*%*****************************************************************************
*OpenGroup: ManualColor/Manual Color
*de.Translation ManualColor/Manuelle Farbe: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*es.Translation ManualColor/Color manual: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*fr.Translation ManualColor/Couleur manuelle: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*it.Translation ManualColor/Colore manuale: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*ja.Translation ManualColor/手動カラー: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*pt.Translation ManualColor/Cor manual: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*zh_CN.Translation ManualColor/手动颜色: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*zh_TW.Translation ManualColor/手動色彩: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*ko.Translation ManualColor/수동 색상: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*%*****************************************************************************
*% Manual - RGB Image
*%*****************************************************************************
*OpenUI *ManualRGBImage/Manual RGB Image: PickOne
*de.Translation ManualRGBImage/RGB Bild manuell: ""
*es.Translation ManualRGBImage/Imagen RGB manual: ""
*fr.Translation ManualRGBImage/Image RVB manuel: ""
*it.Translation ManualRGBImage/Immagine RGB manuale: ""
*ja.Translation ManualRGBImage/手動 RGB 画像: ""
*pt.Translation ManualRGBImage/Manual Imagem RGB: ""
*zh_CN.Translation ManualRGBImage/手动 RGB 图象 : ""
*zh_TW.Translation ManualRGBImage/手動 RGB 影像: ""
*ko.Translation ManualRGBImage/수동 RGB 이미지: ""
*OrderDependency: 75 AnySetup *ManualRGBImage
*DefaultManualRGBImage: PrinterS
*ManualRGBImage PrinterS/Printer Setting: ""
*de.ManualRGBImage PrinterS/Druckereinstellung: ""
*es.ManualRGBImage PrinterS/Valor de la impresora: ""
*fr.ManualRGBImage PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBImage PrinterS/Impostazione stampante: ""
*ja.ManualRGBImage PrinterS/プリンタ設定: ""
*pt.ManualRGBImage PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBImage PrinterS/打印机设置: ""
*zh_TW.ManualRGBImage PrinterS/印表機設置: ""
*ko.ManualRGBImage PrinterS/프린터 설정 : ""
*ManualRGBImage Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Vivid >> >> setpagedevice"
*de.ManualRGBImage Vivid/Leuchtend: ""
*es.ManualRGBImage Vivid/Intenso: ""
*fr.ManualRGBImage Vivid/Vives: ""
*it.ManualRGBImage Vivid/Vivace: ""
*ja.ManualRGBImage Vivid/鮮明: ""
*pt.ManualRGBImage Vivid/Cores vivas: ""
*zh_CN.ManualRGBImage Vivid/生动: ""
*zh_TW.ManualRGBImage Vivid/鮮明色彩: ""
*ko.ManualRGBImage Vivid/Vivid: ""
*ManualRGBImage sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBImage sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBImage sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBImage sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBImage sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBImage sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBImage sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBImage sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBImage sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBImage sRGBDisplay/sRGB 화면: ""
*ManualRGBImage sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBImage sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBImage sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBImage sRGBVivid/sRVB Vives: ""
*it.ManualRGBImage sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBImage sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBImage sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBImage sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBImage sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBImage sRGBVivid/sRGB Vivid: ""
*ManualRGBImage DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBImage /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBImage DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBImage DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBImage DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBImage DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBImage DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBImage DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBImage DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBImage DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBImage DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBImage Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Off >> >> setpagedevice"
*de.ManualRGBImage Off/Aus: ""
*es.ManualRGBImage Off/Desactivado: ""
*fr.ManualRGBImage Off/Hors Fonction: ""
*it.ManualRGBImage Off/Disabilitato: ""
*ja.ManualRGBImage Off/オフ: ""
*pt.ManualRGBImage Off/Desligado: ""
*zh_CN.ManualRGBImage Off/关: ""
*zh_TW.ManualRGBImage Off/關: ""
*ko.ManualRGBImage Off/꺼짐: ""
*?ManualRGBImage: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBImage
*%*****************************************************************************
*% Manual - RGB Text
*%*****************************************************************************
*OpenUI *ManualRGBText/Manual RGB Text: PickOne
*de.Translation ManualRGBText/RGB Text manuell: ""
*es.Translation ManualRGBText/Texto RGB manual: ""
*fr.Translation ManualRGBText/Texte RVB manuel: ""
*it.Translation ManualRGBText/Testo RGB manuale: ""
*ja.Translation ManualRGBText/手動 RGB テキスト: ""
*pt.Translation ManualRGBText/Manual Texto RGB: ""
*zh_CN.Translation ManualRGBText/手动 RGB 文本: ""
*zh_TW.Translation ManualRGBText/手動 RGB 文字: ""
*ko.Translation ManualRGBText/수동 RGB 문자: ""
*OrderDependency: 76 AnySetup *ManualRGBText
*DefaultManualRGBText: PrinterS
*ManualRGBText PrinterS/Printer Setting: ""
*de.ManualRGBText PrinterS/Druckereinstellung: ""
*es.ManualRGBText PrinterS/Valor de la impresora: ""
*fr.ManualRGBText PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBText PrinterS/Impostazione stampante: ""
*ja.ManualRGBText PrinterS/プリンタ設定: ""
*pt.ManualRGBText PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBText PrinterS/打印机设置: ""
*zh_TW.ManualRGBText PrinterS/印表機設置: ""
*ko.ManualRGBText PrinterS/프린터 설정 : ""
*ManualRGBText Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /Vivid >> >> setpagedevice"
*de.ManualRGBText Vivid/Leuchtend: ""
*es.ManualRGBText Vivid/Intenso: ""
*fr.ManualRGBText Vivid/Vives: ""
*it.ManualRGBText Vivid/Vivace: ""
*ja.ManualRGBText Vivid/鮮明: ""
*pt.ManualRGBText Vivid/Cores vivas: ""
*zh_CN.ManualRGBText Vivid/生动: ""
*zh_TW.ManualRGBText Vivid/鮮明色彩: ""
*ko.ManualRGBText Vivid/Vivid: ""
*ManualRGBText sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBText sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBText sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBText sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBText sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBText sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBText sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBText sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBText sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBText sRGBDisplay/sRGB 화면: ""
*ManualRGBText sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBText sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBText sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBText sRGBVivid/sRVB Vives: ""
*it.ManualRGBText sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBText sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBText sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBText sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBText sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBText sRGBVivid/sRGB Vivid: ""
*ManualRGBText DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBText /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBText DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBText DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBText DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBText DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBText DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBText DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBText DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBText DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBText DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBText Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBText /Off >> >> setpagedevice"
*de.ManualRGBText Off/Aus: ""
*es.ManualRGBText Off/Desactivado: ""
*fr.ManualRGBText Off/Hors Fonction: ""
*it.ManualRGBText Off/Disabilitato: ""
*ja.ManualRGBText Off/オフ: ""
*pt.ManualRGBText Off/Desligado: ""
*zh_CN.ManualRGBText Off/关: ""
*zh_TW.ManualRGBText Off/關: ""
*ko.ManualRGBText Off/꺼짐: ""
*?ManualRGBText: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBText get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBText
*%*****************************************************************************
*% Manual - RGB Graphics
*%*****************************************************************************
*OpenUI *ManualRGBGraphics/Manual RGB Graphics: PickOne
*de.Translation ManualRGBGraphics/RGB Grafiken manuell: ""
*es.Translation ManualRGBGraphics/Gráficos RGB manual: ""
*fr.Translation ManualRGBGraphics/Graphiques RVB manuel: ""
*it.Translation ManualRGBGraphics/Grafica RGB manuale: ""
*ja.Translation ManualRGBGraphics/手動 RGB グラフィックス: ""
*pt.Translation ManualRGBGraphics/Manual Graficos RGB: ""
*zh_CN.Translation ManualRGBGraphics/手动 RGB 图形: ""
*zh_TW.Translation ManualRGBGraphics/手動 RGB 圖形: ""
*ko.Translation ManualRGBGraphics/수동 RGB 그래픽: ""
*OrderDependency: 77 AnySetup *ManualRGBGraphics
*DefaultManualRGBGraphics: PrinterS
*ManualRGBGraphics PrinterS/Printer Setting: ""
*de.ManualRGBGraphics PrinterS/Druckereinstellung: ""
*es.ManualRGBGraphics PrinterS/Valor de la impresora: ""
*fr.ManualRGBGraphics PrinterS/Paramètres de l'imprimante: ""
*it.ManualRGBGraphics PrinterS/Impostazione stampante: ""
*ja.ManualRGBGraphics PrinterS/プリンタ設定: ""
*pt.ManualRGBGraphics PrinterS/Padrao da Impressora: ""
*zh_CN.ManualRGBGraphics PrinterS/打印机设置: ""
*zh_TW.ManualRGBGraphics PrinterS/印表機設置: ""
*ko.ManualRGBGraphics PrinterS/프린터 설정 : ""
*ManualRGBGraphics Vivid/Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Vivid >> >> setpagedevice"
*de.ManualRGBGraphics Vivid/Leuchtend: ""
*es.ManualRGBGraphics Vivid/Intenso: ""
*fr.ManualRGBGraphics Vivid/Vives: ""
*it.ManualRGBGraphics Vivid/Vivace: ""
*ja.ManualRGBGraphics Vivid/鮮明: ""
*pt.ManualRGBGraphics Vivid/Cores vivas: ""
*zh_CN.ManualRGBGraphics Vivid/生动: ""
*zh_TW.ManualRGBGraphics Vivid/鮮明色彩: ""
*ko.ManualRGBGraphics Vivid/Vivid: ""
*ManualRGBGraphics sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBDisplay >> >> setpagedevice"
*de.ManualRGBGraphics sRGBDisplay/sRGB Bildschirm: ""
*es.ManualRGBGraphics sRGBDisplay/Pantalla sRGB: ""
*fr.ManualRGBGraphics sRGBDisplay/sRVB Ecran: ""
*it.ManualRGBGraphics sRGBDisplay/Schermo sRGB: ""
*ja.ManualRGBGraphics sRGBDisplay/sRGB 表示: ""
*pt.ManualRGBGraphics sRGBDisplay/Exibir sRGB: ""
*zh_CN.ManualRGBGraphics sRGBDisplay/sRGB 显示: ""
*zh_TW.ManualRGBGraphics sRGBDisplay/sRGB 顯示: ""
*ko.ManualRGBGraphics sRGBDisplay/sRGB 화면: ""
*ManualRGBGraphics sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBGraphics >> >> setpagedevice"
*de.ManualRGBGraphics sRGBVivid/sRGB Leuchtend: ""
*es.ManualRGBGraphics sRGBVivid/Intenso sRGB: ""
*fr.ManualRGBGraphics sRGBVivid/sRVB Vives: ""
*it.ManualRGBGraphics sRGBVivid/Vivace sRGB: ""
*ja.ManualRGBGraphics sRGBVivid/sRGB 鮮明: ""
*pt.ManualRGBGraphics sRGBVivid/Nítido sRGB: ""
*zh_CN.ManualRGBGraphics sRGBVivid/sRGB 逼真: ""
*zh_TW.ManualRGBGraphics sRGBVivid/sRGB 鮮明色彩: ""
*ko.ManualRGBGraphics sRGBVivid/sRGB Vivid: ""
*ManualRGBGraphics DisplayRealBlack/Display-True Black: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /DisplayRealBlack >> >> setpagedevice"
*de.ManualRGBGraphics DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*es.ManualRGBGraphics DisplayRealBlack/Pantalla - Negro real: ""
*fr.ManualRGBGraphics DisplayRealBlack/Affichage - vrai noir: ""
*it.ManualRGBGraphics DisplayRealBlack/Schermo - Nero effettivo: ""
*ja.ManualRGBGraphics DisplayRealBlack/画面 - 真ブラック: ""
*pt.ManualRGBGraphics DisplayRealBlack/Exibir - preto real: ""
*zh_CN.ManualRGBGraphics DisplayRealBlack/显示-纯黑色: ""
*zh_TW.ManualRGBGraphics DisplayRealBlack/顯示-純黑色: ""
*ko.ManualRGBGraphics DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ManualRGBGraphics Off/Off: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Off >> >> setpagedevice"
*de.ManualRGBGraphics Off/Aus: ""
*es.ManualRGBGraphics Off/Desactivado: ""
*fr.ManualRGBGraphics Off/Hors Fonction: ""
*it.ManualRGBGraphics Off/Disabilitato: ""
*ja.ManualRGBGraphics Off/オフ: ""
*pt.ManualRGBGraphics Off/Desligado: ""
*zh_CN.ManualRGBGraphics Off/关: ""
*zh_TW.ManualRGBGraphics Off/關: ""
*ko.ManualRGBGraphics Off/꺼짐: ""
*?ManualRGBGraphics: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBGraphics get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBGraphics
*%*****************************************************************************
*% Manual - CMYK Image
*%*****************************************************************************
*OpenUI *ManualCMYK/Manual CMYK: PickOne
*de.Translation ManualCMYK/Manuell CMYK: ""
*es.Translation ManualCMYK/CMYK manual: ""
*fr.Translation ManualCMYK/CMJN manuelle: ""
*it.Translation ManualCMYK/CMYK manuale: ""
*ja.Translation ManualCMYK/手動 CMYK: ""
*pt.Translation ManualCMYK/CMYK manual: ""
*zh_CN.Translation ManualCMYK/手动 CMYK: ""
*zh_TW.Translation ManualCMYK/手動 CMYK: ""
*ko.Translation ManualCMYK/수동 CMYK: ""
*OrderDependency: 78 AnySetup *ManualCMYK
*DefaultManualCMYK: PrinterS
*ManualCMYK PrinterS/Printer Setting: ""
*de.ManualCMYK PrinterS/Druckereinstellung: ""
*es.ManualCMYK PrinterS/Valor de la impresora: ""
*fr.ManualCMYK PrinterS/Paramètres de l'imprimante: ""
*it.ManualCMYK PrinterS/Impostazione stampante: ""
*ja.ManualCMYK PrinterS/プリンタ設定: ""
*pt.ManualCMYK PrinterS/Padrao da Impressora: ""
*zh_CN.ManualCMYK PrinterS/打印机设置: ""
*zh_TW.ManualCMYK PrinterS/印表機設置: ""
*ko.ManualCMYK PrinterS/프린터 설정 : ""
*ManualCMYK USCMYK/US CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /SWOP >> >> setpagedevice"
*End
*de.ManualCMYK USCMYK/US-CMYK: ""
*es.ManualCMYK USCMYK/CMYK EE.UU.: ""
*fr.ManualCMYK USCMYK/CMJN US: ""
*it.ManualCMYK USCMYK/CMYK US: ""
*ja.ManualCMYK USCMYK/US CMYK: ""
*pt.ManualCMYK USCMYK/US CMYK: ""
*zh_CN.ManualCMYK USCMYK/US CMYK: ""
*zh_TW.ManualCMYK USCMYK/US CMYK: ""
*ko.ManualCMYK USCMYK/US CMYK: ""
*ManualCMYK EuroCMYK/Euro CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Euro >> >> setpagedevice"
*End
*de.ManualCMYK EuroCMYK/Euro-CMYK: ""
*es.ManualCMYK EuroCMYK/CMYK Europa: ""
*fr.ManualCMYK EuroCMYK/CMJN euro: ""
*it.ManualCMYK EuroCMYK/CMYK Euro: ""
*ja.ManualCMYK EuroCMYK/Euro CMYK: ""
*pt.ManualCMYK EuroCMYK/EURO CMYK: ""
*zh_CN.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_TW.ManualCMYK EuroCMYK/Euro CMYK: ""
*ko.ManualCMYK EuroCMYK/Euro CMYK: ""
*ManualCMYK VividCMYK/Vivid CMYK: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /VividCMYK >> >> setpagedevice"
*End
*de.ManualCMYK VividCMYK/Leuchtend CMYK: ""
*es.ManualCMYK VividCMYK/CMYK intenso: ""
*fr.ManualCMYK VividCMYK/CMJN vive: ""
*it.ManualCMYK VividCMYK/CMYK vivace: ""
*ja.ManualCMYK VividCMYK/鮮明 CMYK: ""
*pt.ManualCMYK VividCMYK/CMYK Vivas: ""
*zh_CN.ManualCMYK VividCMYK/逼真 CMYK: ""
*zh_TW.ManualCMYK VividCMYK/鮮明色彩 CMYK: ""
*ko.ManualCMYK VividCMYK/Vivid CMYK: ""
*ManualCMYK Off/Off: "
<< /DeviceRenderingInfo << /ManualColorCMYKImage /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Off >> >> setpagedevice"
*End
*de.ManualCMYK Off/Aus: ""
*es.ManualCMYK Off/Desactivado: ""
*fr.ManualCMYK Off/Hors Fonction: ""
*it.ManualCMYK Off/Disabilitato: ""
*ja.ManualCMYK Off/オフ: ""
*pt.ManualCMYK Off/Desligado: ""
*zh_CN.ManualCMYK Off/关: ""
*zh_TW.ManualCMYK Off/關: ""
*ko.ManualCMYK Off/꺼짐: ""
*?ManualCMYK: "
gsave
4 dict
dup /SWOP (USCMYK) put
dup /Euro (EuroCMYK) put
dup /Off (off) put
dup /VividCMYK (VividCMYK) put
currentpagedevice /DeviceRenderingInfo get /ManualColorCMYKImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualCMYK
*CloseGroup: ManualColor
*%******************************************************************************
*% Paper Handling Group
*%******************************************************************************
*OpenGroup: Paper/Paper
*de.Translation Paper/Papier: ""
*es.Translation Paper/Papel: ""
*fr.Translation Paper/Papier: ""
*it.Translation Paper/Carta: ""
*ja.Translation Paper/用紙: ""
*pt.Translation Paper/Papel: ""
*zh_CN.Translation Paper/纸张: ""
*zh_TW.Translation Paper/紙張: ""
*ko.Translation Paper/용지: ""
*%*****************************************************************************
*% Paper Type
*%*****************************************************************************
*OpenUI *MediaType/Paper Type: PickOne
*de.Translation MediaType/Papiersorte: ""
*es.Translation MediaType/Tipo de papel: ""
*fr.Translation MediaType/Type de papier: ""
*it.Translation MediaType/Tipo di carta: ""
*ja.Translation MediaType/用紙の種類: ""
*pt.Translation MediaType/Tipo de Papel: ""
*zh_CN.Translation MediaType/纸张类型: ""
*zh_TW.Translation MediaType/紙張種類: ""
*ko.Translation MediaType/용지 타입: ""
*DefaultMediaType: PrinterS
*OrderDependency: 40 AnySetup *MediaType
*MediaType PrinterS/Printer Setting: ""
*de.MediaType PrinterS/Druckereinstellung: ""
*es.MediaType PrinterS/Valor de la impresora: ""
*fr.MediaType PrinterS/Paramètres de l'imprimante: ""
*it.MediaType PrinterS/Impostazione stampante: ""
*ja.MediaType PrinterS/プリンタ設定: ""
*pt.MediaType PrinterS/Padrao da Impressora: ""
*zh_CN.MediaType PrinterS/打印机设置: ""
*zh_TW.MediaType PrinterS/印表機設置: ""
*ko.MediaType PrinterS/프린터 설정 : ""
*MediaType Plain/Plain Paper: "<< /MediaType (Plain) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Plain/Normalpapier: ""
*es.MediaType Plain/Papel normal: ""
*fr.MediaType Plain/Papier Normal: ""
*it.MediaType Plain/Carta normale: ""
*ja.MediaType Plain/普通紙: ""
*pt.MediaType Plain/Papel normal: ""
*zh_CN.MediaType Plain/普通纸: ""
*zh_TW.MediaType Plain/普通紙: ""
*ko.MediaType Plain/일반 용지: ""
*MediaType Glossy/Glossy Paper: "<< /MediaType (Glossy Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Glossy/Glanzpapier: ""
*es.MediaType Glossy/Papel brillante: ""
*fr.MediaType Glossy/Papier glacé: ""
*it.MediaType Glossy/Carta lucida: ""
*ja.MediaType Glossy/光沢紙: ""
*pt.MediaType Glossy/Papel Brilho: ""
*zh_CN.MediaType Glossy/光面纸: ""
*zh_TW.MediaType Glossy/光面紙: ""
*ko.MediaType Glossy/광택지: ""
*MediaType Card/Card Stock: "<< /MediaType (Card Stock) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Card/Karton: ""
*es.MediaType Card/Tarjeta: ""
*fr.MediaType Card/Bristol: ""
*it.MediaType Card/Cartoncino: ""
*ja.MediaType Card/厚紙: ""
*pt.MediaType Card/Cartões: ""
*zh_CN.MediaType Card/卡片纸: ""
*zh_TW.MediaType Card/卡片: ""
*ko.MediaType Card/카드 용지: ""
*MediaType Transparency/Transparency: "<< /MediaType (Transparency) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Transparency/Folie: ""
*es.MediaType Transparency/Transparencias: ""
*fr.MediaType Transparency/Transparent: ""
*it.MediaType Transparency/Transparente: ""
*ja.MediaType Transparency/OHPフィルム: ""
*pt.MediaType Transparency/Transparência: ""
*zh_CN.MediaType Transparency/透明胶片: ""
*zh_TW.MediaType Transparency/專用透明投影膠片: ""
*ko.MediaType Transparency/OHP 필름: ""
*MediaType Labels/Labels: "<< /MediaType (Labels) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Labels/Etiketten: ""
*es.MediaType Labels/Etiquetas: ""
*fr.MediaType Labels/Etiquettes: ""
*it.MediaType Labels/Etichette: ""
*ja.MediaType Labels/ラベル: ""
*pt.MediaType Labels/Etiquetas: ""
*zh_CN.MediaType Labels/标签: ""
*zh_TW.MediaType Labels/標籤: ""
*ko.MediaType Labels/라벨: ""
*MediaType Bond/Bond: "<< /MediaType (Bond) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Bond/Feinpostpapier: ""
*es.MediaType Bond/Alta calidad: ""
*fr.MediaType Bond/Ordinaire: ""
*it.MediaType Bond/Di qualitá: ""
*ja.MediaType Bond/ボンド紙: ""
*pt.MediaType Bond/Encorpado: ""
*zh_CN.MediaType Bond/铜版纸: ""
*zh_TW.MediaType Bond/無覆膜的雪銅紙: ""
*ko.MediaType Bond/본드: ""
*MediaType Envelope/Envelope: "<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Envelope/Briefumschlag: ""
*es.MediaType Envelope/Sobre: ""
*fr.MediaType Envelope/Alimentation Enveloppe: ""
*it.MediaType Envelope/Busta: ""
*ja.MediaType Envelope/封筒: ""
*pt.MediaType Envelope/Envelopes: ""
*zh_CN.MediaType Envelope/信封: ""
*zh_TW.MediaType Envelope/信封: ""
*ko.MediaType Envelope/봉투: ""
*MediaType Letterhead/Letterhead: "<< /MediaType (Letterhead) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Letterhead/Briefbogen: ""
*es.MediaType Letterhead/Cabecera: ""
*fr.MediaType Letterhead/En-tête: ""
*it.MediaType Letterhead/Carta intestata: ""
*ja.MediaType Letterhead/レターヘッド: ""
*pt.MediaType Letterhead/Timbrado: ""
*zh_CN.MediaType Letterhead/信签: ""
*zh_TW.MediaType Letterhead/銜頭紙: ""
*ko.MediaType Letterhead/레터헤드: ""
*MediaType Preprint/Preprinted: "<< /MediaType (Preprinted) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Preprint/Vorgedruckt: ""
*es.MediaType Preprint/Preimpreso: ""
*fr.MediaType Preprint/Préimprimé: ""
*it.MediaType Preprint/Prestampati: ""
*ja.MediaType Preprint/プレプリント: ""
*pt.MediaType Preprint/Pré-impresso: ""
*zh_CN.MediaType Preprint/预印纸: ""
*zh_TW.MediaType Preprint/預印: ""
*ko.MediaType Preprint/양면지: ""
*MediaType Colored/Colored Paper: "<< /MediaType (Colored Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Colored/Farbpapier: ""
*es.MediaType Colored/Papel color: ""
*fr.MediaType Colored/Papier couleur: ""
*it.MediaType Colored/Carta colorata: ""
*ja.MediaType Colored/カラー紙: ""
*pt.MediaType Colored/Papel colorido: ""
*zh_CN.MediaType Colored/彩色纸: ""
*zh_TW.MediaType Colored/彩色紙: ""
*ko.MediaType Colored/색상지: ""
*MediaType Custom1/Custom Type 1: "<< /MediaType (Custom Type 1) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom1/Benutzerdef. 1: ""
*es.MediaType Custom1/Personalizado tipo 1: ""
*fr.MediaType Custom1/Personnalisé 1: ""
*it.MediaType Custom1/Pers. tipo 1: ""
*ja.MediaType Custom1/カスタム タイプ 1: ""
*pt.MediaType Custom1/Person tipo 1: ""
*zh_CN.MediaType Custom1/定制类型 1: ""
*zh_TW.MediaType Custom1/自訂種類 1: ""
*ko.MediaType Custom1/사용자 양식 1: ""
*MediaType Custom2/Custom Type 2: "<< /MediaType (Custom Type 2) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom2/Benutzerdef. 2: ""
*es.MediaType Custom2/Personalizado tipo 2: ""
*fr.MediaType Custom2/Personnalisé 2: ""
*it.MediaType Custom2/Pers. tipo 2: ""
*ja.MediaType Custom2/カスタム タイプ 2: ""
*pt.MediaType Custom2/Person tipo 2: ""
*zh_CN.MediaType Custom2/定制类型 2: ""
*zh_TW.MediaType Custom2/自訂種類 2: ""
*ko.MediaType Custom2/사용자 양식 2: ""
*MediaType Custom3/Custom Type 3: "<< /MediaType (Custom Type 3) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom3/Benutzerdef. 3: ""
*es.MediaType Custom3/Personalizado tipo 3: ""
*fr.MediaType Custom3/Personnalisé 3: ""
*it.MediaType Custom3/Pers. tipo 3: ""
*ja.MediaType Custom3/カスタム タイプ 3: ""
*pt.MediaType Custom3/Person tipo 3: ""
*zh_CN.MediaType Custom3/定制类型 3: ""
*zh_TW.MediaType Custom3/自訂種類 3: ""
*ko.MediaType Custom3/사용자 양식 3: ""
*MediaType Custom4/Custom Type 4: "<< /MediaType (Custom Type 4) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom4/Benutzerdef. 4: ""
*es.MediaType Custom4/Personalizado tipo 4: ""
*fr.MediaType Custom4/Personnalisé 4: ""
*it.MediaType Custom4/Pers. tipo 4: ""
*ja.MediaType Custom4/カスタム タイプ 4: ""
*pt.MediaType Custom4/Person tipo 4: ""
*zh_CN.MediaType Custom4/定制类型 4: ""
*zh_TW.MediaType Custom4/自訂種類 4: ""
*ko.MediaType Custom4/사용자 양식 4: ""
*MediaType Custom5/Custom Type 5: "<< /MediaType (Custom Type 5) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom5/Benutzerdef. 5: ""
*es.MediaType Custom5/Personalizado tipo 5: ""
*fr.MediaType Custom5/Personnalisé 5: ""
*it.MediaType Custom5/Pers. tipo 5: ""
*ja.MediaType Custom5/カスタム タイプ 5: ""
*pt.MediaType Custom5/Person tipo 5: ""
*zh_CN.MediaType Custom5/定制类型 5: ""
*zh_TW.MediaType Custom5/自訂種類 5: ""
*ko.MediaType Custom5/사용자 양식 5: ""
*MediaType Custom6/Custom Type 6: "<< /MediaType (Custom Type 6) /Policies << /MediaType 2 >> >> setpagedevice"
*de.MediaType Custom6/Benutzerdef. 6: ""
*es.MediaType Custom6/Personalizado tipo 6: ""
*fr.MediaType Custom6/Personnalisé 6: ""
*it.MediaType Custom6/Pers. tipo 6: ""
*ja.MediaType Custom6/カスタム タイプ 6: ""
*pt.MediaType Custom6/Person tipo 6: ""
*zh_CN.MediaType Custom6/定制类型 6: ""
*zh_TW.MediaType Custom6/自訂種類 6: ""
*ko.MediaType Custom6/사용자 양식 6: ""
*CloseUI: *MediaType
*%******************************************************************************
*% Print Blank Page
*%******************************************************************************
*OpenUI *LexBlankPage/Print Blank Pages: PickOne
*de.Translation LexBlankPage/Leere Seiten drucken: ""
*es.Translation LexBlankPage/Imprimir páginas en blanco: ""
*fr.Translation LexBlankPage/Imprimer pages vierges: ""
*it.Translation LexBlankPage/Stampa pagine vuote: ""
*ja.Translation LexBlankPage/空白ページを印刷: ""
*pt.Translation LexBlankPage/Imprimir páginas em branco: ""
*zh_CN.Translation LexBlankPage/打印空白页: ""
*zh_TW.Translation LexBlankPage/列印空白頁: ""
*ko.Translation LexBlankPage/빈 페이지 인쇄: ""
*DefaultLexBlankPage: PrinterS
*OrderDependency: 175 AnySetup *LexBlankPage
*LexBlankPage PrinterS/Printer Setting: ""
*de.LexBlankPage PrinterS/Druckereinstellung: ""
*es.LexBlankPage PrinterS/Valor de la impresora: ""
*fr.LexBlankPage PrinterS/Paramètres de l'imprimante: ""
*it.LexBlankPage PrinterS/Impostazione stampante: ""
*ja.LexBlankPage PrinterS/プリンタ設定: ""
*pt.LexBlankPage PrinterS/Padrao da Impressora: ""
*zh_CN.LexBlankPage PrinterS/打印机设置: ""
*zh_TW.LexBlankPage PrinterS/印表機設置: ""
*ko.LexBlankPage PrinterS/프린터 설정 : ""
*LexBlankPage False/Off: ""
*de.LexBlankPage False/Aus: ""
*es.LexBlankPage False/Desactivado: ""
*fr.LexBlankPage False/Hors Fonction: ""
*it.LexBlankPage False/Disabilitato: ""
*ja.LexBlankPage False/オフ: ""
*pt.LexBlankPage False/Desligado: ""
*zh_CN.LexBlankPage False/关: ""
*zh_TW.LexBlankPage False/關: ""
*ko.LexBlankPage False/꺼짐: ""
*LexBlankPage True/On: ""
*de.LexBlankPage True/Ein: ""
*es.LexBlankPage True/Activado: ""
*fr.LexBlankPage True/En Fonction: ""
*it.LexBlankPage True/Abilitato: ""
*ja.LexBlankPage True/オン: ""
*pt.LexBlankPage True/Ativar: ""
*zh_CN.LexBlankPage True/开: ""
*zh_TW.LexBlankPage True/開: ""
*ko.LexBlankPage True/켜짐: ""
*?LexBlankPage: ""
*CloseUI: *LexBlankPage
*DefaultOutputOrder: Normal
*CloseGroup: Paper
*%******************************************************************************
*% Finishing Group
*%******************************************************************************
*OpenGroup: Finishing/Finishing
*de.Translation Finishing/Papierausgabe: ""
*es.Translation Finishing/Acabado: ""
*fr.Translation Finishing/Finition: ""
*it.Translation Finishing/Fascicolazione: ""
*ja.Translation Finishing/仕上げ: ""
*pt.Translation Finishing/Acabamento: ""
*zh_CN.Translation Finishing/输出: ""
*zh_TW.Translation Finishing/輸出處理: ""
*ko.Translation Finishing/마무리: ""
*%******************************************************************************
*% Collation
*%******************************************************************************
*OpenUI *Collate/Collation: Boolean
*de.Translation Collate/Sortieren: ""
*es.Translation Collate/Clasificación: ""
*fr.Translation Collate/Assemblage: ""
*it.Translation Collate/Fascicolazione: ""
*ja.Translation Collate/ソーターで印刷: ""
*pt.Translation Collate/Agrupar: ""
*zh_CN.Translation Collate/逐份打印: ""
*zh_TW.Translation Collate/逐份列印: ""
*ko.Translation Collate/콜레이트: ""
*OrderDependency: 50 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<< /Collate false >> setpagedevice"
*de.Collate False/Aus: ""
*es.Collate False/Desactivado: ""
*fr.Collate False/Hors Fonction: ""
*it.Collate False/Disabilitato: ""
*ja.Collate False/オフ: ""
*pt.Collate False/Desligado: ""
*zh_CN.Collate False/关: ""
*zh_TW.Collate False/關: ""
*ko.Collate False/꺼짐: ""
*Collate True/On: "<< /Collate true >> setpagedevice"
*de.Collate True/Ein: ""
*es.Collate True/Activado: ""
*fr.Collate True/En Fonction: ""
*it.Collate True/Abilitato: ""
*ja.Collate True/オン: ""
*pt.Collate True/Ativar: ""
*zh_CN.Collate True/开: ""
*zh_TW.Collate True/開: ""
*ko.Collate True/켜짐: ""
*?Collate: "
gsave
currentpagedevice /Collate get
{(True)}{(False)} ifelse
= flush
grestore"
*End
*CloseUI: *Collate
*%*****************************************************************************
*% Separator Pages
*%*****************************************************************************
*OpenUI *SepPages/Separator Pages: PickOne
*de.Translation SepPages/Trennseiten: ""
*es.Translation SepPages/Hojas de separación: ""
*fr.Translation SepPages/Séparateurs: ""
*it.Translation SepPages/Fogli separatori: ""
*ja.Translation SepPages/区切りページ: ""
*pt.Translation SepPages/Páginas Separadoras: ""
*zh_CN.Translation SepPages/分隔页: ""
*zh_TW.Translation SepPages/分隔頁: ""
*ko.Translation SepPages/페이지 분리기: ""
*OrderDependency: 51 AnySetup *SepPages
*DefaultSepPages: PrinterS
*SepPages PrinterS/Printer Setting: ""
*de.SepPages PrinterS/Druckereinstellung: ""
*es.SepPages PrinterS/Valor de la impresora: ""
*fr.SepPages PrinterS/Paramètres de l'imprimante: ""
*it.SepPages PrinterS/Impostazione stampante: ""
*ja.SepPages PrinterS/プリンタ設定: ""
*pt.SepPages PrinterS/Padrao da Impressora: ""
*zh_CN.SepPages PrinterS/打印机设置: ""
*zh_TW.SepPages PrinterS/印表機設置: ""
*ko.SepPages PrinterS/프린터 설정 : ""
*SepPages NoneF/None: "<< /SlipSheet 0 >> setpagedevice"
*de.SepPages NoneF/Keine: ""
*es.SepPages NoneF/Desactivado: ""
*fr.SepPages NoneF/Hors Fonction: ""
*it.SepPages NoneF/Disabilitato: ""
*ja.SepPages NoneF/なし: ""
*pt.SepPages NoneF/Nenhuma: ""
*zh_CN.SepPages NoneF/无: ""
*zh_TW.SepPages NoneF/無: ""
*ko.SepPages NoneF/없음: ""
*SepPages Copies/Between Copies: "<< /SlipSheet 3 >> setpagedevice"
*de.SepPages Copies/Zwischen Kopien: ""
*es.SepPages Copies/Entre copias: ""
*fr.SepPages Copies/Entre les Copies: ""
*it.SepPages Copies/Tra copie: ""
*ja.SepPages Copies/部の間: ""
*pt.SepPages Copies/Entre Cópias: ""
*zh_CN.SepPages Copies/副本之间: ""
*zh_TW.SepPages Copies/在列印副本之間: ""
*ko.SepPages Copies/인쇄 사이: ""
*SepPages Jobs/Between Jobs: "<< /SlipSheet 2 >> setpagedevice"
*de.SepPages Jobs/Zwischen Aufträgen: ""
*es.SepPages Jobs/Entre trabajos: ""
*fr.SepPages Jobs/Entre les Documents: ""
*it.SepPages Jobs/Tra processi: ""
*ja.SepPages Jobs/ジョブの間: ""
*pt.SepPages Jobs/Entre Trabalhos: ""
*zh_CN.SepPages Jobs/任务之间: ""
*zh_TW.SepPages Jobs/介於工作之間: ""
*ko.SepPages Jobs/작업 사이: ""
*SepPages Pages/Between Pages: "<< /SlipSheet 4 >> setpagedevice"
*de.SepPages Pages/Zwischen Seiten: ""
*es.SepPages Pages/Entre páginas: ""
*fr.SepPages Pages/Entre les Pages: ""
*it.SepPages Pages/Tra pagine: ""
*ja.SepPages Pages/ページの間: ""
*pt.SepPages Pages/Entre Páginas: ""
*zh_CN.SepPages Pages/页之间: ""
*zh_TW.SepPages Pages/介於頁面之間: ""
*ko.SepPages Pages/페이지 사이: ""
*?SepPages: "
gsave
currentpagedevice /SlipSheet get
dup dup
4 eq {(Pages)}{
3 eq {(Copies)}{
2 eq {(Jobs)}
{(NoneF)}ifelse
}ifelse
}ifelse
= flush
grestore"
*End
*CloseUI: *SepPages
*%*****************************************************************************
*% Separator Source
*%*****************************************************************************
*OpenUI *SepSource/Separator Source: PickOne
*de.Translation SepSource/Trennseitenzufuhr: ""
*es.Translation SepSource/Fuente de separadores: ""
*fr.Translation SepSource/Alimentation Séparateur: ""
*it.Translation SepSource/Origine separatore: ""
*ja.Translation SepSource/区切りページ源: ""
*pt.Translation SepSource/Origem do Separador: ""
*zh_CN.Translation SepSource/分隔纸源: ""
*zh_TW.Translation SepSource/分隔頁來源: ""
*ko.Translation SepSource/자원 분리기: ""
*OrderDependency: 52 AnySetup *SepSource
*DefaultSepSource: PrinterS
*SepSource PrinterS/Printer Setting: ""
*de.SepSource PrinterS/Druckereinstellung: ""
*es.SepSource PrinterS/Valor de la impresora: ""
*fr.SepSource PrinterS/Paramètres de l'imprimante: ""
*it.SepSource PrinterS/Impostazione stampante: ""
*ja.SepSource PrinterS/プリンタ設定: ""
*pt.SepSource PrinterS/Padrao da Impressora: ""
*zh_CN.SepSource PrinterS/打印机设置: ""
*zh_TW.SepSource PrinterS/印表機設置: ""
*ko.SepSource PrinterS/프린터 설정 : ""
*SepSource Tray1/Tray 1: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 0 >> >> setpagedevice"
*de.SepSource Tray1/Fach 1: ""
*es.SepSource Tray1/Bandeja 1: ""
*fr.SepSource Tray1/Tiroir 1: ""
*it.SepSource Tray1/Vassoio 1: ""
*ja.SepSource Tray1/カセット 1: ""
*pt.SepSource Tray1/Bandeja 1: ""
*zh_CN.SepSource Tray1/进纸匣 1: ""
*zh_TW.SepSource Tray1/裝紙匣 1: ""
*ko.SepSource Tray1/트레이 1: ""
*SepSource Tray2/Tray 2: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 1 >> >> setpagedevice"
*de.SepSource Tray2/Fach 2: ""
*es.SepSource Tray2/Bandeja 2: ""
*fr.SepSource Tray2/Tiroir 2: ""
*it.SepSource Tray2/Vassoio 2: ""
*ja.SepSource Tray2/カセット 2: ""
*pt.SepSource Tray2/Bandeja 2: ""
*zh_CN.SepSource Tray2/进纸匣 2: ""
*zh_TW.SepSource Tray2/裝紙匣 2: ""
*ko.SepSource Tray2/트레이 2: ""
*?SepSource: "
gsave
currentpagedevice /SlipSheetDetails get /SlipSheetSource get
dup
1 eq {(Tray2)}{
0 eq {(Tray1)}{(PrinterS)}
ifelse}
ifelse
= flush
grestore"
*End
*CloseUI: *SepSource
*CloseGroup: Finishing
*%******************************************************************************
*% Job Routing Group
*%******************************************************************************
*%******************************************************************************
*% Landscape Orientation
*%******************************************************************************
*LandscapeOrientation: Minus90
*%******************************************************************************
*% Page Definitions
*%******************************************************************************
*%******************************************************************************
*% Page Size
*%******************************************************************************
*OpenUI *PageSize/Page Size: PickOne
*de.Translation PageSize/Page Size: ""
*es.Translation PageSize/Page Size: ""
*fr.Translation PageSize/Page Size: ""
*it.Translation PageSize/Page Size: ""
*ja.Translation PageSize/Page Size: ""
*pt.Translation PageSize/Page Size: ""
*zh_CN.Translation PageSize/Page Size: ""
*zh_TW.Translation PageSize/Page Size: ""
*ko.Translation PageSize/Page Size: ""
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Letter/Letter: ""
*es.PageSize Letter/Carta: ""
*fr.PageSize Letter/Lettre US: ""
*it.PageSize Letter/Letter: ""
*ja.PageSize Letter/レター: ""
*pt.PageSize Letter/Carta: ""
*zh_CN.PageSize Letter/信纸: ""
*zh_TW.PageSize Letter/Letter: ""
*ko.PageSize Letter/레터: ""
*PageSize Legal/Legal: "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Legal/Legal: ""
*es.PageSize Legal/Oficio: ""
*fr.PageSize Legal/Légal US: ""
*it.PageSize Legal/Legal: ""
*ja.PageSize Legal/リーガル: ""
*pt.PageSize Legal/Oficio: ""
*zh_CN.PageSize Legal/标准法律用纸: ""
*zh_TW.PageSize Legal/Legal: ""
*ko.PageSize Legal/리갈: ""
*PageSize B5/JIS B5: "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*de.PageSize B5/JIS B5: ""
*es.PageSize B5/JIS B5: ""
*fr.PageSize B5/JIS B5: ""
*it.PageSize B5/JIS B5: ""
*ja.PageSize B5/JIS B5: ""
*pt.PageSize B5/JIS B5: ""
*zh_CN.PageSize B5/JIS B5: ""
*zh_TW.PageSize B5/JIS B5: ""
*ko.PageSize B5/JIS B5: ""
*PageSize A4/A4: "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize A4/A4: ""
*es.PageSize A4/A4: ""
*fr.PageSize A4/A4: ""
*it.PageSize A4/A4: ""
*ja.PageSize A4/A4: ""
*pt.PageSize A4/A4: ""
*zh_CN.PageSize A4/A4: ""
*zh_TW.PageSize A4/A4: ""
*ko.PageSize A4/A4: ""
*PageSize Executive/Executive: "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Executive/Executive: ""
*es.PageSize Executive/Ejecutivo: ""
*fr.PageSize Executive/Exécutive US: ""
*it.PageSize Executive/Executive: ""
*ja.PageSize Executive/Executive: ""
*pt.PageSize Executive/Executivo: ""
*zh_CN.PageSize Executive/实用纸张: ""
*zh_TW.PageSize Executive/Executive: ""
*ko.PageSize Executive/Executive: ""
*PageSize A5/A5: "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize A5/A5: ""
*es.PageSize A5/A5: ""
*fr.PageSize A5/A5: ""
*it.PageSize A5/A5: ""
*ja.PageSize A5/A5: ""
*pt.PageSize A5/A5: ""
*zh_CN.PageSize A5/A5: ""
*zh_TW.PageSize A5/A5: ""
*ko.PageSize A5/A5: ""
*PageSize Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Folio/Folio: ""
*es.PageSize Folio/Folio: ""
*fr.PageSize Folio/Folio: ""
*it.PageSize Folio/Folio: ""
*ja.PageSize Folio/フォリオ: ""
*pt.PageSize Folio/Oficio 2: ""
*zh_CN.PageSize Folio/对开纸: ""
*zh_TW.PageSize Folio/Folio 紙張: ""
*ko.PageSize Folio/폴리오: ""
*PageSize Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*de.PageSize Statement/Statement: ""
*es.PageSize Statement/Media carta: ""
*fr.PageSize Statement/Statement US: ""
*it.PageSize Statement/Statement: ""
*ja.PageSize Statement/ステートメント: ""
*pt.PageSize Statement/Declaração: ""
*zh_CN.PageSize Statement/报表: ""
*zh_TW.PageSize Statement/Statement 紙張: ""
*ko.PageSize Statement/Statement: ""
*PageSize Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize Monarch/7 3/4 Briefumschlag: ""
*es.PageSize Monarch/Sobres 7 3/4: ""
*fr.PageSize Monarch/Enveloppe 7 3/4: ""
*it.PageSize Monarch/Busta 7 3/4: ""
*ja.PageSize Monarch/封筒(7 3/4): ""
*pt.PageSize Monarch/Envelope 7 3/4: ""
*zh_CN.PageSize Monarch/7 3/4 信封: ""
*zh_TW.PageSize Monarch/7 3/4 信封: ""
*ko.PageSize Monarch/7 3/4 봉투: ""
*PageSize C4/9 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null /ManualFeed true >> setpagedevice"
*End
*de.PageSize C4/C9 Briefumschlag: ""
*es.PageSize C4/Sobres 9: ""
*fr.PageSize C4/Enveloppe C9: ""
*it.PageSize C4/Busta 9: ""
*ja.PageSize C4/封筒(C9号): ""
*pt.PageSize C4/Envelope C9: ""
*zh_CN.PageSize C4/C9 信封: ""
*zh_TW.PageSize C4/C9 號信封: ""
*ko.PageSize C4/C9 봉투: ""
*PageSize Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize Comm10/C10 Briefumschlag: ""
*es.PageSize Comm10/Sobres 10: ""
*fr.PageSize Comm10/Enveloppe C10: ""
*it.PageSize Comm10/Busta 10: ""
*ja.PageSize Comm10/封筒(C10号): ""
*pt.PageSize Comm10/Envelope C10: ""
*zh_CN.PageSize Comm10/C10 信封: ""
*zh_TW.PageSize Comm10/C10 號信封: ""
*ko.PageSize Comm10/C10 봉투: ""
*PageSize DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize DL/DL Briefumschlag: ""
*es.PageSize DL/Sobres DL: ""
*fr.PageSize DL/Enveloppe DL: ""
*it.PageSize DL/Busta DL: ""
*ja.PageSize DL/封筒(DL): ""
*pt.PageSize DL/Envelope DL: ""
*zh_CN.PageSize DL/DL 信封: ""
*zh_TW.PageSize DL/DL 信封: ""
*ko.PageSize DL/DL 봉투: ""
*PageSize C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize C5/C5 Briefumschlag: ""
*es.PageSize C5/Sobres C5: ""
*fr.PageSize C5/Enveloppe C5: ""
*it.PageSize C5/Busta C5: ""
*ja.PageSize C5/封筒(C5号): ""
*pt.PageSize C5/Envelope C5: ""
*zh_CN.PageSize C5/C5 信封: ""
*zh_TW.PageSize C5/C5 信封: ""
*ko.PageSize C5/C5 봉투: ""
*PageSize ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize ISOB5/B5 Briefumschlag: ""
*es.PageSize ISOB5/Sobres B5: ""
*fr.PageSize ISOB5/Enveloppe B5: ""
*it.PageSize ISOB5/Busta B5: ""
*ja.PageSize ISOB5/封筒(B5号): ""
*pt.PageSize ISOB5/Envelope B5: ""
*zh_CN.PageSize ISOB5/B5 信封: ""
*zh_TW.PageSize ISOB5/B5 信封: ""
*ko.PageSize ISOB5/B5 봉투: ""
*PageSize OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [612 996] /ImagingBBox null /ManualFeed true >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageSize OthEnv/Anderer Briefumschlag: ""
*es.PageSize OthEnv/Otro Sobre: ""
*fr.PageSize OthEnv/Autre Enveloppe: ""
*it.PageSize OthEnv/Altre buste: ""
*ja.PageSize OthEnv/その他: ""
*pt.PageSize OthEnv/Outros Envelopes: ""
*zh_CN.PageSize OthEnv/其他信封: ""
*zh_TW.PageSize OthEnv/其它信封: ""
*ko.PageSize OthEnv/기타 봉투: ""
*?PageSize: "
gsave
16 dict
dup /540 (Monarch) put
dup /595 (A5) put
dup /612 (Statement) put
dup /624 (DL) put
dup /639 (C4) put
dup /649 (C5) put
dup /684 (Comm10) put
dup /708 (ISOB5) put
dup /729 (B5) put
dup /756 (Executive) put
dup /792 (Letter) put
dup /842 (A4) put
dup /936 (Folio) put
dup /996 (OthEnv) put
dup /1008 (Legal) put
currentpagedevice /PageSize get 1 get
5 string cvs cvn get
= flush
grestore"
*End
*CloseUI: *PageSize
*%*****************************************************************************
*% Page Region
*%*****************************************************************************
*OpenUI *PageRegion/Page Region: PickOne
*de.Translation PageRegion/Page Region: ""
*es.Translation PageRegion/Page Region: ""
*fr.Translation PageRegion/Page Region: ""
*it.Translation PageRegion/Page Region: ""
*ja.Translation PageRegion/Page Region: ""
*pt.Translation PageRegion/Page Region: ""
*zh_CN.Translation PageRegion/Page Region: ""
*zh_TW.Translation PageRegion/Page Region: ""
*ko.Translation PageRegion/Page Region: ""
*OrderDependency: 35 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "
<</Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Letter/Letter: ""
*es.PageRegion Letter/Carta: ""
*fr.PageRegion Letter/Lettre US: ""
*it.PageRegion Letter/Letter: ""
*ja.PageRegion Letter/レター: ""
*pt.PageRegion Letter/Carta: ""
*zh_CN.PageRegion Letter/信纸: ""
*zh_TW.PageRegion Letter/Letter: ""
*ko.PageRegion Letter/레터: ""
*PageRegion Legal/Legal: "
<</Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Legal/Legal: ""
*es.PageRegion Legal/Oficio: ""
*fr.PageRegion Legal/Légal US: ""
*it.PageRegion Legal/Legal: ""
*ja.PageRegion Legal/リーガル: ""
*pt.PageRegion Legal/Oficio: ""
*zh_CN.PageRegion Legal/标准法律用纸: ""
*zh_TW.PageRegion Legal/Legal: ""
*ko.PageRegion Legal/리갈: ""
*PageRegion B5/JIS B5: "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*de.PageRegion B5/JIS B5: ""
*es.PageRegion B5/JIS B5: ""
*fr.PageRegion B5/JIS B5: ""
*it.PageRegion B5/JIS B5: ""
*ja.PageRegion B5/JIS B5: ""
*pt.PageRegion B5/JIS B5: ""
*zh_CN.PageRegion B5/JIS B5: ""
*zh_TW.PageRegion B5/JIS B5: ""
*ko.PageRegion B5/JIS B5: ""
*PageRegion A4/A4: "
<</Policies <</PageSize 2>> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion A4/A4: ""
*es.PageRegion A4/A4: ""
*fr.PageRegion A4/A4: ""
*it.PageRegion A4/A4: ""
*ja.PageRegion A4/A4: ""
*pt.PageRegion A4/A4: ""
*zh_CN.PageRegion A4/A4: ""
*zh_TW.PageRegion A4/A4: ""
*ko.PageRegion A4/A4: ""
*PageRegion Executive/Executive: "
<</Policies <</PageSize 2>> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Executive/Executive: ""
*es.PageRegion Executive/Ejecutivo: ""
*fr.PageRegion Executive/Exécutive US: ""
*it.PageRegion Executive/Executive: ""
*ja.PageRegion Executive/Executive: ""
*pt.PageRegion Executive/Executivo: ""
*zh_CN.PageRegion Executive/实用纸张: ""
*zh_TW.PageRegion Executive/Executive: ""
*ko.PageRegion Executive/Executive: ""
*PageRegion A5/A5: "
<</Policies <</PageSize 2>> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion A5/A5: ""
*es.PageRegion A5/A5: ""
*fr.PageRegion A5/A5: ""
*it.PageRegion A5/A5: ""
*ja.PageRegion A5/A5: ""
*pt.PageRegion A5/A5: ""
*zh_CN.PageRegion A5/A5: ""
*zh_TW.PageRegion A5/A5: ""
*ko.PageRegion A5/A5: ""
*PageRegion Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Folio/Folio: ""
*es.PageRegion Folio/Folio: ""
*fr.PageRegion Folio/Folio: ""
*it.PageRegion Folio/Folio: ""
*ja.PageRegion Folio/フォリオ: ""
*pt.PageRegion Folio/Oficio 2: ""
*zh_CN.PageRegion Folio/对开纸: ""
*zh_TW.PageRegion Folio/Folio 紙張: ""
*ko.PageRegion Folio/폴리오: ""
*PageRegion Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion Statement/Statement: ""
*es.PageRegion Statement/Media carta: ""
*fr.PageRegion Statement/Statement US: ""
*it.PageRegion Statement/Statement: ""
*ja.PageRegion Statement/ステートメント: ""
*pt.PageRegion Statement/Declaração: ""
*zh_CN.PageRegion Statement/报表: ""
*zh_TW.PageRegion Statement/Statement 紙張: ""
*ko.PageRegion Statement/Statement: ""
*PageRegion Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion Monarch/7 3/4 Briefumschlag: ""
*es.PageRegion Monarch/Sobres 7 3/4: ""
*fr.PageRegion Monarch/Enveloppe 7 3/4: ""
*it.PageRegion Monarch/Busta 7 3/4: ""
*ja.PageRegion Monarch/封筒(7 3/4): ""
*pt.PageRegion Monarch/Envelope 7 3/4: ""
*zh_CN.PageRegion Monarch/7 3/4 信封: ""
*zh_TW.PageRegion Monarch/7 3/4 信封: ""
*ko.PageRegion Monarch/7 3/4 봉투: ""
*PageRegion C4/9 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*de.PageRegion C4/C9 Briefumschlag: ""
*es.PageRegion C4/Sobres 9: ""
*fr.PageRegion C4/Enveloppe C9: ""
*it.PageRegion C4/Busta 9: ""
*ja.PageRegion C4/封筒(C9号): ""
*pt.PageRegion C4/Envelope C9: ""
*zh_CN.PageRegion C4/C9 信封: ""
*zh_TW.PageRegion C4/C9 號信封: ""
*ko.PageRegion C4/C9 봉투: ""
*PageRegion Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion Comm10/C10 Briefumschlag: ""
*es.PageRegion Comm10/Sobres 10: ""
*fr.PageRegion Comm10/Enveloppe C10: ""
*it.PageRegion Comm10/Busta 10: ""
*ja.PageRegion Comm10/封筒(C10号): ""
*pt.PageRegion Comm10/Envelope C10: ""
*zh_CN.PageRegion Comm10/C10 信封: ""
*zh_TW.PageRegion Comm10/C10 號信封: ""
*ko.PageRegion Comm10/C10 봉투: ""
*PageRegion DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion DL/DL Briefumschlag: ""
*es.PageRegion DL/Sobres DL: ""
*fr.PageRegion DL/Enveloppe DL: ""
*it.PageRegion DL/Busta DL: ""
*ja.PageRegion DL/封筒(DL): ""
*pt.PageRegion DL/Envelope DL: ""
*zh_CN.PageRegion DL/DL 信封: ""
*zh_TW.PageRegion DL/DL 信封: ""
*ko.PageRegion DL/DL 봉투: ""
*PageRegion C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion C5/C5 Briefumschlag: ""
*es.PageRegion C5/Sobres C5: ""
*fr.PageRegion C5/Enveloppe C5: ""
*it.PageRegion C5/Busta C5: ""
*ja.PageRegion C5/封筒(C5号): ""
*pt.PageRegion C5/Envelope C5: ""
*zh_CN.PageRegion C5/C5 信封: ""
*zh_TW.PageRegion C5/C5 信封: ""
*ko.PageRegion C5/C5 봉투: ""
*PageRegion ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion ISOB5/B5 Briefumschlag: ""
*es.PageRegion ISOB5/Sobres B5: ""
*fr.PageRegion ISOB5/Enveloppe B5: ""
*it.PageRegion ISOB5/Busta B5: ""
*ja.PageRegion ISOB5/封筒(B5号): ""
*pt.PageRegion ISOB5/Envelope B5: ""
*zh_CN.PageRegion ISOB5/B5 信封: ""
*zh_TW.PageRegion ISOB5/B5 信封: ""
*ko.PageRegion ISOB5/B5 봉투: ""
*PageRegion OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [612 996] /ImagingBBox null >> setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.PageRegion OthEnv/Anderer Briefumschlag: ""
*es.PageRegion OthEnv/Otro Sobre: ""
*fr.PageRegion OthEnv/Autre Enveloppe: ""
*it.PageRegion OthEnv/Altre buste: ""
*ja.PageRegion OthEnv/その他: ""
*pt.PageRegion OthEnv/Outros Envelopes: ""
*zh_CN.PageRegion OthEnv/其他信封: ""
*zh_TW.PageRegion OthEnv/其它信封: ""
*ko.PageRegion OthEnv/기타 봉투: ""
*?PageRegion: "
gsave
16 dict
dup /540 (Monarch) put
dup /595 (A5) put
dup /612 (Statement) put
dup /624 (DL) put
dup /639 (C4) put
dup /649 (C5) put
dup /684 (Comm10) put
dup /708 (ISOB5) put
dup /729 (B5) put
dup /756 (Executive) put
dup /792 (Letter) put
dup /842 (A4) put
dup /936 (Folio) put
dup /996 (OthEnv) put
dup /1008 (Legal) put
currentpagedevice /PageSize get 1 get
5 string cvs cvn get
= flush
grestore"
*End
*CloseUI: *PageRegion
*%*****************************************************************************
*% ImageableArea
*%*****************************************************************************
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12 12 600 780"
*de.ImageableArea Letter/Letter: ""
*es.ImageableArea Letter/Carta: ""
*fr.ImageableArea Letter/Lettre US: ""
*it.ImageableArea Letter/Letter: ""
*ja.ImageableArea Letter/レター: ""
*pt.ImageableArea Letter/Carta: ""
*zh_CN.ImageableArea Letter/信纸: ""
*zh_TW.ImageableArea Letter/Letter: ""
*ko.ImageableArea Letter/레터: ""
*ImageableArea Legal/Legal: "12 12 600 996"
*de.ImageableArea Legal/Legal: ""
*es.ImageableArea Legal/Oficio: ""
*fr.ImageableArea Legal/Légal US: ""
*it.ImageableArea Legal/Legal: ""
*ja.ImageableArea Legal/リーガル: ""
*pt.ImageableArea Legal/Oficio: ""
*zh_CN.ImageableArea Legal/标准法律用纸: ""
*zh_TW.ImageableArea Legal/Legal: ""
*ko.ImageableArea Legal/리갈: ""
*ImageableArea B5/JIS B5: "12 12 506 716"
*de.ImageableArea B5/JIS B5: ""
*es.ImageableArea B5/JIS B5: ""
*fr.ImageableArea B5/JIS B5: ""
*it.ImageableArea B5/JIS B5: ""
*ja.ImageableArea B5/JIS B5: ""
*pt.ImageableArea B5/JIS B5: ""
*zh_CN.ImageableArea B5/JIS B5: ""
*zh_TW.ImageableArea B5/JIS B5: ""
*ko.ImageableArea B5/JIS B5: ""
*ImageableArea A4/A4: "10 12 589 830"
*de.ImageableArea A4/A4: ""
*es.ImageableArea A4/A4: ""
*fr.ImageableArea A4/A4: ""
*it.ImageableArea A4/A4: ""
*ja.ImageableArea A4/A4: ""
*pt.ImageableArea A4/A4: ""
*zh_CN.ImageableArea A4/A4: ""
*zh_TW.ImageableArea A4/A4: ""
*ko.ImageableArea A4/A4: ""
*ImageableArea Executive/Executive: "12 12 510 744"
*de.ImageableArea Executive/Executive: ""
*es.ImageableArea Executive/Ejecutivo: ""
*fr.ImageableArea Executive/Exécutive US: ""
*it.ImageableArea Executive/Executive: ""
*ja.ImageableArea Executive/Executive: ""
*pt.ImageableArea Executive/Executivo: ""
*zh_CN.ImageableArea Executive/实用纸张: ""
*zh_TW.ImageableArea Executive/Executive: ""
*ko.ImageableArea Executive/Executive: ""
*ImageableArea A5/A5: "12 12 408 583"
*de.ImageableArea A5/A5: ""
*es.ImageableArea A5/A5: ""
*fr.ImageableArea A5/A5: ""
*it.ImageableArea A5/A5: ""
*ja.ImageableArea A5/A5: ""
*pt.ImageableArea A5/A5: ""
*zh_CN.ImageableArea A5/A5: ""
*zh_TW.ImageableArea A5/A5: ""
*ko.ImageableArea A5/A5: ""
*ImageableArea Folio/Folio: "12 12 600 924"
*de.ImageableArea Folio/Folio: ""
*es.ImageableArea Folio/Folio: ""
*fr.ImageableArea Folio/Folio: ""
*it.ImageableArea Folio/Folio: ""
*ja.ImageableArea Folio/フォリオ: ""
*pt.ImageableArea Folio/Oficio 2: ""
*zh_CN.ImageableArea Folio/对开纸: ""
*zh_TW.ImageableArea Folio/Folio 紙張: ""
*ko.ImageableArea Folio/폴리오: ""
*ImageableArea Statement/Statement: "12 12 384 600"
*de.ImageableArea Statement/Statement: ""
*es.ImageableArea Statement/Media carta: ""
*fr.ImageableArea Statement/Statement US: ""
*it.ImageableArea Statement/Statement: ""
*ja.ImageableArea Statement/ステートメント: ""
*pt.ImageableArea Statement/Declaração: ""
*zh_CN.ImageableArea Statement/报表: ""
*zh_TW.ImageableArea Statement/Statement 紙張: ""
*ko.ImageableArea Statement/Statement: ""
*ImageableArea Monarch/7 3/4 Envelope: "12 12 279 528"
*de.ImageableArea Monarch/7 3/4 Briefumschlag: ""
*es.ImageableArea Monarch/Sobres 7 3/4: ""
*fr.ImageableArea Monarch/Enveloppe 7 3/4: ""
*it.ImageableArea Monarch/Busta 7 3/4: ""
*ja.ImageableArea Monarch/封筒(7 3/4): ""
*pt.ImageableArea Monarch/Envelope 7 3/4: ""
*zh_CN.ImageableArea Monarch/7 3/4 信封: ""
*zh_TW.ImageableArea Monarch/7 3/4 信封: ""
*ko.ImageableArea Monarch/7 3/4 봉투: ""
*ImageableArea C4/9 Envelope: "12 12 279 627"
*de.ImageableArea C4/C9 Briefumschlag: ""
*es.ImageableArea C4/Sobres 9: ""
*fr.ImageableArea C4/Enveloppe C9: ""
*it.ImageableArea C4/Busta 9: ""
*ja.ImageableArea C4/封筒(C9号): ""
*pt.ImageableArea C4/Envelope C9: ""
*zh_CN.ImageableArea C4/C9 信封: ""
*zh_TW.ImageableArea C4/C9 號信封: ""
*ko.ImageableArea C4/C9 봉투: ""
*ImageableArea Comm10/10 Envelope: "12 12 294 672"
*de.ImageableArea Comm10/C10 Briefumschlag: ""
*es.ImageableArea Comm10/Sobres 10: ""
*fr.ImageableArea Comm10/Enveloppe C10: ""
*it.ImageableArea Comm10/Busta 10: ""
*ja.ImageableArea Comm10/封筒(C10号): ""
*pt.ImageableArea Comm10/Envelope C10: ""
*zh_CN.ImageableArea Comm10/C10 信封: ""
*zh_TW.ImageableArea Comm10/C10 號信封: ""
*ko.ImageableArea Comm10/C10 봉투: ""
*ImageableArea DL/DL Envelope: "12 12 310 612"
*de.ImageableArea DL/DL Briefumschlag: ""
*es.ImageableArea DL/Sobres DL: ""
*fr.ImageableArea DL/Enveloppe DL: ""
*it.ImageableArea DL/Busta DL: ""
*ja.ImageableArea DL/封筒(DL): ""
*pt.ImageableArea DL/Envelope DL: ""
*zh_CN.ImageableArea DL/DL 信封: ""
*zh_TW.ImageableArea DL/DL 信封: ""
*ko.ImageableArea DL/DL 봉투: ""
*ImageableArea C5/C5 Envelope: "12 12 456 637"
*de.ImageableArea C5/C5 Briefumschlag: ""
*es.ImageableArea C5/Sobres C5: ""
*fr.ImageableArea C5/Enveloppe C5: ""
*it.ImageableArea C5/Busta C5: ""
*ja.ImageableArea C5/封筒(C5号): ""
*pt.ImageableArea C5/Envelope C5: ""
*zh_CN.ImageableArea C5/C5 信封: ""
*zh_TW.ImageableArea C5/C5 信封: ""
*ko.ImageableArea C5/C5 봉투: ""
*ImageableArea ISOB5/B5 Envelope: "12 12 498 696"
*de.ImageableArea ISOB5/B5 Briefumschlag: ""
*es.ImageableArea ISOB5/Sobres B5: ""
*fr.ImageableArea ISOB5/Enveloppe B5: ""
*it.ImageableArea ISOB5/Busta B5: ""
*ja.ImageableArea ISOB5/封筒(B5号): ""
*pt.ImageableArea ISOB5/Envelope B5: ""
*zh_CN.ImageableArea ISOB5/B5 信封: ""
*zh_TW.ImageableArea ISOB5/B5 信封: ""
*ko.ImageableArea ISOB5/B5 봉투: ""
*ImageableArea OthEnv/Other Envelope: "12 12 600 984"
*de.ImageableArea OthEnv/Anderer Briefumschlag: ""
*es.ImageableArea OthEnv/Otro Sobre: ""
*fr.ImageableArea OthEnv/Autre Enveloppe: ""
*it.ImageableArea OthEnv/Altre buste: ""
*ja.ImageableArea OthEnv/その他: ""
*pt.ImageableArea OthEnv/Outros Envelopes: ""
*zh_CN.ImageableArea OthEnv/其他信封: ""
*zh_TW.ImageableArea OthEnv/其它信封: ""
*ko.ImageableArea OthEnv/기타 봉투: ""
*%*****************************************************************************
*% Paper Dimensions
*%*****************************************************************************
*DefaultPaperDimension: Letter
*PaperDimension Letter: "612 792"
*PaperDimension Legal: "612 1008"
*PaperDimension B5: "516.24 728.64"
*PaperDimension A4: "595.44 842.4"
*PaperDimension Executive: "522 756"
*PaperDimension A5: "419.76 595.44"
*PaperDimension Folio: "612 936"
*PaperDimension Statement: "396 612"
*PaperDimension Monarch: "279 540"
*PaperDimension C4: "279 639"
*PaperDimension Comm10: "297 684"
*PaperDimension DL: "311.76 623.52"
*PaperDimension C5: "459.36 649.44"
*PaperDimension ISOB5: "498.96 708.48"
*PaperDimension OthEnv: "612 996"
*%******************************************************************************
*% CustomPageSize
*%******************************************************************************
*CustomPageSize True: "
pop pop pop
statusdict begin
2 copy
currentpagedevice /UniversalDetails get /Orientation get () setuniversalsize
end
<< /PageSize [5 -2 roll]
/ImagingBBox null
/Policies <</PageSize 2>>
>> setpagedevice"
*End
*de.CustomPageSize True: ""
*es.CustomPageSize True: ""
*fr.CustomPageSize True: ""
*it.CustomPageSize True: ""
*ja.CustomPageSize True: ""
*pt.CustomPageSize True: ""
*zh_CN.CustomPageSize True: ""
*zh_TW.CustomPageSize True: ""
*ko.CustomPageSize True: ""
*MaxMediaWidth: "612"
*MaxMediaHeight: "1021"
*HWMargins: 12 12 12 12
*ParamCustomPageSize Width: 1 points 216 612
*ParamCustomPageSize Height: 2 points 216 1021
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 1
*%******************************************************************************
*% Input/Paper Sources
*%******************************************************************************
*RequiresPageRegion All: True
*OpenUI *InputSlot/Feeder: PickOne
*de.Translation InputSlot/Autom. Briefumschlag: ""
*es.Translation InputSlot/Alimentador de Sobres: ""
*fr.Translation InputSlot/Alimentation Enveloppe: ""
*it.Translation InputSlot/Busta automatico: ""
*ja.Translation InputSlot/フィーダ: ""
*pt.Translation InputSlot/Alimentador de Envelopes: ""
*zh_CN.Translation InputSlot/进纸器: ""
*zh_TW.Translation InputSlot/送紙器: ""
*ko.Translation InputSlot/급지장치: ""
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Tray 1: "
1 dict dup /MediaPosition null put setpagedevice
currentpagedevice /InputAttributes get 0 get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [0] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*de.InputSlot Tray1/Fach 1: ""
*es.InputSlot Tray1/Bandeja 1: ""
*fr.InputSlot Tray1/Tiroir 1: ""
*it.InputSlot Tray1/Vassoio 1: ""
*ja.InputSlot Tray1/カセット 1: ""
*pt.InputSlot Tray1/Bandeja 1: ""
*zh_CN.InputSlot Tray1/进纸匣 1: ""
*zh_TW.InputSlot Tray1/裝紙匣 1: ""
*ko.InputSlot Tray1/트레이 1: ""
*InputSlot Tray2/Tray 2: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 1 known { 1 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*de.InputSlot Tray2/Fach 2: ""
*es.InputSlot Tray2/Bandeja 2: ""
*fr.InputSlot Tray2/Tiroir 2: ""
*it.InputSlot Tray2/Vassoio 2: ""
*ja.InputSlot Tray2/カセット 2: ""
*pt.InputSlot Tray2/Bandeja 2: ""
*zh_CN.InputSlot Tray2/进纸匣 2: ""
*zh_TW.InputSlot Tray2/裝紙匣 2: ""
*ko.InputSlot Tray2/트레이 2: ""
*InputSlot ManualPaper/Manual Paper: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice"
*End
*de.InputSlot ManualPaper/Papier manuell: ""
*es.InputSlot ManualPaper/Papel manual: ""
*fr.InputSlot ManualPaper/Manuel papier: ""
*it.InputSlot ManualPaper/Carta manuale: ""
*ja.InputSlot ManualPaper/手差し用紙: ""
*pt.InputSlot ManualPaper/Papel Manual: ""
*zh_CN.InputSlot ManualPaper/手动纸张: ""
*zh_TW.InputSlot ManualPaper/手動送紙: ""
*ko.InputSlot ManualPaper/수동 용지: ""
*InputSlot ManualEnv/Manual Envelope: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*End
*de.InputSlot ManualEnv/Briefumschlag manuell: ""
*es.InputSlot ManualEnv/Sobre manual: ""
*fr.InputSlot ManualEnv/Enveloppe Manuel: ""
*it.InputSlot ManualEnv/Busta Manuale: ""
*ja.InputSlot ManualEnv/手差し封筒: ""
*pt.InputSlot ManualEnv/Envelope Manual: ""
*zh_CN.InputSlot ManualEnv/手动信封: ""
*zh_TW.InputSlot ManualEnv/手動信封: ""
*ko.InputSlot ManualEnv/수동 봉투: ""
*?InputSlot: "
gsave
[(Tray1) (Tray2) (ManualPaper) (ManualEnv)]
statusdict /papertray get exec {get exec} stopped {pop pop (Unknown)}
if
= flush
grestore"
*End
*CloseUI: *InputSlot
*%******************************************************************************
*% Fonts
*%******************************************************************************
*?FontList: "
save
2 dict begin
/sv exch def
/str 128 string def
FontDirectory { pop == } bind forall flush
/filenameforall where
{ pop save (fonts/*)
{ dup length 6 sub 6 exch getinterval cvn == } bind
str filenameforall flush restore
} if
(*) = flush
sv
end
restore"
*End
*%*****************************************************************************
*% Printer Messages (verbatim from printer)
*%*****************************************************************************
*Message: "%% exitserver: permanent state may be changed %%"
*Message: "%% Flushing: rest of job (to end-of-file) will be ignored %%"
*Message: "\FontName\ not found, using Courier"
*% Status (format: %% status: <one of these> %% )
*Status: "Printer Busy"
*Status: "Warming Up"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "initializing"
*Status: "not ready"
*% Input Sources (format: %% status: <stat>; source: <one of these> %% )
*Source: "Serial"
*Source: "Parallel"
*Source: "Network"
*% Printer Error (format: %% PrinterError: <one of these> %%)
*PrinterError: "Paper Jam"
*PrinterError: "Wrong Paper Length"
*PrinterError: "Invalid Manual Insertion"
*PrinterError: "Change Size in Feeder"
*PrinterError: "Change Size in Tray 1"
*PrinterError: "Change Size in Tray 2"
*PrinterError: "Paper Out or Feed Failure - Feeder"
*PrinterError: "Paper Out or Feed Failure - Tray 1"
*PrinterError: "Paper Out or Feed Failure - Tray 2"
*PrinterError: "Cover Open/Cartridge Not Installed"
*PrinterError: "Complex Page"
*PrinterError: "Default Storage Error"
*PrinterError: "Defective Font Card Installed"
*PrinterError: "Flash Full"
*PrinterError: "ioerror"
*PrinterError: "Flash Error"
*PrinterError: "Scheduled Maintenance"
*PrinterError: "Toner Low"
*PrinterError: "Service Error"
*PrinterError: "Not Ready"
*%DeviceAdjustMatrix: " 1 0 0 1 0 0 "
*%******************************************************************************
*% Color Separation Information
*%******************************************************************************
*DefaultColorSep: ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: ProcessBlack/Process Black
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: CustomColor/Custom Color
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*InkName: ProcessYellow/Process Yellow
*% For 154 lpi / 600 dpi ===================================================
*ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*de.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*de.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "16.0"
*de.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "76.0"
*de.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "0.0"
*de.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*de.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: ""
*ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "150.0"
*de.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*es.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*fr.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*it.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ja.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*pt.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*ko.ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: ""
*% For 154 lpi / 1200 dpi ===================================================
*ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*de.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*de.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "16.0"
*de.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "76.0"
*de.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "0.0"
*de.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*de.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "150.0"
*de.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*es.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*fr.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*it.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ja.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*pt.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_CN.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*zh_TW.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*ko.ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: ""
*%*****************************************************************************
*% End of PPD
*%*****************************************************************************
|