summaryrefslogtreecommitdiff
path: root/psprint_config/configuration/ppds/LHQUSRH3.PS
blob: 34ecff2a045e9bb7500bbbfe947bd9a7456ac4e3 (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
*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
*%
*% Creation Date Apr. 18, 1996; By: Berthold Giess, Linotype-Hell AG
*%

*% ----- Basic Capabilities -----
*FormatVersion: "4.3"
*FileVersion: "1.2"
*LanguageEncoding: ISOLatin1
*LanguageVersion: English
*PSVersion: "(2013.114) 9"
*Product: "(Linotype)"
*% 31 Chars *******************************
*Manufacturer: "Linotype-Hell"
*ModelName: "Lino Quasar HQS V 3.0"
*ShortNickName: "Lino Quasar HQS"
*NickName: "Lino Quasar HQS V 3.0"
*PCFileName: "LHQUSRH3.PPD"

*% ----- General Information and Defaults -----
*FreeVM: "5242880"
*PrintPSErrors: False
*LanguageLevel: "2"
*ColorDevice: True
*DefaultColorSpace: Gray
*DefaultHalftoneType: 1
*Throughput: "1"
*VariablePaperSize: True
*FileSystem: True

*?FileSystem: "
save
 statusdict /diskonline get exec {(True)}{(False)} ifelse = flush
restore
"
*End

*Password: "0"
*ExitServer: "
 count 0 eq { % is the password on the stack?
 true
 }{
 dup % potential password
 statusdict /checkpassword get exec not
 } ifelse
 { % if no password or not valid
 (WARNING : Cannot perform the exitserver command.) =
 (Password supplied is not valid.) =
 (Please contact the author of this software.) = flush
 quit
 } if
 serverdict /exitserver get exec
"
*End

*Reset: "
 count 0 eq { % is the password on the stack?
 true
 }{
 dup % potential password
 statusdict /checkpassword get exec not
 } ifelse
 { % if no password or not valid
 (WARNING : Cannot reset printer.) =
 (Password supplied is not valid.) =
 (Please contact the author of this software.) = flush
 quit
 } if
 serverdict /exitserver get exec
 systemdict /quit get exec
 (WARNING : Printer Reset Failed.) = flush
"
*End

*DefaultResolution: 2540dpi

*?Resolution: "
 save 
 72 72 matrix defaultmatrix dtransform
 pop abs round cvi =print (dpi\n) print
 restore 
"
*End

*% Halftone Information ===============
*ScreenFreq: "150"
*ScreenAngle: "45"
*AccurateScreensSupport: True
*DefaultScreenProc: Euclidean

*ScreenProc Euclidean: "
{
 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 Round: "
{
 dup mul exch dup mul add 1 exch sub
} 
"
*End

*ScreenProc Square: "
{
 abs exch abs add 1 exch sub
} 
"
*End

*ScreenProc HeavyEllipse: "
{ %Copyright Linotype-Hell AG 1996
 exch 
 abs exch abs 2 copy 0.80 mul add 0.80 lt { 
 exch 0.80 div
 dup dup mul exch 2 mul 3 sub mul exch
 dup dup mul exch 2 mul 3 sub mul add 0.80 mul 1 add 
 } { 
 2 copy 0.80 mul add 1 gt {
 1 sub exch 1 sub 0.80 div 
 dup dup mul exch 2 mul 3 add mul exch
 dup dup mul exch 2 mul 3 add mul add 0.80 mul 1 sub 
 } { 
 0.80 mul add 2 mul neg 1 add 0.80 add 
 } ifelse
 } ifelse
} 
"
*End

*ScreenProc Ellipse: "
{ %Copyright Linotype-Hell AG 1996
 exch 
 abs exch abs 2 copy 0.85 mul add 0.85 lt { 
 exch 0.85 div
 dup dup mul exch 2 mul 3 sub mul exch
 dup dup mul exch 2 mul 3 sub mul add 0.85 mul 1 add 
 } { 
 2 copy 0.85 mul add 1 gt { 
 1 sub exch 1 sub 0.85 div 
 dup dup mul exch 2 mul 3 add mul exch
 dup dup mul exch 2 mul 3 add mul add 0.85 mul 1 sub 
 } { 
 0.85 mul add 2 mul neg 1 add 0.85 add 
 } ifelse
 } ifelse
} 
"
*End

*ScreenProc LightEllipse: "
{ %Copyright Linotype-Hell AG 1996
 exch 
 abs exch abs 2 copy 0.90 mul add 0.90 lt { 
 exch 0.90 div
 dup dup mul exch 2 mul 3 sub mul exch
 dup dup mul exch 2 mul 3 sub mul add 0.90 mul 1 add 
 } { 
 2 copy 0.90 mul add 1 gt { 
 1 sub exch 1 sub 0.90 div 
 dup dup mul exch 2 mul 3 add mul exch
 dup dup mul exch 2 mul 3 add mul add 0.90 mul 1 sub 
 } { 
 0.90 mul add 2 mul neg 1 add 0.90 add 
 } ifelse
 } ifelse
} 
"
*End

*ScreenProc LineX: "
{ %Copyright Linotype-Hell AG 1996
 abs exch 0.9 mul 0.01 sub abs exch
 0.003 mul add 1 exch sub
} 
"
*End

*ScreenProc LineY: "
{ %Copyright Linotype-Hell AG 1996
 0.9 mul 0.01 sub abs exch abs
 0.003 mul add 1 exch sub
} 
"
*End

*ScreenProc Grid: "
{ %Copyright Linotype-Hell AG 1996
 0.9 mul 0.01 sub abs exch
 0.9 mul 0.01 sub abs exch
 2 copy lt { 0.003 mul add } { exch 0.003 mul add } ifelse
 1 exch sub
} 
"
*End

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

*% Paper Handling ===================
*% Use these entries to set paper size most of the time, unless there is
*% specific reason to use PageRegion.
*OpenUI *PageSize: PickOne
*OrderDependency: 20 AnySetup *PageSize

*DefaultPageSize: Letter
*PageSize Letter: "<</PageSize [612 792] /Orientation 1>> setpagedevice"
*PageSize Letter.Extra: "<</PageSize [684 864] /Orientation 1>> setpagedevice"
*PageSize Letter.Transverse: "<</PageSize [612 792] /Orientation 0>> setpagedevice"
*PageSize Letter.Extra.Transverse: "<</PageSize [684 864] /Orientation 0>> setpagedevice"

*PageSize Legal: "<</PageSize [612 1008] /Orientation 1>> setpagedevice"
*PageSize Legal.Extra: "<</PageSize [684 1080] /Orientation 1>> setpagedevice"
*PageSize Legal.Transverse: "<</PageSize [612 1008] /Orientation 0>> setpagedevice"
*PageSize Legal.Extra.Transverse: "<</PageSize [684 1080] /Orientation 0>> setpagedevice"

*PageSize Tabloid: "<</PageSize [792 1224] /Orientation 1>> setpagedevice"
*PageSize Tabloid.Extra: "<</PageSize [864 1296] /Orientation 1>> setpagedevice"
*PageSize Tabloid.Transverse: "<</PageSize [792 1224] /Orientation 0>> setpagedevice"
*PageSize Tabloid.Extra.Transverse: "<</PageSize [864 1296] /Orientation 0>> setpagedevice"

*PageSize A3: "<</PageSize [842 1191] /Orientation 1>> setpagedevice"
*PageSize A3.Extra: "<</PageSize [914 1263] /Orientation 1>> setpagedevice"
*PageSize A3.Transverse: "<</PageSize [842 1191] /Orientation 0>> setpagedevice"
*PageSize A3.Extra.Transverse: "<</PageSize [914 1262] /Orientation 0>> setpagedevice"

*PageSize A4: "<</PageSize [595 842] /Orientation 1>> setpagedevice"
*PageSize A4.Extra: "<</PageSize [667 914] /Orientation 1>> setpagedevice"
*PageSize A4.Transverse: "<</PageSize [595 842] /Orientation 0>> setpagedevice"
*PageSize A4.Extra.Transverse: "<</PageSize [667 914] /Orientation 0>> setpagedevice"

*PageSize A5: "<</PageSize [420 595] /Orientation 1>> setpagedevice"
*PageSize A5.Extra: "<</PageSize [492 667] /Orientation 1>> setpagedevice"
*PageSize A5.Transverse: "<</PageSize [420 595] /Orientation 0>> setpagedevice"
*PageSize A5.Extra.Transverse: "<</PageSize [492 667] /Orientation 0>> setpagedevice"

*PageSize B3: "<</PageSize [1032 1460] /Orientation 1>> setpagedevice"
*PageSize B3.Transverse: "<</PageSize [1032 1460] /Orientation 0>> setpagedevice"

*PageSize B4: "<</PageSize [729 1032] /Orientation 1>> setpagedevice"
*PageSize B4.Extra: "<</PageSize [801 1104] /Orientation 1>> setpagedevice"
*PageSize B4.Transverse: "<</PageSize [729 1032] /Orientation 0>> setpagedevice"
*PageSize B4.Extra.Transverse: "<</PageSize [801 1104] /Orientation 0>> setpagedevice"

*PageSize B5: "<</PageSize [516 729] /Orientation 1>> setpagedevice"
*PageSize B5.Extra: "<</PageSize [588 801] /Orientation 1>> setpagedevice"
*PageSize B5.Transverse: "<</PageSize [516 729] /Orientation 0>> setpagedevice"
*PageSize B5.Extra.Transverse: "<</PageSize [588 801] /Orientation 0>> setpagedevice"

*PageSize ISOB3: "<</PageSize [1001 1417] /Orientation 1>> setpagedevice"
*PageSize ISOB3.Transverse: "<</PageSize [1001 1417] /Orientation 0>> setpagedevice"

*PageSize ISOB4: "<</PageSize [709 1001] /Orientation 1>> setpagedevice"
*PageSize ISOB4.Extra: "<</PageSize [781 1073] /Orientation 1>> setpagedevice"
*PageSize ISOB4.Transverse: "<</PageSize [709 1001] /Orientation 0>> setpagedevice"
*PageSize ISOB4.Extra.Transverse: "<</PageSize [781 1073] /Orientation 0>> setpagedevice"

*PageSize ISOB5: "<</PageSize [499 709] /Orientation 1>> setpagedevice"
*PageSize ISOB5.Extra: "<</PageSize [569.7 782] /Orientation 1>> setpagedevice"
*PageSize ISOB5.Transverse: "<</PageSize [499 709] /Orientation 0>> setpagedevice"
*PageSize ISOB5.Extra.Transverse: "<</PageSize [569.7 782] /Orientation 0>> setpagedevice"

*PageSize MaxPage: "<</PageSize [1431 1488] /Orientation 1>> setpagedevice"

*?PageSize: "
save
mark 
currentpagedevice /PageSize get aload pop
2 copy gt {exch} if 
(Unknown)
37 dict
dup [ 612 792] (Letter) put
dup [ 684 864] (Letter.Extra) put

dup [ 612 1008] (Legal) put
dup [ 684 1080] (Legal.Extra) put

dup [ 792 1224] (Tabloid) put
dup [ 864 1296] (Tabloid.Extra) put
 
dup [1684 2384] (A1) put
dup [1756 2456] (A1.Extra) put

dup [1191 1684] (A2) put
dup [1263 1756] (A2.Extra) put

dup [ 842 1191] (A3) put
dup [ 914 1263] (A3.Extra) put

dup [ 595 842] (A4) put
dup [ 667 914] (A4.Extra) put

dup [ 420 595] (A5) put
dup [ 492 667] (A5.Extra) put

dup [2064 2920] (B1) put
dup [2136 2992] (B1.Extra) put

dup [1460 2064] (B2) put
dup [1532 2136] (B2.Extra) put

dup [1032 1460] (B3) put
dup [1104 1532] (B3.Extra) put

dup [ 729 1032] (B4) put
dup [ 801 1104] (B4.Extra) put

dup [ 516 729] (B5) put
dup [ 588 801] (B5.Extra) put

dup [2004 2835] (ISOB1) put
dup [2076 2907] (ISOB1.Extra) put

dup [1417 2004] (ISOB2) put
dup [1489 2076] (ISOB2.Extra) put

dup [1001 1417] (ISOB3) put
dup [1073 1489] (ISOB3.Extra) put

dup [ 709 1001] (ISOB4) put
dup [ 781 1073] (ISOB4.Extra) put

dup [ 499 709] (ISOB5) put
dup [ 571 781] (ISOB5.Extra) put

dup [1431 1488] (MaxPage) 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
cleartomark

restore
"
*End
*CloseUI: *PageSize

*% These entries will set up the frame buffer. Usually used with manual feed.
*OpenUI *PageRegion: PickOne
*OrderDependency: 10 AnySetup *PageRegion

*DefaultPageRegion: Letter
*PageRegion Letter: "<</PageSize [612 792] /Orientation 1>> setpagedevice"
*PageRegion Letter.Extra: "<</PageSize [684 864] /Orientation 1>> setpagedevice"
*PageRegion Letter.Transverse: "<</PageSize [612 792] /Orientation 0>> setpagedevice"
*PageRegion Letter.Extra.Transverse: "<</PageSize [684 864] /Orientation 0>> setpagedevice"

*PageRegion Legal: "<</PageSize [612 1008] /Orientation 1>> setpagedevice"
*PageRegion Legal.Extra: "<</PageSize [684 1080] /Orientation 1>> setpagedevice"
*PageRegion Legal.Transverse: "<</PageSize [612 1008] /Orientation 0>> setpagedevice"
*PageRegion Legal.Extra.Transverse: "<</PageSize [684 1080] /Orientation 0>> setpagedevice"

*PageRegion Tabloid: "<</PageSize [792 1224] /Orientation 1>> setpagedevice"
*PageRegion Tabloid.Extra: "<</PageSize [864 1296] /Orientation 1>> setpagedevice"
*PageRegion Tabloid.Transverse: "<</PageSize [792 1224] /Orientation 0>> setpagedevice"
*PageRegion Tabloid.Extra.Transverse: "<</PageSize [864 1296] /Orientation 0>> setpagedevice"

*PageRegion A3: "<</PageSize [842 1191] /Orientation 1>> setpagedevice"
*PageRegion A3.Extra: "<</PageSize [914 1263] /Orientation 1>> setpagedevice"
*PageRegion A3.Transverse: "<</PageSize [842 1191] /Orientation 0>> setpagedevice"
*PageRegion A3.Extra.Transverse: "<</PageSize [914 1262] /Orientation 0>> setpagedevice"

*PageRegion A4: "<</PageSize [595 842] /Orientation 1>> setpagedevice"
*PageRegion A4.Extra: "<</PageSize [667 914] /Orientation 1>> setpagedevice"
*PageRegion A4.Transverse: "<</PageSize [595 842] /Orientation 0>> setpagedevice"
*PageRegion A4.Extra.Transverse: "<</PageSize [667 914] /Orientation 0>> setpagedevice"

*PageRegion A5: "<</PageSize [420 595] /Orientation 1>> setpagedevice"
*PageRegion A5.Extra: "<</PageSize [492 667] /Orientation 1>> setpagedevice"
*PageRegion A5.Transverse: "<</PageSize [420 595] /Orientation 0>> setpagedevice"
*PageRegion A5.Extra.Transverse: "<</PageSize [492 667] /Orientation 0>> setpagedevice"

*PageRegion B3: "<</PageSize [1032 1460] /Orientation 1>> setpagedevice"
*PageRegion B3.Transverse: "<</PageSize [1032 1460] /Orientation 0>> setpagedevice"

*PageRegion B4: "<</PageSize [729 1032] /Orientation 1>> setpagedevice"
*PageRegion B4.Extra: "<</PageSize [801 1104] /Orientation 1>> setpagedevice"
*PageRegion B4.Transverse: "<</PageSize [729 1032] /Orientation 0>> setpagedevice"
*PageRegion B4.Extra.Transverse: "<</PageSize [801 1104] /Orientation 0>> setpagedevice"

*PageRegion B5: "<</PageSize [516 729] /Orientation 1>> setpagedevice"
*PageRegion B5.Extra: "<</PageSize [588 801] /Orientation 1>> setpagedevice"
*PageRegion B5.Transverse: "<</PageSize [516 729] /Orientation 0>> setpagedevice"
*PageRegion B5.Extra.Transverse: "<</PageSize [588 801] /Orientation 0>> setpagedevice"

*PageRegion ISOB3: "<</PageSize [1001 1417] /Orientation 1>> setpagedevice"
*PageRegion ISOB3.Transverse: "<</PageSize [1001 1417] /Orientation 0>> setpagedevice"

*PageRegion ISOB4: "<</PageSize [709 1001] /Orientation 1>> setpagedevice"
*PageRegion ISOB4.Extra: "<</PageSize [781 1073] /Orientation 1>> setpagedevice"
*PageRegion ISOB4.Transverse: "<</PageSize [709 1001] /Orientation 0>> setpagedevice"
*PageRegion ISOB4.Extra.Transverse: "<</PageSize [781 1073] /Orientation 0>> setpagedevice"

*PageRegion ISOB5: "<</PageSize [499 709] /Orientation 1>> setpagedevice"
*PageRegion ISOB5.Extra: "<</PageSize [569.7 782] /Orientation 1>> setpagedevice"
*PageRegion ISOB5.Transverse: "<</PageSize [499 709] /Orientation 0>> setpagedevice"
*PageRegion ISOB5.Extra.Transverse: "<</PageSize [569.7 782] /Orientation 0>> setpagedevice"

*PageRegion MaxPage: "<</PageSize [1431 1488] /Orientation 1>> setpagedevice"

*CloseUI: *PageRegion

*% The following entries provide information about specific paper keywords.
*DefaultImageableArea: Letter

*ImageableArea Letter: "0.0 0.0 612.0 792.0"
*ImageableArea Letter.Extra: "0.0 0.0 684.0 864.0"
*ImageableArea Letter.Transverse: "0.0 0.0 612.0 791.0"
*ImageableArea Letter.Extra.Transverse: "0.0 0.0 684.0 863.0"

*ImageableArea Legal: "0.0 0.0 612.0 1008.0"
*ImageableArea Legal.Extra: "0.0 0.0 684.0 1080.0"
*ImageableArea Legal.Transverse: "0.0 0.0 612.0 1007.0"
*ImageableArea Legal.Extra.Transverse: "0.0 0.0 684.0 1079.0"

*ImageableArea Tabloid: "0.0 0.0 792.0 1224.0"
*ImageableArea Tabloid.Extra: "0.0 0.0 864.0 1296.0"
*ImageableArea Tabloid.Transverse: "0.0 0.0 792.0 1223.0"
*ImageableArea Tabloid.Extra.Transverse: "0.0 0.0 864.0 1295.0"

*ImageableArea A3: "0.0 0.0 842.0 1191.0"
*ImageableArea A3.Extra: "0.0 0.0 914.0 1263.0"
*ImageableArea A3.Transverse: "0.0 0.0 842.0 1190.0"
*ImageableArea A3.Extra.Transverse: "0.0 0.0 914.0 1262.0"

*ImageableArea A4: "0.0 0.0 595.0 842.0"
*ImageableArea A4.Extra: "0.0 0.0 667.0 914.0"
*ImageableArea A4.Transverse: "0.0 0.0 595.0 841.0"
*ImageableArea A4.Extra.Transverse: "0.0 0.0 667.0 913.0"

*ImageableArea A5: "0.0 0.0 420.0 595.0"
*ImageableArea A5.Extra: "0.0 0.0 492.0 667.0"
*ImageableArea A5.Transverse: "0.0 0.0 420.0 594.0"
*ImageableArea A5.Extra.Transverse: "0.0 0.0 492.0 666.0"

*ImageableArea B3: "0.0 0.0 1032.0 1460.0"
*ImageableArea B3.Transverse: "0.0 0.0 1032.0 1459.0"

*ImageableArea B4: "0.0 0.0 729.0 1032.0"
*ImageableArea B4.Extra: "0.0 0.0 801.0 1104.0"
*ImageableArea B4.Transverse: "0.0 0.0 729.0 1031.0"
*ImageableArea B4.Extra.Transverse: "0.0 0.0 801.0 1103.0"

*ImageableArea B5: "0.0 0.0 516.0 729.0"
*ImageableArea B5.Extra: "0.0 0.0 588.0 801.0"
*ImageableArea B5.Transverse: "0.0 0.0 516.0 728.0"
*ImageableArea B5.Extra.Transverse: "0.0 0.0 588.0 800.0"

*ImageableArea ISOB3: "0.0 0.0 1001.0 1417.0"
*ImageableArea ISOB3.Transverse: "0.0 0.0 1001.0 1416.0"

*ImageableArea ISOB4: "0.0 0.0 709.0 1001.0"
*ImageableArea ISOB4.Extra: "0.0 0.0 781.0 1073.0"
*ImageableArea ISOB4.Transverse: "0.0 0.0 709.0 1000.0"
*ImageableArea ISOB4.Extra.Transverse: "0.0 0.0 781.0 1072.0"

*ImageableArea ISOB5: "0.0 0.0 499.0 709.0"
*ImageableArea ISOB5.Extra: "0.0 0.0 569.7 782.0"
*ImageableArea ISOB5.Transverse: "0.0 0.0 499.0 708.0"
*ImageableArea ISOB5.Extra.Transverse: "0.0 0.0 569.7 781.0"

*ImageableArea MaxPage: "0.0 0.0 1431.0 1488.0"

*?ImageableArea: "
 save 
 initclip clippath pathbbox 
 4 -2 roll exch round cvr =print ( ) print round cvr =print ( ) print
 exch round cvr =print ( ) print round cvr =print (\n) print flush
 restore
"
*End

*% These provide the physical dimensions of the paper (by keyword)
*DefaultPaperDimension: Letter

*PaperDimension Letter: "612.0 792.0"
*PaperDimension Letter.Extra: "684.0 864.0"
*PaperDimension Letter.Transverse: "612.0 791.0"
*PaperDimension Letter.Extra.Transverse: "684.0 863.0"

*PaperDimension Legal: "612.0 1008.0"
*PaperDimension Legal.Extra: "684.0 1080.0"
*PaperDimension Legal.Transverse: "612.0 1007.0"
*PaperDimension Legal.Extra.Transverse: "684.0 1079.0"

*PaperDimension Tabloid: "792.0 1224.0"
*PaperDimension Tabloid.Extra: "864.0 1296.0"
*PaperDimension Tabloid.Transverse: "792.0 1223.0"
*PaperDimension Tabloid.Extra.Transverse: "864.0 1295.0"

*PaperDimension A3: "842.0 1191.0"
*PaperDimension A3.Extra: "914.0 1263.0"
*PaperDimension A3.Transverse: "842.0 1190.0"
*PaperDimension A3.Extra.Transverse: "914.0 1262.0"

*PaperDimension A4: "595.0 842.0"
*PaperDimension A4.Extra: "667.0 914.0"
*PaperDimension A4.Transverse: "595.0 841.0"
*PaperDimension A4.Extra.Transverse: "667.0 913.0"

*PaperDimension A5: "420.0 595.0"
*PaperDimension A5.Extra: "492.0 667.0"
*PaperDimension A5.Transverse: "420.0 594.0"
*PaperDimension A5.Extra.Transverse: "492.0 666.0"

*PaperDimension B3: "1032.0 1460.0"
*PaperDimension B3.Transverse: "1032.0 1459.0"

*PaperDimension B4: "729.0 1032.0"
*PaperDimension B4.Extra: "801.0 1104.0"
*PaperDimension B4.Transverse: "729.0 1031.0"
*PaperDimension B4.Extra.Transverse: "801.0 1103.0"

*PaperDimension B5: "516.0 729.0"
*PaperDimension B5.Extra: "588.0 801.0"
*PaperDimension B5.Transverse: "516.0 728.0"
*PaperDimension B5.Extra.Transverse: "588.0 800.0"

*PaperDimension ISOB3: "1001.0 1417.0"
*PaperDimension ISOB3.Transverse: "1001.0 1416.0"

*PaperDimension ISOB4: "709.0 1001.0"
*PaperDimension ISOB4.Extra: "781.0 1073.0"
*PaperDimension ISOB4.Transverse: "709.0 1000.0"
*PaperDimension ISOB4.Extra.Transverse: "781.0 1072.0"

*PaperDimension ISOB5: "499.0 709.0"
*PaperDimension ISOB5.Extra: "569.7 782.0"
*PaperDimension ISOB5.Transverse: "499.0 708.0"
*PaperDimension ISOB5.Extra.Transverse: "569.7 781.0"

*PaperDimension MaxPage: "1431.0 1488.0"

*%=== Custom Page Sizes ==================================

*% These entries provide the code and parameter ranges for a user
*% to set up a custom page size.
*%CustomPageSize

*CustomPageSize True: "
% B. Giess 960228
% params order: Width (FastScan); Height (SlowScan); WidthOffset; foo; Orientation
%
exch pop statusdict /setpageparams get exec
"
*End

*DefaultLeadingEdge: PreferLong
*LeadingEdge: PreferLong

*ParamCustomPageSize Width: 1 points 72.0 1431.0
*ParamCustomPageSize Height: 2 points 72.0 1488.0
*ParamCustomPageSize WidthOffset/Margins: 3 points 0.0 1431.0
*ParamCustomPageSize HeightOffset: 4 points 0.0 0.0
*ParamCustomPageSize Orientation: 5 int 0 3

*CenterRegistered: False

*MaxMediaWidth: "1431.0"
*MaxMediaHeight: "1488.0"

*?CurrentMediaWidth: "
 save
 currentpagedevice /OutputDevice get cvlit /OutputDevice findresource
 /PageSize get 0 get dup length 2 sub 0 add get cvr = flush
 restore
 "
*End

*?CurrentMediaHeight: "
 save
 currentpagedevice /OutputDevice get cvlit /OutputDevice findresource
 /PageSize get 0 get dup length 2 sub 1 add get cvr = flush
 restore
 "
*End

*% === Imagesetter Information ===========================
*OpenGroup: Imagesetter

*OpenUI *MirrorPrint/Mirror: Boolean
*OrderDependency: 30 DocumentSetup *MirrorPrint
*DefaultMirrorPrint: False

*MirrorPrint True: "<</MirrorPrint true>> setpagedevice "
*MirrorPrint False: "<</MirrorPrint false>> setpagedevice "
*?MirrorPrint: "
 currentpagedevice /MirrorPrint get {(True)}{(False)} ifelse = flush
"
*End
*CloseUI: *MirrorPrint

*OpenUI *NegativePrint/Negative: Boolean
*OrderDependency: 40 DocumentSetup *NegativePrint
*DefaultNegativePrint: False

*NegativePrint True: "<</NegativePrint true>> setpagedevice "
*NegativePrint False: "<</NegativePrint false>> setpagedevice "
*?NegativePrint: "
 currentpagedevice /NegativePrint get {(True)}{(False)}ifelse = flush
"
*End
*CloseUI: *NegativePrint

*CloseGroup: Imagesetter

*DefaultOutputOrder: Normal
*RequiresPageRegion All: False

*% Font Information =====================
*DefaultFont: Courier
*Font AvantGarde-Book: Standard "(001.001)" Standard Disk
*Font AvantGarde-BookOblique: Standard "(001.001)" Standard Disk
*Font AvantGarde-Demi: Standard "(001.001)" Standard Disk
*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard Disk
*Font Bookman-Demi: Standard "(001.001)" Standard Disk
*Font Bookman-DemiItalic: Standard "(001.001)" Standard Disk
*Font Bookman-Light: Standard "(001.001)" Standard Disk
*Font Bookman-LightItalic: Standard "(001.001)" Standard Disk
*Font Courier: Standard "(002.002)" Standard ROM
*Font Courier-Bold: Standard "(002.002)" Standard ROM
*Font Courier-BoldOblique: Standard "(002.002)" Standard ROM
*Font Courier-Oblique: Standard "(002.002)" Standard ROM
*Font Helvetica: Standard "(001.006)" Standard ROM
*Font Helvetica-Bold: Standard "(001.007)" Standard ROM
*Font Helvetica-BoldOblique: Standard "(001.007)" Standard ROM
*Font Helvetica-Narrow: Standard "(001.006)" Standard ROM
*Font Helvetica-Narrow-Bold: Standard "(001.007)" Standard ROM
*Font Helvetica-Narrow-BoldOblique: Standard "(001.007)" Standard ROM
*Font Helvetica-Narrow-Oblique: Standard "(001.006)" Standard ROM
*Font Helvetica-Oblique: Standard "(001.006)" Standard ROM
*Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard Disk
*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard Disk
*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard Disk
*Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard Disk
*Font Palatino-Bold: Standard "(001.000)" Standard Disk
*Font Palatino-BoldItalic: Standard "(001.000)" Standard Disk
*Font Palatino-Italic: Standard "(001.000)" Standard Disk
*Font Palatino-Roman: Standard "(001.000)" Standard Disk
*Font Symbol: Special "(001.003)" Standard ROM
*Font Times-Bold: Standard "(001.007)" Standard ROM
*Font Times-BoldItalic: Standard "(001.009)" Standard ROM
*Font Times-Italic: Standard "(001.007)" Standard ROM
*Font Times-Roman: Standard "(001.007)" Standard ROM
*Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard Disk
*Font ZapfDingbats: Special "(001.000)" Standard Disk

*?FontQuery: "
save
 /str 100 string dup 0 (fonts/) putinterval def
 {
 count 1 gt
 {
 exch dup str 6 94 getinterval cvs
 (/) print dup print (:) print exch
 FontDirectory exch known
 { pop (Yes) }
 {
 length 6 add str 0 3 -1 roll getinterval
 mark exch status
 {cleartomark (Yes)}{cleartomark (No)} ifelse
 } ifelse =
 }
 {exit} ifelse
 }bind loop
 (*) = flush
restore
"
*End

*?FontList: "
save
 FontDirectory { pop == } bind forall flush
 /filenameforall where
 {
 pop (fonts/*)
 { dup length 6 sub 6 exch getinterval cvn == } bind
 128 string filenameforall flush
 } if
 (*) = 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: "PrinterError: recorder offline or film problem"
*Status: "PrinterError: "

*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
*Source: "userjob"
*Source: "other"

*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
*PrinterError: "recorder offline or film problem"
*PrinterError: ""

*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"

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

*DefaultColorSep: ProcessBlack.150lpi.2540dpi/150 lpi / 2540 dpi

*OpenUI *Separations/InRIP Color Separation: Boolean
*OrderDependency: 60 DocumentSetup *Separations

*DefaultSeparations: False
*Separations True: "
 <<
 /Separations true
 /ProcessColorModel /DeviceCMYK
 /SeparationColorNames [/Cyan /Magenta /Yellow /Black]
 /SeparationOrder [/Cyan /Magenta /Yellow /Black]
 >> setpagedevice
"
*End

*Separations False: "
 <<
 /Separations false
 /ProcessColorModel /DeviceGray
 >> setpagedevice
"
*End

*?Separations: "
 save
 currentpagedevice /Separations get 
 currentpagedevice /ProcessColorModel get /DeviceGray ne and
 {(True)}{(False)} ifelse = flush
 restore
"
*End
*CloseUI: *Separations

*%
*% Screening Params for HQS
*%
*% ----- for Resolution 3386 dpi -----
*%
*% For 100 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.100lpi.3386dpi/100 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.100lpi.3386dpi/100 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.100lpi.3386dpi/100 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.100lpi.3386dpi/100 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.100lpi.3386dpi/100 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.100lpi.3386dpi/100 lpi / 3386 dpi: "100"
*ColorSepScreenFreq CustomColor.100lpi.3386dpi/100 lpi / 3386 dpi: "100"
*ColorSepScreenFreq ProcessCyan.100lpi.3386dpi/100 lpi / 3386 dpi: "100"
*ColorSepScreenFreq ProcessMagenta.100lpi.3386dpi/100 lpi / 3386 dpi: "100"
*ColorSepScreenFreq ProcessYellow.100lpi.3386dpi/100 lpi / 3386 dpi: "100"

*% For 120 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.120lpi.3386dpi/120 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.120lpi.3386dpi/120 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.120lpi.3386dpi/120 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.120lpi.3386dpi/120 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.120lpi.3386dpi/120 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.120lpi.3386dpi/120 lpi / 3386 dpi: "120"
*ColorSepScreenFreq CustomColor.120lpi.3386dpi/120 lpi / 3386 dpi: "120"
*ColorSepScreenFreq ProcessCyan.120lpi.3386dpi/120 lpi / 3386 dpi: "120"
*ColorSepScreenFreq ProcessMagenta.120lpi.3386dpi/120 lpi / 3386 dpi: "120"
*ColorSepScreenFreq ProcessYellow.120lpi.3386dpi/120 lpi / 3386 dpi: "120"

*% For 133 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.133lpi.3386dpi/133 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.133lpi.3386dpi/133 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.133lpi.3386dpi/133 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.133lpi.3386dpi/133 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.133lpi.3386dpi/133 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.133lpi.3386dpi/133 lpi / 3386 dpi: "133"
*ColorSepScreenFreq CustomColor.133lpi.3386dpi/133 lpi / 3386 dpi: "133"
*ColorSepScreenFreq ProcessCyan.133lpi.3386dpi/133 lpi / 3386 dpi: "133"
*ColorSepScreenFreq ProcessMagenta.133lpi.3386dpi/133 lpi / 3386 dpi: "133"
*ColorSepScreenFreq ProcessYellow.133lpi.3386dpi/133 lpi / 3386 dpi: "133"

*% For 150 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.150lpi.3386dpi/150 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.150lpi.3386dpi/150 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.150lpi.3386dpi/150 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.150lpi.3386dpi/150 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.150lpi.3386dpi/150 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.150lpi.3386dpi/150 lpi / 3386 dpi: "150"
*ColorSepScreenFreq CustomColor.150lpi.3386dpi/150 lpi / 3386 dpi: "150"
*ColorSepScreenFreq ProcessCyan.150lpi.3386dpi/150 lpi / 3386 dpi: "150"
*ColorSepScreenFreq ProcessMagenta.150lpi.3386dpi/150 lpi / 3386 dpi: "150"
*ColorSepScreenFreq ProcessYellow.150lpi.3386dpi/150 lpi / 3386 dpi: "150"

*% For 175 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.175lpi.3386dpi/175 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.175lpi.3386dpi/175 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.175lpi.3386dpi/175 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.175lpi.3386dpi/175 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.175lpi.3386dpi/175 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.175lpi.3386dpi/175 lpi / 3386 dpi: "175"
*ColorSepScreenFreq CustomColor.175lpi.3386dpi/175 lpi / 3386 dpi: "175"
*ColorSepScreenFreq ProcessCyan.175lpi.3386dpi/175 lpi / 3386 dpi: "175"
*ColorSepScreenFreq ProcessMagenta.175lpi.3386dpi/175 lpi / 3386 dpi: "175"
*ColorSepScreenFreq ProcessYellow.175lpi.3386dpi/175 lpi / 3386 dpi: "175"

*% For 200 lpi / 3386 dpi
*ColorSepScreenAngle ProcessBlack.200lpi.3386dpi/200 lpi / 3386 dpi: "45"
*ColorSepScreenAngle CustomColor.200lpi.3386dpi/200 lpi / 3386 dpi: "45"
*ColorSepScreenAngle ProcessCyan.200lpi.3386dpi/200 lpi / 3386 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.200lpi.3386dpi/200 lpi / 3386 dpi: "75"
*ColorSepScreenAngle ProcessYellow.200lpi.3386dpi/200 lpi / 3386 dpi: "0"

*ColorSepScreenFreq ProcessBlack.200lpi.3386dpi/200 lpi / 3386 dpi: "200"
*ColorSepScreenFreq CustomColor.200lpi.3386dpi/200 lpi / 3386 dpi: "200"
*ColorSepScreenFreq ProcessCyan.200lpi.3386dpi/200 lpi / 3386 dpi: "200"
*ColorSepScreenFreq ProcessMagenta.200lpi.3386dpi/200 lpi / 3386 dpi: "200"
*ColorSepScreenFreq ProcessYellow.200lpi.3386dpi/200 lpi / 3386 dpi: "200"
*%
*% ----- for Resolution 2540 dpi -----
*%
*% For 20 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.20lpi.2540dpi/20 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.20lpi.2540dpi/20 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.20lpi.2540dpi/20 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.20lpi.2540dpi/20 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.20lpi.2540dpi/20 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.20lpi.2540dpi/20 lpi / 2540 dpi: "20"
*ColorSepScreenFreq CustomColor.20lpi.2540dpi/20 lpi / 2540 dpi: "20"
*ColorSepScreenFreq ProcessCyan.20lpi.2540dpi/20 lpi / 2540 dpi: "20"
*ColorSepScreenFreq ProcessMagenta.20lpi.2540dpi/20 lpi / 2540 dpi: "20"
*ColorSepScreenFreq ProcessYellow.20lpi.2540dpi/20 lpi / 2540 dpi: "20"

*% For 33 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.33lpi.2540dpi/33 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.33lpi.2540dpi/33 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.33lpi.2540dpi/33 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.33lpi.2540dpi/33 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.33lpi.2540dpi/33 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.33lpi.2540dpi/33 lpi / 2540 dpi: "33"
*ColorSepScreenFreq CustomColor.33lpi.2540dpi/33 lpi / 2540 dpi: "33"
*ColorSepScreenFreq ProcessCyan.33lpi.2540dpi/33 lpi / 2540 dpi: "33"
*ColorSepScreenFreq ProcessMagenta.33lpi.2540dpi/33 lpi / 2540 dpi: "33"
*ColorSepScreenFreq ProcessYellow.33lpi.2540dpi/33 lpi / 2540 dpi: "33"

*% For 38 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.38lpi.2540dpi/38 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.38lpi.2540dpi/38 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.38lpi.2540dpi/38 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.38lpi.2540dpi/38 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.38lpi.2540dpi/38 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.38lpi.2540dpi/38 lpi / 2540 dpi: "38"
*ColorSepScreenFreq CustomColor.38lpi.2540dpi/38 lpi / 2540 dpi: "38"
*ColorSepScreenFreq ProcessCyan.38lpi.2540dpi/38 lpi / 2540 dpi: "38"
*ColorSepScreenFreq ProcessMagenta.38lpi.2540dpi/38 lpi / 2540 dpi: "38"
*ColorSepScreenFreq ProcessYellow.38lpi.2540dpi/38 lpi / 2540 dpi: "38"

*% For 46 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.46lpi.2540dpi/46 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.46lpi.2540dpi/46 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.46lpi.2540dpi/46 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.46lpi.2540dpi/46 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.46lpi.2540dpi/46 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.46lpi.2540dpi/46 lpi / 2540 dpi: "46"
*ColorSepScreenFreq CustomColor.46lpi.2540dpi/46 lpi / 2540 dpi: "46"
*ColorSepScreenFreq ProcessCyan.46lpi.2540dpi/46 lpi / 2540 dpi: "46"
*ColorSepScreenFreq ProcessMagenta.46lpi.2540dpi/46 lpi / 2540 dpi: "46"
*ColorSepScreenFreq ProcessYellow.46lpi.2540dpi/46 lpi / 2540 dpi: "46"

*% For 50 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.50lpi.2540dpi/50 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.50lpi.2540dpi/50 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.50lpi.2540dpi/50 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.50lpi.2540dpi/50 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.50lpi.2540dpi/50 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.50lpi.2540dpi/50 lpi / 2540 dpi: "50"
*ColorSepScreenFreq CustomColor.50lpi.2540dpi/50 lpi / 2540 dpi: "50"
*ColorSepScreenFreq ProcessCyan.50lpi.2540dpi/50 lpi / 2540 dpi: "50"
*ColorSepScreenFreq ProcessMagenta.50lpi.2540dpi/50 lpi / 2540 dpi: "50"
*ColorSepScreenFreq ProcessYellow.50lpi.2540dpi/50 lpi / 2540 dpi: "50"

*% For 65 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.65lpi.2540dpi/65 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.65lpi.2540dpi/65 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.65lpi.2540dpi/65 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.65lpi.2540dpi/65 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.65lpi.2540dpi/65 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.65lpi.2540dpi/65 lpi / 2540 dpi: "65"
*ColorSepScreenFreq CustomColor.65lpi.2540dpi/65 lpi / 2540 dpi: "65"
*ColorSepScreenFreq ProcessCyan.65lpi.2540dpi/65 lpi / 2540 dpi: "65"
*ColorSepScreenFreq ProcessMagenta.65lpi.2540dpi/65 lpi / 2540 dpi: "65"
*ColorSepScreenFreq ProcessYellow.65lpi.2540dpi/65 lpi / 2540 dpi: "65"

*% For 70 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.70lpi.2540dpi/70 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.70lpi.2540dpi/70 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.70lpi.2540dpi/70 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.70lpi.2540dpi/70 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.70lpi.2540dpi/70 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.70lpi.2540dpi/70 lpi / 2540 dpi: "70"
*ColorSepScreenFreq CustomColor.70lpi.2540dpi/70 lpi / 2540 dpi: "70"
*ColorSepScreenFreq ProcessCyan.70lpi.2540dpi/70 lpi / 2540 dpi: "70"
*ColorSepScreenFreq ProcessMagenta.70lpi.2540dpi/70 lpi / 2540 dpi: "70"
*ColorSepScreenFreq ProcessYellow.70lpi.2540dpi/70 lpi / 2540 dpi: "70"

*% For 75 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.75lpi.2540dpi/75 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.75lpi.2540dpi/75 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.75lpi.2540dpi/75 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.75lpi.2540dpi/75 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.75lpi.2540dpi/75 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.75lpi.2540dpi/75 lpi / 2540 dpi: "75"
*ColorSepScreenFreq CustomColor.75lpi.2540dpi/75 lpi / 2540 dpi: "75"
*ColorSepScreenFreq ProcessCyan.75lpi.2540dpi/75 lpi / 2540 dpi: "75"
*ColorSepScreenFreq ProcessMagenta.75lpi.2540dpi/75 lpi / 2540 dpi: "75"
*ColorSepScreenFreq ProcessYellow.75lpi.2540dpi/75 lpi / 2540 dpi: "75"

*% For 80 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.80lpi.2540dpi/80 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.80lpi.2540dpi/80 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.80lpi.2540dpi/80 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.80lpi.2540dpi/80 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.80lpi.2540dpi/80 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.80lpi.2540dpi/80 lpi / 2540 dpi: "80"
*ColorSepScreenFreq CustomColor.80lpi.2540dpi/80 lpi / 2540 dpi: "80"
*ColorSepScreenFreq ProcessCyan.80lpi.2540dpi/80 lpi / 2540 dpi: "80"
*ColorSepScreenFreq ProcessMagenta.80lpi.2540dpi/80 lpi / 2540 dpi: "80"
*ColorSepScreenFreq ProcessYellow.80lpi.2540dpi/80 lpi / 2540 dpi: "80"

*% For 85 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.85lpi.2540dpi/85 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.85lpi.2540dpi/85 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.85lpi.2540dpi/85 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.85lpi.2540dpi/85 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.85lpi.2540dpi/85 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.85lpi.2540dpi/85 lpi / 2540 dpi: "85"
*ColorSepScreenFreq CustomColor.85lpi.2540dpi/85 lpi / 2540 dpi: "85"
*ColorSepScreenFreq ProcessCyan.85lpi.2540dpi/85 lpi / 2540 dpi: "85"
*ColorSepScreenFreq ProcessMagenta.85lpi.2540dpi/85 lpi / 2540 dpi: "85"
*ColorSepScreenFreq ProcessYellow.85lpi.2540dpi/85 lpi / 2540 dpi: "85"

*% For 90 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.90lpi.2540dpi/90 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.90lpi.2540dpi/90 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.90lpi.2540dpi/90 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.90lpi.2540dpi/90 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.90lpi.2540dpi/90 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.90lpi.2540dpi/90 lpi / 2540 dpi: "90"
*ColorSepScreenFreq CustomColor.90lpi.2540dpi/90 lpi / 2540 dpi: "90"
*ColorSepScreenFreq ProcessCyan.90lpi.2540dpi/90 lpi / 2540 dpi: "90"
*ColorSepScreenFreq ProcessMagenta.90lpi.2540dpi/90 lpi / 2540 dpi: "90"
*ColorSepScreenFreq ProcessYellow.90lpi.2540dpi/90 lpi / 2540 dpi: "90"

*% For 100 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.100lpi.2540dpi/100 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.100lpi.2540dpi/100 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.100lpi.2540dpi/100 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.100lpi.2540dpi/100 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.100lpi.2540dpi/100 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.100lpi.2540dpi/100 lpi / 2540 dpi: "100"
*ColorSepScreenFreq CustomColor.100lpi.2540dpi/100 lpi / 2540 dpi: "100"
*ColorSepScreenFreq ProcessCyan.100lpi.2540dpi/100 lpi / 2540 dpi: "100"
*ColorSepScreenFreq ProcessMagenta.100lpi.2540dpi/100 lpi / 2540 dpi: "100"
*ColorSepScreenFreq ProcessYellow.100lpi.2540dpi/100 lpi / 2540 dpi: "100"

*% For 110 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.110lpi.2540dpi/110 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.110lpi.2540dpi/110 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.110lpi.2540dpi/110 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.110lpi.2540dpi/110 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.110lpi.2540dpi/110 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.110lpi.2540dpi/110 lpi / 2540 dpi: "110"
*ColorSepScreenFreq CustomColor.110lpi.2540dpi/110 lpi / 2540 dpi: "110"
*ColorSepScreenFreq ProcessCyan.110lpi.2540dpi/110 lpi / 2540 dpi: "110"
*ColorSepScreenFreq ProcessMagenta.110lpi.2540dpi/110 lpi / 2540 dpi: "110"
*ColorSepScreenFreq ProcessYellow.110lpi.2540dpi/110 lpi / 2540 dpi: "110"

*% For 120 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.120lpi.2540dpi/120 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.120lpi.2540dpi/120 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.120lpi.2540dpi/120 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.120lpi.2540dpi/120 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.120lpi.2540dpi/120 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.120lpi.2540dpi/120 lpi / 2540 dpi: "120"
*ColorSepScreenFreq CustomColor.120lpi.2540dpi/120 lpi / 2540 dpi: "120"
*ColorSepScreenFreq ProcessCyan.120lpi.2540dpi/120 lpi / 2540 dpi: "120"
*ColorSepScreenFreq ProcessMagenta.120lpi.2540dpi/120 lpi / 2540 dpi: "120"
*ColorSepScreenFreq ProcessYellow.120lpi.2540dpi/120 lpi / 2540 dpi: "120"

*% For 133 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.133lpi.2540dpi/133 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.133lpi.2540dpi/133 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.133lpi.2540dpi/133 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.133lpi.2540dpi/133 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.133lpi.2540dpi/133 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.133lpi.2540dpi/133 lpi / 2540 dpi: "133"
*ColorSepScreenFreq CustomColor.133lpi.2540dpi/133 lpi / 2540 dpi: "133"
*ColorSepScreenFreq ProcessCyan.133lpi.2540dpi/133 lpi / 2540 dpi: "133"
*ColorSepScreenFreq ProcessMagenta.133lpi.2540dpi/133 lpi / 2540 dpi: "133"
*ColorSepScreenFreq ProcessYellow.133lpi.2540dpi/133 lpi / 2540 dpi: "133"

*% For 138 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.138lpi.2540dpi/138 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.138lpi.2540dpi/138 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.138lpi.2540dpi/138 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.138lpi.2540dpi/138 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.138lpi.2540dpi/138 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.138lpi.2540dpi/138 lpi / 2540 dpi: "138"
*ColorSepScreenFreq CustomColor.138lpi.2540dpi/138 lpi / 2540 dpi: "138"
*ColorSepScreenFreq ProcessCyan.138lpi.2540dpi/138 lpi / 2540 dpi: "138"
*ColorSepScreenFreq ProcessMagenta.138lpi.2540dpi/138 lpi / 2540 dpi: "138"
*ColorSepScreenFreq ProcessYellow.138lpi.2540dpi/138 lpi / 2540 dpi: "138"

*% For 150 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.150lpi.2540dpi/150 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.150lpi.2540dpi/150 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.150lpi.2540dpi/150 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.150lpi.2540dpi/150 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.150lpi.2540dpi/150 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.150lpi.2540dpi/150 lpi / 2540 dpi: "150"
*ColorSepScreenFreq CustomColor.150lpi.2540dpi/150 lpi / 2540 dpi: "150"
*ColorSepScreenFreq ProcessCyan.150lpi.2540dpi/150 lpi / 2540 dpi: "150"
*ColorSepScreenFreq ProcessMagenta.150lpi.2540dpi/150 lpi / 2540 dpi: "150"
*ColorSepScreenFreq ProcessYellow.150lpi.2540dpi/150 lpi / 2540 dpi: "150"

*% For 175 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.175lpi.2540dpi/175 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.175lpi.2540dpi/175 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.175lpi.2540dpi/175 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.175lpi.2540dpi/175 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.175lpi.2540dpi/175 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.175lpi.2540dpi/175 lpi / 2540 dpi: "175"
*ColorSepScreenFreq CustomColor.175lpi.2540dpi/175 lpi / 2540 dpi: "175"
*ColorSepScreenFreq ProcessCyan.175lpi.2540dpi/175 lpi / 2540 dpi: "175"
*ColorSepScreenFreq ProcessMagenta.175lpi.2540dpi/175 lpi / 2540 dpi: "175"
*ColorSepScreenFreq ProcessYellow.175lpi.2540dpi/175 lpi / 2540 dpi: "175"

*% For 200 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.200lpi.2540dpi/200 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.200lpi.2540dpi/200 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.200lpi.2540dpi/200 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.200lpi.2540dpi/200 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.200lpi.2540dpi/200 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.200lpi.2540dpi/200 lpi / 2540 dpi: "200"
*ColorSepScreenFreq CustomColor.200lpi.2540dpi/200 lpi / 2540 dpi: "200"
*ColorSepScreenFreq ProcessCyan.200lpi.2540dpi/200 lpi / 2540 dpi: "200"
*ColorSepScreenFreq ProcessMagenta.200lpi.2540dpi/200 lpi / 2540 dpi: "200"
*ColorSepScreenFreq ProcessYellow.200lpi.2540dpi/200 lpi / 2540 dpi: "200"

*% For 300 lpi / 2540 dpi
*ColorSepScreenAngle ProcessBlack.300lpi.2540dpi/300 lpi / 2540 dpi: "45"
*ColorSepScreenAngle CustomColor.300lpi.2540dpi/300 lpi / 2540 dpi: "45"
*ColorSepScreenAngle ProcessCyan.300lpi.2540dpi/300 lpi / 2540 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.300lpi.2540dpi/300 lpi / 2540 dpi: "75"
*ColorSepScreenAngle ProcessYellow.300lpi.2540dpi/300 lpi / 2540 dpi: "0"

*ColorSepScreenFreq ProcessBlack.300lpi.2540dpi/300 lpi / 2540 dpi: "300"
*ColorSepScreenFreq CustomColor.300lpi.2540dpi/300 lpi / 2540 dpi: "300"
*ColorSepScreenFreq ProcessCyan.300lpi.2540dpi/300 lpi / 2540 dpi: "300"
*ColorSepScreenFreq ProcessMagenta.300lpi.2540dpi/300 lpi / 2540 dpi: "300"
*ColorSepScreenFreq ProcessYellow.300lpi.2540dpi/300 lpi / 2540 dpi: "300"
*%
*% ----- for Resolution 2032 dpi -----
*%
*% For 33 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.33lpi.2032dpi/33 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.33lpi.2032dpi/33 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.33lpi.2032dpi/33 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.33lpi.2032dpi/33 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.33lpi.2032dpi/33 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.33lpi.2032dpi/33 lpi / 2032 dpi: "33"
*ColorSepScreenFreq CustomColor.33lpi.2032dpi/33 lpi / 2032 dpi: "33"
*ColorSepScreenFreq ProcessCyan.33lpi.2032dpi/33 lpi / 2032 dpi: "33"
*ColorSepScreenFreq ProcessMagenta.33lpi.2032dpi/33 lpi / 2032 dpi: "33"
*ColorSepScreenFreq ProcessYellow.33lpi.2032dpi/33 lpi / 2032 dpi: "33"

*% For 38 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.38lpi.2032dpi/38 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.38lpi.2032dpi/38 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.38lpi.2032dpi/38 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.38lpi.2032dpi/38 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.38lpi.2032dpi/38 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.38lpi.2032dpi/38 lpi / 2032 dpi: "38"
*ColorSepScreenFreq CustomColor.38lpi.2032dpi/38 lpi / 2032 dpi: "38"
*ColorSepScreenFreq ProcessCyan.38lpi.2032dpi/38 lpi / 2032 dpi: "38"
*ColorSepScreenFreq ProcessMagenta.38lpi.2032dpi/38 lpi / 2032 dpi: "38"
*ColorSepScreenFreq ProcessYellow.38lpi.2032dpi/38 lpi / 2032 dpi: "38"

*% For 46 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.46lpi.2032dpi/46 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.46lpi.2032dpi/46 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.46lpi.2032dpi/46 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.46lpi.2032dpi/46 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.46lpi.2032dpi/46 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.46lpi.2032dpi/46 lpi / 2032 dpi: "46"
*ColorSepScreenFreq CustomColor.46lpi.2032dpi/46 lpi / 2032 dpi: "46"
*ColorSepScreenFreq ProcessCyan.46lpi.2032dpi/46 lpi / 2032 dpi: "46"
*ColorSepScreenFreq ProcessMagenta.46lpi.2032dpi/46 lpi / 2032 dpi: "46"
*ColorSepScreenFreq ProcessYellow.46lpi.2032dpi/46 lpi / 2032 dpi: "46"

*% For 50 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.50lpi.2032dpi/50 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.50lpi.2032dpi/50 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.50lpi.2032dpi/50 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.50lpi.2032dpi/50 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.50lpi.2032dpi/50 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.50lpi.2032dpi/50 lpi / 2032 dpi: "50"
*ColorSepScreenFreq CustomColor.50lpi.2032dpi/50 lpi / 2032 dpi: "50"
*ColorSepScreenFreq ProcessCyan.50lpi.2032dpi/50 lpi / 2032 dpi: "50"
*ColorSepScreenFreq ProcessMagenta.50lpi.2032dpi/50 lpi / 2032 dpi: "50"
*ColorSepScreenFreq ProcessYellow.50lpi.2032dpi/50 lpi / 2032 dpi: "50"

*% For 60 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.60lpi.2032dpi/60 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.60lpi.2032dpi/60 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.60lpi.2032dpi/60 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.60lpi.2032dpi/60 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.60lpi.2032dpi/60 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.60lpi.2032dpi/60 lpi / 2032 dpi: "60"
*ColorSepScreenFreq CustomColor.60lpi.2032dpi/60 lpi / 2032 dpi: "60"
*ColorSepScreenFreq ProcessCyan.60lpi.2032dpi/60 lpi / 2032 dpi: "60"
*ColorSepScreenFreq ProcessMagenta.60lpi.2032dpi/60 lpi / 2032 dpi: "60"
*ColorSepScreenFreq ProcessYellow.60lpi.2032dpi/60 lpi / 2032 dpi: "60"

*% For 65 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.65lpi.2032dpi/65 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.65lpi.2032dpi/65 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.65lpi.2032dpi/65 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.65lpi.2032dpi/65 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.65lpi.2032dpi/65 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.65lpi.2032dpi/65 lpi / 2032 dpi: "65"
*ColorSepScreenFreq CustomColor.65lpi.2032dpi/65 lpi / 2032 dpi: "65"
*ColorSepScreenFreq ProcessCyan.65lpi.2032dpi/65 lpi / 2032 dpi: "65"
*ColorSepScreenFreq ProcessMagenta.65lpi.2032dpi/65 lpi / 2032 dpi: "65"
*ColorSepScreenFreq ProcessYellow.65lpi.2032dpi/65 lpi / 2032 dpi: "65"

*% For 70 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.70lpi.2032dpi/70 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.70lpi.2032dpi/70 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.70lpi.2032dpi/70 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.70lpi.2032dpi/70 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.70lpi.2032dpi/70 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.70lpi.2032dpi/70 lpi / 2032 dpi: "70"
*ColorSepScreenFreq CustomColor.70lpi.2032dpi/70 lpi / 2032 dpi: "70"
*ColorSepScreenFreq ProcessCyan.70lpi.2032dpi/70 lpi / 2032 dpi: "70"
*ColorSepScreenFreq ProcessMagenta.70lpi.2032dpi/70 lpi / 2032 dpi: "70"
*ColorSepScreenFreq ProcessYellow.70lpi.2032dpi/70 lpi / 2032 dpi: "70"

*% For 85 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.85lpi.2032dpi/85 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.85lpi.2032dpi/85 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.85lpi.2032dpi/85 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.85lpi.2032dpi/85 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.85lpi.2032dpi/85 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.85lpi.2032dpi/85 lpi / 2032 dpi: "85"
*ColorSepScreenFreq CustomColor.85lpi.2032dpi/85 lpi / 2032 dpi: "85"
*ColorSepScreenFreq ProcessCyan.85lpi.2032dpi/85 lpi / 2032 dpi: "85"
*ColorSepScreenFreq ProcessMagenta.85lpi.2032dpi/85 lpi / 2032 dpi: "85"
*ColorSepScreenFreq ProcessYellow.85lpi.2032dpi/85 lpi / 2032 dpi: "85"

*% For 100 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.100lpi.2032dpi/100 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.100lpi.2032dpi/100 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.100lpi.2032dpi/100 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.100lpi.2032dpi/100 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.100lpi.2032dpi/100 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.100lpi.2032dpi/100 lpi / 2032 dpi: "100"
*ColorSepScreenFreq CustomColor.100lpi.2032dpi/100 lpi / 2032 dpi: "100"
*ColorSepScreenFreq ProcessCyan.100lpi.2032dpi/100 lpi / 2032 dpi: "100"
*ColorSepScreenFreq ProcessMagenta.100lpi.2032dpi/100 lpi / 2032 dpi: "100"
*ColorSepScreenFreq ProcessYellow.100lpi.2032dpi/100 lpi / 2032 dpi: "100"

*% For 110 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.110lpi.2032dpi/110 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.110lpi.2032dpi/110 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.110lpi.2032dpi/110 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.110lpi.2032dpi/110 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.110lpi.2032dpi/110 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.110lpi.2032dpi/110 lpi / 2032 dpi: "110"
*ColorSepScreenFreq CustomColor.110lpi.2032dpi/110 lpi / 2032 dpi: "110"
*ColorSepScreenFreq ProcessCyan.110lpi.2032dpi/110 lpi / 2032 dpi: "110"
*ColorSepScreenFreq ProcessMagenta.110lpi.2032dpi/110 lpi / 2032 dpi: "110"
*ColorSepScreenFreq ProcessYellow.110lpi.2032dpi/110 lpi / 2032 dpi: "110"

*% For 120 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.120lpi.2032dpi/120 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.120lpi.2032dpi/120 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.120lpi.2032dpi/120 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.120lpi.2032dpi/120 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.120lpi.2032dpi/120 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.120lpi.2032dpi/120 lpi / 2032 dpi: "120"
*ColorSepScreenFreq CustomColor.120lpi.2032dpi/120 lpi / 2032 dpi: "120"
*ColorSepScreenFreq ProcessCyan.120lpi.2032dpi/120 lpi / 2032 dpi: "120"
*ColorSepScreenFreq ProcessMagenta.120lpi.2032dpi/120 lpi / 2032 dpi: "120"
*ColorSepScreenFreq ProcessYellow.120lpi.2032dpi/120 lpi / 2032 dpi: "120"

*% For 138 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.138lpi.2032dpi/138 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.138lpi.2032dpi/138 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.138lpi.2032dpi/138 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.138lpi.2032dpi/138 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.138lpi.2032dpi/138 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.138lpi.2032dpi/138 lpi / 2032 dpi: "138"
*ColorSepScreenFreq CustomColor.138lpi.2032dpi/138 lpi / 2032 dpi: "138"
*ColorSepScreenFreq ProcessCyan.138lpi.2032dpi/138 lpi / 2032 dpi: "138"
*ColorSepScreenFreq ProcessMagenta.138lpi.2032dpi/138 lpi / 2032 dpi: "138"
*ColorSepScreenFreq ProcessYellow.138lpi.2032dpi/138 lpi / 2032 dpi: "138"

*% For 150 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.150lpi.2032dpi/150 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.150lpi.2032dpi/150 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.150lpi.2032dpi/150 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.150lpi.2032dpi/150 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.150lpi.2032dpi/150 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.150lpi.2032dpi/150 lpi / 2032 dpi: "150"
*ColorSepScreenFreq CustomColor.150lpi.2032dpi/150 lpi / 2032 dpi: "150"
*ColorSepScreenFreq ProcessCyan.150lpi.2032dpi/150 lpi / 2032 dpi: "150"
*ColorSepScreenFreq ProcessMagenta.150lpi.2032dpi/150 lpi / 2032 dpi: "150"
*ColorSepScreenFreq ProcessYellow.150lpi.2032dpi/150 lpi / 2032 dpi: "150"

*% For 175 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.175lpi.2032dpi/175 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.175lpi.2032dpi/175 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.175lpi.2032dpi/175 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.175lpi.2032dpi/175 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.175lpi.2032dpi/175 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.175lpi.2032dpi/175 lpi / 2032 dpi: "175"
*ColorSepScreenFreq CustomColor.175lpi.2032dpi/175 lpi / 2032 dpi: "175"
*ColorSepScreenFreq ProcessCyan.175lpi.2032dpi/175 lpi / 2032 dpi: "175"
*ColorSepScreenFreq ProcessMagenta.175lpi.2032dpi/175 lpi / 2032 dpi: "175"
*ColorSepScreenFreq ProcessYellow.175lpi.2032dpi/175 lpi / 2032 dpi: "175"

*% For 250 lpi / 2032 dpi
*ColorSepScreenAngle ProcessBlack.250lpi.2032dpi/250 lpi / 2032 dpi: "45"
*ColorSepScreenAngle CustomColor.250lpi.2032dpi/250 lpi / 2032 dpi: "45"
*ColorSepScreenAngle ProcessCyan.250lpi.2032dpi/250 lpi / 2032 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.250lpi.2032dpi/250 lpi / 2032 dpi: "75"
*ColorSepScreenAngle ProcessYellow.250lpi.2032dpi/250 lpi / 2032 dpi: "0"

*ColorSepScreenFreq ProcessBlack.250lpi.2032dpi/250 lpi / 2032 dpi: "250"
*ColorSepScreenFreq CustomColor.250lpi.2032dpi/250 lpi / 2032 dpi: "250"
*ColorSepScreenFreq ProcessCyan.250lpi.2032dpi/250 lpi / 2032 dpi: "250"
*ColorSepScreenFreq ProcessMagenta.250lpi.2032dpi/250 lpi / 2032 dpi: "250"
*ColorSepScreenFreq ProcessYellow.250lpi.2032dpi/250 lpi / 2032 dpi: "250"
*%
*% ----- for Resolution 1693 dpi -----
*%
*% For 75 lpi / 1693 dpi
*ColorSepScreenAngle ProcessBlack.75lpi.1693dpi/75 lpi / 1693 dpi: "45"
*ColorSepScreenAngle CustomColor.75lpi.1693dpi/75 lpi / 1693 dpi: "45"
*ColorSepScreenAngle ProcessCyan.75lpi.1693dpi/75 lpi / 1693 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.75lpi.1693dpi/75 lpi / 1693 dpi: "75"
*ColorSepScreenAngle ProcessYellow.75lpi.1693dpi/75 lpi / 1693 dpi: "0"

*ColorSepScreenFreq ProcessBlack.75lpi.1693dpi/75 lpi / 1693 dpi: "75"
*ColorSepScreenFreq CustomColor.75lpi.1693dpi/75 lpi / 1693 dpi: "75"
*ColorSepScreenFreq ProcessCyan.75lpi.1693dpi/75 lpi / 1693 dpi: "75"
*ColorSepScreenFreq ProcessMagenta.75lpi.1693dpi/75 lpi / 1693 dpi: "75"
*ColorSepScreenFreq ProcessYellow.75lpi.1693dpi/75 lpi / 1693 dpi: "75"

*% For 85 lpi / 1693 dpi
*ColorSepScreenAngle ProcessBlack.85lpi.1693dpi/85 lpi / 1693 dpi: "45"
*ColorSepScreenAngle CustomColor.85lpi.1693dpi/85 lpi / 1693 dpi: "45"
*ColorSepScreenAngle ProcessCyan.85lpi.1693dpi/85 lpi / 1693 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.85lpi.1693dpi/85 lpi / 1693 dpi: "75"
*ColorSepScreenAngle ProcessYellow.85lpi.1693dpi/85 lpi / 1693 dpi: "0"

*ColorSepScreenFreq ProcessBlack.85lpi.1693dpi/85 lpi / 1693 dpi: "85"
*ColorSepScreenFreq CustomColor.85lpi.1693dpi/85 lpi / 1693 dpi: "85"
*ColorSepScreenFreq ProcessCyan.85lpi.1693dpi/85 lpi / 1693 dpi: "85"
*ColorSepScreenFreq ProcessMagenta.85lpi.1693dpi/85 lpi / 1693 dpi: "85"
*ColorSepScreenFreq ProcessYellow.85lpi.1693dpi/85 lpi / 1693 dpi: "85"

*% For 100 lpi / 1693 dpi
*ColorSepScreenAngle ProcessBlack.100lpi.1693dpi/100 lpi / 1693 dpi: "45"
*ColorSepScreenAngle CustomColor.100lpi.1693dpi/100 lpi / 1693 dpi: "45"
*ColorSepScreenAngle ProcessCyan.100lpi.1693dpi/100 lpi / 1693 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.100lpi.1693dpi/100 lpi / 1693 dpi: "75"
*ColorSepScreenAngle ProcessYellow.100lpi.1693dpi/100 lpi / 1693 dpi: "0"

*ColorSepScreenFreq ProcessBlack.100lpi.1693dpi/100 lpi / 1693 dpi: "100"
*ColorSepScreenFreq CustomColor.100lpi.1693dpi/100 lpi / 1693 dpi: "100"
*ColorSepScreenFreq ProcessCyan.100lpi.1693dpi/100 lpi / 1693 dpi: "100"
*ColorSepScreenFreq ProcessMagenta.100lpi.1693dpi/100 lpi / 1693 dpi: "100"
*ColorSepScreenFreq ProcessYellow.100lpi.1693dpi/100 lpi / 1693 dpi: "100"

*% For 120 lpi / 1693 dpi
*ColorSepScreenAngle ProcessBlack.120lpi.1693dpi/120 lpi / 1693 dpi: "45"
*ColorSepScreenAngle CustomColor.120lpi.1693dpi/120 lpi / 1693 dpi: "45"
*ColorSepScreenAngle ProcessCyan.120lpi.1693dpi/120 lpi / 1693 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.120lpi.1693dpi/120 lpi / 1693 dpi: "75"
*ColorSepScreenAngle ProcessYellow.120lpi.1693dpi/120 lpi / 1693 dpi: "0"

*ColorSepScreenFreq ProcessBlack.120lpi.1693dpi/120 lpi / 1693 dpi: "120"
*ColorSepScreenFreq CustomColor.120lpi.1693dpi/120 lpi / 1693 dpi: "120"
*ColorSepScreenFreq ProcessCyan.120lpi.1693dpi/120 lpi / 1693 dpi: "120"
*ColorSepScreenFreq ProcessMagenta.120lpi.1693dpi/120 lpi / 1693 dpi: "120"
*ColorSepScreenFreq ProcessYellow.120lpi.1693dpi/120 lpi / 1693 dpi: "120"

*% For 150 lpi / 1693 dpi
*ColorSepScreenAngle ProcessBlack.150lpi.1693dpi/150 lpi / 1693 dpi: "45"
*ColorSepScreenAngle CustomColor.150lpi.1693dpi/150 lpi / 1693 dpi: "45"
*ColorSepScreenAngle ProcessCyan.150lpi.1693dpi/150 lpi / 1693 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.150lpi.1693dpi/150 lpi / 1693 dpi: "75"
*ColorSepScreenAngle ProcessYellow.150lpi.1693dpi/150 lpi / 1693 dpi: "0"

*ColorSepScreenFreq ProcessBlack.150lpi.1693dpi/150 lpi / 1693 dpi: "150"
*ColorSepScreenFreq CustomColor.150lpi.1693dpi/150 lpi / 1693 dpi: "150"
*ColorSepScreenFreq ProcessCyan.150lpi.1693dpi/150 lpi / 1693 dpi: "150"
*ColorSepScreenFreq ProcessMagenta.150lpi.1693dpi/150 lpi / 1693 dpi: "150"
*ColorSepScreenFreq ProcessYellow.150lpi.1693dpi/150 lpi / 1693 dpi: "150"
*%
*% ----- for Resolution 1270 dpi -----
*%
*% For 65 lpi / 1270 dpi
*ColorSepScreenAngle ProcessBlack.65lpi.1270dpi/65 lpi / 1270 dpi: "45"
*ColorSepScreenAngle CustomColor.65lpi.1270dpi/65 lpi / 1270 dpi: "45"
*ColorSepScreenAngle ProcessCyan.65lpi.1270dpi/65 lpi / 1270 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.65lpi.1270dpi/65 lpi / 1270 dpi: "75"
*ColorSepScreenAngle ProcessYellow.65lpi.1270dpi/65 lpi / 1270 dpi: "0"

*ColorSepScreenFreq ProcessBlack.65lpi.1270dpi/65 lpi / 1270 dpi: "65"
*ColorSepScreenFreq CustomColor.65lpi.1270dpi/65 lpi / 1270 dpi: "65"
*ColorSepScreenFreq ProcessCyan.65lpi.1270dpi/65 lpi / 1270 dpi: "65"
*ColorSepScreenFreq ProcessMagenta.65lpi.1270dpi/65 lpi / 1270 dpi: "65"
*ColorSepScreenFreq ProcessYellow.65lpi.1270dpi/65 lpi / 1270 dpi: "65"

*% For 75 lpi / 1270 dpi
*ColorSepScreenAngle ProcessBlack.75lpi.1270dpi/75 lpi / 1270 dpi: "45"
*ColorSepScreenAngle CustomColor.75lpi.1270dpi/75 lpi / 1270 dpi: "45"
*ColorSepScreenAngle ProcessCyan.75lpi.1270dpi/75 lpi / 1270 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.75lpi.1270dpi/75 lpi / 1270 dpi: "75"
*ColorSepScreenAngle ProcessYellow.75lpi.1270dpi/75 lpi / 1270 dpi: "0"

*ColorSepScreenFreq ProcessBlack.75lpi.1270dpi/75 lpi / 1270 dpi: "75"
*ColorSepScreenFreq CustomColor.75lpi.1270dpi/75 lpi / 1270 dpi: "75"
*ColorSepScreenFreq ProcessCyan.75lpi.1270dpi/75 lpi / 1270 dpi: "75"
*ColorSepScreenFreq ProcessMagenta.75lpi.1270dpi/75 lpi / 1270 dpi: "75"
*ColorSepScreenFreq ProcessYellow.75lpi.1270dpi/75 lpi / 1270 dpi: "75"

*% For 90 lpi / 1270 dpi
*ColorSepScreenAngle ProcessBlack.90lpi.1270dpi/90 lpi / 1270 dpi: "45"
*ColorSepScreenAngle CustomColor.90lpi.1270dpi/90 lpi / 1270 dpi: "45"
*ColorSepScreenAngle ProcessCyan.90lpi.1270dpi/90 lpi / 1270 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.90lpi.1270dpi/90 lpi / 1270 dpi: "75"
*ColorSepScreenAngle ProcessYellow.90lpi.1270dpi/90 lpi / 1270 dpi: "0"

*ColorSepScreenFreq ProcessBlack.90lpi.1270dpi/90 lpi / 1270 dpi: "90"
*ColorSepScreenFreq CustomColor.90lpi.1270dpi/90 lpi / 1270 dpi: "90"
*ColorSepScreenFreq ProcessCyan.90lpi.1270dpi/90 lpi / 1270 dpi: "90"
*ColorSepScreenFreq ProcessMagenta.90lpi.1270dpi/90 lpi / 1270 dpi: "90"
*ColorSepScreenFreq ProcessYellow.90lpi.1270dpi/90 lpi / 1270 dpi: "90"

*% For 100 lpi / 1270 dpi
*ColorSepScreenAngle ProcessBlack.100lpi.1270dpi/100 lpi / 1270 dpi: "45"
*ColorSepScreenAngle CustomColor.100lpi.1270dpi/100 lpi / 1270 dpi: "45"
*ColorSepScreenAngle ProcessCyan.100lpi.1270dpi/100 lpi / 1270 dpi: "15"
*ColorSepScreenAngle ProcessMagenta.100lpi.1270dpi/100 lpi / 1270 dpi: "75"
*ColorSepScreenAngle ProcessYellow.100lpi.1270dpi/100 lpi / 1270 dpi: "0"

*ColorSepScreenFreq ProcessBlack.100lpi.1270dpi/100 lpi / 1270 dpi: "100"
*ColorSepScreenFreq CustomColor.100lpi.1270dpi/100 lpi / 1270 dpi: "100"
*ColorSepScreenFreq ProcessCyan.100lpi.1270dpi/100 lpi / 1270 dpi: "100"
*ColorSepScreenFreq ProcessMagenta.100lpi.1270dpi/100 lpi / 1270 dpi: "100"
*ColorSepScreenFreq ProcessYellow.100lpi.1270dpi/100 lpi / 1270 dpi: "100"

*% The byte count of this file should be exactly 062813 or 064239
*% depending on the filesystem it resides in.
*% end of PPD file for Linotype
*% Last edited JUL 26, 1996 Quasar