summaryrefslogtreecommitdiff
path: root/psprint_config/configuration/ppds/EFMX5010.PS
blob: 59d78c25b4ef189739c4692c2616e7563f0ff41f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
*PPD-Adobe: "4.3"
*% Adobe Systems PostScript(R) Printer Description File
*% Copyright 1987-1995 Adobe Systems Incorporated. 
*% All Rights Reserved. 
*% Permission is granted for redistribution of this file as
*% long as this copyright notice is intact and the contents
*% of the file is not altered in any way from its original form.
*% End of Copyright statement
*% *********
*% EFI Information Block
*%
*FileVersion: "0.1"
*%
*% *********

*FormatVersion: "4.3"
*FileVersion: "1.1"
*PCFileName: "EFMX5010.PPD"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*Product: "(Fiery X2 5750)"
*PSVersion: "(3010.104) 1"
*ModelName: "Fiery X2 5750 Color Server v3010.104"
*ShortNickName: "Fiery X2 5750 v3010.104"
*NickName: "Fiery X2 5750 Color Server v3010.104"
*Manufacturer: "Xerox"

*% PPD body begins

*%EFIGroupName Job/Job :True
*%EFIGroupName Media/Media :True
*%EFIGroupName Color/Color :True
*%EFIGroupName Finishing/Finishing :True
*%EFIGroupName Notes/Notes :True

*%EFIFlags *Notes1  Column
*%EFIGroup *Notes1  Notes/Notes 
*%EFIJobNote *Notes1/Notes 1 :32

*%EFIFlags *Notes2  Column
*%EFIGroup *Notes2  Notes/Notes 
*%EFIJobNote *Notes2/Notes 2 :32

*% === Options and Constraints ==============================

*% UIConstraints for Trays, Paper Sizes, and Media Types

*% Only Plain paper may be printed from the trays.
*% Disallow all other media types from trays 1-4.

*UIConstraints: *MediaType Transparent *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Transparent
*UIConstraints: *MediaType Transparent *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Transparent
*UIConstraints: *MediaType Transparent *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Transparent
*UIConstraints: *MediaType Transparent *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Transparent

*UIConstraints: *MediaType Thick *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Thick
*UIConstraints: *MediaType Thick *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Thick
*UIConstraints: *MediaType Thick *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Thick
*UIConstraints: *MediaType Thick *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Thick

*UIConstraints: *MediaType Interleaved *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Interleaved

*UIConstraints: *MediaType Coated *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Coated
*UIConstraints: *MediaType Coated *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Coated
*UIConstraints: *MediaType Coated *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Coated
*UIConstraints: *MediaType Coated *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Coated

*UIConstraints: *MediaType Thick2 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Thick2

*UIConstraints: *MediaType Tacking *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Tacking
*UIConstraints: *MediaType Tacking *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Tacking
*UIConstraints: *MediaType Tacking *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Tacking
*UIConstraints: *MediaType Tacking *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Tacking

*UIConstraints: *MediaType SSTransfer *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType SSTransfer

*UIConstraints: *MediaType Labels *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Labels
*UIConstraints: *MediaType Labels *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Labels

*% Certain paper sizes may only be printed Manualfeed
*% Disallow these paper sizes from trays 1-4.

*UIConstraints: *PageSize TabloidExtra *InputSlot Tray1
*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray1 *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray2
*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray2 *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray3
*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray3 *PageRegion TabloidExtra
*UIConstraints: *PageSize TabloidExtra *InputSlot Tray4
*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize TabloidExtra
*UIConstraints: *InputSlot Tray4 *PageRegion TabloidExtra

*UIConstraints: *PageSize SEF8x10 *InputSlot Tray1
*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize SEF8x10
*UIConstraints: *InputSlot Tray1 *PageRegion SEF8x10
*UIConstraints: *PageSize SEF8x10 *InputSlot Tray2
*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize SEF8x10
*UIConstraints: *InputSlot Tray2 *PageRegion SEF8x10
*UIConstraints: *PageSize SEF8x10 *InputSlot Tray3
*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize SEF8x10
*UIConstraints: *InputSlot Tray3 *PageRegion SEF8x10
*UIConstraints: *PageSize SEF8x10 *InputSlot Tray4
*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize SEF8x10
*UIConstraints: *InputSlot Tray4 *PageRegion SEF8x10

*UIConstraints: *PageSize SEF9x11 *InputSlot Tray1
*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize SEF9x11
*UIConstraints: *InputSlot Tray1 *PageRegion SEF9x11
*UIConstraints: *PageSize SEF9x11 *InputSlot Tray2
*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize SEF9x11
*UIConstraints: *InputSlot Tray2 *PageRegion SEF9x11
*UIConstraints: *PageSize SEF9x11 *InputSlot Tray3
*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize SEF9x11
*UIConstraints: *InputSlot Tray3 *PageRegion SEF9x11
*UIConstraints: *PageSize SEF9x11 *InputSlot Tray4
*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize SEF9x11
*UIConstraints: *InputSlot Tray4 *PageRegion SEF9x11

*UIConstraints: *PageSize 9x11 *InputSlot Tray1
*UIConstraints: *PageRegion 9x11 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize 9x11
*UIConstraints: *InputSlot Tray1 *PageRegion 9x11
*UIConstraints: *PageSize 9x11 *InputSlot Tray2
*UIConstraints: *PageRegion 9x11 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize 9x11
*UIConstraints: *InputSlot Tray2 *PageRegion 9x11
*UIConstraints: *PageSize 9x11 *InputSlot Tray3
*UIConstraints: *PageRegion 9x11 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize 9x11
*UIConstraints: *InputSlot Tray3 *PageRegion 9x11
*UIConstraints: *PageSize 9x11 *InputSlot Tray4
*UIConstraints: *PageRegion 9x11 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize 9x11
*UIConstraints: *InputSlot Tray4 *PageRegion 9x11

*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *PageRegion A6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *InputSlot Tray1 *PageRegion A6
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *PageRegion A6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *InputSlot Tray2 *PageRegion A6
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageRegion A6

*UIConstraints: *PageSize SEFB5 *InputSlot Tray1
*UIConstraints: *PageRegion SEFB5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize SEFB5
*UIConstraints: *InputSlot Tray1 *PageRegion SEFB5
*UIConstraints: *PageSize SEFB5 *InputSlot Tray2
*UIConstraints: *PageRegion SEFB5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize SEFB5
*UIConstraints: *InputSlot Tray2 *PageRegion SEFB5
*UIConstraints: *PageSize SEFB5 *InputSlot Tray3
*UIConstraints: *PageRegion SEFB5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize SEFB5
*UIConstraints: *InputSlot Tray3 *PageRegion SEFB5
*UIConstraints: *PageSize SEFB5 *InputSlot Tray4
*UIConstraints: *PageRegion SEFB5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize SEFB5
*UIConstraints: *InputSlot Tray4 *PageRegion SEFB5

*UIConstraints: *PageSize B5 *InputSlot Tray1
*UIConstraints: *PageRegion B5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize B5
*UIConstraints: *InputSlot Tray1 *PageRegion B5
*UIConstraints: *PageSize B5 *InputSlot Tray2
*UIConstraints: *PageRegion B5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize B5
*UIConstraints: *InputSlot Tray2 *PageRegion B5
*UIConstraints: *PageSize B5 *InputSlot Tray3
*UIConstraints: *PageRegion B5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize B5
*UIConstraints: *InputSlot Tray3 *PageRegion B5
*UIConstraints: *PageSize B5 *InputSlot Tray4
*UIConstraints: *PageRegion B5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize B5
*UIConstraints: *InputSlot Tray4 *PageRegion B5

*UIConstraints: *PageSize 4x6 *InputSlot Tray1
*UIConstraints: *PageRegion 4x6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageSize 4x6
*UIConstraints: *InputSlot Tray1 *PageRegion 4x6
*UIConstraints: *PageSize 4x6 *InputSlot Tray2
*UIConstraints: *PageRegion 4x6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageSize 4x6
*UIConstraints: *InputSlot Tray2 *PageRegion 4x6
*UIConstraints: *PageSize 4x6 *InputSlot Tray3
*UIConstraints: *PageRegion 4x6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageSize 4x6
*UIConstraints: *InputSlot Tray3 *PageRegion 4x6
*UIConstraints: *PageSize 4x6 *InputSlot Tray4
*UIConstraints: *PageRegion 4x6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageSize 4x6
*UIConstraints: *InputSlot Tray4 *PageRegion 4x6

