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
|
*PPD-Adobe: "4.3"
*%=============================================================================
*%
*% PPD for Kyocera FS-7000 (French)
*% Linux Version
*%
*% Copyright (C) 2000 KYOCERA CORPORATION
*% Copyright (C) 2005 Revised Edition KYOCERA MITA CORPORATION
*%
*% Permission is hereby granted, free of charge, to any person obtaining
*% a copy of this software and associated documentation files (the
*% "Software"), to deal in the Software without restriction, including
*% without limitation the rights to use, copy, modify, merge, publish,
*% distribute, sublicense, and/or sell copies of the Software, and to
*% permit persons to whom the Software is furnished to do so, subject to
*% the following conditions:
*%
*% The above copyright notice and this permission notice shall be
*% included in all copies or substantial portions of the Software.
*%
*% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
*% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*% NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
*% LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
*% OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
*% WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*%
*% [this is the MIT open source license -- see www.opensource.org]
*%
*%=============================================================================
*FileVersion: "8.2"
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*PCFileName: "KC7000FR.PPD"
*LanguageVersion: French
*Product: "(FS-7000)"
*PSVersion: "(2014.108) 1"
*Manufacturer: "Kyocera"
*ModelName: "Kyocera FS-7000"
*ShortNickName: "Kyocera FS-7000"
*NickName: "Kyocera FS-7000"
*% Basic Device Capabilities
*LanguageLevel: "2"
*ColorDevice: False
*DefaultColorSpace: Gray
*TTRasterizer: Type42
*?TTRasterizer: "
save
42 /FontType resourcestatus
{ pop pop (Type42) }{ (None) } ifelse
= flush restore"
*End
*FreeVM: "2208000"
*Throughput: "28"
*% Extensions
*FileSystem: True
*?FileSystem: "
save
false
(%disk?%)
{currentdevparams dup /Writeable known
{/Writeable get {pop true} if}{pop} ifelse
} 100 string /IODevice resourceforall
{(True)}{(False)} ifelse
= flush restore "
*End
*% System Management
*SuggestedJobTimeout: "0"
*SuggestedManualFeedTimeout: "0"
*SuggestedWaitTimeout: "120"
*PrintPSErrors: True
*Password: "0"
*ExitServer: "
count 0 eq {true}
{dup statusdict /checkpassword get exec not} ifelse
{(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 { true }
{dup statusdict /checkpassword get exec not} ifelse
{(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
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*% Protocols
*Protocols: PJL TBCP
*1284Modes Parallel: Compat Nibble ECP
*1284DeviceID: "MFG:Kyocera;MODEL:Kyocera FS-7000;COMMAND SET: POSTSCRIPT,PJL,PCL"
*% JCL Information
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE=POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
*JCLOpenUI *JCLEconomode/EcoPrint: PickOne
*DefaultJCLEconomode: Off
*OrderDependency: 5 JCLSetup *JCLEconomode
*JCLEconomode Off/Inactif: "@PJL SET ECONOMODE=OFF<0A>"
*JCLEconomode On/Actif: "@PJL SET ECONOMODE=ON<0A>"
*JCLCloseUI: *JCLEconomode
*% Installable Options
*OpenGroup: InstallableOptions/Options Install<E9>e
*% Optional Feeders
*OpenUI *Option01/Unit<E9> dAlimentation Optionnelle: PickOne
*DefaultOption01: None
*Option01 None/Non Install<E9>: ""
*Option01 EF1/EF-1 Introucteur d'Enveloppes: ""
*Option01 UF1/UF-1 Introucteur Universal: ""
*CloseUI: *Option01
*% Paper Feeders
*OpenUI *Option13/Bacs Papier Optionnels: PickOne
*DefaultOption13: One
*Option13 None/Aucun: ""
*Option13 One/Un (2 Cassettes): ""
*Option13 Two/Deux (4 Cassettes): ""
*Option13 Three/Trois (6 Cassettes): ""
*?Option13: "
save
(None) currentpagedevice dup /InputAttributes known {
/InputAttributes get
dup 1 known {dup 1 get null ne {exch pop (One) exch} if} if
dup 5 known {dup 5 get null ne {exch pop (Two) exch} if} if
dup 7 known {dup 7 get null ne {exch pop (Three) exch} if} if
} if pop
= flush restore"
*End
*CloseUI: *Option13
*% Duplex Unit
*OpenUI *Option16/Unit<E9> Duplex: Boolean
*DefaultOption16: False
*Option16 False/Non Install<E9>: ""
*Option16 True/Install<E9>: ""
*?Option16: "
save
currentpagedevice /Duplex known {(True)}{(False)} ifelse
= flush restore"
*End
*CloseUI: *Option16
*% Output Device Options
*OpenUI *Option17/P<E9>riph<E9>rie de Sortie: PickOne
*DefaultOption17: None
*Option17 None/Non Install<E9>: ""
*Option17 SO30/Trieuse: ""
*Option17 ST30/Bac R<E9>ception: ""
*Option17 DF30/Option DF-30: ""
*?Option17: "
save
currentpagedevice dup /OutputAttributes known {
/OutputAttributes get
dup 1 known {
1 get dup null ne {
/OutputType get
dup (SORTER) eq { (SO30) } {
dup (STACKER) eq { (ST30) } {
dup (STAPLER) eq { (DF30) } {
(None)
} ifelse
} ifelse
} ifelse
}{(None)} ifelse
}{(None)} ifelse
exch pop
}{
pop (None)
} ifelse
= flush restore"
*End
*CloseUI: *Option17
*% Disk Drive
*OpenUI *Option18/Disque optionnel: PickOne
*DefaultOption18: None
*Option18 None/Aucun: ""
*Option18 HardDisk/Disque Dur: ""
*Option18 RAMDisk/Disque RAM: ""
*?Option18: "
save
false
(%disk?%)
{currentdevparams dup /Writeable known
{dup /Writeable get
{exch pop /LogicalSize get dup 0 gt exch 102400 lt eq true}{pop pop false} ifelse
}{pop pop} ifelse
} 100 string /IODevice resourceforall
{{(RAMDisk)}{(HardDisk)} ifelse}{(None)} ifelse
= flush restore"
*End
*CloseUI: *Option18
*% Installed Memory
*OpenUI *InstalledMemory/M<E9>moire: PickOne
*DefaultInstalledMemory: 4MB
*InstalledMemory 4MB/Norme: ""
*InstalledMemory 8MB/4MB Augmentation: ""
*InstalledMemory 12MB/8MB Augmentation: ""
*InstalledMemory 16MB/12MB Augmentation: ""
*InstalledMemory 20MB/16MB Augmentation: ""
*InstalledMemory 24MB/20MB Augmentation: ""
*InstalledMemory 28MB/24MB Augmentation: ""
*InstalledMemory 36MB/32MB Augmentation: ""
*InstalledMemory 40MB/36MB Augmentation: ""
*InstalledMemory 44MB/40MB Augmentation: ""
*InstalledMemory 52MB/48MB Augmentation: ""
*InstalledMemory 68MB/64MB Augmentation: ""
*?InstalledMemory: "
save
currentsystemparams dup
/RamSize known {
/RamSize get
524288 div ceiling cvi 2 div cvi
/vmsize 20 string def
vmsize cvs print
(MB) print (\n) print flush
}{
pop (Unknown) print flush
} ifelse
restore"
*End
*CloseUI: *InstalledMemory
*CloseGroup: InstallableOptions
*% Virtual Memory
*VMOption 4MB: "2208000"
*VMOption 8MB: "5568000"
*VMOption 12MB: "8928000"
*VMOption 16MB: "12288000"
*VMOption 20MB: "15648000"
*VMOption 24MB: "19008000"
*VMOption 28MB: "22368000"
*VMOption 36MB: "29088000"
*VMOption 40MB: "32448000"
*VMOption 44MB: "35808000"
*VMOption 52MB: "42528000"
*VMOption 68MB: "55968000"
*% Constraints
*UIConstraints: *Option01 None *InputSlot EF1
*UIConstraints: *InputSlot EF1 *Option01 None
*UIConstraints: *Option01 None *InputSlot UF1
*UIConstraints: *InputSlot UF1 *Option01 None
*UIConstraints: *Option01 EF1 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *Option01 EF1
*UIConstraints: *Option01 UF1 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *Option01 UF1
*UIConstraints: *Option13 One *InputSlot PF30C
*UIConstraints: *Option13 One *InputSlot PF30D
*UIConstraints: *Option13 One *InputSlot PF30E
*UIConstraints: *Option13 One *InputSlot PF30F
*UIConstraints: *Option13 Two *InputSlot PF30E
*UIConstraints: *Option13 Two *InputSlot PF30F
*UIConstraints: *InputSlot PF30A *Option13 None
*UIConstraints: *InputSlot PF30B *Option13 None
*UIConstraints: *InputSlot PF30C *Option13 None
*UIConstraints: *InputSlot PF30D *Option13 None
*UIConstraints: *InputSlot PF30E *Option13 None
*UIConstraints: *InputSlot PF30F *Option13 None
*UIConstraints: *InputSlot PF30C *Option13 One
*UIConstraints: *InputSlot PF30D *Option13 One
*UIConstraints: *InputSlot PF30E *Option13 One
*UIConstraints: *InputSlot PF30F *Option13 One
*UIConstraints: *InputSlot PF30E *Option13 Two
*UIConstraints: *InputSlot PF30F *Option13 Two
*UIConstraints: *Duplex *Option16 False
*UIConstraints: *Option16 False *Duplex DuplexTumble
*UIConstraints: *Option16 False *Duplex DuplexNoTumble
*UIConstraints: *InputSlot EF1 *Duplex
*UIConstraints: *Duplex *InputSlot EF1
*UIConstraints: *InputSlot UF1 *Duplex
*UIConstraints: *Duplex *InputSlot UF1
*NonUIConstraints: *InputSlot EF1 *CustomPageSize
*NonUIConstraints: *CustomPageSize *InputSlot EF1
*NonUIConstraints: *Duplex *CustomPageSize
*NonUIConstraints: *CustomPageSize *Duplex
*UIConstraints: *KCCollate *Option18 None
*UIConstraints: *Option18 None *KCCollate Temp0
*UIConstraints: *Option18 None *KCCollate Temp
*UIConstraints: *Option18 None *KCCollate Perm
*UIConstraints: *Option18 RAMDisk *KCCollate Perm
*UIConstraints: *KCCollate Perm *Option18 RAMDisk
*UIConstraints: *Option18 HardDisk *KCCollate Temp0
*UIConstraints: *KCCollate Temp0 *Option18 HardDisk
*UIConstraints: *Option18 RAMDisk *KCCollate Temp
*UIConstraints: *KCCollate Temp *Option18 RAMDisk
*UIConstraints: *KCBarcodeMode *Option18 RAMDisk
*UIConstraints: *Option18 RAMDisk *KCBarcodeMode First
*UIConstraints: *Option18 RAMDisk *KCBarcodeMode All
*UIConstraints: *Option18 None *KCCollate VMBAdmin
*UIConstraints: *Option18 None *KCCollate VMBUser01
*UIConstraints: *Option18 None *KCCollate VMBUser02
*UIConstraints: *Option18 None *KCCollate VMBUser03
*UIConstraints: *Option18 None *KCCollate VMBUser04
*UIConstraints: *Option18 None *KCCollate VMBUser05
*UIConstraints: *Option18 None *KCCollate VMBUser06
*UIConstraints: *Option18 None *KCCollate VMBUser07
*UIConstraints: *Option18 None *KCCollate VMBUser08
*UIConstraints: *Option18 None *KCCollate VMBUser09
*UIConstraints: *Option18 None *KCCollate VMBUser10
*UIConstraints: *Option18 RAMDisk *KCCollate VMBAdmin
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser01
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser02
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser03
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser04
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser05
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser06
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser07
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser08
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser09
*UIConstraints: *Option18 RAMDisk *KCCollate VMBUser10
*UIConstraints: *KCCollate VMBAdmin *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser01 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser02 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser03 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser04 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser05 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser06 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser07 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser08 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser09 *Option18 RAMDisk
*UIConstraints: *KCCollate VMBUser10 *Option18 RAMDisk
*UIConstraints: *KCBarcodeMode *KCCollate VMBAdmin
*UIConstraints: *KCCollate VMBAdmin *KCBarcodeMode First
*UIConstraints: *KCCollate VMBAdmin *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser01
*UIConstraints: *KCCollate VMBUser01 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser01 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser02
*UIConstraints: *KCCollate VMBUser02 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser02 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser03
*UIConstraints: *KCCollate VMBUser03 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser03 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser04
*UIConstraints: *KCCollate VMBUser04 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser04 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser05
*UIConstraints: *KCCollate VMBUser05 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser05 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser06
*UIConstraints: *KCCollate VMBUser06 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser06 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser07
*UIConstraints: *KCCollate VMBUser07 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser07 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser08
*UIConstraints: *KCCollate VMBUser08 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser08 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser09
*UIConstraints: *KCCollate VMBUser09 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser09 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate VMBUser10
*UIConstraints: *KCCollate VMBUser10 *KCBarcodeMode First
*UIConstraints: *KCCollate VMBUser10 *KCBarcodeMode All
*UIConstraints: *KCBarcodeMode *KCCollate None
*UIConstraints: *KCCollate None *KCBarcodeMode First
*UIConstraints: *KCCollate None *KCBarcodeMode All
*UIConstraints: *KCCollate *OutputBin FDSorter
*UIConstraints: *OutputBin FDSorter *KCCollate Temp0
*UIConstraints: *OutputBin FDSorter *KCCollate Temp
*UIConstraints: *OutputBin FDSorter *KCCollate Perm
*UIConstraints: *OutputBin FDSorter *KCCollate VMBAdmin
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser01
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser02
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser03
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser04
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser05
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser06
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser07
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser08
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser09
*UIConstraints: *OutputBin FDSorter *KCCollate VMBUser10
*UIConstraints: *KMStapleMode *Option17 None
*UIConstraints: *Option17 None *KMStapleMode Upperleft
*UIConstraints: *Option17 None *KMStapleMode UpperRight
*UIConstraints: *Option17 None *KMStapleMode UpperleftLandscape
*UIConstraints: *Option17 None *KMStapleMode Lowerleft
*UIConstraints: *Option17 None *KMStapleMode Center
*UIConstraints: *KMStapleMode *Option17 SO30
*UIConstraints: *Option17 SO30 *KMStapleMode Upperleft
*UIConstraints: *Option17 SO30 *KMStapleMode Center
*UIConstraints: *KMStapleMode *Option17 ST30
*UIConstraints: *Option17 ST30 *KMStapleMode Upperleft
*UIConstraints: *Option17 ST30 *KMStapleMode Center
*UIConstraints: *Option17 ST30 *OutputBin FUSide
*UIConstraints: *Option17 DF30 *OutputBin FUSide
*UIConstraints: *Option17 None *OutputBin FUStacker
*UIConstraints: *Option17 None *OutputBin FDStacker
*UIConstraints: *Option17 None *OutputBin FDSorter
*UIConstraints: *Option17 ST30 *OutputBin FDSorter
*UIConstraints: *Option17 DF30 *OutputBin FDSorter
*UIConstraints: *Option17 None *OutputBin FDMB01
*UIConstraints: *Option17 None *OutputBin FDMB02
*UIConstraints: *Option17 None *OutputBin FDMB03
*UIConstraints: *Option17 ST30 *OutputBin FDMB01
*UIConstraints: *Option17 ST30 *OutputBin FDMB02
*UIConstraints: *Option17 ST30 *OutputBin FDMB03
*UIConstraints: *Jog *OutputBin FDTop
*UIConstraints: *OutputBin FDTop *Jog
*UIConstraints: *Jog *OutputBin FUSide
*UIConstraints: *OutputBin FUSide *Jog
*UIConstraints: *Jog *OutputBin FDSorter
*UIConstraints: *OutputBin FDSorter *Jog
*UIConstraints: *OutputBin FDMB01 *Jog
*UIConstraints: *Jog *OutputBin FDMB01
*UIConstraints: *OutputBin FDMB02 *Jog
*UIConstraints: *Jog *OutputBin FDMB02
*UIConstraints: *OutputBin FDMB03 *Jog
*UIConstraints: *Jog *OutputBin FDMB03
*UIConstraints: *OutputBin FDMB04 *Jog
*UIConstraints: *Jog *OutputBin FDMB04
*UIConstraints: *OutputBin FDMB05 *Jog
*UIConstraints: *Jog *OutputBin FDMB05
*UIConstraints: *OutputBin FDMB06 *Jog
*UIConstraints: *Jog *OutputBin FDMB06
*UIConstraints: *OutputBin FDMB07 *Jog
*UIConstraints: *Jog *OutputBin FDMB07
*UIConstraints: *OutputBin FDMB08 *Jog
*UIConstraints: *Jog *OutputBin FDMB08
*UIConstraints: *OutputBin FDMB09 *Jog
*UIConstraints: *Jog *OutputBin FDMB09
*UIConstraints: *Jog *KMStapleMode Upperleft
*UIConstraints: *KMStapleMode Upperleft *Jog
*UIConstraints: *Jog *KMStapleMode Center
*UIConstraints: *KMStapleMode Center *Jog
*UIConstraints: *PageSize Letter *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize Letter
*UIConstraints: *PageRegion Letter *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion Letter
*UIConstraints: *PageSize Legal *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize Legal
*UIConstraints: *PageRegion Legal *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion Legal
*UIConstraints: *PageSize Executive *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion Executive
*UIConstraints: *PageSize Tabloid *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize Tabloid
*UIConstraints: *PageRegion Tabloid *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion Tabloid
*UIConstraints: *PageSize A3 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize A3
*UIConstraints: *PageRegion A3 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion A3
*UIConstraints: *PageSize A4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize A4
*UIConstraints: *PageRegion A4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion A4
*UIConstraints: *PageSize B4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize B4
*UIConstraints: *PageRegion B4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion B4
*UIConstraints: *PageSize B5 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize B5
*UIConstraints: *PageRegion B5 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion B5
*UIConstraints: *PageSize ISOB5 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion ISOB5
*UIConstraints: *PageSize EnvC4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot EF1
*UIConstraints: *InputSlot EF1 *PageRegion EnvC4
*UIConstraints: *PageSize Legal *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize Legal
*UIConstraints: *PageRegion Legal *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion Legal
*UIConstraints: *PageSize Tabloid *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize Tabloid
*UIConstraints: *PageRegion Tabloid *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion Tabloid
*UIConstraints: *PageSize A3 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize A3
*UIConstraints: *PageRegion A3 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion A3
*UIConstraints: *PageSize B4 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize B4
*UIConstraints: *PageRegion B4 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion B4
*UIConstraints: *PageSize EnvPersonal *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot UF1
*UIConstraints: *InputSlot UF1 *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30A
*UIConstraints: *InputSlot PF30A *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30B
*UIConstraints: *InputSlot PF30B *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30C
*UIConstraints: *InputSlot PF30C *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30D
*UIConstraints: *InputSlot PF30D *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30E
*UIConstraints: *InputSlot PF30E *PageRegion EnvC4
*UIConstraints: *PageSize Executive *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize Executive
*UIConstraints: *PageRegion Executive *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion Executive
*UIConstraints: *PageSize A6 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize A6
*UIConstraints: *PageRegion A6 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion A6
*UIConstraints: *PageSize ISOB5 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize ISOB5
*UIConstraints: *PageRegion ISOB5 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion ISOB5
*UIConstraints: *PageSize B6 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize B6
*UIConstraints: *PageRegion B6 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion B6
*UIConstraints: *PageSize EnvPersonal *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion EnvPersonal
*UIConstraints: *PageSize Env9 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize Env9
*UIConstraints: *PageRegion Env9 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion Env9
*UIConstraints: *PageSize Env10 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize Env10
*UIConstraints: *PageRegion Env10 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion Env10
*UIConstraints: *PageSize EnvMonarch *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion EnvMonarch
*UIConstraints: *PageSize EnvDL *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion EnvC5
*UIConstraints: *PageSize EnvC4 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageSize EnvC4
*UIConstraints: *PageRegion EnvC4 *InputSlot PF30F
*UIConstraints: *InputSlot PF30F *PageRegion EnvC4
*UIConstraints: *Duplex *PageSize Executive
*UIConstraints: *PageSize Executive *Duplex DuplexTumble
*UIConstraints: *PageSize Executive *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion Executive
*UIConstraints: *PageRegion Executive *Duplex DuplexTumble
*UIConstraints: *PageRegion Executive *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize Tabloid
*UIConstraints: *PageSize Tabloid *Duplex DuplexTumble
*UIConstraints: *PageSize Tabloid *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion Tabloid
*UIConstraints: *PageRegion Tabloid *Duplex DuplexTumble
*UIConstraints: *PageRegion Tabloid *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize A3
*UIConstraints: *PageSize A3 *Duplex DuplexTumble
*UIConstraints: *PageSize A3 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion A3
*UIConstraints: *PageRegion A3 *Duplex DuplexTumble
*UIConstraints: *PageRegion A3 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize B4
*UIConstraints: *PageSize B4 *Duplex DuplexTumble
*UIConstraints: *PageSize B4 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion B4
*UIConstraints: *PageRegion B4 *Duplex DuplexTumble
*UIConstraints: *PageRegion B4 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize B6
*UIConstraints: *PageSize B6 *Duplex DuplexTumble
*UIConstraints: *PageSize B6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion B6
*UIConstraints: *PageRegion B6 *Duplex DuplexTumble
*UIConstraints: *PageRegion B6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize EnvPersonal
*UIConstraints: *PageSize EnvPersonal *Duplex DuplexTumble
*UIConstraints: *PageSize EnvPersonal *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion EnvPersonal
*UIConstraints: *PageRegion EnvPersonal *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvPersonal *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize Env9
*UIConstraints: *PageSize Env9 *Duplex DuplexTumble
*UIConstraints: *PageSize Env9 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion Env9
*UIConstraints: *PageRegion Env9 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env9 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize Env10
*UIConstraints: *PageSize Env10 *Duplex DuplexTumble
*UIConstraints: *PageSize Env10 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Duplex DuplexTumble
*UIConstraints: *PageRegion Env10 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageSize EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvMonarch *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Duplex DuplexTumble
*UIConstraints: *PageSize EnvDL *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvDL *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageSize EnvC4
*UIConstraints: *PageSize EnvC4 *Duplex DuplexTumble
*UIConstraints: *PageSize EnvC4 *Duplex DuplexNoTumble
*UIConstraints: *Duplex *PageRegion EnvC4
*UIConstraints: *PageRegion EnvC4 *Duplex DuplexTumble
*UIConstraints: *PageRegion EnvC4 *Duplex DuplexNoTumble
*% Resolution
*OpenUI *Resolution/R<E9>solution: PickOne
*OrderDependency: 10 AnySetup *Resolution
*DefaultResolution: 600dpi
*Resolution 300dpi/300 ppp: "<< /HWResolution [300 300] >> setpagedevice"
*Resolution 600dpi/600 ppp: "<< /HWResolution [600 600] >> setpagedevice"
*?Resolution: "save currentpagedevice /HWResolution get 0 get ( ) cvs print (dpi) = flush restore"
*CloseUI: *Resolution
*% Image Refinement
*OpenUI *Smoothing/KIR: PickOne
*OrderDependency: 50 AnySetup *Smoothing
*DefaultSmoothing: Medium
*Smoothing None/Inactif: "0 statusdict /setdoret get exec"
*Smoothing Light/Clair: "1 statusdict /setdoret get exec"
*Smoothing Medium/Moyen: "2 statusdict /setdoret get exec"
*Smoothing Dark/Sombre: "3 statusdict /setdoret get exec"
*?Smoothing: "
save
[(None)(Light)(Medium)(Dark)]
statusdict /doret get exec {get} stopped
{pop pop (Unknown)} if
= flush restore"
*End
*CloseUI: *Smoothing
*% Halftone Information
*DefaultHalftoneType: 1
*ScreenFreq: "37.5"
*ScreenAngle: "45.0"
*ResScreenFreq 600dpi: "37.5"
*ResScreenAngle 600dpi: "45.0"
*ResScreenFreq 300dpi: "18.75"
*ResScreenAngle 300dpi: "45.0"
*DefaultScreenProc: Ellipse
*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: Null
*Transfer Null: "{}"
*Transfer Null.Inverse: "{1 exch sub}"
*% Paper Handling
*% Page Size Definitions
*OpenUI *PageSize: PickOne
*OrderDependency: 40 AnySetup *PageSize
*DefaultPageSize: A4
*PageSize A3/A3: "<< /Policies << /PageSize 7 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*PageSize A4/A4: "<< /Policies << /PageSize 7 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*PageSize A5/A5: "<< /Policies << /PageSize 7 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*PageSize A6/A6: "<< /Policies << /PageSize 7 >> /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*PageSize B4/B4: "<< /Policies << /PageSize 7 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*PageSize B5/B5 (JIS): "<< /Policies << /PageSize 7 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*PageSize ISOB5/B5 (ISO): "<< /Policies << /PageSize 7 >> /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*PageSize B6/B6: "<< /Policies << /PageSize 7 >> /PageSize [363 516] /ImagingBBox null >> setpagedevice"
*PageSize Letter/Lettre US: "<< /Policies << /PageSize 7 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*PageSize Legal/L<E9>gal US: "<< /Policies << /PageSize 7 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*PageSize Executive/Ex<E9>cutive US: "<< /Policies << /PageSize 7 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*PageSize Tabloid/11x17 (Ledger US): "<< /Policies << /PageSize 7 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*PageSize EnvPersonal/Enveloppe #6: "<< /Policies << /PageSize 7 >> /PageSize [261 468] /ImagingBBox null >> setpagedevice"
*PageSize Env9/Enveloppe #9: "<< /Policies << /PageSize 7 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*PageSize Env10/Enveloppe #10: "<< /Policies << /PageSize 7 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*PageSize EnvMonarch/Enveloppe Monarch: "<< /Policies << /PageSize 7 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*PageSize EnvDL/Enveloppe DL: "<< /Policies << /PageSize 7 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*PageSize EnvC5/Enveloppe C5: "<< /Policies << /PageSize 7 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*PageSize EnvC4/Enveloppe C4: "<< /Policies << /PageSize 7 >> /PageSize [649 919] /ImagingBBox null >> setpagedevice"
*?PageSize: "
save
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if
(Unknown)
19 dict
dup [842 1191] (A3) put
dup [595 842] (A4) put
dup [420 595] (A5) put
dup [297 420] (A6) put
dup [729 1032] (B4) put
dup [516 729] (B5) put
dup [499 709] (ISOB5) put
dup [363 516] (B6) put
dup [612 792] (Letter) put
dup [612 1008] (Legal) put
dup [522 756] (Executive) put
dup [792 1224] (Tabloid) put
dup [261 468] (EnvPersonal) put
dup [279 639] (Env9) put
dup [297 684] (Env10) put
dup [279 540] (EnvMonarch) put
dup [312 624] (EnvDL) put
dup [459 649] (EnvC5) put
dup [649 919] (EnvC4) put
{exch aload pop 4 index sub abs 5 le exch
5 index sub abs 5 le and
{exch pop exit}{pop} ifelse
} bind forall
= flush pop pop restore "
*End
*CloseUI: *PageSize
*% Page Region Definitions for Frame Buffer
*OpenUI *PageRegion: PickOne
*OrderDependency: 40 AnySetup *PageRegion
*DefaultPageRegion: A4
*PageRegion A3/A3: "<< /Policies << /PageSize 7 >> /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*PageRegion A4/A4: "<< /Policies << /PageSize 7 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*PageRegion A5/A5: "<< /Policies << /PageSize 7 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*PageRegion A6/A6: "<< /Policies << /PageSize 7 >> /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*PageRegion B4/B4: "<< /Policies << /PageSize 7 >> /PageSize [729 1032] /ImagingBBox null >> setpagedevice"
*PageRegion B5/B5 (JIS): "<< /Policies << /PageSize 7 >> /PageSize [516 729] /ImagingBBox null >> setpagedevice"
*PageRegion ISOB5/B5 (ISO): "<< /Policies << /PageSize 7 >> /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*PageRegion B6/B6: "<< /Policies << /PageSize 7 >> /PageSize [363 516] /ImagingBBox null >> setpagedevice"
*PageRegion Letter/Lettre US: "<< /Policies << /PageSize 7 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*PageRegion Legal/L<E9>gal US: "<< /Policies << /PageSize 7 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*PageRegion Executive/Ex<E9>cutive US: "<< /Policies << /PageSize 7 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*PageRegion Tabloid/11x17 (Ledger US): "<< /Policies << /PageSize 7 >> /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*PageRegion EnvPersonal/Enveloppe #6: "<< /Policies << /PageSize 7 >> /PageSize [261 468] /ImagingBBox null >> setpagedevice"
*PageRegion Env9/Enveloppe #9: "<< /Policies << /PageSize 7 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*PageRegion Env10/Enveloppe #10: "<< /Policies << /PageSize 7 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*PageRegion EnvMonarch/Enveloppe Monarch: "<< /Policies << /PageSize 7 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*PageRegion EnvDL/Enveloppe DL: "<< /Policies << /PageSize 7 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*PageRegion EnvC5/Enveloppe C5: "<< /Policies << /PageSize 7 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*PageRegion EnvC4/Enveloppe C4: "<< /Policies << /PageSize 7 >> /PageSize [649 919] /ImagingBBox null >> setpagedevice"
*CloseUI: *PageRegion
*% Imageable Area Definitions
*DefaultImageableArea: A4
*ImageableArea A3/A3: "12 10 830 1181"
*ImageableArea A4/A4: "12 10 583 832"
*ImageableArea A5/A5: "12 12 409 585"
*ImageableArea A6/A6: "12 10 285 411"
*ImageableArea B4/B4: "12 10 716 1022"
*ImageableArea B5/B5 (JIS): "21 10 495 719"
*ImageableArea ISOB5/B5 (ISO): "12 12 487 696"
*ImageableArea B6/B6: "12 10 352 506"
*ImageableArea Letter/Lettre US: "12 08 600 784"
*ImageableArea Legal/L<E9>gal US: "12 08 600 1000"
*ImageableArea Executive/Ex<E9>cutive US: "12 08 510 748"
*ImageableArea Tabloid/11x17 (Ledger US): "12 08 780 1216"
*ImageableArea EnvPersonal/Enveloppe #6: "12 08 237 452"
*ImageableArea Env9/Enveloppe #9: "12 08 255 623"
*ImageableArea Env10/Enveloppe #10: "12 08 273 668"
*ImageableArea EnvMonarch/Enveloppe Monarch: "12 08 255 524"
*ImageableArea EnvDL/Enveloppe DL: "12 10 288 604"
*ImageableArea EnvC5/Enveloppe C5: "12 10 435 629"
*ImageableArea EnvC4/Enveloppe C4: "12 10 625 898"
*?ImageableArea: "
save
/cvp {cvi ( ) cvs
print ( ) print} bind def
newpath clippath pathbbox
4 -2 roll exch 2 {ceiling cvp} repeat
exch 2 {floor cvp} repeat ( )
= flush restore"
*End
*% Physical Dimensions of Media
*DefaultPaperDimension: A4
*PaperDimension A3/A3: "842 1191"
*PaperDimension A4/A4: "595 842"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "297 420"
*PaperDimension B4/B4: "729 1032"
*PaperDimension B5/B5 (JIS): "516 729"
*PaperDimension ISOB5/B5 (ISO): "499 709"
*PaperDimension B6/B6: "363 516"
*PaperDimension Letter/Lettre US: "612 792"
*PaperDimension Legal/L<E9>gal US: "612 1008"
*PaperDimension Executive/Ex<E9>cutive US: "522 756"
*PaperDimension Tabloid/11x17 (Ledger US): "792 1224"
*PaperDimension EnvPersonal/Enveloppe #6: "261 468"
*PaperDimension Env9/Enveloppe #9: "279 639"
*PaperDimension Env10/Enveloppe #10: "297 684"
*PaperDimension EnvMonarch/Enveloppe Monarch: "279 540"
*PaperDimension EnvDL/Enveloppe DL: "312 624"
*PaperDimension EnvC5/Enveloppe C5: "459 649"
*PaperDimension EnvC4/Enveloppe C4: "649 919"
*% Custom Page Size Definitions
*% Smallest = A6, Largest = WideLetter
*VariablePaperSize: True
*LeadingEdge Short: ""
*DefaultLeadingEdge: Short
*HWMargins: 12 12 12 12
*MaxMediaWidth: "872"
*MaxMediaHeight: "1247"
*NonUIOrderDependency: 20 AnySetup *CustomPageSize
*CustomPageSize True: "
pop pop pop
<< /PageSize [ 5 -2 roll ] /ImagingBBox null
/DeferredMediaSelection true
>> setpagedevice"
*End
*ParamCustomPageSize Width: 1 points 227 872
*ParamCustomPageSize Height: 2 points 420 1247
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 0
*% Input Slot Definitions
*OpenUI *InputSlot: PickOne
*OrderDependency: 30 AnySetup *InputSlot
*DefaultInputSlot: PF30A
*InputSlot PF30A/Cassette 1: "<</ManualFeed false>> setpagedevice statusdict begin 0 setpapertray end"
*InputSlot PF30B/Cassette 2: "<</ManualFeed false>> setpagedevice statusdict begin 1 setpapertray end"
*InputSlot PF30C/Cassette 3: "<</ManualFeed false>> setpagedevice statusdict begin 3 setpapertray end"
*InputSlot PF30D/Cassette 4: "<</ManualFeed false>> setpagedevice statusdict begin 5 setpapertray end"
*InputSlot PF30E/Cassette 5: "<</ManualFeed false>> setpagedevice statusdict begin 6 setpapertray end"
*InputSlot PF30F/Cassette 6: "<</ManualFeed false>> setpagedevice statusdict begin 7 setpapertray end"
*InputSlot EF1/Introucteur d'Enveloppes: "<</ManualFeed false>> setpagedevice statusdict begin 2 setpapertray end"
*InputSlot UF1/Introucteur Universal: "<</ManualFeed false>> setpagedevice statusdict begin 2 setpapertray end"
*InputSlot MF1/Bac multi-usages: "currentpagedevice /InputAttributes get 3 get null eq
{ <</ManualFeed true>> setpagedevice }{ statusdict begin 4 setpapertray end } ifelse"
*End
*InputSlot MF/Alimentation Manuelle: "<< /ManualFeed true >> setpagedevice"
*?InputSlot: ""
*CloseUI: *InputSlot
*RequiresPageRegion All: True
*% Output Bin Definitions
*OpenUI *OutputBin/Plateau de Sortie: PickOne
*OrderDependency: 51 AnySetup *OutputBin
*DefaultOutputBin: FDTop
*OutputBin FDTop/Bac Sup<E9>rieur (Face en bas): "0 statusdict /setoutputtray get exec"
*OutputBin FUSide/Bac Lat<E9>ral (Face en haut): "1 statusdict /setoutputtray get exec"
*OutputBin FUStacker/Mode Bac de r<E9>ception (Face en haut): "1 statusdict /setoutputtray get exec"
*OutputBin FDStacker/Mode Bac de r<E9>ception (Face en bas): "<< /OutputFaceUp false >> setpagedevice 2 statusdict /setoutputtray get exec"
*OutputBin FDSorter/Mode de triage (Face en bas): "[] statusdict /setcollatorstacker get exec"
*OutputBin FDMB01/Boite <E0> Lettre 1 (Face en bas): "0 statusdict /setoutputtray get exec [1] statusdict /setmailboxstacker get exec"
*OutputBin FDMB02/Boite <E0> Lettre 2 (Face en bas): "0 statusdict /setoutputtray get exec [2] statusdict /setmailboxstacker get exec"
*OutputBin FDMB03/Boite <E0> Lettre 3 (Face en bas): "0 statusdict /setoutputtray get exec [3] statusdict /setmailboxstacker get exec"
*OutputBin FDMB04/Boite <E0> Lettre 4 (Face en bas): "0 statusdict /setoutputtray get exec [4] statusdict /setmailboxstacker get exec"
*OutputBin FDMB05/Boite <E0> Lettre 5 (Face en bas): "0 statusdict /setoutputtray get exec [5] statusdict /setmailboxstacker get exec"
*OutputBin FDMB06/Boite <E0> Lettre 6 (Face en bas): "0 statusdict /setoutputtray get exec [6] statusdict /setmailboxstacker get exec"
*OutputBin FDMB07/Boite <E0> Lettre 7 (Face en bas): "0 statusdict /setoutputtray get exec [7] statusdict /setmailboxstacker get exec"
*OutputBin FDMB08/Boite <E0> Lettre 8 (Face en bas): "0 statusdict /setoutputtray get exec [8] statusdict /setmailboxstacker get exec"
*OutputBin FDMB09/Boite <E0> Lettre 9 (Face en bas): "0 statusdict /setoutputtray get exec [9] statusdict /setmailboxstacker get exec"
*?OutputBin: ""
*CloseUI: *OutputBin
*% Page Stack Order
*PageStackOrder FDTop: Normal
*PageStackOrder FUSide: Normal
*PageStackOrder FDStacker: Normal
*PageStackOrder FDSorter: Normal
*PageStackOrder FDMB01: Normal
*PageStackOrder FDMB02: Normal
*PageStackOrder FDMB03: Normal
*PageStackOrder FDMB04: Normal
*PageStackOrder FDMB05: Normal
*PageStackOrder FDMB06: Normal
*PageStackOrder FDMB07: Normal
*PageStackOrder FDMB08: Normal
*PageStackOrder FDMB09: Normal
*% Staple Mode Definitions
*OpenUI *KMStapleMode/Agrafer: PickOne
*OrderDependency: 20 AnySetup *KMStapleMode
*DefaultKMStapleMode: None
*KMStapleMode None/Inactif: "<< /Staple 0 >> setpagedevice"
*KMStapleMode Center/Centrez: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /StaplePosition 3 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice
"
*End
*KMStapleMode Lowerleft/Inf<E9>rieur Gauche Portrait: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /StaplePosition 1 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice
"
*End
*KMStapleMode Upperleft/Sup<E9>rieur Gauche Portrait: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /StaplePosition 2 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice
"
*End
*KMStapleMode UpperleftLandscape/Sup<E9>rieur Gauche Paysage: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /StaplePosition 1 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice
"
*End
*KMStapleMode UpperRight/Sup<E9>rieur Droit Paysage: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /StaplePosition 2 put
<< /Staple 3 /StapleDetails UIStapleDetails >> setpagedevice
"
*End
*?KMStapleMode: "
save
currentpagedevice /Staple known
dup {currentpagedevice /Staple get 0 ne and} if
{currentpagedevice /StapleDetails get /StaplePosition get
1 {
dup 1 eq {pop (UpperLeft) exit} if
dup 2 eq {pop (UpperLeft) exit} if
dup 3 eq {pop (Booklet) exit} if
} repeat
}{(None)} ifelse
= flush restore"
*End
*CloseUI: *KMStapleMode
*% Staple Method Definitions
*OpenUI *StapleCount/M<E9>thode dAgrafage: PickOne
*OrderDependency: 20 AnySetup *StapleCount
*DefaultStapleCount: Auto
*StapleCount Auto/Aucun: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 0 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each20/Agrafer Toutes les 20 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 20 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each19/Agrafer Toutes les 19 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 19 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each18/Agrafer Toutes les 18 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 18 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each17/Agrafer Toutes les 17 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 17 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each16/Agrafer Toutes les 16 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 16 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each15/Agrafer Toutes les 15 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 15 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each14/Agrafer Toutes les 14 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 14 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each13/Agrafer Toutes les 13 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 13 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each12/Agrafer Toutes les 12 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 12 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each11/Agrafer Toutes les 11 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 11 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each10/Agrafer Toutes les 10 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 10 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each9/Agrafer Toutes les 9 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 9 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each8/Agrafer Toutes les 8 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 8 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each7/Agrafer Toutes les 7 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 7 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each6/Agrafer Toutes les 6 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 6 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each5/Agrafer Toutes les 5 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 5 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each4/Agrafer Toutes les 4 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 4 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each3/Agrafer Toutes les 3 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 3 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*StapleCount Each2/Agrafer Toutes les 2 Feuilles: "
userdict /UIStapleDetails known not {userdict /UIStapleDetails 10 dict put} if
userdict /UIStapleDetails get /Count 2 put <</StapleDetails UIStapleDetails>> setpagedevice"
*End
*?StapleCount: "save (Auto) = flush restore"
*CloseUI: *StapleCount
*% Job Offset Definitions
*OpenUI *Jog/D<E9>calage de T<E2>che: PickOne
*OrderDependency: 50 AnySetup *Jog
*DefaultJog: None
*Jog EndOfSet/Actif: "<< /Jog 3 >> setpagedevice"
*Jog None/Inactif: "<< /Jog 0 >> setpagedevice"
*?Jog: "
save
currentpagedevice dup /Jog known {
/Jog get dup 0 gt
{(False)}{(True)} ifelse
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *Jog
*% Duplex Definitions
*OpenUI *Duplex/Mode Duplex: PickOne
*OrderDependency: 50 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/Aucun: "statusdict begin false setduplexmode false settumble end"
*Duplex DuplexTumble/Bord Reli<E9> Court: "statusdict begin true setduplexmode true settumble end"
*Duplex DuplexNoTumble/Bord Reli<E9> Long: "statusdict begin true setduplexmode false settumble end"
*?Duplex: "
save
statusdict begin
duplexmode
{tumble {(DuplexTumble)}{(DuplexNoTumble)} ifelse}
{(None)} ifelse
= flush end restore"
*End
*CloseUI: *Duplex
*% Job Spooling Definitions
*OpenUI *KCCollate/Travail Spoul<E9>: PickOne
*OrderDependency: 20 AnySetup *KCCollate
*DefaultKCCollate: None
*KCCollate None/Aucun: ""
*KCCollate Temp0/Temporaire (Disque RAM): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Mode 0 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate Temp/Temporaire (Disque Dur): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Mode 1 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate Perm/Permanente (Disque Dur): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Mode 2 put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBAdmin/Bo<EE>te virtuelle (Administrateur): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(Administrator)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser01/Bo<EE>te virtuelle (Utilisateur 1): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 1)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser02/Bo<EE>te virtuelle (Utilisateur 2): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 2)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser03/Bo<EE>te virtuelle (Utilisateur 3): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 3)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser04/Bo<EE>te virtuelle (Utilisateur 4): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 4)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser05/Bo<EE>te virtuelle (Utilisateur 5): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 5)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser06/Bo<EE>te virtuelle (Utilisateur 6): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 6)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser07/Bo<EE>te virtuelle (Utilisateur 7): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 7)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser08/Bo<EE>te virtuelle (Utilisateur 8): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 8)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser09/Bo<EE>te virtuelle (Utilisateur 9): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 9)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*KCCollate VMBUser10/Bo<EE>te virtuelle (Utilisateur 10): "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get dup /Mode 8 put /Destination [(User 10)] put <</Collate true /CollateDetails UICollateDetails>> setpagedevice"
*End
*?KCCollate: "
save
currentpagedevice dup /Collate known {
dup /CollateDetails known {
/CollateDetails get
dup /Mode known {
/Mode get
1 {
dup 0 eq {pop (Temp0) exit} if
dup 1 eq {pop (Temp) exit} if
dup 2 eq {pop (Perm) exit} if
dup 8 eq {pop (VMB) exit} if
pop (Unknown)
} repeat
}{pop (Unknown)} ifelse
}{pop (Unknown)} ifelse
}{pop (Unknown)} ifelse
= flush restore"
*End
*CloseUI: *KCCollate
*% Barcode Mode Definitions
*OpenUI *KCBarcodeMode/Code a Barres: PickOne
*OrderDependency: 21 AnySetup *KCBarcodeMode
*DefaultKCBarcodeMode: None
*KCBarcodeMode None/Aucun: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 2 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodeMode First/Premiere Page: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 0 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodeMode All/Toutes les Pages: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /Barcode 1 put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KCBarcodeMode: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /Barcode get
1 {
dup 2 eq {pop (None) exit} if
dup 0 eq {pop (First) exit} if
dup 1 eq {pop (All) exit} if
pop (Unknown)
} repeat
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KCBarcodeMode
*% Barcode ID Definitions
*OpenUI *KCBarcodeID/Identification Code Barres: Boolean
*OrderDependency: 23 AnySetup *KCBarcodeID
*DefaultKCBarcodeID: False
*KCBarcodeID True/Actif: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodeID False/Inactif: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
not put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KCBarcodeID: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /BarcodePosition get 128 gt
{(False)}{(True)} ifelse
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KCBarcodeID
*% Barcode Position Definitions
*OpenUI *KCBarcodePos/Position Code a Barres: PickOne
*OrderDependency: 22 AnySetup *KCBarcodePos
*DefaultKCBarcodePos: ULB
*KCBarcodePos ULB/Sup<E9>rieur Gauche: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 4 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos URB/Sup<E9>rieur Droit: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 3 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos LLB/Inf<E9>rieur Gauche: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 7 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos LRB/Inf<E9>rieur Droit: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos ULVB/Sup<E9>rieur Gauche Vertical: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 5 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos URVB/Sup<E9>rieur Droit Vertical: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 2 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos LLVB/Inf<E9>rieur Gauche Vertical: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 6 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*KCBarcodePos LRVB/Inf<E9>rieur Droit Vertical: "
userdict /UICollateDetails known not {userdict /UICollateDetails 10 dict put} if
userdict /UICollateDetails get /BarcodePosition 2 copy known {2 copy get}
{currentpagedevice /CollateDetails get /BarcodePosition get} ifelse 128
and 1 or put <</CollateDetails UICollateDetails>> setpagedevice
"
*End
*?KCBarcodePos: "
save
currentpagedevice dup /CollateDetails known {
/CollateDetails get /BarcodePosition get
1 {
dup 4 eq {pop (ULB) exit} if
dup 3 eq {pop (URB) exit} if
dup 7 eq {pop (LLB) exit} if
dup 0 eq {pop (LRB) exit} if
dup 5 eq {pop (ULVB) exit} if
dup 2 eq {pop (URVB) exit} if
dup 6 eq {pop (LLVB) exit} if
dup 1 eq {pop (LRVB) exit} if
pop (Unknown)
} repeat
}{(Unknown)} ifelse
exch pop
= flush restore"
*End
*CloseUI: *KCBarcodePos
*% Tray Switch Definitions
*OpenUI *TraySwitch/Choix Automatique: PickOne
*OrderDependency: 25 AnySetup *TraySwitch
*DefaultTraySwitch: PrnDef
*TraySwitch PrnDef/Imprimante par D<E9>faut: ""
*TraySwitch True/Actif: "<< /TraySwitch true >> setpagedevice"
*TraySwitch False/Inactif: "<< /TraySwitch false >> setpagedevice"
*?TraySwitch: "
save
currentpagedevice /TraySwitch get
{ (True) }{ (False) } ifelse
= flush restore"
*End
*CloseUI: *TraySwitch
*% PPD Version Info
*OpenUI *KMVersion/PPD Version: PickOne
*OrderDependency: 25 AnySetup *KMVersion
*DefaultKMVersion: Default
*KMVersion Default/8.2.0111 [01-11-2005]: "
globaldict /ct_AddStdCIDMap known {
globaldict /ct_AddStdCIDMap get length 7 eq
{globaldict /ct_AddStdCIDMap get 0 get type /stringtype eq
{globaldict /ct_AddStdCIDMap get 1 get 0 eq
{globaldict /ct_AddStdCIDMap get 2 get () eq
{globaldict /ct_AddStdCIDMap get 3 get /SubFileDecode eq
{globaldict /ct_AddStdCIDMap get 4 get systemdict /filter get eq
{currentglobal true setglobal globaldict
/ct_AddStdCIDMap
globaldict /ct_AddStdCIDMap get dup
globaldict /ct_AddStdCIDMap get
0 get length 1 exch
put put setglobal
} if} if} if} if} if} if} if"
*End
*CloseUI: *KMVersion
*% Font Information
*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Light: Standard "(001.004S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Special ROM
*?FontQuery: "
save
/str 100 string dup 0 (fonts/) putinterval def
{count 1 gt
{ exch dup str 6 94 getinterval cvs
(/) print print (:) print
FontDirectory exch known
{(Yes)}{(No)} ifelse =
}{exit} ifelse
} bind loop (*)
= flush restore"
*End
*?FontList: "save FontDirectory { pop == } bind forall flush (*) = flush restore"
*% Printer Messages
*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: "warming up"/warming up
*Status: "idle"/idle
*Status: "busy"/busy
*Status: "waiting"/waiting
*Status: "printing"/printing
*Status: "initializing"/initializing
*Status: "printing test page"/printing test page
*% Printer Error (format: %%[ PrinterError: <one of these> ]%% )
*PrinterError: "paper entry misfeed"
*PrinterError: "cover open"
*PrinterError: "no paper tray"
*PrinterError: "out of paper"
*PrinterError: "toner low (halt)"
*PrinterError: "warming up"
*PrinterError: "other reason"
*PrinterError: "video interface mode"
*PrinterError: "offline"
*PrinterError: "toner low (warning)"
*% Input Sources (format: %%[ status: <stat>;source:<one of these> ]%% )
*Source: "Serial"
*Source: "Parallel"
*Source: "LocalTalk"
*Source: "Option"
*% End of PPD file for Kyocera FS-7000 (French)
|