summaryrefslogtreecommitdiff
path: root/psprint_config/configuration/ppds/XR_DC230.PS
blob: 2c7a9173f78dc2893dccc3df7c3766b6bb2b42d8 (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
*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
*% ===============================================================================
*FormatVersion: "4.3"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*% ===============================================================================
*% Device Info
*% ===============================================================================
*Manufacturer: "Xerox"
*ModelName: "Xerox Doc Centre 220/230 PS2 600dpi"
*ShortNickName: "Xerox DC 220/230 PS2 600dpi"
*NickName: "Xerox DC 220/230 PS2 600dpi"
*PCFileName: "XR_DC230.PPD"
*Product: "(Xerox Doc Centre 220/230 PS2 600dpi)"
*PSVersion: "(2016.108) 121"
*ColorDevice: False
*DefaultColorSpace: Gray
*FaxSupport: Base
*FileSystem: True
*?FileSystem: "
    save false
        (%disk?%)
        { currentdevparams dup /Writeable known
             {  /Writeable get {pop true} if }  { pop } ifelse
        }  10 string /IODevice resourceforall
    restore"
*End
*LanguageLevel: "2"
*Throughput: "30"
*TTRasterizer: Type42

*FreeVM: "4000000"
*VMOption 4MB/Standard: "4000000"
*FCacheSize None: 400000

*% ===============================================================================
*% Installable Options
*% ===============================================================================
*OpenGroup: InstallableOptions/Options Installed
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Duplex
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option1/Duplex Unit: Boolean
*DefaultOption1: False
*Option1 True/Installed: " "
*Option1 False/Not Installed: " "
*CloseUI: *Option1
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 3
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option2/Input Tray 3: Boolean
*DefaultOption2: False
*Option2 True/Installed: " "
*Option2 False/Not Installed: " "
*CloseUI: *Option2
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 4
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option3/Input Tray 4: Boolean
*DefaultOption3: False
*Option3 True/Installed: " "
*Option3 False/Not Installed: " "
*CloseUI: *Option3
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*% removed MSI - not an installable option
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Envelope Tray
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option5/Envelope Tray: Boolean
*DefaultOption5: False
*Option5 True/Installed: " "
*Option5 False/Not Installed: " "
*CloseUI: *Option5
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              High Capacity Feeder
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option6/High Capacity Feeder: Boolean
*DefaultOption6: False
*Option6 True/Installed: " "
*Option6 False/Not Installed: " "
*CloseUI: *Option6
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Stacker-Stapler (Finisher)
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option7/Finisher: Boolean
*DefaultOption7: False
*Option7 True/Installed: " "
*Option7 False/Not Installed: " "
*CloseUI: *Option7
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tower Mailbox
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*OpenUI *Option8/Mailbox: Boolean
*DefaultOption8: False
*Option8 True/Installed: " "
*Option8 False/Not Installed: " "
*CloseUI: *Option8
*CloseGroup: InstallableOptions
*% ===============================================================================
*% UI Constraints
*% ===============================================================================
*%      Constraints Based on Installable Options
*% ===============================================================================
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%          Duplexer
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option1 False *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *Option1 False
*UIConstraints: *Option1 False *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *Option1 False
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 3
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option2 False *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *Option2 False
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 4
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option3 False *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *Option3 False
*UIConstraints: *Option2 False *Option3
*UIConstraints: *Option3 *Option2 False
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*% removed Multi-sheet Inserter Tray -not an installable option
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Envelope Feeder
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option5 False *InputSlot Tray7
*UIConstraints: *InputSlot Tray7 *Option5 False
*UIConstraints: *Option5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *Option5
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              High Capacity Feeder
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option6 False *InputSlot Tray6
*UIConstraints: *InputSlot Tray6 *Option6 False
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Stacker-Stapler
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option7 False *OutputBin Stacker
*UIConstraints: *OutputBin Stacker *Option7 False
*UIConstraints: *Option7 True *OutputBin SideTray
*UIConstraints: *OutputBin SideTray *Option7 True
*UIConstraints: *Option7 False *StapleWhen EndOfSet
*UIConstraints: *StapleWhen EndOfSet *Option7 False
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tower Mailbox (optional output bins 2-11)
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *Option8 False *OutputBin OptionalOutbin2
*UIConstraints: *Option8 False *OutputBin OptionalOutbin3
*UIConstraints: *Option8 False *OutputBin OptionalOutbin4
*UIConstraints: *Option8 False *OutputBin OptionalOutbin5
*UIConstraints: *Option8 False *OutputBin OptionalOutbin6
*UIConstraints: *Option8 False *OutputBin OptionalOutbin7
*UIConstraints: *Option8 False *OutputBin OptionalOutbin8
*UIConstraints: *Option8 False *OutputBin OptionalOutbin9
*UIConstraints: *Option8 False *OutputBin OptionalOutbin10
*UIConstraints: *Option8 False *OutputBin OptionalOutbin11
*UIConstraints: *OutputBin OptionalOutbin2 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin3 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin4 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin5 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin6 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin7 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin8 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin9 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin10 *Option8 False
*UIConstraints: *OutputBin OptionalOutbin11 *Option8 False
*% ===============================================================================
*%      Constraints Based on Input Tray Selection
*% ===============================================================================
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 1
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *InputSlot Tray1 *PageSize Postcard
*UIConstraints: *InputSlot Tray1 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray1 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray1 *PageSize Env10
*UIConstraints: *InputSlot Tray1 *PageSize EnvDL
*UIConstraints: *InputSlot Tray1 *PageSize EnvC5
*UIConstraints: *InputSlot Tray1 *PageRegion A6
*UIConstraints: *InputSlot Tray1 *PageRegion Postcard
*UIConstraints: *InputSlot Tray1 *PageRegion EnvISOB5
*UIConstraints: *InputSlot Tray1 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray1 *PageRegion Env10
*UIConstraints: *InputSlot Tray1 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray1 *PageRegion EnvC5
*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *PageSize Postcard *InputSlot Tray1
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray1
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray1
*UIConstraints: *PageSize Env10 *InputSlot Tray1
*UIConstraints: *PageSize EnvDL *InputSlot Tray1
*UIConstraints: *PageSize EnvC5 *InputSlot Tray1
*UIConstraints: *PageRegion A6 *InputSlot Tray1
*UIConstraints: *PageRegion Postcard *InputSlot Tray1
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray1
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray1
*UIConstraints: *PageRegion Env10 *InputSlot Tray1
*UIConstraints: *PageRegion EnvDL *InputSlot Tray1
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType
*UIConstraints: *InputSlot Tray1 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray1
*UIConstraints: *MediaColor *InputSlot Tray1
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 2
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray2 *PageSize Statement
*UIConstraints: *InputSlot Tray2 *PageSize A5
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *InputSlot Tray2 *PageSize Postcard
*UIConstraints: *InputSlot Tray2 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray2 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageSize Env10
*UIConstraints: *InputSlot Tray2 *PageSize EnvDL
*UIConstraints: *InputSlot Tray2 *PageSize EnvC5
*UIConstraints: *InputSlot Tray2 *PageRegion Statement
*UIConstraints: *InputSlot Tray2 *PageRegion A5
*UIConstraints: *InputSlot Tray2 *PageRegion A6
*UIConstraints: *InputSlot Tray2 *PageRegion Postcard
*UIConstraints: *InputSlot Tray2 *PageRegion EnvISOB5
*UIConstraints: *InputSlot Tray2 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray2 *PageRegion Env10
*UIConstraints: *InputSlot Tray2 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray2 *PageRegion EnvC5
*UIConstraints: *PageSize Statement *InputSlot Tray2
*UIConstraints: *PageSize A5 *InputSlot Tray2
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *PageSize Postcard *InputSlot Tray2
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray2
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray2
*UIConstraints: *PageSize Env10 *InputSlot Tray2
*UIConstraints: *PageSize EnvDL *InputSlot Tray2
*UIConstraints: *PageSize EnvC5 *InputSlot Tray2
*UIConstraints: *PageRegion Statement *InputSlot Tray2
*UIConstraints: *PageRegion A5 *InputSlot Tray2
*UIConstraints: *PageRegion A6 *InputSlot Tray2
*UIConstraints: *PageRegion Postcard *InputSlot Tray2
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray2
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray2
*UIConstraints: *PageRegion Env10 *InputSlot Tray2
*UIConstraints: *PageRegion EnvDL *InputSlot Tray2
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType
*UIConstraints: *InputSlot Tray2 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray2
*UIConstraints: *MediaColor *InputSlot Tray2
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 3
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray3 *PageSize Statement
*UIConstraints: *InputSlot Tray3 *PageSize A5
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *InputSlot Tray3 *PageSize Postcard
*UIConstraints: *InputSlot Tray3 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray3 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageSize Env10
*UIConstraints: *InputSlot Tray3 *PageSize EnvDL
*UIConstraints: *InputSlot Tray3 *PageSize EnvC5
*UIConstraints: *InputSlot Tray3 *PageRegion Statement
*UIConstraints: *InputSlot Tray3 *PageRegion A5
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *InputSlot Tray3 *PageRegion Postcard
*UIConstraints: *InputSlot Tray3 *PageRegion EnvISOB5
*UIConstraints: *InputSlot Tray3 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray3 *PageRegion Env10
*UIConstraints: *InputSlot Tray3 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray3 *PageRegion EnvC5
*UIConstraints: *PageSize Statement *InputSlot Tray3
*UIConstraints: *PageSize A5 *InputSlot Tray3
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *PageSize Postcard *InputSlot Tray3
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray3
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray3
*UIConstraints: *PageSize Env10 *InputSlot Tray3
*UIConstraints: *PageSize EnvDL *InputSlot Tray3
*UIConstraints: *PageSize EnvC5 *InputSlot Tray3
*UIConstraints: *PageRegion Statement *InputSlot Tray3
*UIConstraints: *PageRegion A5 *InputSlot Tray3
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *PageRegion Postcard *InputSlot Tray3
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray3
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray3
*UIConstraints: *PageRegion Env10 *InputSlot Tray3
*UIConstraints: *PageRegion EnvDL *InputSlot Tray3
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType
*UIConstraints: *InputSlot Tray3 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray3
*UIConstraints: *MediaColor *InputSlot Tray3
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Tray 4
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray4 *PageSize Statement
*UIConstraints: *InputSlot Tray4 *PageSize A5
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *InputSlot Tray4 *PageSize Postcard
*UIConstraints: *InputSlot Tray4 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray4 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageSize Env10
*UIConstraints: *InputSlot Tray4 *PageSize EnvDL
*UIConstraints: *InputSlot Tray4 *PageSize EnvC5
*UIConstraints: *InputSlot Tray4 *PageRegion Statement
*UIConstraints: *InputSlot Tray4 *PageRegion A5
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *InputSlot Tray4 *PageRegion Postcard
*UIConstraints: *InputSlot Tray4 *PageRegion EnvISOB5
*UIConstraints: *InputSlot Tray4 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray4 *PageRegion Env10
*UIConstraints: *InputSlot Tray4 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray4 *PageRegion EnvC5
*UIConstraints: *PageSize Statement *InputSlot Tray4
*UIConstraints: *PageSize A5 *InputSlot Tray4
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *PageSize Postcard *InputSlot Tray4
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray4
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray4
*UIConstraints: *PageSize Env10 *InputSlot Tray4
*UIConstraints: *PageSize EnvDL *InputSlot Tray4
*UIConstraints: *PageSize EnvC5 *InputSlot Tray4
*UIConstraints: *PageRegion Statement *InputSlot Tray4
*UIConstraints: *PageRegion A5 *InputSlot Tray4
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *PageRegion Postcard *InputSlot Tray4
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray4
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray4
*UIConstraints: *PageRegion Env10 *InputSlot Tray4
*UIConstraints: *PageRegion EnvDL *InputSlot Tray4
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType
*UIConstraints: *InputSlot Tray4 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray4
*UIConstraints: *MediaColor *InputSlot Tray4
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              High Capacity Feeder
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray6 *PageSize Legal
*UIConstraints: *InputSlot Tray6 *PageSize Tabloid
*UIConstraints: *InputSlot Tray6 *PageSize A3
*UIConstraints: *InputSlot Tray6 *PageSize Statement
*UIConstraints: *InputSlot Tray6 *PageSize A5
*UIConstraints: *InputSlot Tray6 *PageSize A6
*UIConstraints: *InputSlot Tray6 *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Tray6 *PageSize Postcard
*UIConstraints: *InputSlot Tray6 *PageSize EnvISOB5
*UIConstraints: *InputSlot Tray6 *PageSize EnvMonarch
*UIConstraints: *InputSlot Tray6 *PageSize Env10
*UIConstraints: *InputSlot Tray6 *PageSize EnvDL
*UIConstraints: *InputSlot Tray6 *PageSize EnvC5
*UIConstraints: *InputSlot Tray6 *PageRegion Legal
*UIConstraints: *InputSlot Tray6 *PageRegion Tabloid
*UIConstraints: *InputSlot Tray6 *PageRegion A3
*UIConstraints: *InputSlot Tray6 *PageRegion Statement
*UIConstraints: *InputSlot Tray6 *PageRegion A5
*UIConstraints: *InputSlot Tray6 *PageRegion A6
*UIConstraints: *InputSlot Tray6 *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Tray6 *PageRegion Postcard
*UIConstraints: *InputSlot Tray6 *PageRegion EnvISOB5
*UIConstraints: *InputSlot Tray6 *PageRegion EnvMonarch
*UIConstraints: *InputSlot Tray6 *PageRegion Env10
*UIConstraints: *InputSlot Tray6 *PageRegion EnvDL
*UIConstraints: *InputSlot Tray6 *PageRegion EnvC5
*UIConstraints: *PageSize Legal *InputSlot Tray6
*UIConstraints: *PageSize Tabloid *InputSlot Tray6
*UIConstraints: *PageSize A3 *InputSlot Tray6
*UIConstraints: *PageSize Statement *InputSlot Tray6
*UIConstraints: *PageSize A5 *InputSlot Tray6
*UIConstraints: *PageSize A6 *InputSlot Tray6
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Tray6
*UIConstraints: *PageSize Postcard *InputSlot Tray6
*UIConstraints: *PageSize EnvISOB5 *InputSlot Tray6
*UIConstraints: *PageSize EnvMonarch *InputSlot Tray6
*UIConstraints: *PageSize Env10 *InputSlot Tray6
*UIConstraints: *PageSize EnvDL *InputSlot Tray6
*UIConstraints: *PageSize EnvC5 *InputSlot Tray6
*UIConstraints: *PageRegion Legal *InputSlot Tray6
*UIConstraints: *PageRegion Tabloid *InputSlot Tray6
*UIConstraints: *PageRegion A3 *InputSlot Tray6
*UIConstraints: *PageRegion Statement *InputSlot Tray6
*UIConstraints: *PageRegion A5 *InputSlot Tray6
*UIConstraints: *PageRegion A6 *InputSlot Tray6
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Tray6
*UIConstraints: *PageRegion Postcard *InputSlot Tray6
*UIConstraints: *PageRegion EnvISOB5 *InputSlot Tray6
*UIConstraints: *PageRegion EnvMonarch *InputSlot Tray6
*UIConstraints: *PageRegion Env10 *InputSlot Tray6
*UIConstraints: *PageRegion EnvDL *InputSlot Tray6
*UIConstraints: *PageRegion EnvC5 *InputSlot Tray6
*UIConstraints: *InputSlot Tray6 *MediaType
*UIConstraints: *InputSlot Tray6 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray6
*UIConstraints: *MediaColor *InputSlot Tray6
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              Envelope Tray
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot Tray7 *PageSize Letter
*UIConstraints: *InputSlot Tray7 *PageSize Legal
*UIConstraints: *InputSlot Tray7 *PageSize Tabloid
*UIConstraints: *InputSlot Tray7 *PageSize A4
*UIConstraints: *InputSlot Tray7 *PageSize A3
*UIConstraints: *InputSlot Tray7 *PageSize Statement
*UIConstraints: *InputSlot Tray7 *PageSize A5
*UIConstraints: *InputSlot Tray7 *PageSize A6
*UIConstraints: *InputSlot Tray7 *PageSize FanFoldGermanLegal
*UIConstraints: *InputSlot Tray7 *PageSize Postcard
*UIConstraints: *InputSlot Tray7 *PageRegion Letter
*UIConstraints: *InputSlot Tray7 *PageRegion Legal
*UIConstraints: *InputSlot Tray7 *PageRegion Tabloid
*UIConstraints: *InputSlot Tray7 *PageRegion A4
*UIConstraints: *InputSlot Tray7 *PageRegion A3
*UIConstraints: *InputSlot Tray7 *PageRegion Statement
*UIConstraints: *InputSlot Tray7 *PageRegion A5
*UIConstraints: *InputSlot Tray7 *PageRegion A6
*UIConstraints: *InputSlot Tray7 *PageRegion FanFoldGermanLegal
*UIConstraints: *InputSlot Tray7 *PageRegion Postcard
*UIConstraints: *PageSize Letter *InputSlot Tray7
*UIConstraints: *PageSize Legal *InputSlot Tray7
*UIConstraints: *PageSize Tabloid *InputSlot Tray7
*UIConstraints: *PageSize A3 *InputSlot Tray7
*UIConstraints: *PageSize A4 *InputSlot Tray7
*UIConstraints: *PageSize Statement *InputSlot Tray7
*UIConstraints: *PageSize A5 *InputSlot Tray7
*UIConstraints: *PageSize A6 *InputSlot Tray7
*UIConstraints: *PageSize FanFoldGermanLegal *InputSlot Tray7
*UIConstraints: *PageSize Postcard *InputSlot Tray7
*UIConstraints: *PageRegion Letter *InputSlot Tray7
*UIConstraints: *PageRegion Legal *InputSlot Tray7
*UIConstraints: *PageRegion Tabloid *InputSlot Tray7
*UIConstraints: *PageRegion A3 *InputSlot Tray7
*UIConstraints: *PageRegion A4 *InputSlot Tray7
*UIConstraints: *PageRegion Statement *InputSlot Tray7
*UIConstraints: *PageRegion A5 *InputSlot Tray7
*UIConstraints: *PageRegion A6 *InputSlot Tray7
*UIConstraints: *PageRegion FanFoldGermanLegal *InputSlot Tray7
*UIConstraints: *PageRegion Postcard *InputSlot Tray7
*UIConstraints: *InputSlot Tray7 *MediaType
*UIConstraints: *InputSlot Tray7 *MediaColor
*UIConstraints: *MediaType *InputSlot Tray7
*UIConstraints: *MediaColor *InputSlot Tray7
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*%              MSI - Manual Feed
*% +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*UIConstraints: *InputSlot ManualFeed *PageSize EnvISOB5
*UIConstraints: *InputSlot ManualFeed *PageSize EnvMonarch
*UIConstraints: *InputSlot ManualFeed *PageSize Env10
*UIConstraints: *InputSlot ManualFeed *PageSize EnvDL
*UIConstraints: *InputSlot ManualFeed *PageSize EnvC5
*UIConstraints: *InputSlot ManualFeed *PageRegion EnvISOB5
*UIConstraints: *InputSlot ManualFeed *PageRegion EnvMonarch
*UIConstraints: *InputSlot ManualFeed *PageRegion Env10
*UIConstraints: *InputSlot ManualFeed *PageRegion EnvDL
*UIConstraints: *InputSlot ManualFeed *PageRegion EnvC5
*UIConstraints: *PageSize EnvISOB5 *InputSlot ManualFeed
*UIConstraints: *PageSize EnvMonarch *InputSlot ManualFeed
*UIConstraints: *PageSize Env10 *InputSlot ManualFeed
*UIConstraints: *PageSize EnvDL *InputSlot ManualFeed
*UIConstraints: *PageSize EnvC5 *InputSlot ManualFeed
*UIConstraints: *PageRegion EnvISOB5 *InputSlot ManualFeed
*UIConstraints: *PageRegion EnvMonarch *InputSlot ManualFeed
*UIConstraints: *PageRegion Env10 *InputSlot ManualFeed
*UIConstraints: *PageRegion EnvDL *InputSlot ManualFeed
*UIConstraints: *PageRegion EnvC5 *InputSlot ManualFeed
*% ===============================================================================
*%      Constraints Based on Output Tray Selection
*% ===============================================================================
*%    Constraints based on media selection
*% ===============================================================================
*NonUIConstraints: *CustomPageSize True *InputSlot Tray1
*NonUIConstraints: *InputSlot Tray1 *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *InputSlot Tray2
*NonUIConstraints: *InputSlot Tray2 *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *InputSlot Tray3
*NonUIConstraints: *InputSlot Tray3 *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *InputSlot Tray4
*NonUIConstraints: *InputSlot Tray4 *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *InputSlot Tray6
*NonUIConstraints: *InputSlot Tray6 *CustomPageSize True
*UIConstraints: *MediaType Tabs *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Tabs
*UIConstraints: *MediaType Tabs *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Tabs
*UIConstraints: *MediaType Tabs *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Tabs
*UIConstraints: *MediaType Tabs *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Tabs
*UIConstraints: *MediaType Tabs *InputSlot Tray6
*UIConstraints: *InputSlot Tray6 *MediaType Tabs
*UIConstraints: *MediaType Tabs *InputSlot Tray7
*UIConstraints: *InputSlot Tray7 *MediaType Tabs
*UIConstraints: *MediaType Heavyweight *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *MediaType Heavyweight
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin2
*UIConstraints: *OutputBin OptionalOutbin2 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin3
*UIConstraints: *OutputBin OptionalOutbin3 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin4
*UIConstraints: *OutputBin OptionalOutbin4 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin5
*UIConstraints: *OutputBin OptionalOutbin5 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin6
*UIConstraints: *OutputBin OptionalOutbin6 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin7
*UIConstraints: *OutputBin OptionalOutbin7 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin8
*UIConstraints: *OutputBin OptionalOutbin8 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin9
*UIConstraints: *OutputBin OptionalOutbin9 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin10
*UIConstraints: *OutputBin OptionalOutbin10 *MediaType Transparency
*UIConstraints: *MediaType Transparency *OutputBin OptionalOutbin11
*UIConstraints: *OutputBin OptionalOutbin11 *MediaType Transparency
*UIConstraints: *MediaType Heavyweight *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *MediaType Heavyweight
*UIConstraints: *MediaType Heavyweight *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *MediaType Heavyweight
*UIConstraints: *MediaType Heavyweight *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *MediaType Heavyweight
*UIConstraints: *MediaType Heavyweight *InputSlot Tray7
*UIConstraints: *InputSlot Tray7 *MediaType Heavyweight
*UIConstraints: *PageSize EnvISOB5 *MediaType
*UIConstraints: *PageSize EnvISOB5 *MediaColor
*UIConstraints: *PageSize EnvMonarch *MediaType
*UIConstraints: *PageSize EnvMonarch *MediaColor
*UIConstraints: *MediaType  *PageSize EnvISOB5
*UIConstraints: *MediaColor *PageSize EnvISOB5
*UIConstraints: *MediaType  *PageSize EnvMonarch
*UIConstraints: *MediaColor *PageSize EnvMonarch
*UIConstraints: *PageRegion EnvISOB5 *MediaType
*UIConstraints: *PageRegion EnvISOB5 *MediaColor
*UIConstraints: *PageRegion EnvMonarch *MediaType
*UIConstraints: *PageRegion EnvMonarch *MediaColor
*UIConstraints: *MediaType *PageRegion EnvISOB5
*UIConstraints: *MediaColor *PageRegion EnvISOB5
*UIConstraints: *MediaType *PageRegion EnvMonarch
*UIConstraints: *MediaColor *PageRegion EnvMonarch
*UIConstraints: *PageSize Env10 *MediaType
*UIConstraints: *PageSize Env10 *MediaColor
*UIConstraints: *MediaType  *PageSize Env10
*UIConstraints: *MediaColor *PageSize Env10
*UIConstraints: *PageRegion Env10 *MediaType
*UIConstraints: *PageRegion Env10 *MediaColor
*UIConstraints: *MediaType *PageRegion Env10
*UIConstraints: *MediaColor *PageRegion Env10
*UIConstraints: *PageSize EnvDL *MediaType
*UIConstraints: *PageSize EnvDL *MediaColor
*UIConstraints: *MediaType  *PageSize EnvDL
*UIConstraints: *MediaColor *PageSize EnvDL
*UIConstraints: *PageRegion EnvDL *MediaType
*UIConstraints: *PageRegion EnvDL *MediaColor
*UIConstraints: *MediaType *PageRegion EnvDL
*UIConstraints: *MediaColor *PageRegion EnvDL
*UIConstraints: *PageSize EnvC5 *MediaType
*UIConstraints: *PageSize EnvC5 *MediaColor
*UIConstraints: *MediaType  *PageSize EnvC5
*UIConstraints: *MediaColor *PageSize EnvC5
*UIConstraints: *PageRegion EnvC5 *MediaType
*UIConstraints: *PageRegion EnvC5 *MediaColor
*UIConstraints: *MediaType *PageRegion EnvC5
*UIConstraints: *MediaColor *PageRegion EnvC5
*% ===============================================================================
*% Constraints based on other options - staple & duplex
*% ===============================================================================
*UIConstraints: *StapleWhen *PageSize Legal
*UIConstraints: *PageSize Legal *StapleWhen
*UIConstraints: *StapleWhen *PageSize Statement
*UIConstraints: *PageSize Statement *StapleWhen
*UIConstraints: *StapleWhen *PageSize A5
*UIConstraints: *PageSize A5 *StapleWhen
*UIConstraints: *StapleWhen *PageSize A6
*UIConstraints: *PageSize A6 *StapleWhen
*UIConstraints: *StapleWhen *PageSize FanFoldGermanLegal
*UIConstraints: *PageSize FanFoldGermanLegal *StapleWhen
*UIConstraints: *StapleWhen *PageSize Postcard
*UIConstraints: *PageSize Postcard *StapleWhen
*UIConstraints: *StapleWhen *PageSize EnvISOB5
*UIConstraints: *PageSize EnvISOB5 *StapleWhen
*UIConstraints: *StapleWhen *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *StapleWhen
*UIConstraints: *StapleWhen *PageSize Env10
*UIConstraints: *PageSize Env10 *StapleWhen
*UIConstraints: *StapleWhen *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *StapleWhen
*UIConstraints: *StapleWhen *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *StapleWhen
*UIConstraints: *StapleWhen *PageRegion Legal
*UIConstraints: *PageRegion Legal *StapleWhen
*UIConstraints: *StapleWhen *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleWhen
*UIConstraints: *StapleWhen *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleWhen
*UIConstraints: *StapleWhen *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleWhen
*UIConstraints: *StapleWhen *PageRegion FanFoldGermanLegal
*UIConstraints: *PageRegion FanFoldGermanLegal *StapleWhen
*UIConstraints: *StapleWhen *PageRegion Postcard
*UIConstraints: *PageRegion Postcard *StapleWhen
*UIConstraints: *StapleWhen *PageRegion EnvISOB5
*UIConstraints: *PageRegion EnvISOB5 *StapleWhen
*UIConstraints: *StapleWhen *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *StapleWhen
*UIConstraints: *StapleWhen *PageRegion Env10
*UIConstraints: *PageRegion Env10 *StapleWhen
*UIConstraints: *StapleWhen *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *StapleWhen
*UIConstraints: *StapleWhen *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *StapleWhen
*UIConstraints: *StapleWhen *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleWhen
*UIConstraints: *Duplex *PageSize A6
*UIConstraints: *PageSize A6 *Duplex
*UIConstraints: *Duplex *PageSize Postcard
*UIConstraints: *PageSize Postcard *Duplex
*UIConstraints: *Duplex *PageSize EnvISOB5
*UIConstraints: *PageSize EnvISOB5 *Duplex
*UIConstraints: *Duplex *PageSize EnvMonarch
*UIConstraints: *PageSize EnvMonarch *Duplex
*UIConstraints: *Duplex *PageSize Env10
*UIConstraints: *PageSize Env10 *Duplex
*UIConstraints: *Duplex *PageSize EnvDL
*UIConstraints: *PageSize EnvDL *Duplex
*UIConstraints: *Duplex *PageSize EnvC5
*UIConstraints: *PageSize EnvC5 *Duplex
*UIConstraints: *Duplex *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex
*UIConstraints: *Duplex *PageRegion Postcard
*UIConstraints: *PageRegion Postcard *Duplex
*UIConstraints: *Duplex *PageRegion EnvISOB5
*UIConstraints: *PageRegion EnvISOB5 *Duplex
*UIConstraints: *Duplex *PageRegion EnvMonarch
*UIConstraints: *PageRegion EnvMonarch *Duplex
*UIConstraints: *Duplex *PageRegion Env10
*UIConstraints: *PageRegion Env10 *Duplex
*UIConstraints: *Duplex *PageRegion EnvDL
*UIConstraints: *PageRegion EnvDL *Duplex
*UIConstraints: *Duplex *PageRegion EnvC5
*UIConstraints: *PageRegion EnvC5 *Duplex
*UIConstraints: *Duplex *MediaType Transparency
*UIConstraints: *MediaType Transparency *Duplex
*UIConstraints: *Duplex *MediaType Labels
*UIConstraints: *MediaType Labels *Duplex
*% ===============================================================================
*% Media Group
*% ===============================================================================
*OpenGroup:Media Options
*% ===============================================================================
*% Page Size
*% ===============================================================================
*OpenUI *PageSize/Page Size: PickOne
*OrderDependency: 42 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/USLetter (8 1/2 x 11): "
    << /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageSize Legal/USLegal (8 1/2 x 14): "
    << /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageSize Tabloid/Tabloid (11 x 17): "
    << /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageSize A4/A4 (210mm x 297mm): "
    << /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageSize A3/A3 (297mm x 420mm): "
    << /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageSize Statement/5.5 x 8.5: "
    << /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageSize A5/A5: "
    << /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageSize A6/A6: "
    << /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*End
*PageSize FanFoldGermanLegal/8.5 x 13: "
    << /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageSize Postcard/Postcard (100mm x 148mm): "
    << /PageSize [284 419] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvISOB5/B5 Envelope: "
    << /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvMonarch/Monarch Env. (3 7/8 x 7 1/2): "
    << /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageSize Env10/Com10 Env. (4 1/8 x 9 1/2): "
    << /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvDL/DL Env. (110mm x 220mm): "
    << /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageSize EnvC5/C5 Env. (162mm x 229mm): "
    << /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageSize
*% ===============================================================================
*% Page Region
*% ===============================================================================
*OpenUI *PageRegion/Page Region: PickOne
*OrderDependency: 44 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/USLetter (8 1/2 x 11): "
    << /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Legal/USLegal (8 1/2 x 14): "
    << /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Tabloid/Tabloid (11 x 17): "
    << /PageSize [792 1224] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A4/A4 (210mm x 297mm): "
    << /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A3/A3 (297mm x 420mm): "
    << /PageSize [842 1191] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Statement/5.5 x 8.5: "
    << /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A5/A5: "
    << /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A6/A6: "
    << /PageSize [297 420] /ImagingBBox null >> setpagedevice"
*End
*PageRegion FanFoldGermanLegal/8.5 x 13: "
    << /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Postcard/Postcard (100mm x 148mm): "
    << /PageSize [284 419] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvISOB5/B5 Envelope: "
    << /PageSize [499 709] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvMonarch/Monarch Env. (3 7/8 x 7 1/2): "
    << /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Env10/Com10 Env. (4 1/8 x 9 1/2): "
    << /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvDL/DL Env. (110mm x 220mm): "
    << /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageRegion EnvC5/C5 Env. (162mm x 229mm): "
    << /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageRegion
*% ===============================================================================
*% Imageable Area
*% ===============================================================================
*DefaultImageableArea: Letter
*ImageableArea Letter/USLetter (8 1/2 x 11): "11.34 11.34 600.66 780.66"
*ImageableArea Legal/USLegal (8 1/2 x 14): "11.34 11.34 600.66 996.66"
*ImageableArea Tabloid/Tabloid (11 x 17): "11.34 11.34 780.66 1212.66"
*ImageableArea A4/A4 (210mm x 297mm): "11.34 11.34 583.66 830.66"
*ImageableArea A3/A3 (297mm x 420mm): "11.34 11.34 830.66 1179.66"
*ImageableArea Statement/5.5 x 8.5: "11.34 11.34 384.66 600.66"
*ImageableArea A5/A5: "11.34 11.34 409.66 583.66"
*ImageableArea A6/A6: "11.34 11.34 285.66 408.66"
*ImageableArea FanFoldGermanLegal/8.5 x 13: "11.34 11.34 600.66 924.66"
*ImageableArea Postcard/Postcard (100mm x 148mm): "11.34 11.34 272.12 408.66"
*ImageableArea EnvISOB5/B5 Envelope: "11.34 11.34 487.66 696.66"
*ImageableArea EnvMonarch/Monarch Env. (3 7/8 x 7 1/2): "11.34 11.34 267.66 528.66"
*ImageableArea Env10/Com10 Env. (4 1/8 x 9 1/2): "11.34 11.34 285.66 672.66"
*ImageableArea EnvDL/DL Env. (110mm x 220mm): "11.34 11.34 300.66 612.66"
*ImageableArea EnvC5/C5 Env. (162mm x 229mm): "11.34 11.34 447.66 637.66"
*% ===============================================================================
*% Paper Dimension
*% ===============================================================================
*DefaultPaperDimension: Letter
*PaperDimension Letter/USLetter (8 1/2 x 11): "612 792"
*PaperDimension Legal/USLegal (8 1/2 x 14): "612 1008"
*PaperDimension Tabloid/Tabloid (11 x 17): "792 1224"
*PaperDimension A4/A4 (210mm x 297mm): "595 842"
*PaperDimension A3/A3 (297mm x 420mm): "842 1191"
*PaperDimension Statement/5.5 x 8.5: "396 612"
*PaperDimension A5/A5: "420 595"
*PaperDimension A6/A6: "297 420"
*PaperDimension FanFoldGermanLegal/8.5 x 13:"612 936"
*PaperDimension Postcard/Postcard (100mm x 148mm): "284 419"
*PaperDimension EnvISOB5/B5 Envelope: "499 709"
*PaperDimension EnvMonarch/Monarch Env. (3 7/8 x 7 1/2): "279 540"
*PaperDimension Env10/Com10 Env. (4 1/8 x 9 1/2): "297 684"
*PaperDimension EnvDL/DL Env. (110mm x 220mm): "312 624"
*PaperDimension EnvC5/C5 Env. (162mm x 229mm): "459 649"
*% ===============================================================================
*% Custom Paper Sizes
*% ===============================================================================
*LeadingEdge Short: " "
*LeadingEdge Long: " "
*DefaultLeadingEdge: Long
*NonUIOrderDependency: 40 AnySetup *CustomPageSize
*ParamCustomPageSize Width/Width: 1 points 284 842
*ParamCustomPageSize Height/Height: 2 points 420 1224 
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 points 0 0
*HWMargins: 11.34 11.34 11.34 11.34
*CustomPageSize True: "
        pop pop pop
        2 dict begin
                2 array astore
                /PageSize exch def
                /ImagingBBox null def
                currentdict
        end
        setpagedevice"
*End
*MaxMediaWidth: "842"
*MaxMediaHeight: "1224"
*OpenSubGroup: MediaSelection/Media Attributes
*% ===============================================================================
*% Media Type
*% ===============================================================================
*OpenUI *MediaType/Media Type: PickOne
*OrderDependency: 46 AnySetup *MediaType
*DefaultMediaType: Standard
*MediaType Standard/Standard: "
        << /MediaType (standard) >> setpagedevice"
*End
*MediaType Transparency/Transparency: "
        << /MediaType (transparency) >> setpagedevice"
*End
*MediaType Labels/Labels: "
        << /MediaType (labels) >> setpagedevice"
*End
*MediaType Drilled/Drilled: "
        << /MediaType (drilled) >> setpagedevice"
*End
*MediaType Recycled/Recycled: "
        << /MediaType (recycled) >> setpagedevice"
*End
*MediaType PrePrinted/PrePrinted: "
        << /MediaType (preprinted) >> setpagedevice"
*End
*MediaType Tabs/Tabs: "
        << /MediaType (tabs) >> setpagedevice"
*End
*MediaType Heavyweight/Heavyweight: "
        << /MediaType (heavyweight) >> setpagedevice"
*End
*MediaType Other/Other: "
        << /MediaType (other) >> setpagedevice"
*End
*MediaType None/None: " "
*CloseUI: *MediaType
*% ===============================================================================
*% Media Color
*% ===============================================================================
*OpenUI *MediaColor/Media Color: PickOne
*OrderDependency: 48 AnySetup *MediaColor
*DefaultMediaColor: White
*MediaColor Yellow/Yellow: "
        << /MediaColor (yellow) >> setpagedevice"
*End
*MediaColor Green/Green: "
        << /MediaColor (green) >> setpagedevice"
*End
*MediaColor Buff/Buff: "
        << /MediaColor (buff) >> setpagedevice"
*End
*MediaColor White/White: "
        << /MediaColor (white) >> setpagedevice"
*End
*MediaColor Red/Red: "
        << /MediaColor (red) >> setpagedevice"
*End
*MediaColor Ivory/Ivory: "
        << /MediaColor (ivory) >> setpagedevice"
*End
*MediaColor Gray/Gray: "
        << /MediaColor (gray) >> setpagedevice"
*End
*MediaColor Clear/Clear: "
        << /MediaColor (clear) >> setpagedevice"
*End
*MediaColor Pink/Pink: "
        << /MediaColor (pink) >> setpagedevice"
*End
*MediaColor Goldenrod/Goldenrod: "
        << /MediaColor (goldenrod) >> setpagedevice"
*End
*MediaColor Orange/Orange: "
        << /MediaColor (orange) >> setpagedevice"
*End
*MediaColor Blue/Blue: "
        << /MediaColor (blue) >> setpagedevice"
*End
*MediaColor Other/Other: "
        << /MediaColor (other) >> setpagedevice"
*End
*MediaColor None/None: " "
*CloseUI: *MediaColor
*CloseSubGroup: MediaSelection/Media Attributes
*% ===============================================================================
*% End Media Group Options
*% ===============================================================================
*CloseGroup: Media Options
*% ===============================================================================
*% Landscape Orientation
*% ===============================================================================
*LandscapeOrientation: Plus90
*% ===============================================================================
*% Input Slot
*% ===============================================================================
*OpenUI *InputSlot/Input Slot: PickOne
*OrderDependency: 52 AnySetup *InputSlot
*DefaultInputSlot:Tray1
*InputSlot Tray1/Tray 1: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
        << /MediaPosition 1 >> setpagedevice"
*End
*InputSlot Tray2/Tray 2: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
        << /MediaPosition 2 >> setpagedevice"
*End
*InputSlot Tray3/Tray 3: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
        << /MediaPosition 3 >> setpagedevice"
*End
*InputSlot Tray4/Tray 4: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
        << /MediaPosition 4 >> setpagedevice"
*End
*InputSlot ManualFeed/Bypass Tray (Manual Feed): "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed true>> setpagedevice"
*End
*InputSlot Tray6/High Capacity Feeder: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
      << /MediaPosition 5 >> setpagedevice"
*End
*InputSlot Tray7/Envelope Tray: "
        << /TraySwitch false>> setpagedevice
        << /ManualFeed false>> setpagedevice
        << /MediaPosition 1 >> setpagedevice"
*End
*CloseUI: *InputSlot
*OpenGroup: Finishing
*% ===============================================================================
*% RequiresPageRegion
*% ===============================================================================
*RequiresPageRegion All: True
*% ===============================================================================
*% Output Bin
*% ===============================================================================
*OpenUI *OutputBin/Output Bin: PickOne
*OrderDependency: 60 AnySetup *OutputBin
*DefaultOutputBin: TopTray
*OutputBin TopTray/Top Tray: "
        << /OutputType (TopTray) >> setpagedevice"
*End
*OutputBin Stacker/Finisher: "
        << /OutputType (Stacker) >> setpagedevice"
*End
*OutputBin SideTray/Side Tray: "
        << /OutputType (SideTray) >> setpagedevice"
*End
*OutputBin OptionalOutbin2/Mailbox 1: "
        << /OutputType (Optional Outbin 2) >> setpagedevice"
*End
*OutputBin OptionalOutbin3/Mailbox 2: "
        << /OutputType (Optional Outbin 3) >> setpagedevice"
*End
*OutputBin OptionalOutbin4/Mailbox 3: "
        << /OutputType (Optional Outbin 4) >> setpagedevice"
*End
*OutputBin OptionalOutbin5/Mailbox 4: "
        << /OutputType (Optional Outbin 5) >> setpagedevice"
*End
*OutputBin OptionalOutbin6/Mailbox 5: "
        << /OutputType (Optional Outbin 6) >> setpagedevice"
*End
*OutputBin OptionalOutbin7/Mailbox 6: "
        << /OutputType (Optional Outbin 7) >> setpagedevice"
*End
*OutputBin OptionalOutbin8/Mailbox 7: "
        << /OutputType (Optional Outbin 8) >> setpagedevice"
*End
*OutputBin OptionalOutbin9/Mailbox 8: "
        << /OutputType (Optional Outbin 9) >> setpagedevice"
*End
*OutputBin OptionalOutbin10/Mailbox 9: "
        << /OutputType (Optional Outbin 10) >> setpagedevice"
*End
*OutputBin OptionalOutbin11/Mailbox 10: "
        << /OutputType (Optional Outbin 11) >> setpagedevice"
*End
*CloseUI: *OutputBin
*% ===============================================================================
*% PageStackOrder
*% ===============================================================================
*PageStackOrder TopTray: Normal
*PageStackOrder Stacker: Normal
*PageStackOrder SideTray: Reverse
*PageStackOrder OptionalOutbin2: Normal
*PageStackOrder OptionalOutbin3: Normal
*PageStackOrder OptionalOutbin4: Normal
*PageStackOrder OptionalOutbin5: Normal
*PageStackOrder OptionalOutbin6: Normal
*PageStackOrder OptionalOutbin7: Normal
*PageStackOrder OptionalOutbin8: Normal
*PageStackOrder OptionalOutbin9: Normal
*PageStackOrder OptionalOutbin10: Normal
*PageStackOrder OptionalOutbin11: Normal
*% ===============================================================================
*% Resolution
*% ===============================================================================
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 40 AnySetup *Resolution
*DefaultResolution: 601x601dpi
*Resolution 400x400dpi/400 x 400 x 1 dpi: "
        << /HWResolution [400 400] >> setpagedevice"
*End
*Resolution 601x601dpi/600 x 600 x 1 dpi: "
        << /HWResolution [600 600] >> setpagedevice"
*End
*CloseUI: *Resolution
*% ===============================================================================
*%  ----------Begin Finishing Group----------
*% ===============================================================================
*% ===============================================================================
*% Duplex
*% ===============================================================================
*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 58 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None/None: "
        << /Duplex false /Tumble false >> setpagedevice"
*End
*Duplex DuplexNoTumble/Duplex Long Edge Binding: "
        << /Duplex true /Tumble false >> setpagedevice"
*End
*Duplex DuplexTumble/Duplex Short Edge Binding: "
        << /Duplex true /Tumble true >> setpagedevice"
*End
*CloseUI: *Duplex
*% ===============================================================================
*% Collate - will most likely have no effect on job due to adobe mult copy scheme
*% ===============================================================================
*OpenUI *Collate/Collate: PickOne
*OrderDependency: 54 AnySetup *Collate
*DefaultCollate: True
*Collate True/Collated: "
      << /Collate true >> setpagedevice"
*End
*Collate False/Uncollated: "
      << /Collate false >> setpagedevice"
*End
*CloseUI: *Collate
*% ===============================================================================
*% Stapling - will most likely only work properly on single copy jobs
*% ===============================================================================
*OpenUI *StapleWhen/Stapling: PickOne
*OrderDependency: 56 AnySetup *StapleWhen
*DefaultStapleWhen: None
*StapleWhen None/Staple Off: "
        << /Staple 0 >> setpagedevice"
*End
*StapleWhen EndOfSet/Staple On: "
        << /Staple 3 >> setpagedevice"
*End
*CloseUI: *StapleWhen
*% ===============================================================================
*% ----------Close finishing options----------
*% ===============================================================================
*CloseGroup: Finishing
*% ===============================================================================
*% Halftone Info
*% ===============================================================================
*DefaultHalftoneType: 3
*ScreenFreq: "80.0"
*ScreenAngle: "45.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "
        { abs exch abs 2 copy add 1 gt { 1 sub dup mul exch 1 sub dup mul add 1 sub }
        { dup mul exch dup mul add 1 exch sub } ifelse }
"
*End
*ScreenProc Line: "
        { pop }
"
*End
*ScreenProc Ellipse: "
        { dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }
"
*End
*DefaultTransfer: Null
*Transfer Null: "
        { }
"
*End
*Transfer Null.Inverse: "
        { 1 exch sub }
"
*End
*% ===============================================================================
*% PrintPSErrors
*% ===============================================================================
*PrintPSErrors: True
*% ===============================================================================
*% Font Info
*% ===============================================================================
*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
*Font Bookman-Demi: Standard "(001.003S)" Standard ROM
*Font Bookman-DemiItalic: Standard "(001.003S)" Standard ROM
*Font Bookman-Light: Standard "(001.003S)" Standard ROM
*Font Bookman-LightItalic: Standard "(001.003S)" Standard ROM
*Font Courier: Standard "(002.004S)" Standard ROM
*Font Courier-Bold: Standard "(002.004S)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.004S)" Standard ROM
*Font Courier-Oblique: Standard "(002.004S)" Standard ROM
*Font Helvetica: Standard "(001.006S)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006S)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.009S)" Standard ROM
*Font NewCenturySchlbk-BoldItalic: Standard "(001.007S)" Standard ROM
*Font NewCenturySchlbk-Italic: Standard "(001.006S)" Standard ROM
*Font NewCenturySchlbk-Roman: Standard "(001.007S)" Standard ROM
*Font Palatino-Bold: Standard "(001.005S)" Standard ROM
*Font Palatino-BoldItalic: Standard "(001.005S)" Standard ROM
*Font Palatino-Italic: Standard "(001.005S)" Standard ROM
*Font Palatino-Roman: Standard "(001.005S)" Standard ROM
*Font Symbol: Special "(001.007S)" Special ROM
*Font Times-Bold: Standard "(001.007S)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009S)" Standard ROM
*Font Times-Italic: Standard "(001.007S)" Standard ROM
*Font Times-Roman: Standard "(001.007S)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
*Font ZapfDingbats: Special "(001.004S)" Special ROM
*?FontList: "
        save
                (*) { cvn == } 128 string /Font resourceforall
                (*) = flush
        restore
"
*End
*?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
*% ===============================================================================
*% End of XRDC230.PPD
*% ===============================================================================
*% The byte count of this file should be exactly 053564 or 054742
*% depending on the filesystem it resides in.
*% end of PPD file for Xerox Doc Centre 220/230 PS2 600dpi