*% Each paper size is supported for only certain media
*% types.  Disallow unsupported combinations.

*UIConstraints: *PageSize TabloidExtra *MediaType Transparent
*UIConstraints: *PageRegion TabloidExtra *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize TabloidExtra
*UIConstraints: *MediaType Transparent *PageRegion TabloidExtra
*UIConstraints: *PageSize Legal13 *MediaType Transparent
*UIConstraints: *PageRegion Legal13 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize Legal13
*UIConstraints: *MediaType Transparent *PageRegion Legal13
*UIConstraints: *PageSize Legal *MediaType Transparent
*UIConstraints: *PageRegion Legal *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize Legal
*UIConstraints: *MediaType Transparent *PageRegion Legal
*UIConstraints: *PageSize SEF8x10 *MediaType Transparent
*UIConstraints: *PageRegion SEF8x10 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize SEF8x10
*UIConstraints: *MediaType Transparent *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType Transparent
*UIConstraints: *PageRegion 8x10 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize 8x10
*UIConstraints: *MediaType Transparent *PageRegion 8x10
*UIConstraints: *PageSize SEF9x11 *MediaType Transparent
*UIConstraints: *PageRegion SEF9x11 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize SEF9x11
*UIConstraints: *MediaType Transparent *PageRegion SEF9x11
*UIConstraints: *PageSize 9x11 *MediaType Transparent
*UIConstraints: *PageRegion 9x11 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize 9x11
*UIConstraints: *MediaType Transparent *PageRegion 9x11
*UIConstraints: *PageSize 9x12 *MediaType Transparent
*UIConstraints: *PageRegion 9x12 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize 9x12
*UIConstraints: *MediaType Transparent *PageRegion 9x12
*UIConstraints: *PageSize A6 *MediaType Transparent
*UIConstraints: *PageRegion A6 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize A6
*UIConstraints: *MediaType Transparent *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Transparent
*UIConstraints: *PageRegion B4 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize B4
*UIConstraints: *MediaType Transparent *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Transparent
*UIConstraints: *PageRegion SEFB5 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize SEFB5
*UIConstraints: *MediaType Transparent *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType Transparent
*UIConstraints: *PageRegion B5 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize B5
*UIConstraints: *MediaType Transparent *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType Transparent
*UIConstraints: *PageRegion 4x6 *MediaType Transparent
*UIConstraints: *MediaType Transparent *PageSize 4x6
*UIConstraints: *MediaType Transparent *PageRegion 4x6

*UIConstraints: *PageSize 8x10 *MediaType Thick
*UIConstraints: *PageRegion 8x10 *MediaType Thick
*UIConstraints: *MediaType Thick *PageSize 8x10
*UIConstraints: *MediaType Thick *PageRegion 8x10
*UIConstraints: *PageSize A6 *MediaType Thick
*UIConstraints: *PageRegion A6 *MediaType Thick
*UIConstraints: *MediaType Thick *PageSize A6
*UIConstraints: *MediaType Thick *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Thick
*UIConstraints: *PageRegion B4 *MediaType Thick
*UIConstraints: *MediaType Thick *PageSize B4
*UIConstraints: *MediaType Thick *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Thick
*UIConstraints: *PageRegion SEFB5 *MediaType Thick
*UIConstraints: *MediaType Thick *PageSize SEFB5
*UIConstraints: *MediaType Thick *PageRegion SEFB5
*UIConstraints: *PageSize 4x6 *MediaType Thick
*UIConstraints: *PageRegion 4x6 *MediaType Thick
*UIConstraints: *MediaType Thick *PageSize 4x6
*UIConstraints: *MediaType Thick *PageRegion 4x6

*UIConstraints: *PageSize TabloidExtra *MediaType Interleaved
*UIConstraints: *PageRegion TabloidExtra *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize TabloidExtra
*UIConstraints: *MediaType Interleaved *PageRegion TabloidExtra
*UIConstraints: *PageSize Legal13 *MediaType Interleaved
*UIConstraints: *PageRegion Legal13 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize Legal13
*UIConstraints: *MediaType Interleaved *PageRegion Legal13
*UIConstraints: *PageSize Legal *MediaType Interleaved
*UIConstraints: *PageRegion Legal *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize Legal
*UIConstraints: *MediaType Interleaved *PageRegion Legal
*UIConstraints: *PageSize SEF8x10 *MediaType Interleaved
*UIConstraints: *PageRegion SEF8x10 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize SEF8x10
*UIConstraints: *MediaType Interleaved *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType Interleaved
*UIConstraints: *PageRegion 8x10 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize 8x10
*UIConstraints: *MediaType Interleaved *PageRegion 8x10
*UIConstraints: *PageSize SEF9x11 *MediaType Interleaved
*UIConstraints: *PageRegion SEF9x11 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize SEF9x11
*UIConstraints: *MediaType Interleaved *PageRegion SEF9x11
*UIConstraints: *PageSize 9x11 *MediaType Interleaved
*UIConstraints: *PageRegion 9x11 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize 9x11
*UIConstraints: *MediaType Interleaved *PageRegion 9x11
*UIConstraints: *PageSize 9x12 *MediaType Interleaved
*UIConstraints: *PageRegion 9x12 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize 9x12
*UIConstraints: *MediaType Interleaved *PageRegion 9x12
*UIConstraints: *PageSize A6 *MediaType Interleaved
*UIConstraints: *PageRegion A6 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize A6
*UIConstraints: *MediaType Interleaved *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Interleaved
*UIConstraints: *PageRegion B4 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize B4
*UIConstraints: *MediaType Interleaved *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Interleaved
*UIConstraints: *PageRegion SEFB5 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize SEFB5
*UIConstraints: *MediaType Interleaved *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType Interleaved
*UIConstraints: *PageRegion B5 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize B5
*UIConstraints: *MediaType Interleaved *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType Interleaved
*UIConstraints: *PageRegion 4x6 *MediaType Interleaved
*UIConstraints: *MediaType Interleaved *PageSize 4x6
*UIConstraints: *MediaType Interleaved *PageRegion 4x6

*UIConstraints: *PageSize TabloidExtra *MediaType Coated
*UIConstraints: *PageRegion TabloidExtra *MediaType Coated
*UIConstraints: *MediaType Coated *PageSize TabloidExtra
*UIConstraints: *MediaType Coated *PageRegion TabloidExtra
*UIConstraints: *PageSize A6 *MediaType Coated
*UIConstraints: *PageRegion A6 *MediaType Coated
*UIConstraints: *MediaType Coated *PageSize A6
*UIConstraints: *MediaType Coated *PageRegion A6
*UIConstraints: *PageSize 4x6 *MediaType Coated
*UIConstraints: *PageRegion 4x6 *MediaType Coated
*UIConstraints: *MediaType Coated *PageSize 4x6
*UIConstraints: *MediaType Coated *PageRegion 4x6

*UIConstraints: *PageSize TabloidExtra *MediaType Thick2
*UIConstraints: *PageRegion TabloidExtra *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize TabloidExtra
*UIConstraints: *MediaType Thick2 *PageRegion TabloidExtra
*UIConstraints: *PageSize SEF8x10 *MediaType Thick2
*UIConstraints: *PageRegion SEF8x10 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize SEF8x10
*UIConstraints: *MediaType Thick2 *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType Thick2
*UIConstraints: *PageRegion 8x10 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize 8x10
*UIConstraints: *MediaType Thick2 *PageRegion 8x10
*UIConstraints: *PageSize A6 *MediaType Thick2
*UIConstraints: *PageRegion A6 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize A6
*UIConstraints: *MediaType Thick2 *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Thick2
*UIConstraints: *PageRegion B4 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize B4
*UIConstraints: *MediaType Thick2 *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Thick2
*UIConstraints: *PageRegion SEFB5 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize SEFB5
*UIConstraints: *MediaType Thick2 *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType Thick2
*UIConstraints: *PageRegion B5 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize B5
*UIConstraints: *MediaType Thick2 *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType Thick2
*UIConstraints: *PageRegion 4x6 *MediaType Thick2
*UIConstraints: *MediaType Thick2 *PageSize 4x6
*UIConstraints: *MediaType Thick2 *PageRegion 4x6

*UIConstraints: *PageSize Tabloid *MediaType Tacking
*UIConstraints: *PageRegion Tabloid *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize Tabloid
*UIConstraints: *MediaType Tacking *PageRegion Tabloid
*UIConstraints: *PageSize TabloidExtra *MediaType Tacking
*UIConstraints: *PageRegion TabloidExtra *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize TabloidExtra
*UIConstraints: *MediaType Tacking *PageRegion TabloidExtra
*UIConstraints: *PageSize SEF8x10 *MediaType Tacking
*UIConstraints: *PageRegion SEF8x10 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize SEF8x10
*UIConstraints: *MediaType Tacking *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType Tacking
*UIConstraints: *PageRegion 8x10 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize 8x10
*UIConstraints: *MediaType Tacking *PageRegion 8x10
*UIConstraints: *PageSize A6 *MediaType Tacking
*UIConstraints: *PageRegion A6 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize A6
*UIConstraints: *MediaType Tacking *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Tacking
*UIConstraints: *PageRegion B4 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize B4
*UIConstraints: *MediaType Tacking *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Tacking
*UIConstraints: *PageRegion SEFB5 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize SEFB5
*UIConstraints: *MediaType Tacking *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType Tacking
*UIConstraints: *PageRegion B5 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize B5
*UIConstraints: *MediaType Tacking *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType Tacking
*UIConstraints: *PageRegion 4x6 *MediaType Tacking
*UIConstraints: *MediaType Tacking *PageSize 4x6
*UIConstraints: *MediaType Tacking *PageRegion 4x6

*UIConstraints: *PageSize TabloidExtra *MediaType SSTransfer
*UIConstraints: *PageRegion TabloidExtra *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize TabloidExtra
*UIConstraints: *MediaType SSTransfer *PageRegion TabloidExtra
*UIConstraints: *PageSize SEF8x10 *MediaType SSTransfer
*UIConstraints: *PageRegion SEF8x10 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize SEF8x10
*UIConstraints: *MediaType SSTransfer *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType SSTransfer
*UIConstraints: *PageRegion 8x10 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize 8x10
*UIConstraints: *MediaType SSTransfer *PageRegion 8x10
*UIConstraints: *PageSize A6 *MediaType SSTransfer
*UIConstraints: *PageRegion A6 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize A6
*UIConstraints: *MediaType SSTransfer *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType SSTransfer
*UIConstraints: *PageRegion B4 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize B4
*UIConstraints: *MediaType SSTransfer *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType SSTransfer
*UIConstraints: *PageRegion SEFB5 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize SEFB5
*UIConstraints: *MediaType SSTransfer *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType SSTransfer
*UIConstraints: *PageRegion B5 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize B5
*UIConstraints: *MediaType SSTransfer *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType SSTransfer
*UIConstraints: *PageRegion 4x6 *MediaType SSTransfer
*UIConstraints: *MediaType SSTransfer *PageSize 4x6
*UIConstraints: *MediaType SSTransfer *PageRegion 4x6

*UIConstraints: *PageSize TabloidExtra *MediaType Labels
*UIConstraints: *PageRegion TabloidExtra *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize TabloidExtra
*UIConstraints: *MediaType Labels *PageRegion TabloidExtra
*UIConstraints: *PageSize SEF8x10 *MediaType Labels
*UIConstraints: *PageRegion SEF8x10 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize SEF8x10
*UIConstraints: *MediaType Labels *PageRegion SEF8x10
*UIConstraints: *PageSize 8x10 *MediaType Labels
*UIConstraints: *PageRegion 8x10 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize 8x10
*UIConstraints: *MediaType Labels *PageRegion 8x10
*UIConstraints: *PageSize A6 *MediaType Labels
*UIConstraints: *PageRegion A6 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize A6
*UIConstraints: *MediaType Labels *PageRegion A6
*UIConstraints: *PageSize B4 *MediaType Labels
*UIConstraints: *PageRegion B4 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize B4
*UIConstraints: *MediaType Labels *PageRegion B4
*UIConstraints: *PageSize SEFB5 *MediaType Labels
*UIConstraints: *PageRegion SEFB5 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize SEFB5
*UIConstraints: *MediaType Labels *PageRegion SEFB5
*UIConstraints: *PageSize B5 *MediaType Labels
*UIConstraints: *PageRegion B5 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize B5
*UIConstraints: *MediaType Labels *PageRegion B5
*UIConstraints: *PageSize 4x6 *MediaType Labels
*UIConstraints: *PageRegion 4x6 *MediaType Labels
*UIConstraints: *MediaType Labels *PageSize 4x6
*UIConstraints: *MediaType Labels *PageRegion 4x6

*UIConstraints: *EFColorMode GRAY *EFOverprint On
*UIConstraints: *EFOverprint On *EFColorMode GRAY

*% Full frame does not support reverse print, collate
*UIConstraints: *EFCompression False *EFOutputOrder Reverse
*UIConstraints: *EFCompression False *EFSorter Collate
*UIConstraints: *EFOutputOrder Reverse *EFCompression False
*UIConstraints: *EFSorter Collate *EFCompression False
*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE

*% ColorWise UIConstraints begin here
*% TV@UIC1.0@CMYK@980402

*UIConstraints: *EFSimulation None *EFSimSpeed Quick
*UIConstraints: *EFSimSpeed Quick *EFSimulation None
*UIConstraints: *EFSimulation None *EFSimSpeed Full
*UIConstraints: *EFSimSpeed Full *EFSimulation None
*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
*UIConstraints: *EFBlkOverprint True *EFPureBlack False
*UIConstraints: *EFPureBlack False *EFBlkOverprint True

*% ColorWise UIConstraints end here

*% General Information and Defaults ===============
*FCacheSize None: 524288
*TTRasterizer: Type42
*ContoneOnly: False
*FreeVM: "5767168"
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*PrintPSErrors: True
*FileSystem: True
*?FileSystem: "
	save
	  statusdict /diskstatus known{(True)} {(False)} ifelse = flush
	restore
	"
*End
*Throughput: "10"
*Password: "0"
*ExitServer: "
   count 0 eq
   { false } { true exch startjob } ifelse
   not { (WARNING: Cannot modify initial VM.) =
            (Missing or invalid password.) =
            (Please contact the author of this software.) = flush quit
          } if
"
*End

*Reset: "
   count 0 eq
   { false } { true exch startjob } ifelse
   not { (WARNING: Cannot reset printer.) =
            (Missing or invalid password.) =
            (Please contact the author of this software.) = flush quit
          } if
   systemdict /quit get exec
   (WARNING: Printer Reset Failed.) = flush
"
*End

*DefaultResolution: 400dpi
*?Resolution: "
save
  initgraphics
  0 0 moveto currentpoint matrix defaultmatrix transform
  0 72 lineto currentpoint matrix defaultmatrix transform
  3 -1 roll sub dup mul
  3 1 roll exch sub dup mul
  add sqrt round cvi
  (          ) cvs print (dpi) = flush
restore
"
*End

*AccurateScreensSupport: True

*%EFIFlags *FRAME_MODE Setup
*OpenUIEFI *FRAME_MODE/Compression :PickOne
*OrderDependency: 05.0 AnySetup *FRAME_MODE
*DefaultFRAME_MODE: AREND
*FRAME_MODE AREND/On: ""
*FRAME_MODE ADOBE/Off: ""
*CloseUIEFI: *FRAME_MODE

*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
*%EFIGroup *EFCompression Job/Job
*OpenUI *EFCompression/Compression :PickOne
*OrderDependency: 05.0 AnySetup *EFCompression
*DefaultEFCompression: SCDefault
*EFCompression SCDefault/Printer's default: ""
*%DefaultEFCompression: True
*EFCompression False/Off: " userdict /XJXsetRenderType known
        { (ADOBE) XJXsetRenderType }
	if "
*End
*EFCompression True/On: " userdict /XJXsetRenderType known
        { (AREND) XJXsetRenderType }
	if "
*End
*?EFCompression: "(True) = flush"
*CloseUI: *EFCompression

*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
*%EFIGroup *EFOutputOrder Finishing/Finishing
*OpenUI *EFOutputOrder/Page Order :PickOne
*OrderDependency: 12.0 AnySetup *EFOutputOrder
*DefaultEFOutputOrder: EFOutputOrderDEF
*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
    { 0 XJXsetprintorder }
    { (printerinfo PrintOrder 0) =string
        FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse  "
*End
*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
    { 1 XJXsetprintorder }
    { (printerinfo PrintOrder 1) =string
        FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse  "
*End
*CloseUI: *EFOutputOrder

*%EFIFlags *EFCopierMode Command|Spooler
*%EFIGroup *EFCopierMode Job/Job
*OpenUI *EFCopierMode/Copier Mode :PickOne
*OrderDependency: 40 AnySetup *EFCopierMode
*DefaultEFCopierMode: EFCopierModeDEF
*EFCopierMode EFCopierModeDEF/Printer's default: ""
*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known 
	{ 0 XJXsetmapmode } 
	{ (printerinfo setmapmode 0) =string 
		FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
*End
*EFCopierMode Map/Map: " userdict /XJXsetmapmode known 
	{ 1 XJXsetmapmode } 
	{ (printerinfo setmapmode 1) =string 
		FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
*End
*CloseUI: *EFCopierMode

*%EFIFlags *EFOverprint
*%EFIGroup *EFOverprint Color/Color
*OpenUI *EFOverprint/Combine Separations :PickOne
*OrderDependency: 40 AnySetup *EFOverprint
*DefaultEFOverprint: EFOverprintDEF
*EFOverprint EFOverprintDEF/Printer's default: ""
*EFOverprint On/On: " userdict /XJXsetoverprint known 
	{ 1 XJXsetoverprint } 
	{ (printerinfo overprint 1) =string 
        /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse 
    userdict /XJXsetcolormode known
	{ (Grayscale) XJXsetcolormode } if "
*End
*EFOverprint Off/Off: " userdict /XJXsetoverprint known 
	{ 0 XJXsetoverprint } 
	{ (printerinfo overprint 0) =string 
        /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse 
    userdict /XJXsetcolormode known
	{ (Grayscale) XJXsetcolormode } if "
*End
*CloseUI: *EFOverprint

*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
*%EFIGroup *EFColorMode Color/Color
*OpenUI *EFColorMode/Color Mode :PickOne
*OrderDependency: 15 AnySetup *EFColorMode 
*DefaultEFColorMode: EFColorModeDEF
*EFColorMode EFColorModeDEF/Printer's default: ""
*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
  { (CMYK) XJXsetcolormode } if "
*End
*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
  { (Grayscale) XJXsetcolormode} if "
*End
*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
*CloseUI: *EFColorMode

*%EFIFlags *EFDefPaperSize Setup
*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
*OrderDependency: 20 AnySetup *EFDefPaperSize
*DefaultEFDefPaperSize: US
*EFDefPaperSize US/US: ""
*EFDefPaperSize Metric/Metric: ""
*CloseUIEFI: *EFDefPaperSize 

*%EFIFlags *EFConvPaperSize Setup
*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
*OrderDependency: 25 AnySetup *EFConvPaperSize
*DefaultEFConvPaperSize: False
*EFConvPaperSize False/No: ""
*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
*CloseUIEFI: *EFConvPaperSize

*%EFIFlags *EFCovPgAtEnd Setup
*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
*OrderDependency: 30 AnySetup *EFCovPgAtEnd
*DefaultEFCovPgAtEnd: NO
*EFCovPgAtEnd YES/Yes: ""
*EFCovPgAtEnd NO/No: ""
*CloseUIEFI: *EFCovPgAtEnd

*%EFIFlags *EFCourierSubst Setup
*OpenUIEFI *EFCourierSubst/Allow Courier       Substitution :PickOne
*OrderDependency: 35 AnySetup *EFCourierSubst
*DefaultEFCourierSubst: YES
*EFCourierSubst YES/Yes: ""
*EFCourierSubst NO/No: ""
*CloseUIEFI: *EFCourierSubst 

*%EFIFlags *EFPSError Setup
*OpenUIEFI *EFPSError/Print to PS Error : PickOne
*OrderDependency: 40 AnySetup *EFPSError
*DefaultEFPSError: NO
*EFPSError YES/Yes: ""
*EFPSError NO/No: ""
*CloseUIEFI: *EFPSError

*%EFIFlags *EFUseBypassTray Setup
*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray  as default : PickOne
*OrderDependency: 20 AnySetup *EFUseBypassTray
*DefaultEFUseBypassTray: NO
*EFUseBypassTray YES/Yes: ""
*EFUseBypassTray NO/No: ""
*CloseUIEFI: *EFUseBypassTray

*%EFIFlags *EFUseSorter Setup
*OpenUIEFI *EFUseSorter/Enable Sorter       as default : PickOne
*OrderDependency: 20 AnySetup *EFUseSorter
*DefaultEFUseSorter: NO
*EFUseSorter YES/Yes: ""
*EFUseSorter NO/No: ""
*CloseUIEFI: *EFUseSorter

*%EFIFlags *EFSorter Spooler|Command|Column
*%EFIGroup *EFSorter Finishing/Finishing
*OpenUI *EFSorter/Sorter Mode :PickOne
*OrderDependency: 50 AnySetup *EFSorter
*DefaultEFSorter: EFSorterDEF
*EFSorter EFSorterDEF/Printer's default: ""
*EFSorter False/Off: " << /Collate false>> setpagedevice
	userdict /XJXsetsorter known
              { 0 XJXsetsorter }
              { (printerinfo sortmode 0) =string
        FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
*End
*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
        userdict /XJXsetsorter known
              { 0 XJXsetsorter }
              { (printerinfo sortmode 0) =string
        FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
*End
*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
	userdict /XJXsetsorter known
              { 1 XJXsetsorter }
              { (printerinfo sortmode 1) =string
        FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
*End
*CloseUI: *EFSorter

*%EFIFlags *MediaType Spooler|Command|Column|Rerip
*%EFIGroup *MediaType Media/Media
*OpenUI *MediaType/Media Type :PickOne
*OrderDependency: 50 AnySetup *MediaType
*DefaultMediaType: MediaTypeDEF
*MediaType MediaTypeDEF/Printer's default: ""
*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
    { 1 XJXsetmediatype } if"
*End
*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
    { 2 XJXsetmediatype } if"
*End
*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
    { 3 XJXsetmediatype } if"
*End
*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
    { 4 XJXsetmediatype } if"
*End
*MediaType Coated/Coated Paper:  " userdict /XJXsetmediatype known
    { 5 XJXsetmediatype } if"
*End
*MediaType Thick2/Thick Paper 2:  " userdict /XJXsetmediatype known
    { 6 XJXsetmediatype } if"
*End
*MediaType Tacking/Tacking Film:  " userdict /XJXsetmediatype known
    { 7 XJXsetmediatype } if"
*End
*MediaType SSTransfer/SST:  " userdict /XJXsetmediatype known
    { 8 XJXsetmediatype } if"
*End
*MediaType Labels/Labels:  " userdict /XJXsetmediatype known
    { 9 XJXsetmediatype } if"
*End
*?MediaType: " FieryXJdict /CB_GetMediaType known { 
    FieryXJdict /CB_GetMediaType get exec == } if"
*End
*CloseUI: *MediaType

*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
*%EFIGroup *EFColorRendDict Color/Color
*OpenUI *EFColorRendDict/Rendering Style :PickOne
*OrderDependency: 60 AnySetup *EFColorRendDict
*DefaultEFColorRendDict: EFColorRendDictDEF
*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
    { (Photographic) XJXsetrenderingintent
    } if "
*End
*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
    { (Presentation) XJXsetrenderingintent
    } if "
*End
*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
    { (Solid) XJXsetrenderingintent
    } if "
*End
*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known { 
    FieryXJdict /CB_GetRenderingIntent get exec == } if"
*End
*CloseUI: *EFColorRendDict

*%EFIFlags *EFPrange
*%EFIGroup *EFPrange Job/Job
*OpenUIEFI *EFPrange/Page Range : PickOne
*OrderDependency: 70 AnySetup *EFPrange
*DefaultEFPrange: EFPrangeDEF
*EFPrange EFPrangeDEF/Printer's default: ""
*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	currentglobal true setglobal
	DriverOps /pagerange [ ] put
	setglobal "
*End
*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	currentglobal true setglobal
	DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
	setglobal "
*End
*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	currentglobal true setglobal
	DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
	setglobal "
*End
*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	currentglobal true setglobal
	DriverOps /pagerange [ 0 1 2 4 6 ] put
	setglobal "
*End
*CloseUIEFI: *EFPrange

*%EFIFlags *EFFlip
*%EFIGroup *EFFlip Job/Job
*OpenUIEFI *EFFlip/Flip : PickOne
*OrderDependency: 75 AnySetup *EFFlip
*DefaultEFFlip: EFFlipDEF
*EFFlip EFFlipDEF/Printer's default: ""
*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
*End
*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
*End
*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
*End
*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
*End
*CloseUIEFI: *EFFlip

*%EFIFlags *EFScale
*%EFIGroup *EFScale Job/Job
*OpenUIEFI *EFScale/Scale : PickOne
*OrderDependency: 80 AnySetup *EFScale
*DefaultEFScale: EFScaleDEF
*EFScale EFScaleDEF/Printer's default: ""
*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /scale# 2 put << >> setpagedevice "
*End
*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /scale# 1.5 put << >> setpagedevice "
*End
*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /scale# 1 put << >> setpagedevice "
*End
*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /scale# .75 put << >> setpagedevice "
*End
*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /scale# .5 put << >> setpagedevice "
*End
*CloseUIEFI: *EFScale

*%EFIFlags *EFRotate
*%EFIGroup *EFRotate Job/Job
*OpenUIEFI *EFRotate/Rotate: PickOne
*OrderDependency: 85 AnySetup *EFRotate
*DefaultEFRotate: EFRotateDEF
*EFRotate EFRotateDEF/Printer's default: ""
*EFRotate 0/0°: "  << >> setpagedevice "
*EFRotate 90/90° CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /rotate# 90 put << >> setpagedevice "
*End
*EFRotate 270/90° CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /rotate# 270 put << >> setpagedevice "
*End
*EFRotate 180/180°: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
	DriverOps /rotate# 180 put << >> setpagedevice "
*End
*CloseUIEFI: *EFRotate

*% ColorWise body begins here
*% TV@B1.0@CMYK@980402

*%EFIFlags *EFBrightness Spooler|Command|Rerip
*%EFIGroup *EFBrightness  Color/Color
*OpenUI *EFBrightness/Brightness :PickOne
*OrderDependency: 55.0 AnySetup *EFBrightness
*DefaultEFBrightness: 00.00
*EFBrightness +0.24/85%  Lightest: " /XJXsetBrightness where
        { pop (LIGHTEST) XJXsetBrightness } if "
*End
*EFBrightness +0.16/90%  Lighter: " /XJXsetBrightness where
        { pop (LIGHTER) XJXsetBrightness } if "
*End
*EFBrightness +0.08/95%  Light: " /XJXsetBrightness where
        { pop (LIGHT) XJXsetBrightness } if "
*End
*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
        { pop (NORMAL) XJXsetBrightness } if "
*End
*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
        { pop (DARK) XJXsetBrightness } if "
*End
*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
        { pop (DARKER) XJXsetBrightness } if "
*End
*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
        { pop (DARKEST) XJXsetBrightness } if "
*End
*CloseUI: *EFBrightness


*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
*%EFIGroup *EFRGBOverride  Color/Color
*OpenUI *EFRGBOverride/RGB Source :PickOne
*OrderDependency: 56.0 AnySetup *EFRGBOverride
*DefaultEFRGBOverride: EFRGBOverrideDEF
*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
        { pop (EFIRGB) XJXsetRGBOverride } if "
*End
*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
        { pop (SRGB) XJXsetRGBOverride } if "
*End
*EFRGBOverride Apple13/Apple Standard: "  /XJXsetRGBOverride where
        { pop (APPLE13) XJXsetRGBOverride } if "
*End
*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
        { pop (OTHER) XJXsetRGBOverride } if "
*End
*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
        { pop (Off) XJXsetRGBOverride } if  "
*End
*CloseUI: *EFRGBOverride


*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
*%EFIGroup *EFRGBOtherGamma  Color/Color
*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
        { pop (1.0) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
        { pop (1.2) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
        { pop (1.4) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
        { pop (1.6) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
        { pop (1.8) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
        { pop (2.0) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
        { pop (2.2) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
        { pop (2.4) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
        { pop (2.6) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
        { pop (2.8) XJXsetRGBOtherGamma } if "
*End
*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
        { pop (3.0) XJXsetRGBOtherGamma } if "
*End
*CloseUI: *EFRGBOtherGamma


*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
*%EFIGroup *EFRGBOtherWtPt  Color/Color
*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
        { pop (5000K) XJXsetRGBOtherWtPt } if "
*End
*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
        { pop (5500K) XJXsetRGBOtherWtPt } if "
*End
*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
        { pop (6500K) XJXsetRGBOtherWtPt } if "
*End
*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
        { pop (7500K) XJXsetRGBOtherWtPt } if "
*End
*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
        { pop (9300K) XJXsetRGBOtherWtPt } if "
*End
*CloseUI: *EFRGBOtherWtPt


*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
*%EFIGroup *EFRGBOtherPhos  Color/Color
*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
        { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
*End
*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
        { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
*End
*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
        { pop (NTSC) XJXsetRGBOtherPhos } if "
*End
*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
        { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
*End
*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
        { pop (SMPTE) XJXsetRGBOtherPhos } if "
*End
*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
        { pop (Trinitron) XJXsetRGBOtherPhos } if "
*End
*CloseUI: *EFRGBOtherPhos


*%EFIFlags *EFSimulation Spooler|Command|Rerip
*%EFIGroup *EFSimulation Color/Color
*OpenUI *EFSimulation/CMYK Simulation :PickOne
*OrderDependency: 57.0 AnySetup *EFSimulation
*DefaultEFSimulation: EFSimulationDEF
*EFSimulation EFSimulationDEF/Printer's default: ""
*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
        { pop (SWOP-Coated) XJXsetSimulation } if "
*End
*EFSimulation DIC/DIC: " /XJXsetSimulation where
        { pop (DIC) XJXsetSimulation } if "
*End
*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
        { pop (Euroscale) XJXsetSimulation } if "
*End
*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
        { pop (Custom-1) XJXsetSimulation } if "
*End
*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
        { pop (Custom-2) XJXsetSimulation } if "
*End
*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
        { pop (Custom-3) XJXsetSimulation } if "
*End
*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
        { pop (Custom-4) XJXsetSimulation } if "
*End
*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
        { pop (Custom-5) XJXsetSimulation } if "
*End
*EFSimulation None/None: "  /XJXsetSimulation where
        { pop (.None) XJXsetSimulation } if "
*End
*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
        { pop (.MatchCopy) XJXsetSimulation } if "
*End
*CloseUI: *EFSimulation


*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
*%EFIGroup *EFSimSpeed  Color/Color
*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
*OrderDependency: 58.0 AnySetup *EFSimSpeed
*DefaultEFSimSpeed: EFSimSpeedDEF
*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
        { pop (Quick) XJXsetSimSpeed } if  "
*End
*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
        { pop (Full) XJXsetSimSpeed } if  "
*End
*CloseUI: *EFSimSpeed


*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
*%EFIGroup *EFPureBlack  Color/Color
*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
*OrderDependency: 59.0 AnySetup *EFPureBlack
*DefaultEFPureBlack: EFPureBlackDEF
*EFPureBlack EFPureBlackDEF/Printer's default: ""
*EFPureBlack False/Off: " /XJXsetPureBlack where
        { pop (False) XJXsetPureBlack } if "
*End
*EFPureBlack True/On: " /XJXsetPureBlack where
        { pop (True) XJXsetPureBlack } if "
*End
*CloseUI: *EFPureBlack


*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
*%EFIGroup *EFBlkOverprint  Color/Color
*OpenUI *EFBlkOverprint/Black Overprint :PickOne
*OrderDependency: 60.0 AnySetup *EFBlkOverprint
*DefaultEFBlkOverprint: EFBlkOverprintDEF
*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
        { pop (False) XJXsetBlkOverprint } if "
*End
*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
        { pop (True) XJXsetBlkOverprint } if "
*End
*CloseUI: *EFBlkOverprint


*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
*%EFIGroup *EFSpotColors  Color/Color
*OpenUI *EFSpotColors/Spot Color Matching :PickOne
*OrderDependency: 61.0 AnySetup *EFSpotColors
*DefaultEFSpotColors: EFSpotColorsDEF
*EFSpotColors EFSpotColorsDEF/Printer's default: ""
*EFSpotColors False/Off: " /XJXsetSpotColors where
        { pop (False) XJXsetSpotColors } if "
*End
*EFSpotColors True/On: " /XJXsetSpotColors where
        { pop (True) XJXsetSpotColors } if "
*End
*CloseUI: *EFSpotColors

*% ColorWise body ends here


*%EFIFlags *EFRaster Command|Column|Rerip
*%EFIGroup *EFRaster  Job/Job
*OpenUI *EFRaster/Save Fast Reprint : Boolean
*OrderDependency: 65.0 AnySetup *EFRaster
*DefaultEFRaster: False
*EFRaster True/On: " userdict /XJXsetraster known
    { 1 XJXsetraster }
    if "
*End
*EFRaster False/Off: " userdict /XJXsetraster known
    { 0 XJXsetraster }
    if "
*End
*CloseUI: *EFRaster

*% Halftone Information =============================
*ScreenFreq: "50.0"
*ScreenAngle: "0"
*DefaultScreenProc: Line
*ScreenProc Line: "
	{2 4 
	{ 3 1 roll 4 -1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}
	exec 8 mul 3 1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}			
	exec add
	{
	48 18  8 16   46 16  6 14
	56 60 32 24   54 58 30 22
	 4 12 44 40    2 10 42 38
	28 20 52 64   26 18 50 62
	
	45 15  5 13   47 17  7 15
	53 57 29 21   55 59 31 23
	 1  9 41 37    3 11 43 39
	25 17 49 61   27 19 51 63
	} 
	exch get 8 dup mul div} exec}"
*End

*DefaultTransfer: Null
*Transfer Null: "{ }"
*Transfer Null.Inverse: "{ 1 exch sub }"

*% PPD pages begins

*% Paper Handling ===================
*% Use these entries to set paper size most of the time, unless there is
*% specific reason to use PageRegion.
*%EFIFlags *PageSize  Column
*OpenUI *PageSize/Page Size :PickOne
*OrderDependency: 90 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter:" userdict /XJXsetpagesize known
    { (Letter) XJXsetpagesize }
    { << /PageSize [612 792] /MediaType null 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse " 
*End
*PageSize A4/A4: " userdict /XJXsetpagesize known
    { (A4)XJXsetpagesize }
    { << /PageSize [595 842] /MediaType null 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageSize Legal/Legal: " userdict /XJXsetpagesize known
    { (Legal)XJXsetpagesize } { legal } ifelse "
*End
*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
    { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
*End
*PageSize A3/A3: " userdict /XJXsetpagesize known
    { (A3) XJXsetpagesize } { a3 } ifelse "
*End
*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
    { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
*End
*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
    { (Legal13) XJXsetpagesize } { legal13 } ifelse "
*End
*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
    { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
*End
*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
    { (LetterSEF) XJXsetpagesize }
    { << /PageSize [612 792] /MediaType (ShortEdgeFeed) 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known 
    { (A4SEF) XJXsetpagesize }
    { << /PageSize [595 842] /MediaType (ShortEdgeFeed) 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageSize B4/B4: " userdict /XJXsetpagesize known
    { (B4) XJXsetpagesize } { b4 } ifelse "
*End
*PageSize B5/B5: " userdict /XJXsetpagesize known
    { (B5) XJXsetpagesize } { b5 } ifelse "
*End
*PageSize SEFB5/SEF B5: " userdict /XJXsetpagesize known
    { (B5SEF) XJXsetpagesize } { b5 } ifelse "
*End
*PageSize TabloidExtra/12x18: " userdict /XJXsetpagesize known
    { (TabloidExtra) XJXsetpagesize }
    { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
      /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageSize 4x6/Postcard: " userdict /XJXsetpagesize known
    { (Postcard) XJXsetpagesize }
    { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
      /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageSize A6/A6: " userdict /XJXsetpagesize known
    { (A6) XJXsetpagesize } { a6 } ifelse "
*End
*PageSize 9x11/9x11: " userdict /XJXsetpagesize known
    { (NineByEleven) XJXsetpagesize }
    { << /PageSize [648 792] /MediaType null 
      /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
    } ifelse "
*End
*PageSize SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
    { (NineByElevenSEF) XJXsetpagesize }
    { << /PageSize [648 792] /MediaType (ShortEdgeFeed) 
      /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageSize SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
    { (EightByTenSEF) XJXsetpagesize }
    { << /PageSize [576 720] /MediaType (ShortEdgeFeed) 
      /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*?PageSize: "  
	save currentpagedevice /PageSize get aload pop
   2 copy gt {exch} if (Unknown) 
   19 dict
   dup [612 792] (Letter) put
   dup [612 1008] (Legal) put
   dup [792 1224] (Tabloid) put
   dup [842 1191] (A3) put
   dup [595 842] (A4) put
   dup [576 720] (8x10) put
   dup [612 936] (Legal13) put
   dup [648 864] (9x12) put
   dup [612 793] (SEFLet) put
   dup [595 843] (SEFA4) put
   dup [729 1032] (B4) put
   dup [516 729] (B5) put
   dup [516 728] (SEFB5) put
   dup [864 1296] (TabloidExtra) put
   dup [288 432] (4x6) put
   dup [297 420] (A6) put
   dup [648 792] (9x11) put
   dup [648 793] (SEF9x11) put
   dup [576 721] (SEF8x10) 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

*% These entries will set up the frame buffer. Usually used with manual feed.
*%EFIFlags *PageRegion
*OpenUI *PageRegion :PickOne
*OrderDependency: 95 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
    { (Letter) XJXsetpagesize }
    { << /PageSize [612 792] /MediaType null 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageRegion A4/A4: " userdict /XJXsetpagesize known
    { (A4)XJXsetpagesize }
    { << /PageSize [595 842] /MediaType null 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
    { (Legal)XJXsetpagesize } { legal } ifelse "
*End
*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
    { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
*End
*PageRegion A3/A3: " userdict /XJXsetpagesize known
    { (A3) XJXsetpagesize } { a3 } ifelse "
*End
*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
    { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
*End
*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
    { (Legal13) XJXsetpagesize } { legal13 } ifelse "
*End
*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
    { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
*End
*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
    { (LetterSEF) XJXsetpagesize }
    { << /PageSize [612 792] /MediaType (ShortEdgeFeed) 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known 
    { (A4SEF) XJXsetpagesize }
    { << /PageSize [595 842] /MediaType (ShortEdgeFeed) 
            /Policies << /PageSize 7 >> >> setpagedevice
    } ifelse "
*End
*PageRegion B4/B4: " userdict /XJXsetpagesize known
    { (B4) XJXsetpagesize } { b4 } ifelse "
*End
*PageRegion B5/B5: " userdict /XJXsetpagesize known
    { (B5) XJXsetpagesize } { b5 } ifelse "
*End
*PageRegion SEFB5/SEF B5: " userdict /XJXsetpagesize known
    { (B5SEF) XJXsetpagesize } { b5 } ifelse "
*End
*PageRegion TabloidExtra/12x18: " userdict /XJXsetpagesize known
    { (TabloidExtra) XJXsetpagesize }
    { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
      /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageRegion 4x6/Postcard: " userdict /XJXsetpagesize known
    { (Postcard) XJXsetpagesize }
    { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
      /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageRegion A6/A6: " userdict /XJXsetpagesize known
    { (A6) XJXsetpagesize } { a6 } ifelse "
*End
*PageRegion 9x11/9x11: " userdict /XJXsetpagesize known
    { (NineByEleven) XJXsetpagesize }
    { << /PageSize [648 792] /MediaType null 
      /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
    } ifelse "
*End
*PageRegion SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
    { (NineByElevenSEF) XJXsetpagesize }
    { << /PageSize [648 792] /MediaType (ShortEdgeFeed) 
      /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*PageRegion SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
    { (EightByTenSEF) XJXsetpagesize }
    { << /PageSize [576 720] /MediaType (ShortEdgeFeed) 
      /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
    } ifelse "
*End
*CloseUI: *PageRegion

*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "14 11 595 783"
*ImageableArea A4/A4: "14 11 578 833"
*ImageableArea Legal/Legal: "9 14 601 991"
*ImageableArea Tabloid/11x17: "9 14 781 1207"
*ImageableArea A3/A3: "9 14 829 1172"
*ImageableArea 8x10/8x10: "14 11 559 711"
*ImageableArea Legal13/Legal 13:  "9 14 601 919"
*ImageableArea 9x12/9x12: "9 14 637 847"
*ImageableArea SEFLet/SEF Letter: "9 14 601 775"
*ImageableArea SEFA4/SEF A4: "9 14 584 825"
*ImageableArea TabloidExtra/12x18: "9 11 856 1282"
*ImageableArea 4x6/Postcard: "9 14 277 415"
*ImageableArea B4/B4: "9 14 718 1015"
*ImageableArea B5/B5: "14 11 499 720"
*ImageableArea SEFB5/SEF B5: "9 14 505 712"
*ImageableArea A6/A6: "9 14 286 403"
*ImageableArea 9x11/9x11: "14 11 631 783"
*ImageableArea SEF9x11/SEF 9x11: "9 14 637 775"
*ImageableArea SEF8x10/SEF 8x10: "9 14 565 703"
*?ImageableArea: "
 save /cvp { cvi (            ) cvs print ( ) print } bind def
  newpath clippath pathbbox
  4 -2 roll exch 2 {ceiling cvp} repeat
  exch 2 {floor cvp} repeat flush
 restore
"
*End

*% These provide the physical dimensions of the paper (by keyword)
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter: "612 792"
*PaperDimension A4/A4: "595 842"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Tabloid/11x17: "792 1224"
*PaperDimension A3/A3: "842 1191"
*PaperDimension 8x10/8x10:  "576 720"
*PaperDimension Legal13/Legal 13:  "612 936"
*PaperDimension 9x12/9x12:  "648 864"
*PaperDimension SEFLet/SEF Letter: "612 793"
*PaperDimension SEFA4/SEF A4: "595 843"
*PaperDimension B4/B4: "729 1032"
*PaperDimension B5/B5: "516 729"
*PaperDimension SEFB5/SEF B5: "516 728"
*PaperDimension TabloidExtra/12x18: "864 1296"
*PaperDimension 4x6/Postcard: "288 432"
*PaperDimension A6/A6: "297 420"
*PaperDimension 9x11/9x11: "648 792"
*PaperDimension SEF9x11/SEF 9x11: "648 793"
*PaperDimension SEF8x10/SEF 8x10: "576 721"

*% PPD pages ends

*%EFIFlags *EFTrayOvrWrt Spooler|Command
*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
*OrderDependency: 65 AnySetup *EFTrayOvrWrt
*DefaultEFTrayOvrWrt: False
*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
*?EFTrayOvrWrt: "
   save currentpagedevice /ManualFeed get
   {(True)} {(False)} ifelse = flush restore"
*End
*CloseUIEFI: *EFTrayOvrWrt

*RequiresPageRegion All: True
*%EFIFlags *InputSlot Command|Column
*%EFIGroup *InputSlot Finishing/Finishing
*OpenUI *InputSlot/Paper Source : PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: AutoSelect
*InputSlot AutoSelect/AutoSelect: ""
*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string 
	FieryXJdict /ExtCmdGetExec get exec {pop} if"
*End
*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string 
	FieryXJdict /ExtCmdGetExec get exec {pop} if"
*End
*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string 
	FieryXJdict /ExtCmdGetExec get exec {pop} if"
*End
*% For Tray 4 on 5750, trayselect value is 9, this is what
*% we set on the copier.
*InputSlot Tray4/Tray 4: "(printerinfo trayselect 9) =string 
	FieryXJdict /ExtCmdGetExec get exec {pop} if"
*End
*InputSlot ManualFeed/Bypass Tray: "
	1 dict dup /ManualFeed true put setpagedevice"
*End
*CloseUI: *InputSlot

*% Font Information =========================
*DefaultFont: Courier
*Font AlbertusMT: Standard "(001.000)" Standard Disk
*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
*Font Apple-Chancery: Standard "(002.000)" Standard Disk
*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk 
*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
*Font ArialMT: Standard "(002.000)" Standard Disk
*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
*Font Bodoni: Standard "(001.002)" Standard Disk
*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
*Font Bookman-Demi: Standard "(002.000)" Standard Disk
*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
*Font Bookman-Light: Standard "(002.000)" Standard Disk
*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
*Font Carta: Standard "(001.001)" Standard Disk
*Font Chicago: Standard "(002.000)" Standard Disk
*Font Clarendon: Standard "(001.001)" Standard Disk
*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
*Font Clarendon-Light: Standard "(001.001)" Standard Disk
*Font CooperBlack: Standard "(001.003)" Standard Disk
*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
*Font Coronet-Regular: Standard "(001.000)" Standard Disk
*Font Courier: Standard "(003.000)" Standard Disk
*Font Courier-Bold: Standard "(003.000)" Standard Disk
*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
*Font Courier-Oblique: Standard "(003.000)" Standard Disk
*Font Eurostile: Standard "(001.002)" Standard Disk
*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
*Font Geneva: Standard "(002.000)" Standard Disk
*Font GillSans: Standard "(001.002)" Standard Disk
*Font GillSans-Bold: Standard "(001.001)" Standard Disk
*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
*Font GillSans-Italic: Standard "(001.002)" Standard Disk
*Font GillSans-Light: Standard "(001.001)" Standard Disk
*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
*Font Goudy: Standard "(001.003)" Standard Disk
*Font Goudy-Bold: Standard "(001.002)" Standard Disk
*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
*Font Goudy-Italic: Standard "(001.002)" Standard Disk
*Font Helvetica: Standard "(002.000)" Standard Disk
*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
*Font JoannaMT: Standard "(001.000)" Standard Disk
*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
*Font LetterGothic: Standard "(001.004)" Standard Disk
*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
*Font Marigold: Standard "(001.000)" Standard Disk
*Font Monaco: Standard "(002.000)" Standard Disk
*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
*Font NewYork: Standard "(002.000)" Standard Disk
*Font Optima: Standard "(001.005)" Standard Disk
*Font Optima-Bold: Standard "(001.005)" Standard Disk
*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
*Font Optima-Italic: Standard "(001.000)" Standard Disk
*Font Oxford: Standard "(001.000)" Standard Disk
*Font Palatino-Bold: Standard "(002.000)" Standard Disk
*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
*Font Palatino-Italic: Standard "(002.000)" Standard Disk
*Font Palatino-Roman: Standard "(002.000)" Standard Disk
*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
*Font Symbol: Standard "(001.008)" Standard Disk
*Font Tekton: Standard "(001.001)" Standard Disk
*Font Times-Bold: Standard "(002.000)" Standard Disk
*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
*Font Times-Italic: Standard "(002.000)" Standard Disk
*Font Times-Roman: Standard "(002.000)" Standard Disk
*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
*Font Univers: Standard "(001.003)" Standard Disk
*Font Univers-Bold: Standard "(001.003)" Standard Disk
*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
*Font Univers-Condensed: Standard "(001.002)" Standard Disk
*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
*Font Univers-Extended: Standard "(001.000)" Standard Disk
*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
*Font Univers-Light: Standard "(001.003)" Standard Disk
*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
*Font Univers-Oblique: Standard "(001.003)" Standard Disk
*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
*Font ZapfDingbats: Standard "(002.000)" Standard Disk
*?FontQuery: "
   save  
   { count 1 gt
      { exch dup 127 string cvs (/) print print (:) print
       /Font resourcestatus {pop pop (Yes)} {(No)} ifelse = 
      } { exit } ifelse
   } bind loop
   (*) = flush
   restore"
*End

*?FontList: "
   save (*) {cvn ==} 128 string /Font resourceforall
   (*) = flush restore"
*End

*% 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: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "printing"
*Status: "scanning"

*Status: "PrinterError: Ok"
*Status: "PrinterError: Reset the copier and fiery"
*Status: "PrinterError: Copier is busy (Copier mode)"
*Status: "PrinterError: Copier is busy (AGOC)"
*Status: "PrinterError: Copier is busy (FUSER)"
*Status: "PrinterError: Copier is busy (ROS)"
*Status: "PrinterError: Copier is busy (DRUM HEATER)"
*Status: "PrinterError: Copier is busy (MC)"
*Status: "PrinterError: Paper jam"
*Status: "PrinterError: Copier's interlock is open"
*Status: "PrinterError: Out of toner"
*Status: "PrinterError: Fuser web empty"
*Status: "PrinterError: Waste toner container is full"
*Status: "PrinterError: Copier's accessary is disabled"

*Status: "PrinterError: Load A3 paper in tray"
*Status: "PrinterError: Load A4 paper in tray"
*Status: "PrinterError: Load A4 SEF paper in tray"
*Status: "PrinterError: Load 11x17 paper in tray"
*Status: "PrinterError: Load Letter paper in tray"
*Status: "PrinterError: Load Letter SEF paper in tray"
*Status: "PrinterError: Load Legal paper in tray"
*Status: "PrinterError: Load 8x10 paper in tray"
*Status: "PrinterError: Load Legal 13 paper in tray"
*Status: "PrinterError: Load 9x12 paper in tray"

*Status: "PrinterError: An unknown copier error occurred"
*Status: "PrinterError: Copier is offline"

*Status: "PrinterError: Load A3 paper in bypass tray"
*Status: "PrinterError: Load A4 paper bypass tray"
*Status: "PrinterError: Load A4 SEF paper bypass tray"
*Status: "PrinterError: Load 11x17 paper bypass tray"
*Status: "PrinterError: Load Letter paper bypass tray"
*Status: "PrinterError: Load Letter SEF paper bypass tray"
*Status: "PrinterError: Load Legal paper bypass tray"
*Status: "PrinterError: Load 8x10 paper bypass tray"
*Status: "PrinterError: Load Legal 13 paper bypass tray"
*Status: "PrinterError: Load 9x12 paper bypass tray"

*Status: "PrinterError: Sorter problem (See copier console)"
*Status: "PrinterError: Copier is busy (UI)"


*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "EtherTalk"
*Source: "Parallel"
*Source: "TCP/IP"
*Source: "Novell IPX"

*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)

*PrinterError: "Ok"
*PrinterError: "Reset the copier and fiery"
*PrinterError: "Copier is busy (Copier mode)"
*PrinterError: "Copier is busy (AGOC)"
*PrinterError: "Copier is busy (FUSER)"
*PrinterError: "Copier is busy (ROS)"
*PrinterError: "Copier is busy (DRUM HEATER)"
*PrinterError: "Copier is busy (MC)"
*PrinterError: "Paper jam"
*PrinterError: "Copier's interlock is open"
*PrinterError: "Out of toner"
*PrinterError: "Fuser web empty"
*PrinterError: "Waste toner container is full"
*PrinterError: "Copier's accessary is disabled"

*PrinterError: "Load A3 paper in tray"
*PrinterError: "Load A4 paper in tray"
*PrinterError: "Load A4 SEF paper in tray"
*PrinterError: "Load 11x17 paper in tray"
*PrinterError: "Load Letter paper in tray"
*PrinterError: "Load Letter SEF paper in tray"
*PrinterError: "Load Legal paper in tray"
*PrinterError: "Load 8x10 paper in tray"
*PrinterError: "Load Legal 13 paper in tray"
*PrinterError: "Load 9x12 paper in tray"

*PrinterError: "An unknown copier error occurred"
*PrinterError: "Copier is offline"

*PrinterError: "Load A3 paper in bypass tray"
*PrinterError: "Load A4 paper bypass tray"
*PrinterError: "Load A4 SEF paper bypass tray"
*PrinterError: "Load 11x17 paper bypass tray"
*PrinterError: "Load Letter paper bypass tray"
*PrinterError: "Load Letter SEF paper bypass tray"
*PrinterError: "Load Legal paper bypass tray"
*PrinterError: "Load 8x10 paper bypass tray"
*PrinterError: "Load Legal 13 paper bypass tray"
*PrinterError: "Load 9x12 paper bypass tray"

*PrinterError: "Sorter problem (See copier console)"
*PrinterError: "Copier is busy (UI)"


*% Color Separation Information ====================


*% Custom Inks for Fiery Logo
*InkName: P300FieryBlue/Fiery Blue
*InkName: P199FieryRed/Fiery Red
*InkName: PblackFieryBlack/Fiery Black
*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"

*DefaultColorSep: Black.50lpi.400dpi

*% -------Halftone Graphics Mode (Hi-Res mode)
*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
*ColorSepScreenAngle Black.50lpi.400dpi: "0"
*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5 
	{ 3 1 roll 4 -1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}
	exec 8 mul 3 1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}			
	exec add
	[
	48 18  8 16   46 16  6 14
	56 60 32 24   54 58 30 22
	 4 12 44 40    2 10 42 38
	28 20 52 64   26 18 50 62
	
	45 15  5 13   47 17  7 15
	53 57 29 21   55 59 31 23
	 1  9 41 37    3 11 43 39
	25 17 49 61   27 19 51 63
	] 
	exch get 8 dup mul div} exec}" 
*End

*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7 
	{ 3 1 roll 4 -1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}
	exec 8 mul 3 1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}			
	exec add
	[
	48 18  8 16   46 16  6 14
	56 60 32 24   54 58 30 22
	 4 12 44 40    2 10 42 38
	28 20 52 64   26 18 50 62
	
	45 15  5 13   47 17  7 15
	53 57 29 21   55 59 31 23
	 1  9 41 37    3 11 43 39
	25 17 49 61   27 19 51 63
	] 
	exch get 8 dup mul div} exec}"
*End

*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
	{ 3 1 roll 4 -1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}
	exec 8 mul 3 1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}			
	exec add
	[
	48 18  8 16   46 16  6 14
	56 60 32 24   54 58 30 22
	 4 12 44 40    2 10 42 38
	28 20 52 64   26 18 50 62
	
	45 15  5 13   47 17  7 15
	53 57 29 21   55 59 31 23
	 1  9 41 37    3 11 43 39
	25 17 49 61   27 19 51 63
	] 
	exch get 8 dup mul div} exec}"
*End

*ColorSepScreenProc Black.50lpi.400dpi: "{2 4 
	{ 3 1 roll 4 -1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}
	exec 8 mul 3 1 roll exch 
	{dup 8  ge { 8 sub} if exch 
	dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if 	 
	1.0 add 8 2 div  mul add dup 8 ge {8 sub} if
	dup 0 lt {0 exch sub} if  cvi
	}			
	exec add
	[
	48 18  8 16   46 16  6 14
	56 60 32 24   54 58 30 22
	 4 12 44 40    2 10 42 38
	28 20 52 64   26 18 50 62
	
	45 15  5 13   47 17  7 15
	53 57 29 21   55 59 31 23
	 1  9 41 37    3 11 43 39
	25 17 49 61   27 19 51 63
	] 
	exch get 8 dup mul div} exec}"
*End

*% PPD Last Modified 6/2/98
*% End of PPD file
*% The byte count of this file should be exactly 091521 or 093704
*% depending on the filesystem it resides in.
*% end of PPD file for Fiery X2 5750