summaryrefslogtreecommitdiff
path: root/formula/source/ui/dlg/parawin.cxx
blob: f990deae1472a36f6670f979e4ae991177190c62 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <comphelper/string.hxx>
#include <svl/zforlist.hxx>
#include <svl/stritem.hxx>
#include <vcl/settings.hxx>

#include "parawin.hxx"
#include "helpids.hrc"
#include "formula/formdata.hxx"
#include "formula/IFunctionDescription.hxx"
#include "ModuleHelper.hxx"
#include "ForResId.hrc"

#define VAR_ARGS 30
#define PAIRED_VAR_ARGS (VAR_ARGS + VAR_ARGS)
namespace formula
{


ParaWin::ParaWin(vcl::Window* pParent,IControlReferenceHandler* _pDlg):
    TabPage         (pParent, "ParameterPage", "formula/ui/parameter.ui"),
    pFuncDesc       ( NULL ),
    pMyParent       (_pDlg),
    m_sOptional     ( ModuleRes( STR_OPTIONAL ) ),
    m_sRequired     ( ModuleRes( STR_REQUIRED ) ),
    bRefMode        (false)
{
    get(m_pFtEditDesc, "editdesc");
    get(m_pFtArgName, "parname");
    get(m_pFtArgDesc, "pardesc");

    //Space for two lines of text
    m_pFtArgDesc->SetText("X\nX\n");
    long nHeight = m_pFtArgDesc->GetOptimalSize().Height();
    m_pFtEditDesc->set_height_request(nHeight);
    m_pFtArgDesc->set_height_request(nHeight);
    m_pFtArgDesc->SetText("");

    get(m_pBtnFx1, "FX1");
    m_pBtnFx1->SetModeImage(Image(ModuleRes( BMP_FX )));
    get(m_pBtnFx2, "FX2");
    m_pBtnFx2->SetModeImage(Image(ModuleRes( BMP_FX )));
    get(m_pBtnFx3, "FX3");
    m_pBtnFx3->SetModeImage(Image(ModuleRes( BMP_FX )));
    get(m_pBtnFx4, "FX4");
    m_pBtnFx4->SetModeImage(Image(ModuleRes( BMP_FX )));

    get(m_pFtArg1, "FT_ARG1");
    get(m_pFtArg2, "FT_ARG2");
    get(m_pFtArg3, "FT_ARG3");
    get(m_pFtArg4, "FT_ARG4");

    get(m_pEdArg1, "ED_ARG1");
    get(m_pEdArg2, "ED_ARG2");
    get(m_pEdArg3, "ED_ARG3");
    get(m_pEdArg4, "ED_ARG4");

    get(m_pRefBtn1, "RB_ARG1");
    get(m_pRefBtn2, "RB_ARG2");
    get(m_pRefBtn3, "RB_ARG3");
    get(m_pRefBtn4, "RB_ARG4");

    get(m_pSlider, "scrollbar");

    //lock down initial preferences
    vcl::Window *pGrid = get<vcl::Window>("paramgrid");
    pGrid->set_height_request(pGrid->get_preferred_size().Height());
    Size aSize(get_preferred_size());
    set_width_request(aSize.Width());
    set_height_request(aSize.Height());

    aDefaultString=m_pFtEditDesc->GetText();
    nEdFocus=NOT_FOUND;
    nActiveLine=0;

    m_pSlider->SetEndScrollHdl( LINK( this, ParaWin, ScrollHdl ) );
    m_pSlider->SetScrollHdl( LINK( this, ParaWin, ScrollHdl ) );

    InitArgInput( 0, *m_pFtArg1, *m_pBtnFx1, *m_pEdArg1, *m_pRefBtn1);
    InitArgInput( 1, *m_pFtArg2, *m_pBtnFx2, *m_pEdArg2, *m_pRefBtn2);
    InitArgInput( 2, *m_pFtArg3, *m_pBtnFx3, *m_pEdArg3, *m_pRefBtn3);
    InitArgInput( 3, *m_pFtArg4, *m_pBtnFx4, *m_pEdArg4, *m_pRefBtn4);
    ClearAll();
}

void ParaWin::UpdateArgDesc( sal_uInt16 nArg )
{
    if (nArg==NOT_FOUND) return;

    if ( nArgs > 4 )
        nArg = sal::static_int_cast<sal_uInt16>( nArg + GetSliderPos() );

    if ( (nArgs > 0) && (nArg<nArgs) )
    {
        OUString  aArgDesc;
        OUString  aArgName;

        SetArgumentDesc( OUString() );
        SetArgumentText( OUString() );

        if ( nArgs < VAR_ARGS )
        {
            sal_uInt16 nRealArg = (aVisibleArgMapping.size() < nArg) ? aVisibleArgMapping[nArg] : nArg;
            aArgDesc  = pFuncDesc->getParameterDescription(nRealArg);
            aArgName  = pFuncDesc->getParameterName(nRealArg);
            aArgName += " ";
            aArgName += (pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
        }
        else if ( nArgs < PAIRED_VAR_ARGS )
        {
            sal_uInt16 nFix = nArgs - VAR_ARGS;
            sal_uInt16 nPos = ( nArg < nFix ? nArg : nFix );
            sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
                    aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
            aArgDesc  = pFuncDesc->getParameterDescription(nRealArg);
            aArgName  = pFuncDesc->getParameterName(nRealArg);
            if ( nArg >= nFix )
                aArgName += OUString::number( nArg-nFix+1 );
            aArgName += " ";

            aArgName += (nArg > nFix || pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
        }
        else
        {
            sal_uInt16 nFix = nArgs - PAIRED_VAR_ARGS;
            sal_uInt16 nPos;
            if ( nArg < nFix )
                nPos = nArg;
            else
                nPos = nFix + ( (nArg-nFix) % 2);
            sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
                    aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
            aArgDesc  = pFuncDesc->getParameterDescription(nRealArg);
            aArgName  = pFuncDesc->getParameterName(nRealArg);
            if ( nArg >= nFix )
                aArgName += OUString::number( (nArg-nFix)/2 + 1 );
            aArgName += " ";

            aArgName += (nArg > (nFix+1) || pFuncDesc->isParameterOptional(nRealArg)) ? m_sOptional : m_sRequired ;
        }

        SetArgumentDesc(aArgDesc);
        SetArgumentText(aArgName);
    }
}

void ParaWin::UpdateArgInput( sal_uInt16 nOffset, sal_uInt16 i )
{
    sal_uInt16 nArg = nOffset + i;
    if ( nArgs < VAR_ARGS)
    {
        if(nArg<nArgs)
        {
            sal_uInt16 nRealArg = aVisibleArgMapping[nArg];
            SetArgNameFont  (i,(pFuncDesc->isParameterOptional(nRealArg))
                                            ? aFntLight : aFntBold );
            SetArgName      (i,pFuncDesc->getParameterName(nRealArg));
        }
    }
    else if ( nArgs < PAIRED_VAR_ARGS)
    {
        sal_uInt16 nFix = nArgs - VAR_ARGS;
        sal_uInt16 nPos = ( nArg < nFix ? nArg : nFix );
        sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
                aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
        SetArgNameFont( i,
                (nArg > nFix || pFuncDesc->isParameterOptional(nRealArg)) ?
                aFntLight : aFntBold );
        if ( nArg >= nFix )
        {
            OUString aArgName( pFuncDesc->getParameterName(nRealArg) );
            aArgName += OUString::number(nArg-nFix+1);
            SetArgName( i, aArgName );
        }
        else
            SetArgName( i, pFuncDesc->getParameterName(nRealArg) );
    }
    else
    {
        sal_uInt16 nFix = nArgs - PAIRED_VAR_ARGS;
        sal_uInt16 nPos;
        if ( nArg < nFix )
            nPos = nArg;
        else
            nPos = nFix + ( (nArg-nFix) % 2);
        sal_uInt16 nRealArg = (nPos < aVisibleArgMapping.size() ?
                aVisibleArgMapping[nPos] : aVisibleArgMapping.back());
        SetArgNameFont( i,
                (nArg > (nFix+1) || pFuncDesc->isParameterOptional(nRealArg)) ?
                aFntLight : aFntBold );
        if ( nArg >= nFix )
        {
            OUString aArgName( pFuncDesc->getParameterName(nRealArg) );
            aArgName += OUString::number( (nArg-nFix)/2 + 1 );
            SetArgName( i, aArgName );
        }
        else
            SetArgName( i, pFuncDesc->getParameterName(nRealArg) );
    }
    if(nArg<nArgs) SetArgVal(i,aParaArray[nArg]);

}

ParaWin::~ParaWin()
{
    disposeOnce();
}

void ParaWin::dispose()
{
    // #i66422# if the focus changes during destruction of the controls,
    // don't call the focus handlers
    Link<> aEmptyLink;
    m_pBtnFx1->SetGetFocusHdl( aEmptyLink );
    m_pBtnFx2->SetGetFocusHdl( aEmptyLink );
    m_pBtnFx3->SetGetFocusHdl( aEmptyLink );
    m_pBtnFx4->SetGetFocusHdl( aEmptyLink );
    m_pFtEditDesc.clear();
    m_pFtArgName.clear();
    m_pFtArgDesc.clear();
    m_pBtnFx1.clear();
    m_pFtArg1.clear();
    m_pEdArg1.clear();
    m_pRefBtn1.clear();
    m_pBtnFx2.clear();
    m_pFtArg2.clear();
    m_pEdArg2.clear();
    m_pRefBtn2.clear();
    m_pBtnFx3.clear();
    m_pFtArg3.clear();
    m_pEdArg3.clear();
    m_pRefBtn3.clear();
    m_pBtnFx4.clear();
    m_pFtArg4.clear();
    m_pEdArg4.clear();
    m_pRefBtn4.clear();
    m_pSlider.clear();
    TabPage::dispose();
}


void ParaWin::SetActiveLine(sal_uInt16 no)
{
    if(no<nArgs)
    {
        long nOffset = GetSliderPos();
        nActiveLine=no;
        long nNewEdPos=(long)nActiveLine-nOffset;
        if(nNewEdPos<0 || nNewEdPos>3)
        {
            nOffset+=nNewEdPos;
            SetSliderPos((sal_uInt16) nOffset);
            nOffset=GetSliderPos();
        }
        nEdFocus=no-(sal_uInt16)nOffset;
        UpdateArgDesc( nEdFocus );
    }
}

RefEdit* ParaWin::GetActiveEdit()
{
    if(nArgs>0 && nEdFocus!=NOT_FOUND)
    {
        return aArgInput[nEdFocus].GetArgEdPtr();
    }
    else
    {
        return NULL;
    }
}


OUString ParaWin::GetArgument(sal_uInt16 no)
{
    OUString aStr;
    if(no<aParaArray.size())
    {
        aStr=aParaArray[no];
        if(no==nActiveLine && aStr.isEmpty())
            aStr += " ";
    }
    return aStr;
}

OUString  ParaWin::GetActiveArgName()
{
    OUString aStr;
    if(nArgs>0 && nEdFocus!=NOT_FOUND)
    {
        aStr=aArgInput[nEdFocus].GetArgName();
    }
    return aStr;
}


void ParaWin::SetArgument(sal_uInt16 no, const OUString& aString)
{
    if (no < aParaArray.size())
        aParaArray[no] = comphelper::string::stripStart(aString, ' ');
}

void ParaWin::DelParaArray()
{
    ::std::vector<OUString>().swap(aParaArray);
}

void ParaWin::SetArgumentFonts(const vcl::Font&aBoldFont,const vcl::Font&aLightFont)
{
    aFntBold=aBoldFont;
    aFntLight=aLightFont;
}

void ParaWin::SetFunctionDesc(const IFunctionDescription* pFDesc)
{
    pFuncDesc=pFDesc;

    SetArgumentDesc( OUString() );
    SetArgumentText( OUString() );
    SetEditDesc( OUString() );
    nArgs = 0;
    if ( pFuncDesc!=NULL)
    {
        if ( !pFuncDesc->getDescription().isEmpty() )
        {
            SetEditDesc(pFuncDesc->getDescription());
        }
        else
        {
            SetEditDesc(aDefaultString);
        }
        nArgs = pFuncDesc->getSuppressedArgumentCount();
        pFuncDesc->fillVisibleArgumentMapping(aVisibleArgMapping);
        m_pSlider->Hide();
        OString sHelpId = pFuncDesc->getHelpId();
        SetHelpId( sHelpId );
        m_pEdArg1->SetHelpId( sHelpId );
        m_pEdArg2->SetHelpId( sHelpId );
        m_pEdArg3->SetHelpId( sHelpId );
        m_pEdArg4->SetHelpId( sHelpId );

        //  Unique-IDs muessen gleich bleiben fuer Automatisierung
        SetUniqueId( HID_FORMULA_FAP_PAGE );
        m_pEdArg1->SetUniqueId( HID_FORMULA_FAP_EDIT1 );
        m_pEdArg2->SetUniqueId( HID_FORMULA_FAP_EDIT2 );
        m_pEdArg3->SetUniqueId( HID_FORMULA_FAP_EDIT3 );
        m_pEdArg4->SetUniqueId( HID_FORMULA_FAP_EDIT4 );
        SetActiveLine(0);
    }
    else
    {
        nActiveLine=0;
    }

}

void ParaWin::SetArgumentText(const OUString& aText)
{
    m_pFtArgName->SetText(aText);
}

void ParaWin::SetArgumentDesc(const OUString& aText)
{
    m_pFtArgDesc->SetText(aText);
}

void ParaWin::SetEditDesc(const OUString& aText)
{
    m_pFtEditDesc->SetText(aText);
}

void ParaWin::SetArgName(sal_uInt16 no,const OUString& aText)
{
    aArgInput[no].SetArgName(aText);
    aArgInput[no].UpdateAccessibleNames();
}

void ParaWin::SetArgNameFont(sal_uInt16 no,const vcl::Font& aFont)
{
    aArgInput[no].SetArgNameFont(aFont);
}

void ParaWin::SetArgVal(sal_uInt16 no,const OUString& aText)
{
    aArgInput[no].SetArgVal(aText);
}

void ParaWin::HideParaLine(sal_uInt16 no)
{
    aArgInput[no].Hide();
}

void ParaWin::ShowParaLine(sal_uInt16 no)
{
    aArgInput[no].Show();
}

void ParaWin::SetEdFocus(sal_uInt16 no)
{
    UpdateArgDesc(no);
    if(no<4 && no<aParaArray.size())
        aArgInput[no].GetArgEdPtr()->GrabFocus();
}


void ParaWin::InitArgInput( sal_uInt16 nPos, FixedText& rFtArg, PushButton& rBtnFx,
                        ArgEdit& rEdArg, RefButton& rRefBtn)
{

    rRefBtn.SetReferences(pMyParent, &rEdArg);
    rEdArg.SetReferences(pMyParent, &rFtArg);

    aArgInput[nPos].InitArgInput (&rFtArg,&rBtnFx,&rEdArg,&rRefBtn);

    aArgInput[nPos].Hide();

    aArgInput[nPos].SetFxClickHdl   ( LINK( this, ParaWin, GetFxHdl ) );
    aArgInput[nPos].SetFxFocusHdl   ( LINK( this, ParaWin, GetFxFocusHdl ) );
    aArgInput[nPos].SetEdFocusHdl   ( LINK( this, ParaWin, GetEdFocusHdl ) );
    aArgInput[nPos].SetEdModifyHdl  ( LINK( this, ParaWin, ModifyHdl ) );
    aArgInput[nPos].UpdateAccessibleNames();
}

void ParaWin::ClearAll()
{
    SetFunctionDesc(NULL);
    SetArgumentOffset(0);
}

void ParaWin::SetArgumentOffset(sal_uInt16 nOffset)
{
    DelParaArray();
    m_pSlider->SetThumbPos(0);

    aParaArray.resize(nArgs);

    if ( nArgs > 0 )
    {
        for ( int i=0; i<4 && i<nArgs; i++ )
        {
            OUString aString;
            aArgInput[i].SetArgVal(aString);
            aArgInput[i].GetArgEdPtr()->Init(
                (i==0)               ? (ArgEdit *)NULL : aArgInput[i-1].GetArgEdPtr(),
                (i==3 || i==nArgs-1) ? (ArgEdit *)NULL : aArgInput[i+1].GetArgEdPtr(),
                                       *m_pSlider, nArgs );
        }
    }

    if ( nArgs < 5 )
    {
        m_pSlider->Hide();
    }
    else
    {
        m_pSlider->SetPageSize( 4 );
        m_pSlider->SetVisibleSize( 4 );
        m_pSlider->SetLineSize( 1 );
        m_pSlider->SetRange( Range( 0, nArgs ) );
        m_pSlider->SetThumbPos( nOffset );
        m_pSlider->Show();
    }

    UpdateParas();
}

void ParaWin::UpdateParas()
{
    sal_uInt16 i;
    sal_uInt16 nOffset = GetSliderPos();

    if ( nArgs > 0 )
    {
        for ( i=0; (i<nArgs) && (i<4); i++ )
        {
            UpdateArgInput( nOffset, i );
            ShowParaLine(i);
        }
    }

    for ( i=nArgs; i<4; i++ ) HideParaLine(i);
}


sal_uInt16 ParaWin::GetSliderPos()
{
    return (sal_uInt16) m_pSlider->GetThumbPos();
}

void ParaWin::SetSliderPos(sal_uInt16 nSliderPos)
{
    sal_uInt16 nOffset = GetSliderPos();

    if(m_pSlider->IsVisible() && nOffset!=nSliderPos)
    {
        m_pSlider->SetThumbPos(nSliderPos);
        for ( sal_uInt16 i=0; i<4; i++ )
        {
            UpdateArgInput( nSliderPos, i );
        }
    }
}

void ParaWin::SliderMoved()
{
    sal_uInt16 nOffset = GetSliderPos();

    for ( sal_uInt16 i=0; i<4; i++ )
    {
        UpdateArgInput( nOffset, i );
    }
    if(nEdFocus!=NOT_FOUND)
    {
        UpdateArgDesc( nEdFocus );
        aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
        nActiveLine=nEdFocus+nOffset;
        ArgumentModified();
        aArgInput[nEdFocus].UpdateAccessibleNames();
    }
    aScrollLink.Call(this);
}

void ParaWin::ArgumentModified()
{
    aArgModifiedLink.Call(this);
}

void ParaWin::FxClick()
{
    aFxLink.Call(this);
}


IMPL_LINK( ParaWin, GetFxHdl, ArgInput*, pPtr )
{
    sal_uInt16 nOffset = GetSliderPos();
    nEdFocus=NOT_FOUND;
    for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
    {
        if(pPtr == &aArgInput[nPos])
        {
            nEdFocus=nPos;
            break;
        }
    }

    if(nEdFocus!=NOT_FOUND)
    {
        aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
        nActiveLine=nEdFocus+nOffset;
        FxClick();
    }
    return 0;
}

IMPL_LINK( ParaWin, GetFxFocusHdl, ArgInput*, pPtr )
{
    sal_uInt16 nOffset = GetSliderPos();
    nEdFocus=NOT_FOUND;
    for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
    {
        if(pPtr == &aArgInput[nPos])
        {
            nEdFocus=nPos;
            break;
        }
    }

    if(nEdFocus!=NOT_FOUND)
    {
        aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
        UpdateArgDesc( nEdFocus );
        nActiveLine=nEdFocus+nOffset;
    }
    return 0;
}



IMPL_LINK( ParaWin, GetEdFocusHdl, ArgInput*, pPtr )
{
    sal_uInt16 nOffset = GetSliderPos();
    nEdFocus=NOT_FOUND;
    for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
    {
        if(pPtr == &aArgInput[nPos])
        {
            nEdFocus=nPos;
            break;
        }
    }

    if(nEdFocus!=NOT_FOUND)
    {
        aArgInput[nEdFocus].SetArgSelection(Selection(0,SELECTION_MAX ));
        UpdateArgDesc( nEdFocus );
        nActiveLine=nEdFocus+nOffset;
        ArgumentModified();
        aArgInput[nEdFocus].UpdateAccessibleNames();
    }

    return 0;
}


IMPL_LINK_NOARG(ParaWin, ScrollHdl)
{
    SliderMoved();

    return 0;
}

IMPL_LINK( ParaWin, ModifyHdl, ArgInput*, pPtr )
{
    sal_uInt16 nOffset = GetSliderPos();
    nEdFocus=NOT_FOUND;
    for (sal_uInt16 nPos=0; nPos < SAL_N_ELEMENTS(aArgInput); ++nPos)
    {
        if(pPtr == &aArgInput[nPos])
        {
            nEdFocus=nPos;
            break;
        }
    }
    if(nEdFocus!=NOT_FOUND)
    {
        aParaArray[nEdFocus+nOffset] = aArgInput[nEdFocus].GetArgVal();
        UpdateArgDesc( nEdFocus);
        nActiveLine=nEdFocus+nOffset;
    }

    ArgumentModified();
    return 0;
}



} // formula

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/core/diff/psprint_config/configuration/ppds/KDH00001.PS?h=libreoffice-5-1-2&id=12c6f530ad66f024913ea45fa22f34da39b8080b'>psprint_config/configuration/ppds/KDH00001.PS1533
-rw-r--r--psprint_config/configuration/ppds/KDH00002.PS1554
-rw-r--r--psprint_config/configuration/ppds/L10__425.PS424
-rw-r--r--psprint_config/configuration/ppds/L20__471.PS566
-rw-r--r--psprint_config/configuration/ppds/L20__493.PS564
-rw-r--r--psprint_config/configuration/ppds/L30__471.PS593
-rw-r--r--psprint_config/configuration/ppds/L30__493.PS592
-rw-r--r--psprint_config/configuration/ppds/L333_523.PS723
-rw-r--r--psprint_config/configuration/ppds/L33__523.PS487
-rw-r--r--psprint_config/configuration/ppds/L50__493.PS564
-rw-r--r--psprint_config/configuration/ppds/L533_523.PS632
-rw-r--r--psprint_config/configuration/ppds/L53__523.PS448
-rw-r--r--psprint_config/configuration/ppds/LEX4039P.PS673
-rw-r--r--psprint_config/configuration/ppds/LEX4079P.PS641
-rw-r--r--psprint_config/configuration/ppds/LEXOPTR_.PS741
-rw-r--r--psprint_config/configuration/ppds/LHCFLRJ5.PS2034
-rw-r--r--psprint_config/configuration/ppds/LHCOFLC5.PS1866
-rw-r--r--psprint_config/configuration/ppds/LHCOFLR5.PS1814
-rw-r--r--psprint_config/configuration/ppds/LHGUBEH3.PS1568
-rw-r--r--psprint_config/configuration/ppds/LHGUBHJ4.PS3358
-rw-r--r--psprint_config/configuration/ppds/LHHERHJ4.PS3680
-rw-r--r--psprint_config/configuration/ppds/LHHERIJ4.PS3672
-rw-r--r--psprint_config/configuration/ppds/LHHERKH3.PS1729
-rw-r--r--psprint_config/configuration/ppds/LHHERKI4.PS3468
-rw-r--r--psprint_config/configuration/ppds/LHHKPHJ7.PS3328
-rw-r--r--psprint_config/configuration/ppds/LHHKPIJ7.PS3136
-rw-r--r--psprint_config/configuration/ppds/LHHRKPH7.PS3108
-rw-r--r--psprint_config/configuration/ppds/LHHRKPI7.PS2916
-rw-r--r--psprint_config/configuration/ppds/LHQUSHJ4.PS3074
-rw-r--r--psprint_config/configuration/ppds/LHQUSIJ4.PS3204
-rw-r--r--psprint_config/configuration/ppds/LHQUSRH3.PS1426
-rw-r--r--psprint_config/configuration/ppds/LHQUSRI3.PS1491
-rw-r--r--psprint_config/configuration/ppds/LHSIGHJ4.PS3750
-rw-r--r--psprint_config/configuration/ppds/LHSIGIJ4.PS4192
-rw-r--r--psprint_config/configuration/ppds/LHSIGNH3.PS1764
-rw-r--r--psprint_config/configuration/ppds/LHSIGNI3.PS1985
-rw-r--r--psprint_config/configuration/ppds/LOPC1200.PS810
-rw-r--r--psprint_config/configuration/ppds/LOPC40.PS713
-rw-r--r--psprint_config/configuration/ppds/LOPC45.PS774
-rw-r--r--psprint_config/configuration/ppds/LOPE310.PS659
-rw-r--r--psprint_config/configuration/ppds/LOPM410.PS726
-rw-r--r--psprint_config/configuration/ppds/LOPS1255.PS1122
-rw-r--r--psprint_config/configuration/ppds/LOPS1625.PS1122
-rw-r--r--psprint_config/configuration/ppds/LOPS1855.PS1122
-rw-r--r--psprint_config/configuration/ppds/LOPS2455.PS1121
-rw-r--r--psprint_config/configuration/ppds/LOPS3455.PS1122
-rw-r--r--psprint_config/configuration/ppds/LOPT610.PS1113
-rw-r--r--psprint_config/configuration/ppds/LOPT612.PS1114
-rw-r--r--psprint_config/configuration/ppds/LOPT614.PS1109
-rw-r--r--psprint_config/configuration/ppds/LOPT616.PS1113
-rw-r--r--psprint_config/configuration/ppds/LOPTRAC.PS546
-rw-r--r--psprint_config/configuration/ppds/LOPTRAEP.PS693
-rw-r--r--psprint_config/configuration/ppds/LOPTRAK.PS752
-rw-r--r--psprint_config/configuration/ppds/LOPTRAN.PS1001
-rw-r--r--psprint_config/configuration/ppds/LOPTRAP.PS759
-rw-r--r--psprint_config/configuration/ppds/LOPTRAS.PS1141
-rw-r--r--psprint_config/configuration/ppds/LOPTRASC.PS714
-rw-r--r--psprint_config/configuration/ppds/LOPW810.PS1018
-rw-r--r--psprint_config/configuration/ppds/LOS1255P.PS1205
-rw-r--r--psprint_config/configuration/ppds/LOS1625P.PS1198
-rw-r--r--psprint_config/configuration/ppds/LOS1855P.PS1198
-rw-r--r--psprint_config/configuration/ppds/LOS2455P.PS1196
-rw-r--r--psprint_config/configuration/ppds/LOS3455P.PS1197
-rw-r--r--psprint_config/configuration/ppds/LWNT_518.PS345
-rw-r--r--psprint_config/configuration/ppds/SNSPREC1.PS760
-rw-r--r--psprint_config/configuration/ppds/TK300PJ1.PS1284
-rw-r--r--psprint_config/configuration/ppds/TK300XJ1.PS1309
-rw-r--r--psprint_config/configuration/ppds/TK350171.PS551
-rw-r--r--psprint_config/configuration/ppds/TK350172.PS563
-rw-r--r--psprint_config/configuration/ppds/TK350691.PS1
-rw-r--r--psprint_config/configuration/ppds/TK350692.PS597
-rw-r--r--psprint_config/configuration/ppds/TK350PJ2.PS590
-rw-r--r--psprint_config/configuration/ppds/TK360J21.PS923
-rw-r--r--psprint_config/configuration/ppds/TK360J51.PS986
-rw-r--r--psprint_config/configuration/ppds/TK360J71.PS1030
-rw-r--r--psprint_config/configuration/ppds/TK450PJ1.PS1134
-rw-r--r--psprint_config/configuration/ppds/TK550171.PS692
-rw-r--r--psprint_config/configuration/ppds/TK550391.PS780
-rw-r--r--psprint_config/configuration/ppds/TK550PJ1.PS828
-rw-r--r--psprint_config/configuration/ppds/TKP350J2.PS599
-rw-r--r--psprint_config/configuration/ppds/TKP360P1.PS863
-rw-r--r--psprint_config/configuration/ppds/TKP380J1.PS1350
-rw-r--r--psprint_config/configuration/ppds/TKP380P1.PS1351
-rw-r--r--psprint_config/configuration/ppds/TKP450J1.PS1103
-rw-r--r--psprint_config/configuration/ppds/TKP450P1.PS1089
-rw-r--r--psprint_config/configuration/ppds/TKP550J1.PS760
-rw-r--r--psprint_config/configuration/ppds/TKP600J1.PS1459
-rw-r--r--psprint_config/configuration/ppds/TKPH3801.PS1271
-rw-r--r--psprint_config/configuration/ppds/TKPH4501.PS1060
-rw-r--r--psprint_config/configuration/ppds/TKPH6001.PS1401
-rw-r--r--psprint_config/configuration/ppds/XRD61354.PS789
-rw-r--r--psprint_config/configuration/ppds/XRD61801.PS789
-rw-r--r--psprint_config/configuration/ppds/XRN17000.PS1267
-rw-r--r--psprint_config/configuration/ppds/XRN24320.PS1696
-rw-r--r--psprint_config/configuration/ppds/XR_DC230.PS1178
174 files changed, 0 insertions, 185390 deletions
diff --git a/psprint_config/configuration/ppds/ADISTILL.PS b/psprint_config/configuration/ppds/ADISTILL.PS
deleted file mode 100644
index 8d3951a82fc7..000000000000
--- a/psprint_config/configuration/ppds/ADISTILL.PS
+++ /dev/null
@@ -1,416 +0,0 @@
-*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"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "ADISTILL.PPD"
-*Manufacturer: "Adobe"
-*Product: "(Acrobat Distiller)"
-*PSVersion: "(2017.0801) 1"
-*ModelName: "Acrobat Distiller 3.0"
-*ShortNickName: "Acrobat Distiller 3.0"
-*NickName: "Acrobat Distiller 2017.801"
-
-*% === Options and Constraints =========
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: RGB
-*FileSystem: True
-*?FileSystem: "(True) == flush"
-*LanguageLevel: "2"
-*FreeVM: "4194304"
-*VMOption None/Standard: "4194304"
-*FCacheSize None/Standard: 204800
-*Throughput: "400"
-*VariablePaperSize: True
-
-*TTRasterizer: Type42
-
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*% Multiple Resolution support for Distiller 3.0 ==============
-*OpenUI *Resolution: PickOne
-*OrderDependency: 50 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 72dpi: "1 dict dup /HWResolution [72 72] put setpagedevice"
-*Resolution 144dpi: "1 dict dup /HWResolution [144 144] put setpagedevice"
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 1200dpi: "1 dict dup /HWResolution [1200 1200] put setpagedevice"
-*Resolution 2400dpi: "1 dict dup /HWResolution [2400 2400] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print (dpi) = flush
- restore"
-*End
-*CloseUI: *Resolution
-
-*ResScreenFreq 72dpi: "60.0"
-*ResScreenFreq 144dpi: "60.0"
-*ResScreenFreq 300dpi: "60.0"
-*ResScreenFreq 600dpi: "60.0"
-*ResScreenFreq 1200dpi: "60.0"
-*ResScreenFreq 2400dpi: "60.0"
-
-*ResScreenAngle 72dpi: "45.0"
-*ResScreenAngle 144dpi: "45.0"
-*ResScreenAngle 300dpi: "45.0"
-*ResScreenAngle 600dpi: "45.0"
-*ResScreenAngle 1200dpi: "45.0"
-*ResScreenAngle 2400dpi: "45.0"
-
-*% Halftone Information ===============
-*ContoneOnly: False
-*DefaultHalftoneType: 1
-*ScreenFreq: "60.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 } bind"
-*End
-*ScreenProc Line: "{ exch pop abs neg } bind"
-*ScreenProc Ellipse: "{abs exch abs 2 copy mul exch 4 mul add 3 sub dup 0
-lt { pop dup mul exch .75 div dup mul add 4 div 1 exch sub } { dup 1 gt {
-pop 1 exch sub dup mul exch 1 exch sub .75 div dup mul add 4 div 1 sub }
-{ .5 exch sub exch pop exch pop } ifelse } ifelse } bind"
-*End
-*ScreenProc Cross: "{ abs exch abs 2 copy gt { exch } if pop neg } bind"
-
-
-*DefaultTransfer: Null
-*Transfer Null: "{ } bind"
-*Transfer Null.Inverse: "{ 1 exch sub } bind"
-
-*% Paper Handling ===================
-
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 50 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize Ledger: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize Tabloid/11 x 17: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize Screen: "
- 2 dict dup /PageSize [468 373] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 8 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [522 756] (Executive) put
- dup [1224 792] (Ledger) put
- dup [792 1224] (Tabloid) put
- dup [468 373] (Screen) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 50 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion Ledger: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion Tabloid/11 x 17: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion Screen: "
- 2 dict dup /PageSize [468 373] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put
-setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter: "0.0 0.0 612.0 792.0"
-*ImageableArea Legal: "0.0 0.0 612.0 1008.0"
-*ImageableArea Executive: "0.0 0.0 522.0 756.0"
-*ImageableArea Ledger: "0.0 0.0 1224.0 792.0"
-*ImageableArea Tabloid/11 x 17: "0.0 0.0 792.0 1224.0"
-*ImageableArea Screen: "0.0 0.0 468.0 373.0"
-*ImageableArea A3: "0.0 0.0 842.0 1191.0"
-*ImageableArea A4: "0.0 0.0 595.0 842.0"
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive: "522 756"
-*PaperDimension Ledger: "1224 792"
-*PaperDimension Tabloid/11 x 17: "792 1224"
-*PaperDimension Screen: "468 373"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-
-*% Custom Page Sizes
-*CustomPageSize True: "
- 4 dict begin
- pop % pop /Orientation value off the stack to fix bug in PageMaker 5.0
- 2 array astore /PageOffset exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict end setpagedevice"
-*End
-*ParamCustomPageSize Width: 1 points 72 3240
-*ParamCustomPageSize Height: 2 points 72 3240
-*ParamCustomPageSize WidthOffset: 3 points 0 3240
-*ParamCustomPageSize HeightOffset: 4 points 0 3240
-*ParamCustomPageSize Orientation: 5 int 0 3
-*MaxMediaWidth: "3240"
-*MaxMediaHeight: "3240"
-*CenterRegistered: False
-*LeadingEdge Forced: ""
-*DefaultLeadingEdge: Forced
-
-*% Support for Custom Page Sizes on cut sheet devices
-*% Note: These are comment out because
-*% QuarkXPress 3.3x and earlier versions don't recognize
-*% custom page sizes when HWMargins are present.
-*%*UseHWMargins True:""
-*%*UseHWMargins False:""
-*%*DefaultUseHWMargins: False
-*%*HWMargins: 0 0 0 0
-
-*RequiresPageRegion All: True
-
-*OpenUI *InputSlot: PickOne
-*DefaultInputSlot: OnlyOne
-*InputSlot OnlyOne: ""
-*CloseUI: *InputSlot
-
-*AccurateScreensSupport: True
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004)" Standard ROM
-*Font Courier-Bold: Standard "(002.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.004)" Standard ROM
-*Font Courier-Oblique: Standard "(002.004)" 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-Oblique: Standard "(001.006)" 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 Symbol: Special "(001.007)" Special ROM
-*Font ZapfDingbats: Special "(001.004)" Special ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi
-
-*% For 60 lpi / 72 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.72dpi/60 lpi / 72 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.72dpi/60 lpi / 72 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.72dpi/60 lpi / 72 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.72dpi/60 lpi / 72 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.72dpi/60 lpi / 72 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.72dpi/60 lpi / 72 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.72dpi/60 lpi / 72 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.72dpi/60 lpi / 72 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.72dpi/60 lpi / 72 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.72dpi/60 lpi / 72 dpi: "60"
-
-*% For 60 lpi / 144 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.144dpi/60 lpi / 144 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.144dpi/60 lpi / 144 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.144dpi/60 lpi / 144 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.144dpi/60 lpi / 144 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.144dpi/60 lpi / 144 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.144dpi/60 lpi / 144 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.144dpi/60 lpi / 144 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.144dpi/60 lpi / 144 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.144dpi/60 lpi / 144 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.144dpi/60 lpi / 144 dpi: "60"
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 71 lpi / 600 dpi ===============================
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-
-*% For 100 lpi / 1200 dpi ==============================================
-
-*ColorSepScreenAngle ProcessBlack.100lpi.1200dpi/100 lpi / 1200 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.100lpi.1200dpi/100 lpi / 1200 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.100lpi.1200dpi/100 lpi / 1200 dpi: "15.0"
-*ColorSepScreenAngle ProcessMagenta.100lpi.1200dpi/100 lpi / 1200 dpi: "75.0"
-*ColorSepScreenAngle ProcessYellow.100lpi.1200dpi/100 lpi / 1200 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.100lpi.1200dpi/100 lpi / 1200 dpi: "100.0"
-*ColorSepScreenFreq CustomColor.100lpi.1200dpi/100 lpi / 1200 dpi: "100.0"
-*ColorSepScreenFreq ProcessCyan.100lpi.1200dpi/100 lpi / 1200 dpi: "100.0"
-*ColorSepScreenFreq ProcessMagenta.100lpi.1200dpi/100 lpi / 1200 dpi: "100.0"
-*ColorSepScreenFreq ProcessYellow.100lpi.1200dpi/100 lpi / 1200 dpi: "100.0"
-
-*% For 175 lpi / 2400 dpi ==============================================
-
-*ColorSepScreenAngle ProcessBlack.175lpi.2400dpi/175 lpi / 2400 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.175lpi.2400dpi/175 lpi / 2400 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.175lpi.2400dpi/175 lpi / 2400 dpi: "15.0"
-*ColorSepScreenAngle ProcessMagenta.175lpi.2400dpi/175 lpi / 2400 dpi: "75.0"
-*ColorSepScreenAngle ProcessYellow.175lpi.2400dpi/175 lpi / 2400 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.175lpi.2400dpi/175 lpi / 2400 dpi: "175.0"
-*ColorSepScreenFreq CustomColor.175lpi.2400dpi/175 lpi / 2400 dpi: "175.0"
-*ColorSepScreenFreq ProcessCyan.175lpi.2400dpi/175 lpi / 2400 dpi: "175.0"
-*ColorSepScreenFreq ProcessMagenta.175lpi.2400dpi/175 lpi / 2400 dpi: "175.0"
-*ColorSepScreenFreq ProcessYellow.175lpi.2400dpi/175 lpi / 2400 dpi: "175.0"
-
-*% Last Edit Date: Jan 30 1997
-*% End of PPD file for Acrobat Distiller
-*% The byte count of this file should be exactly 014706 or 015122
-*% depending on the filesystem it resides in.
-*% end of PPD file for Acrobat Distiller
diff --git a/psprint_config/configuration/ppds/APLW3101.PS b/psprint_config/configuration/ppds/APLW3101.PS
deleted file mode 100644
index 661fb36235c5..000000000000
--- a/psprint_config/configuration/ppds/APLW3101.PS
+++ /dev/null
@@ -1,385 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.0"
-*FileVersion: "1.2"
-*LanguageVersion: English
-*PCFileName: "APLW3101.PPD"
-*Product: "(LaserWriter-Select 310)"
-*PSVersion: "(52.5) 0"
-*ModelName: "Apple LaserWriter-Select 310"
-*NickName: "LaserWriter-Select 310 v52.5"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: None
-*Option1 None/Standard 1.5 MB RAM: ""
-*Option1 2.5Meg/2.5 MB Upgrade: ""
-*Option1 5.5Meg/5.5 MB Upgrade: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Optional Cassette: Boolean
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*CloseUI: *Option2
-
-*OpenUI *Option3/Optional Multipurpose Tray: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Multipurpose
-
-*UIConstraints: *InputSlot Upper *PageSize Com10
-*UIConstraints: *InputSlot Upper *PageSize Monarch
-*UIConstraints: *InputSlot Upper *PageSize DL
-*UIConstraints: *InputSlot Upper *PageSize C5
-*UIConstraints: *PageSize Com10 *InputSlot Upper
-*UIConstraints: *PageSize Monarch *InputSlot Upper
-*UIConstraints: *PageSize DL *InputSlot Upper
-*UIConstraints: *PageSize C5 *InputSlot Upper
-*UIConstraints: *InputSlot Lower *PageSize Com10
-*UIConstraints: *InputSlot Lower *PageSize Monarch
-*UIConstraints: *InputSlot Lower *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *PageSize Com10 *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *PageRegion Com10
-*UIConstraints: *InputSlot Upper *PageRegion Monarch
-*UIConstraints: *InputSlot Upper *PageRegion DL
-*UIConstraints: *InputSlot Upper *PageRegion C5
-*UIConstraints: *PageRegion Com10 *InputSlot Upper
-*UIConstraints: *PageRegion Monarch *InputSlot Upper
-*UIConstraints: *PageRegion DL *InputSlot Upper
-*UIConstraints: *PageRegion C5 *InputSlot Upper
-*UIConstraints: *InputSlot Lower *PageRegion Com10
-*UIConstraints: *InputSlot Lower *PageRegion Monarch
-*UIConstraints: *InputSlot Lower *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *PageRegion Com10 *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "1"
-*Protocols: BCP
-*FreeVM: "203912"
-*VMOption None/Standard 1.5 MB RAM: "203912"
-*VMOption 2.5Meg/2.5 MB Upgrade: "965220"
-*VMOption 5.5Meg/5.5 MB Upgrade: "3992948"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "5"
-*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: 300dpi
-*?Resolution: "
- save
- initgraphics
- matrix defaultmatrix dup
- 0 get dup mul exch 1 get dup mul add sqrt
- 72 mul round cvi
- ( ) cvs print (dpi) = flush
- restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Code in this section selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "statusdict begin lettertray end"
-*PageSize Legal/US Legal: "statusdict begin legaltray end"
-*PageSize A4: "statusdict begin a4tray end"
-*PageSize A5: "statusdict begin a5tray end"
-*PageSize B5: "statusdict begin b5tray end"
-*PageSize LetterSmall/US Letter Small: "statusdict begin lettertray end"
-*PageSize LegalSmall/US Legal Small: "statusdict begin legaltray end"
-*PageSize A4Small/A4 Small: "statusdict begin a4tray end"
-*PageSize Executive: "statusdict begin executivetray end"
-*PageSize Com10/Com10 Envelope: "statusdict begin com10tray end"
-*PageSize Monarch/Monarch Envelope: "statusdict begin monarchtray end"
-*PageSize C5/C5 Envelope: "statusdict begin c5tray end"
-*PageSize DL/DL Envelope: "statusdict begin dltray end"
-*?PageSize: "
-save
-10 dict
- dup /lettertray (Letter) put
- dup /legaltray (Legal) put
- dup /a4tray (A4) put
- dup /a5tray (A5) put
- dup /b5tray (B5) put
- dup /executivetray (Executive) put
- dup /com10tray (Com10) put
- dup /monarchtray (Monarch) put
- dup /c5tray (C5) put
- dup /dltray (DL) put
- statusdict begin papersize end
- 3 1 roll {get} stopped {(Unknown)}if
- exch not { print (.Transverse) }if
- = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion A5: "a5"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion Executive: "executivepage"
-*PageRegion Com10/Com10 Envelope: "com10"
-*PageRegion Monarch/Monarch Envelope: "monarch"
-*PageRegion C5/C5 Envelope: "c5"
-*PageRegion DL/DL Envelope: "dl"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "9.84 9.12 593.28 775.68 "
-*ImageableArea Legal/US Legal: "25.9201 251.04 578.64 982.32 "
-*ImageableArea A4: "6.0 7.9201 581.76 826.56 "
-*ImageableArea A5: "8.88 10.8 408.0 581.28 "
-*ImageableArea B5: "9.1201 9.6 500.4 713.52 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Executive: "7.2 12.0 506.16 742.08 "
-*ImageableArea Com10/Com10 Envelope: "8.64 11.52 284.88 673.68 "
-*ImageableArea Monarch/Monarch Envelope: "11.52 11.04 264.72 526.8 "
-*ImageableArea C5/C5 Envelope: "10.8 12.0 448.32 639.6 "
-*ImageableArea DL/DL Envelope: "9.6 14.4 301.2 614.16 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension Executive: "540 720"
-*PaperDimension Com10/Com10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension DL/DL Envelope: "312 624"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
- save
- statusdict /manualfeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Main Cassette: "0 statusdict /setpapertray get exec"
-*InputSlot Multipurpose/Multipurpose Tray: "
- 1 statusdict /setpapertray get exec"
-*End
-*InputSlot Lower/Optional Cassette: "2 statusdict /setpapertray get exec"
-*?InputSlot: "
-save
- [ (Upper) (Multipurpose) (Lower) ] statusdict /papertray get exec
- {get exec} stopped { pop pop (Unknown) } if = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004)" Standard ROM
-*Font Courier-Bold: Standard "(002.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.004)" Standard ROM
-*Font Courier-Oblique: Standard "(002.004)" 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 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
-*?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
- (*) = 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: "warming up"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "Centronics"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "warming up"
-*PrinterError: "cover open"
-*PrinterError: "service call"
-*PrinterError: "paper jam"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi:"45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "45"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi:"60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% Produced by "bldppd41.ps" version 4.0 edit 9
-*% Last Edit Date: May 21 1993
-*% The byte count of this file should be exactly 013104 or 013489
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter-Select 310
-
diff --git a/psprint_config/configuration/ppds/APLW3201.PS b/psprint_config/configuration/ppds/APLW3201.PS
deleted file mode 100644
index 1e91c659eaae..000000000000
--- a/psprint_config/configuration/ppds/APLW3201.PS
+++ /dev/null
@@ -1,496 +0,0 @@
-*PPD-Adobe: "4.1"
-*% 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.1"
-*FileVersion: "1.11"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLW3201.PPD"
-*Product: "(LaserWriter Personal 320)"
-*PSVersion: "(2013.112) 1"
-*ModelName: "Personal LaserWriter 320"
-*ShortNickName: "Personal LaserWriter 320"
-*NickName: "Apple Personal LaserWriter 320 v2013.112"
-
-
-*% === Options and Constraints =========
-
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: 2Meg
-*Option1 2Meg/Standard 2 MB: ""
-*Option1 4Meg/Upgrade to 4 MB: ""
-*Option1 8Meg/Upgrade to 8 MB: ""
-*?Option1: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 2Meg *BitsPerPixel 4
-*UIConstraints: *Option1 4Meg *BitsPerPixel 4
-
-*UIConstraints: *Option1 2Meg *VMOption
-*UIConstraints: *Option1 4Meg *VMOption 2Meg
-*UIConstraints: *Option1 4Meg *VMOption 8Meg
-*UIConstraints: *Option1 8Meg *VMOption 2Meg
-*UIConstraints: *Option1 8Meg *VMOption 4Meg
-
-*UIConstraints: *PageSize Monarch *InputSlot Cassette
-*UIConstraints: *PageSize Com10 *InputSlot Cassette
-*UIConstraints: *PageSize C5 *InputSlot Cassette
-*UIConstraints: *PageSize DL *InputSlot Cassette
-
-
-*% ==== The following are constraints for new imageable ==========
-*% ==== area features added to LaserWriter 8, v8.1
-
-*UIConstraints: *Option1 2Meg *PageSize LegalSmall
-*UIConstraints: *Option1 2Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 2Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 4Meg *PageSize Legal.2Meg
-*UIConstraints: *Option1 4Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.2Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.4Meg
-
-
-*% ==== Device Capabilities ===============
-
-*LanguageLevel: "2"
-*FreeVM: "425600"
-*VMOption 2Meg/Standard 2 MB: "425600"
-*VMOption 4Meg/4 MB Upgrade: "2191632"
-*VMOption 8Meg/8 MB Upgrade: "2371856"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "4"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "53.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict
- dup /PostRenderingEnhance true put
- setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict
- dup /PostRenderingEnhance false put
- setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict
- dup /PreRenderingEnhance true put
- setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict
- dup /PreRenderingEnhance false put
- setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- <</PageSize [612 792] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize Legal.2Meg/US Legal: "
- <</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize Legal.4Meg/US Legal: "
- <</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize Legal.8Meg/US Legal: "
- <</PageSize [612 1008] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize A4: "
- <</PageSize [595 842] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize B5: "
- <</PageSize [516 729] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize Executive: "
- <</PageSize [522 756] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- <</PageSize [612 792] /ImagingBBox [25 25 587 767] >> setpagedevice"
-*End
-*PageSize A4Small/A4: "
- <</PageSize [595 842] /ImagingBBox [25 25 570 817] >> setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- <</PageSize [612 1008] /ImagingBBox [25 25 587 983]>> setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- <</PageSize [279 540] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope: "
- <</PageSize [297 684] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize C5: "
- <</PageSize [459 649] /ImagingBBox null>> setpagedevice"
-*End
-*PageSize DL: "
- <</PageSize [312 624] /ImagingBBox null>> setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [522 756] (Executive) put
- dup [279 540] (Monarch) put
- dup [297 684] (Com10) put
- dup [459 649] (C5) put
- dup [312 624] (DL) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- <</PageSize [612 792] /InputAttributes <<0 <</PageSize [612 792]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion Legal.2Meg/US Legal: "
- <</PageSize [612 1008] /InputAttributes <<0 <</PageSize [612 1008]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion Legal.4Meg/US Legal: "
- <</PageSize [612 1008] /InputAttributes <<0 <</PageSize [612 1008]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion Legal.8Meg/US Legal: "
- <</PageSize [612 1008] /InputAttributes <<0 <</PageSize [612 1008]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion A4: "
- <</PageSize [595 842] /InputAttributes <<0 <</PageSize [595 842]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion B5: "
- <</PageSize [516 729] /InputAttributes <<0 <</PageSize [516 729]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion Executive: "
- <</PageSize [522 756] /InputAttributes <<0 <</PageSize [522 756]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small: "
- <</PageSize [612 792] /InputAttributes <<0 <</PageSize [612 792]>> >>
- /ImagingBBox [25 25 587 767] >> setpagedevice"
-*End
-*PageRegion A4Small/A4: "
- <</PageSize [595 842] /InputAttributes <<0 <</PageSize [595 842]>> >>
- /ImagingBBox [25 25 570 817] >> setpagedevice"
-*End
-*PageRegion LegalSmall/US Legal Small: "
- <</PageSize [612 1008] /InputAttributes <<0 <</PageSize [612 1008]>> >>
- /ImagingBBox [25 25 587 983]>> setpagedevice"
-*End
-*PageRegion Monarch/Monarch Envelope: "
- <</PageSize [279 540] /InputAttributes <<0 <</PageSize [279 540]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion Com10/Com10 Envelope: "
- <</PageSize [297 684] /InputAttributes <<0 <</PageSize [297 684]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion C5: "
- <</PageSize [459 649] /InputAttributes <<0 <</PageSize [461 648]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*PageRegion DL: "
- <</PageSize [312 624] /InputAttributes <<0 <</PageSize [312 624]>> >>
- /ImagingBBox null >> setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "9.36 14.2801 600.72 783.72 "
-*ImageableArea Legal.2Meg/US Legal: "64 54 548 954 "
-*ImageableArea Legal.4Meg/US Legal: "9.36 9.6001 600.72 996.72 "
-*ImageableArea Legal.8Meg/US Legal: "9.36 9.6001 600.72 996.72 "
-*ImageableArea A4: "10.56 7.68 586.56 829.68 "
-*ImageableArea B5: "12.0 7.08 503.52 718.92 "
-*ImageableArea Executive: "9.6001 6.9601 508.8 745.92 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Com10/Comm #10 Envelope: "6.7201 5.4 290.88 676.92 "
-*ImageableArea Monarch/Monarch Envelope: "6.48 5.64 275.28 534.12 "
-*ImageableArea C5/C5 Envelope: "8.4001 2.7601 453.84 640.2 "
-*ImageableArea DL/DL Envelope: "8.1601 6.12 307.68 618.6 "
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal.2Meg/US Legal: "612 1008"
-*PaperDimension Legal.4Meg/US Legal: "612 1008"
-*PaperDimension Legal.8Meg/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension Executive: "522 756"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension Com10/Com10 Envelope: "297 684"
-*PaperDimension C5: "459 649"
-*PaperDimension DL: "312 624"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*RequiresPageRegion All: True
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "LocalTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "out of paper"
-*PrinterError: "paper jam"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "service call"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/ 60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-
-*% Last Edit Date: Jul 12 1995
-*% Written by sns@sqa for Apple Personal LaserWriter 320 Oct 20,1993
-*% The byte count of this file should be exactly 017052 or 017548
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple Personal LaserWriter 320
diff --git a/psprint_config/configuration/ppds/APLW3601.PS b/psprint_config/configuration/ppds/APLW3601.PS
deleted file mode 100644
index b5fe07afda79..000000000000
--- a/psprint_config/configuration/ppds/APLW3601.PS
+++ /dev/null
@@ -1,666 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.1"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLW3601.PPD"
-*Product: "(LaserWriter Select 360f)"
-*PSVersion: "(2013.112) 1"
-*ModelName: "Apple LaserWriter Select 360f"
-*ShortNickName: "Apple LaserWriter Select 360f"
-*NickName: "Apple LaserWriter Select 360f v2013.112"
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: 7Meg
-*Option1 7Meg/Standard 7 MB RAM: ""
-*Option1 16Meg/16 MB RAM Upgrade: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Optional Lower Tray: Boolean
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*CloseUI: *Option2
-
-*OpenUI *Option3/Optional Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *PageRegion Executive *InputSlot Envelope
-
-*UIConstraints: *PageSize A5 *InputSlot Lower
-*UIConstraints: *PageSize A5 *InputSlot MainTray
-*UIConstraints: *PageSize Comm10 *InputSlot Lower
-*UIConstraints: *PageSize Comm10 *InputSlot MainTray
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot MainTray
-*UIConstraints: *PageSize DL *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot MainTray
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot MainTray
-*UIConstraints: *PageSize B5 *InputSlot Lower
-*UIConstraints: *PageSize B5 *InputSlot MainTray
-*UIConstraints: *PageRegion A5 *InputSlot Lower
-*UIConstraints: *PageRegion A5 *InputSlot MainTray
-*UIConstraints: *PageRegion Comm10 *InputSlot Lower
-*UIConstraints: *PageRegion Comm10 *InputSlot MainTray
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot MainTray
-*UIConstraints: *PageRegion DL *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot MainTray
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot MainTray
-*UIConstraints: *PageRegion B5 *InputSlot Lower
-*UIConstraints: *PageRegion B5 *InputSlot MainTray
-
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *InputSlot Envelope *PageSize Executive
-*UIConstraints: *InputSlot Envelope *PageRegion Letter
-*UIConstraints: *InputSlot Envelope *PageRegion Legal
-*UIConstraints: *InputSlot Envelope *PageRegion A4
-*UIConstraints: *InputSlot Envelope *PageRegion Executive
-
-*UIConstraints: *InputSlot Lower *PageSize A5
-*UIConstraints: *InputSlot MainTray *PageSize A5
-*UIConstraints: *InputSlot Lower *PageSize Comm10
-*UIConstraints: *InputSlot MainTray *PageSize Comm10
-*UIConstraints: *InputSlot Lower *PageSize Monarch
-*UIConstraints: *InputSlot MainTray *PageSize Monarch
-*UIConstraints: *InputSlot Lower *PageSize DL
-*UIConstraints: *InputSlot MainTray *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *InputSlot MainTray *PageSize C5
-*UIConstraints: *InputSlot Lower *PageSize B5
-*UIConstraints: *InputSlot MainTray *PageSize B5
-*UIConstraints: *InputSlot Lower *PageRegion A5
-*UIConstraints: *InputSlot MainTray *PageRegion A5
-*UIConstraints: *InputSlot Lower *PageRegion Comm10
-*UIConstraints: *InputSlot MainTray *PageRegion Comm10
-*UIConstraints: *InputSlot Lower *PageRegion Monarch
-*UIConstraints: *InputSlot MainTray *PageRegion Monarch
-*UIConstraints: *InputSlot Lower *PageRegion DL
-*UIConstraints: *InputSlot MainTray *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *InputSlot MainTray *PageRegion C5
-*UIConstraints: *InputSlot Lower *PageRegion B5
-*UIConstraints: *InputSlot MainTray *PageRegion B5
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-
-*FreeVM: "1340220"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FaxSupport: Base
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "10"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-*OpenUI *Resolution: PickOne
-*OrderDependency: 20 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ScreenFreq: "85.0"
-*ScreenAngle: "40.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict
- dup /PostRenderingEnhance false put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict
- dup /PreRenderingEnhance true put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict
- dup /PreRenderingEnhance false put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize C5: "
- 2 dict dup /PageSize [461 648] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize DL: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 10 dict
- dup [461 648] (C5) put
- dup [312 624] (DL) put
- dup [279 540] (Monarch) put
- dup [297 684] (Com10) put
- dup [522 756] (Executive) put
- dup [516 729] (B5) put
- dup [420 595] (A5) put
- dup [595 842] (A4) put
- dup [612 1008] (Legal) put
- dup [612 792] (Letter) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Monarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Com10/Com10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion C5: "
- 2 dict dup /PageSize [461 648] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion DL: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "14.16 11.28 597.84 777.6"
-*ImageableArea Legal/US Legal: "14.16 11.28 597.84 993.6"
-*ImageableArea A4: "13.2001 11.4 581.52 827.88"
-*ImageableArea A5: "15.12 11.4 406.8 580.68"
-*ImageableArea B5: "12.0 11.28 503.52 714.72"
-*ImageableArea Executive: "11.28 11.28 510.48 741.6"
-*ImageableArea Monarch/Monarch Envelope: "12.7201 11.28 266.16 525.6"
-*ImageableArea Com10/Com10 Envelope: "13.92 11.2801 282.72 669.6 "
-*ImageableArea C5: "16.56 11.28 446.64 634.56 "
-*ImageableArea DL: "13.92 14.16 298.08 609.6 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812"
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B5: "516 729"
-*PaperDimension Executive: "522 756"
-*PaperDimension Com10/Com10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension C5: "461 648"
-*PaperDimension DL: "312 624"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion Upper: True
-*RequiresPageRegion Envelope: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: MainTray
-*InputSlot MainTray/Cassette (250 sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Cassette (250/500 sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Upper/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
- save
- 2 dict
- dup /0 (MainTray) put
- dup /1 (Lower) put
- dup /2 (Envelope) put
- dup /3 (Upper) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-*PageStackOrder Upper: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "warming up"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "Serial"
-*Source: "SerialB"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*%%KEYWORD: PrinterError
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-
-*% Produced by "bldppd42.ps" version 4.0 edit 12
-*% Last Edit Date: Jul 28 1993
-*% The byte count of this file should be exactly 022902 or 023568
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple LaserWriter Select 360f
diff --git a/psprint_config/configuration/ppds/APLW6101.PS b/psprint_config/configuration/ppds/APLW6101.PS
deleted file mode 100644
index 3d651888102f..000000000000
--- a/psprint_config/configuration/ppds/APLW6101.PS
+++ /dev/null
@@ -1,597 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLW6101.PPD"
-*Product: "(LaserWriter Select 610)"
-*PSVersion: "(2013.112) 1"
-*ModelName: "Apple LaserWriter Select 610"
-*ShortNickName: "Apple LaserWriter Select 610"
-*NickName: "Apple LaserWriter Select 610 v2013.112"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: 12Meg
-*Option1 12Meg/Standard 12 MB RAM: ""
-*Option1 16Meg/16 MB Upgrade: ""
-*?Option1: "
- (12Meg) currentsystemparams /RamSize get
- 16777216 eq {pop (16Meg)} if
- = "
-*End
-*CloseUI: *Option1
-
-*OpenUI *Option2/Cassette (250/500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1] put put setpagedevice "
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option2 False *InputSlot Lower
-
-*UIConstraints: *PageSize Postcard *InputSlot Upper
-*UIConstraints: *PageSize Postcard *InputSlot Lower
-*UIConstraints: *InputSlot Upper *PageSize Postcard
-*UIConstraints: *InputSlot Lower *PageSize Postcard
-
-*UIConstraints: *PageRegion Postcard *InputSlot Upper
-*UIConstraints: *PageRegion Postcard *InputSlot Lower
-*UIConstraints: *InputSlot Upper *PageRegion Postcard
-*UIConstraints: *InputSlot Lower *PageRegion Postcard
-
-*UIConstraints: *Option1 12Meg *VMOption 16Meg
-*UIConstraints: *Option1 16Meg *VMOption 12Meg
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: LaserJetIII
-*StartEmulator_LaserJetIII: "currentfile /LaserJetIII statusdict /emulate get exec "
-*StopEmulator_LaserJetIII: "<1B>E"
-
-*FreeVM: "6810752"
-*VMOption 12Meg/Standard 12 MB RAM: "6810752"
-*VMOption 16Meg/16 MB Upgrade: "10810752"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Throughput: "10"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "85.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize C5: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize DL: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Postcard: "
- 2 dict dup /PageSize [284 419] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 11 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [522 756] (Executive) put
- dup [420 595] (A5) put
- dup [279 540] (Monarch) put
- dup [297 684] (Com10) put
- dup [459 649] (C5) put
- dup [312 624] (DL) put
- dup [284 419] (Postcard) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A4: "
- <</PageSize [595 842]
- /InputAttributes <<1 <</PageSize [595 842]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion Letter/US Letter: "
- <</PageSize [612 792]
- /InputAttributes <<1 <</PageSize [612 792]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
- <</PageSize [612 1008]
- /InputAttributes <<1 <</PageSize [612 1008]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion B5: "
- <</PageSize [516 729]
- /InputAttributes <<1 <</PageSize [516 729]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion Executive: "
- <</PageSize [522 756]
- /InputAttributes <<1 <</PageSize [522 756]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion A5: "
- <</PageSize [420 595]
- /InputAttributes <<1 <</PageSize [420 595]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- <</PageSize [612 792]
- /InputAttributes <<1 <</PageSize [612 792]>> >>
- /ImagingBBox [25 25 587 767] >> setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
- <</PageSize [595 842]
- /InputAttributes <<1 <</PageSize [595 842]>> >>
- /ImagingBBox [25 25 570 817] >> setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- <</PageSize [612 1008]
- /InputAttributes <<1 <</PageSize [612 1008]>> >>
- /ImagingBBox [25 25 587 983] >> setpagedevice "
-*End
-*PageRegion Monarch/Monarch Envelope: "
- <</PageSize [279 540]
- /InputAttributes <<1 <</PageSize [279 540]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion Com10/Com10 Envelope: "
- <</PageSize [297 684]
- /InputAttributes <<1 <</PageSize [297 684]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion C5: "
- <</PageSize [459 649]
- /InputAttributes <<1 <</PageSize [459 649]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion DL: "
- <</PageSize [312 624]
- /InputAttributes <<1 <</PageSize [312 624]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*PageRegion Postcard: "
- <</PageSize [284 419]
- /InputAttributes <<1 <</PageSize [284 419]>> >>
- /ImagingBBox null >> setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A4: "13.2001 11.34 581.52 827.82 "
-*ImageableArea Letter/US Letter: "14.16 11.3401 597.84 777.66 "
-*ImageableArea Legal/US Legal: "14.16 11.34 597.84 993.66 "
-*ImageableArea B5: "12.0 11.3401 503.52 714.78 "
-*ImageableArea Executive: "11.28 11.34 510.48 741.66 "
-*ImageableArea A5: "15.12 11.34 406.8 580.62 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope: "12.7201 11.34 266.16 525.66 "
-*ImageableArea Com10/Com10 Envelope: "13.92 11.34 282.72 669.66 "
-*ImageableArea C5/C5 Envelope: "16.56 11.34 446.64 634.62 "
-*ImageableArea DL/DL Envelope: "13.92 14.2201 298.08 609.66 "
-*ImageableArea Postcard: "12.7201 11.34 281.52 417.9 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A4: "595 842"
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension B5: "516 729"
-*PaperDimension Executive: "522 756"
-*PaperDimension A5: "420 595"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension Com10/Com10 Envelope: "297 684"
-*PaperDimension C5: "459 649"
-*PaperDimension DL: "312 624"
-*PaperDimension Postcard: "284 419"
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Cassette (250/500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*RequiresPageRegion Multipurpose: True
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheet) : no paper tray"
-*Status: "PrinterError: Cassette (250 Sheet) : out of paper"
-*Status: "PrinterError: Cassette (250/500 Sheet) : no paper tray"
-*Status: "PrinterError: Cassette (250/500 Sheet) : out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Manual Feed: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "LocalTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "out of paper"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheet) : no paper tray"
-*PrinterError: "Cassette (250 Sheet) : out of paper"
-*PrinterError: "Cassette (250/500 Sheet) : no paper tray"
-*PrinterError: "Cassette (250/500 Sheet) : out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Manual Feed: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Last Edit Date: Jan 3 1995
-*% Written by sns@sqa for LaserWriter Select 610 Oct 18,1993
-*% The byte count of this file should be exactly 021037 or 021634
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Select 610
diff --git a/psprint_config/configuration/ppds/APLW8101.PS b/psprint_config/configuration/ppds/APLW8101.PS
deleted file mode 100644
index 20a68fa66726..000000000000
--- a/psprint_config/configuration/ppds/APLW8101.PS
+++ /dev/null
@@ -1,885 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLW8101.PPD"
-*Product: "(LaserWriter Pro 810)"
-*PSVersion: "(2011.113) 12"
-*ModelName: "Apple LaserWriter Pro 810"
-*ShortNickName: "Apple LaserWriter Pro 810"
-*NickName: "Apple LaserWriter Pro 810 v2011.113"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Multimedia Power Feeder: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Memory Configuration: PickOne
-*DefaultOption2: None
-*Option2 8Meg/8 MB RAM: ""
-*Option2 12Meg/12 MB RAM: ""
-*Option2 16Meg/16 MB RAM: ""
-*Option2 20Meg/20 MB RAM: ""
-*Option2 24Meg/24 MB RAM: ""
-*Option2 28Meg/30 MB RAM: ""
-*Option2 32Meg/32 MB RAM: ""
-*?Option2: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *Option2
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 True *ManualFeed True
-*UIConstraints: *Option1 False *InputSlot MultiMediaFeeder
-
-*UIConstraints: *Option2 8Meg *VMOption 12Meg
-*UIConstraints: *Option2 8Meg *VMOption 16Meg
-*UIConstraints: *Option2 8Meg *VMOption 20Meg
-*UIConstraints: *Option2 8Meg *VMOption 24Meg
-*UIConstraints: *Option2 8Meg *VMOption 28Meg
-*UIConstraints: *Option2 8Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 12Meg *VMOption 8Meg
-*UIConstraints: *Option2 12Meg *VMOption 16Meg
-*UIConstraints: *Option2 12Meg *VMOption 20Meg
-*UIConstraints: *Option2 12Meg *VMOption 24Meg
-*UIConstraints: *Option2 12Meg *VMOption 28Meg
-*UIConstraints: *Option2 12Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 16Meg *VMOption 8Meg
-*UIConstraints: *Option2 16Meg *VMOption 12Meg
-*UIConstraints: *Option2 16Meg *VMOption 20Meg
-*UIConstraints: *Option2 16Meg *VMOption 24Meg
-*UIConstraints: *Option2 16Meg *VMOption 28Meg
-*UIConstraints: *Option2 16Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 20Meg *VMOption 8Meg
-*UIConstraints: *Option2 20Meg *VMOption 12Meg
-*UIConstraints: *Option2 20Meg *VMOption 16Meg
-*UIConstraints: *Option2 20Meg *VMOption 24Meg
-*UIConstraints: *Option2 20Meg *VMOption 28Meg
-*UIConstraints: *Option2 20Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 24Meg *VMOption 8Meg
-*UIConstraints: *Option2 24Meg *VMOption 12Meg
-*UIConstraints: *Option2 24Meg *VMOption 16Meg
-*UIConstraints: *Option2 24Meg *VMOption 20Meg
-*UIConstraints: *Option2 24Meg *VMOption 28Meg
-*UIConstraints: *Option2 24Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 28Meg *VMOption 8Meg
-*UIConstraints: *Option2 28Meg *VMOption 12Meg
-*UIConstraints: *Option2 28Meg *VMOption 16Meg
-*UIConstraints: *Option2 28Meg *VMOption 20Meg
-*UIConstraints: *Option2 28Meg *VMOption 24Meg
-*UIConstraints: *Option2 28Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 32Meg *VMOption 8Meg
-*UIConstraints: *Option2 32Meg *VMOption 12Meg
-*UIConstraints: *Option2 32Meg *VMOption 16Meg
-*UIConstraints: *Option2 32Meg *VMOption 20Meg
-*UIConstraints: *Option2 32Meg *VMOption 24Meg
-*UIConstraints: *Option2 32Meg *VMOption 28Meg
-
-
-*% This device does not support the following paper sizes through input trays:
-*% Statement, Postcard, Comm #10 Envelope, DL, C5, Monarch envelopes.
-
-*UIConstraints: *PageSize Statement *InputSlot Tray1
-*UIConstraints: *PageSize Statement *InputSlot Tray2
-*UIConstraints: *PageSize Statement *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Statement
-*UIConstraints: *InputSlot Tray2 *PageSize Statement
-*UIConstraints: *InputSlot Tray3 *PageSize Statement
-
-*UIConstraints: *PageSize Postcard *InputSlot Tray1
-*UIConstraints: *PageSize Postcard *InputSlot Tray2
-*UIConstraints: *PageSize Postcard *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Postcard
-*UIConstraints: *InputSlot Tray2 *PageSize Postcard
-*UIConstraints: *InputSlot Tray3 *PageSize Postcard
-
-*UIConstraints: *PageSize Com10 *InputSlot Tray1
-*UIConstraints: *PageSize Com10 *InputSlot Tray2
-*UIConstraints: *PageSize Com10 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Com10
-*UIConstraints: *InputSlot Tray2 *PageSize Com10
-*UIConstraints: *InputSlot Tray3 *PageSize Com10
-
-*UIConstraints: *PageSize DL *InputSlot Tray1
-*UIConstraints: *PageSize DL *InputSlot Tray2
-*UIConstraints: *PageSize DL *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize DL
-*UIConstraints: *InputSlot Tray2 *PageSize DL
-*UIConstraints: *InputSlot Tray3 *PageSize DL
-
-*UIConstraints: *PageSize C5 *InputSlot Tray1
-*UIConstraints: *PageSize C5 *InputSlot Tray2
-*UIConstraints: *PageSize C5 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize C5
-*UIConstraints: *InputSlot Tray2 *PageSize C5
-*UIConstraints: *InputSlot Tray3 *PageSize C5
-
-*UIConstraints: *PageSize Monarch *InputSlot Tray1
-*UIConstraints: *PageSize Monarch *InputSlot Tray2
-*UIConstraints: *PageSize Monarch *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Monarch
-*UIConstraints: *InputSlot Tray2 *PageSize Monarch
-*UIConstraints: *InputSlot Tray3 *PageSize Monarch
-
-*UIConstraints: *PageRegion Statement *InputSlot Tray1
-*UIConstraints: *PageRegion Statement *InputSlot Tray2
-*UIConstraints: *PageRegion Statement *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Statement
-*UIConstraints: *InputSlot Tray2 *PageRegion Statement
-*UIConstraints: *InputSlot Tray3 *PageRegion Statement
-
-*UIConstraints: *PageRegion Postcard *InputSlot Tray1
-*UIConstraints: *PageRegion Postcard *InputSlot Tray2
-*UIConstraints: *PageRegion Postcard *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Postcard
-*UIConstraints: *InputSlot Tray2 *PageRegion Postcard
-*UIConstraints: *InputSlot Tray3 *PageRegion Postcard
-
-*UIConstraints: *PageRegion Com10 *InputSlot Tray1
-*UIConstraints: *PageRegion Com10 *InputSlot Tray2
-*UIConstraints: *PageRegion Com10 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Com10
-*UIConstraints: *InputSlot Tray2 *PageRegion Com10
-*UIConstraints: *InputSlot Tray3 *PageRegion Com10
-
-*UIConstraints: *PageRegion DL *InputSlot Tray1
-*UIConstraints: *PageRegion DL *InputSlot Tray2
-*UIConstraints: *PageRegion DL *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion DL
-*UIConstraints: *InputSlot Tray2 *PageRegion DL
-*UIConstraints: *InputSlot Tray3 *PageRegion DL
-
-*UIConstraints: *PageRegion C5 *InputSlot Tray1
-*UIConstraints: *PageRegion C5 *InputSlot Tray2
-*UIConstraints: *PageRegion C5 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion C5
-*UIConstraints: *InputSlot Tray2 *PageRegion C5
-*UIConstraints: *InputSlot Tray3 *PageRegion C5
-
-*UIConstraints: *PageRegion Monarch *InputSlot Tray1
-*UIConstraints: *PageRegion Monarch *InputSlot Tray2
-*UIConstraints: *PageRegion Monarch *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Monarch
-*UIConstraints: *InputSlot Tray2 *PageRegion Monarch
-*UIConstraints: *InputSlot Tray3 *PageRegion Monarch
-
-*% General Information and Defaults ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B 7F>0"
-*FreeVM: "430000"
-*VMOption 8Meg/8 Meg RAM: "430000"
-*VMOption 12Meg/12 Meg RAM: "1020000"
-*VMOption 16Meg/16 Meg RAM: "1457792"
-*VMOption 20Meg/20 Meg RAM: "5457792"
-*VMOption 24Meg/24 Meg RAM: "9457792"
-*VMOption 28Meg/28 Meg RAM: "13457792"
-*VMOption 32Meg/32 Meg RAM: "17457792"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Throughput: "20"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10 AnySetup *Resolution
-*DefaultResolution: 400dpi
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*Resolution 400dpi: "1 dict dup /HWResolution [400 400] put setpagedevice"
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 800dpi: "1 dict dup /HWResolution [800 800] put setpagedevice"
-
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- aload pop exch
- ( ) cvs print
- pop
- (dpi) = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter.Transverse/US Letter Transverse: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4.Transverse/A4 Transverse: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Postcard: "
- 2 dict dup /PageSize [284 419] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Invoice/Statement: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Folio: "
- 2 dict dup /PageSize [595 936] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Comm10/Comm #10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize DL/DL Envelope: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize C5/C5 Envelope: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice "
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 16 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [420 595] (A5) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [284 419] (Postcard) put
- dup [396 612] (Invoice) put
- dup [595 936] (Folio) put
- dup [522 756] (Executive) put
- dup [297 684] (Comm10) put
- dup [279 540] (Monarch) put
- dup [312 624] (DL) put
- dup [459 649] (C5) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter/US Letter: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion Letter.Transverse/US Letter Transverse: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 1008] put setpagedevice} {pop} ifelse
- <</PageSize [612 1008]>> setpagedevice "
-*End
-*PageRegion Tabloid/Ledger: "
-2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3: "
-2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*PageRegion A4.Transverse/A4 Transverse: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*PageRegion A5: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [420 595] put setpagedevice} {pop} ifelse
- <</PageSize [420 595]>> setpagedevice "
-*End
-*PageRegion B4: "
-2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [516 729] put setpagedevice} {pop} ifelse
- <</PageSize [516 729]>> setpagedevice "
-*End
-*PageRegion Postcard: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [284 419] put setpagedevice} {pop} ifelse
- <</PageSize [284 419]>> setpagedevice "
-*End
-*PageRegion Invoice/Statement: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [396 612] put setpagedevice} {pop} ifelse
- <</PageSize [396 612]>> setpagedevice "
-*End
-*PageRegion Folio: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 936] put setpagedevice} {pop} ifelse
- <</PageSize [595 936]>> setpagedevice "
-*End
-*PageRegion Executive: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [522 756] put setpagedevice} {pop} ifelse
- <</PageSize [522 756]>> setpagedevice "
-*End
-*PageRegion Comm10/Comm #10 Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [297 684] put setpagedevice} {pop} ifelse
- <</PageSize [297 684]>> setpagedevice "
-*End
-*PageRegion Monarch/Monarch Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [279 540] put setpagedevice} {pop} ifelse
- <</PageSize [279 540]>> setpagedevice "
-*End
-*PageRegion DL/DL Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [312 624] put setpagedevice} {pop} ifelse
- <</PageSize [312 624]>> setpagedevice "
-*End
-*PageRegion C5/C5 Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [459 649] put setpagedevice} {pop} ifelse
- <</PageSize [459 649]>> setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 1008] put setpagedevice} {pop} ifelse
- <</PageSize [612 1008]>> setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter/US Letter: "16 14.4 595.4 778 "
-*ImageableArea Letter.Transverse/US Letter Transverse: "16 14.4 595.4 778 "
-*ImageableArea Legal/US Legal: "16 9.81 596.16 995 "
-*ImageableArea Tabloid/Ledger: "16 12 780 1208 "
-*ImageableArea A3: "16 12 825.84 1178 "
-*ImageableArea A4: "16 16 578.88 825.17 "
-*ImageableArea A4.Transverse/A4 Transverse: "16 14.4 578.88 825.17 "
-*ImageableArea A5: "14 14.4 407.25 577 "
-*ImageableArea B4: "16 10.2 717.12 1019.25 "
-*ImageableArea B5: "11 15 503.1 716 "
-*ImageableArea Postcard: "14.4 9.81 273.6 407.25 "
-*ImageableArea Invoice/Statement: "21 16 373 595 "
-*ImageableArea Folio: "21 10.2 578.88 922 "
-*ImageableArea Executive: "14.4 9.7201 509.76 743.13 "
-*ImageableArea Comm10/Comm #10 Envelope: "16 12 279 671 "
-*ImageableArea Monarch/Monarch Envelope: "16 12 265.2 525 "
-*ImageableArea DL/DL Envelope: "16 14 295.64 605 "
-*ImageableArea C5/C5 Envelope: "19 14 448 631 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Letter.Transverse/US Letter Transverse: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension Tabloid/Ledger: "792 1224"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-*PaperDimension A4.Transverse/A4 Transverse: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B4: "729 1032"
-*PaperDimension B5: "516 729 "
-*PaperDimension Postcard: "284 419"
-*PaperDimension Invoice/Statement: "396 612"
-*PaperDimension Folio: "595 936"
-*PaperDimension Executive: "522 756"
-*PaperDimension Comm10/Comm #10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension DL/DL Envelope: "312 624"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion MultiMediaFeeder: True
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "<</ManualFeed true>> setpagedevice "
-*ManualFeed False: "<</ManualFeed false>> setpagedevice "
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Tray1
-*InputSlot Tray1/Upper tray: "
- currentpagedevice /InputAttributes get
- 0 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot Tray2/Middle tray: "
- currentpagedevice /InputAttributes get
- 1 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot Tray3/Lower tray: "
- currentpagedevice /InputAttributes get
- 2 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot MultiMediaFeeder/Multimedia Power Feeder: "
- currentpagedevice /InputAttributes get
- 3 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
- } ifelse "
-*End
-*?InputSlot: "
-save
- 4 dict
- dup /0 (Tray1) put
- dup /1 (Tray2) put
- dup /2 (Tray3) put
- dup /3 (MultiMediaFeeder) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: Upper
-*DefaultOutputOrder: Normal
-
-*PageStackOrder Front: Reverse
-*PageStackOrder Upper: Normal
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.003)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.003)" Standard ROM
-*Font Bookman-Light: Standard "(001.003)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.003)" Standard ROM
-*Font Courier: Standard "(002.004)" Standard ROM
-*Font Courier-Bold: Standard "(002.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.004)" Standard ROM
-*Font Courier-Oblique: Standard "(002.004)" 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.008)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006)" Standard ROM
-*Font Palatino-Bold: Standard "(001.005)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.005)" Standard ROM
-*Font Palatino-Italic: Standard "(001.005)" Standard ROM
-*Font Palatino-Roman: Standard "(001.005)" Standard ROM
-*Font Symbol: Special "(001.007)" Special 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004)" Special ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "warming up"
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner is low"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: Engine is off line"
-*Status: "PrinterError: Engine is not responding"
-*Status: "PrinterError: Unknown problem occurred"
-*Status: "PrinterError: Manual feed page not requested"
-*Status: "PrinterError: waiting for manual feed"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "other"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner is low"
-*PrinterError: "paper jam"
-*PrinterError: "out of paper"
-*PrinterError: "service call"
-*PrinterError: "Engine is off line"
-*PrinterError: "Engine is not responding"
-*PrinterError: "Unknown problem occurred"
-*PrinterError: "Manual feed page not requested"
-*PrinterError: "waiting for manual feed"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.400dpi/60 lpi / 400 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 71 lpi / 400 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "66.6667"
-
-*% For 47 lpi / 400 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
-*ColorSepScreenFreq CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
-*ColorSepScreenFreq ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
-*ColorSepScreenFreq ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
-*ColorSepScreenFreq ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "44.4444"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% For 85 lpi / 800 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.800dpi/85 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.800dpi/85 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.800dpi/85 lpi / 800 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.800dpi/85 lpi / 800 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.800dpi/85 lpi / 800 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.800dpi/85 lpi / 800 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.800dpi/85 lpi / 800 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.800dpi/85 lpi / 800 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 800 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.800dpi/71 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.800dpi/71 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.800dpi/71 lpi / 800 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.800dpi/71 lpi / 800 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.800dpi/71 lpi / 800 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.800dpi/71 lpi / 800 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.800dpi/71 lpi / 800 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.800dpi/71 lpi / 800 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.800dpi/71 lpi / 800 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.800dpi/71 lpi / 800 dpi: "66.6667"
-
-
-
-*% Produced by "BuildPPD4.0L2.ps" version 4.0 edit 3
-*% Last Edit Date: Jan 3 1995
-*% The byte count of this file should be exactly 033330 or 034215
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Pro 810
diff --git a/psprint_config/configuration/ppds/APLW81F1.PS b/psprint_config/configuration/ppds/APLW81F1.PS
deleted file mode 100644
index 6b118be021e1..000000000000
--- a/psprint_config/configuration/ppds/APLW81F1.PS
+++ /dev/null
@@ -1,885 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLW81F1.PPD"
-*Product: "(LaserWriter Pro 810f)"
-*PSVersion: "(2011.113) 12"
-*ModelName: "Apple LaserWriter Pro 810 with Fax Card"
-*ShortNickName: "Apple LaserWriter Pro 810 Fax"
-*NickName: "Apple LaserWriter Pro 810 with Fax Card v2011.113"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Multimedia Power Feeder: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Memory Configuration: PickOne
-*DefaultOption2: 8Meg
-*Option2 8Meg/8 MB RAM: ""
-*Option2 12Meg/12 MB RAM: ""
-*Option2 16Meg/16 MB RAM: ""
-*Option2 20Meg/20 MB RAM: ""
-*Option2 24Meg/24 MB RAM: ""
-*Option2 28Meg/30 MB RAM: ""
-*Option2 32Meg/32 MB RAM: ""
-*?Option2: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *Option2
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 True *ManualFeed True
-*UIConstraints: *Option1 False *InputSlot MultiMediaFeeder
-
-*UIConstraints: *Option2 8Meg *VMOption 12Meg
-*UIConstraints: *Option2 8Meg *VMOption 16Meg
-*UIConstraints: *Option2 8Meg *VMOption 20Meg
-*UIConstraints: *Option2 8Meg *VMOption 24Meg
-*UIConstraints: *Option2 8Meg *VMOption 28Meg
-*UIConstraints: *Option2 8Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 12Meg *VMOption 8Meg
-*UIConstraints: *Option2 12Meg *VMOption 16Meg
-*UIConstraints: *Option2 12Meg *VMOption 20Meg
-*UIConstraints: *Option2 12Meg *VMOption 24Meg
-*UIConstraints: *Option2 12Meg *VMOption 28Meg
-*UIConstraints: *Option2 12Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 16Meg *VMOption 8Meg
-*UIConstraints: *Option2 16Meg *VMOption 12Meg
-*UIConstraints: *Option2 16Meg *VMOption 20Meg
-*UIConstraints: *Option2 16Meg *VMOption 24Meg
-*UIConstraints: *Option2 16Meg *VMOption 28Meg
-*UIConstraints: *Option2 16Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 20Meg *VMOption 8Meg
-*UIConstraints: *Option2 20Meg *VMOption 12Meg
-*UIConstraints: *Option2 20Meg *VMOption 16Meg
-*UIConstraints: *Option2 20Meg *VMOption 24Meg
-*UIConstraints: *Option2 20Meg *VMOption 28Meg
-*UIConstraints: *Option2 20Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 24Meg *VMOption 8Meg
-*UIConstraints: *Option2 24Meg *VMOption 12Meg
-*UIConstraints: *Option2 24Meg *VMOption 16Meg
-*UIConstraints: *Option2 24Meg *VMOption 20Meg
-*UIConstraints: *Option2 24Meg *VMOption 28Meg
-*UIConstraints: *Option2 24Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 28Meg *VMOption 8Meg
-*UIConstraints: *Option2 28Meg *VMOption 12Meg
-*UIConstraints: *Option2 28Meg *VMOption 16Meg
-*UIConstraints: *Option2 28Meg *VMOption 20Meg
-*UIConstraints: *Option2 28Meg *VMOption 24Meg
-*UIConstraints: *Option2 28Meg *VMOption 32Meg
-
-*UIConstraints: *Option2 32Meg *VMOption 8Meg
-*UIConstraints: *Option2 32Meg *VMOption 12Meg
-*UIConstraints: *Option2 32Meg *VMOption 16Meg
-*UIConstraints: *Option2 32Meg *VMOption 20Meg
-*UIConstraints: *Option2 32Meg *VMOption 24Meg
-*UIConstraints: *Option2 32Meg *VMOption 28Meg
-
-*% This device does not support the following paper sizes through input trays:
-*% Statement, Postcard, Comm #10 Envelope, DL, C5, Monarch envelopes.
-
-*UIConstraints: *PageSize Statement *InputSlot Tray1
-*UIConstraints: *PageSize Statement *InputSlot Tray2
-*UIConstraints: *PageSize Statement *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Statement
-*UIConstraints: *InputSlot Tray2 *PageSize Statement
-*UIConstraints: *InputSlot Tray3 *PageSize Statement
-
-*UIConstraints: *PageSize Postcard *InputSlot Tray1
-*UIConstraints: *PageSize Postcard *InputSlot Tray2
-*UIConstraints: *PageSize Postcard *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Postcard
-*UIConstraints: *InputSlot Tray2 *PageSize Postcard
-*UIConstraints: *InputSlot Tray3 *PageSize Postcard
-
-*UIConstraints: *PageSize Com10 *InputSlot Tray1
-*UIConstraints: *PageSize Com10 *InputSlot Tray2
-*UIConstraints: *PageSize Com10 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Com10
-*UIConstraints: *InputSlot Tray2 *PageSize Com10
-*UIConstraints: *InputSlot Tray3 *PageSize Com10
-
-*UIConstraints: *PageSize DL *InputSlot Tray1
-*UIConstraints: *PageSize DL *InputSlot Tray2
-*UIConstraints: *PageSize DL *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize DL
-*UIConstraints: *InputSlot Tray2 *PageSize DL
-*UIConstraints: *InputSlot Tray3 *PageSize DL
-
-*UIConstraints: *PageSize C5 *InputSlot Tray1
-*UIConstraints: *PageSize C5 *InputSlot Tray2
-*UIConstraints: *PageSize C5 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize C5
-*UIConstraints: *InputSlot Tray2 *PageSize C5
-*UIConstraints: *InputSlot Tray3 *PageSize C5
-
-*UIConstraints: *PageSize Monarch *InputSlot Tray1
-*UIConstraints: *PageSize Monarch *InputSlot Tray2
-*UIConstraints: *PageSize Monarch *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageSize Monarch
-*UIConstraints: *InputSlot Tray2 *PageSize Monarch
-*UIConstraints: *InputSlot Tray3 *PageSize Monarch
-
-*UIConstraints: *PageRegion Statement *InputSlot Tray1
-*UIConstraints: *PageRegion Statement *InputSlot Tray2
-*UIConstraints: *PageRegion Statement *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Statement
-*UIConstraints: *InputSlot Tray2 *PageRegion Statement
-*UIConstraints: *InputSlot Tray3 *PageRegion Statement
-
-*UIConstraints: *PageRegion Postcard *InputSlot Tray1
-*UIConstraints: *PageRegion Postcard *InputSlot Tray2
-*UIConstraints: *PageRegion Postcard *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Postcard
-*UIConstraints: *InputSlot Tray2 *PageRegion Postcard
-*UIConstraints: *InputSlot Tray3 *PageRegion Postcard
-
-*UIConstraints: *PageRegion Com10 *InputSlot Tray1
-*UIConstraints: *PageRegion Com10 *InputSlot Tray2
-*UIConstraints: *PageRegion Com10 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Com10
-*UIConstraints: *InputSlot Tray2 *PageRegion Com10
-*UIConstraints: *InputSlot Tray3 *PageRegion Com10
-
-*UIConstraints: *PageRegion DL *InputSlot Tray1
-*UIConstraints: *PageRegion DL *InputSlot Tray2
-*UIConstraints: *PageRegion DL *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion DL
-*UIConstraints: *InputSlot Tray2 *PageRegion DL
-*UIConstraints: *InputSlot Tray3 *PageRegion DL
-
-*UIConstraints: *PageRegion C5 *InputSlot Tray1
-*UIConstraints: *PageRegion C5 *InputSlot Tray2
-*UIConstraints: *PageRegion C5 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion C5
-*UIConstraints: *InputSlot Tray2 *PageRegion C5
-*UIConstraints: *InputSlot Tray3 *PageRegion C5
-
-*UIConstraints: *PageRegion Monarch *InputSlot Tray1
-*UIConstraints: *PageRegion Monarch *InputSlot Tray2
-*UIConstraints: *PageRegion Monarch *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray1 *PageRegion Monarch
-*UIConstraints: *InputSlot Tray2 *PageRegion Monarch
-*UIConstraints: *InputSlot Tray3 *PageRegion Monarch
-
-*% General Information and Defaults ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B 7F>0"
-*FreeVM: "430000"
-*VMOption 8Meg/8 MB RAM: "430000"
-*VMOption 12Meg/12 MB RAM: "1020000"
-*VMOption 16Meg/16 MB RAM: "1457792"
-*VMOption 20Meg/20 MB RAM: "5457792"
-*VMOption 24Meg/24 MB RAM: "9457792"
-*VMOption 28Meg/28 MB RAM: "13457792"
-*VMOption 32Meg/32 MB RAM: "17457792"
-*ColorDevice: False
-*FaxSupport: Base
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Throughput: "20"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution: PickOne
-*OrderDependency: 10 AnySetup *Resolution
-*DefaultResolution: 400dpi
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*Resolution 400dpi: "1 dict dup /HWResolution [400 400] put setpagedevice"
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 800dpi: "1 dict dup /HWResolution [800 800] put setpagedevice"
-
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- aload pop exch
- ( ) cvs print
- pop
- (dpi) = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter.Transverse/US Letter Transverse: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4.Transverse/A4 Transverse: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Postcard: "
- 2 dict dup /PageSize [284 419] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Invoice/Statement: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Folio: "
- 2 dict dup /PageSize [595 936] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Comm10/Comm #10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize DL/DL Envelope: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize C5/C5 Envelope: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice "
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 16 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [420 595] (A5) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [284 419] (Postcard) put
- dup [396 612] (Invoice) put
- dup [595 936] (Folio) put
- dup [522 756] (Executive) put
- dup [297 684] (Comm10) put
- dup [279 540] (Monarch) put
- dup [312 624] (DL) put
- dup [459 649] (C5) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter/US Letter: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion Letter.Transverse/US Letter Transverse: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 1008] put setpagedevice} {pop} ifelse
- <</PageSize [612 1008]>> setpagedevice "
-*End
-*PageRegion Tabloid/Ledger: "
-2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3: "
-2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*PageRegion A4.Transverse/A4 Transverse: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*PageRegion A5: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [420 595] put setpagedevice} {pop} ifelse
- <</PageSize [420 595]>> setpagedevice "
-*End
-*PageRegion B4: "
-2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [516 729] put setpagedevice} {pop} ifelse
- <</PageSize [516 729]>> setpagedevice "
-*End
-*PageRegion Postcard: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [284 419] put setpagedevice} {pop} ifelse
- <</PageSize [284 419]>> setpagedevice "
-*End
-*PageRegion Invoice/Statement: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [396 612] put setpagedevice} {pop} ifelse
- <</PageSize [396 612]>> setpagedevice "
-*End
-*PageRegion Folio: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 936] put setpagedevice} {pop} ifelse
- <</PageSize [595 936]>> setpagedevice "
-*End
-*PageRegion Executive: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [522 756] put setpagedevice} {pop} ifelse
- <</PageSize [522 756]>> setpagedevice "
-*End
-*PageRegion Comm10/Comm #10 Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [297 684] put setpagedevice} {pop} ifelse
- <</PageSize [297 684]>> setpagedevice "
-*End
-*PageRegion Monarch/Monarch Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [279 540] put setpagedevice} {pop} ifelse
- <</PageSize [279 540]>> setpagedevice "
-*End
-*PageRegion DL/DL Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [312 624] put setpagedevice} {pop} ifelse
- <</PageSize [312 624]>> setpagedevice "
-*End
-*PageRegion C5/C5 Envelope: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [459 649] put setpagedevice} {pop} ifelse
- <</PageSize [459 649]>> setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 792] put setpagedevice} {pop} ifelse
- <</PageSize [612 792]>> setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [612 1008] put setpagedevice} {pop} ifelse
- <</PageSize [612 1008]>> setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
-currentpagedevice /InputAttributes get 3 get dup null ne {dup /PageSize [595 842] put setpagedevice} {pop} ifelse
- <</PageSize [595 842]>> setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter/US Letter: "16 14.4 595.4 778 "
-*ImageableArea Letter.Transverse/US Letter Transverse: "16 14.4 595.4 778 "
-*ImageableArea Legal/US Legal: "16 9.81 596.16 995 "
-*ImageableArea Tabloid/Ledger: "16 12 780 1208 "
-*ImageableArea A3: "16 12 825.84 1178 "
-*ImageableArea A4: "16 16 578.88 825.17 "
-*ImageableArea A4.Transverse/A4 Transverse: "16 14.4 578.88 825.17 "
-*ImageableArea A5: "14 14.4 407.25 577 "
-*ImageableArea B4: "16 10.2 717.12 1019.25 "
-*ImageableArea B5: "11 15 503.1 716 "
-*ImageableArea Postcard: "14.4 9.81 273.6 407.25 "
-*ImageableArea Invoice/Statement: "21 16 373 595 "
-*ImageableArea Folio: "21 10.2 578.88 922 "
-*ImageableArea Executive: "16 10.2 509.76 743.13 "
-*ImageableArea Comm10/Comm #10 Envelope: "16 12 279 671 "
-*ImageableArea Monarch/Monarch Envelope: "16 12 265.2 525 "
-*ImageableArea DL/DL Envelope: "16 14 295.64 605 "
-*ImageableArea C5/C5 Envelope: "19 14 448 631 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Letter.Transverse/US Letter Transverse: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension Tabloid/Ledger: "792 1224"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-*PaperDimension A4.Transverse/A4 Transverse: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B4: "729 1032"
-*PaperDimension B5: "516 729 "
-*PaperDimension Postcard: "284 419"
-*PaperDimension Invoice/Statement: "396 612"
-*PaperDimension Folio: "595 936"
-*PaperDimension Executive: "522 756"
-*PaperDimension Comm10/Comm #10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension DL/DL Envelope: "312 624"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion MultiMediaFeeder: True
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "<</ManualFeed true>> setpagedevice "
-*ManualFeed False: "<</ManualFeed false>> setpagedevice "
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Tray1
-*InputSlot Tray1/Upper tray: "
- currentpagedevice /InputAttributes get
- 0 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot Tray2/Middle tray: "
- currentpagedevice /InputAttributes get
- 1 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot Tray3/Lower tray: "
- currentpagedevice /InputAttributes get
- 2 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot MultiMediaFeeder/Multimedia Power Feeder: "
- currentpagedevice /InputAttributes get
- 3 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
- } ifelse "
-*End
-*?InputSlot: "
-save
- 4 dict
- dup /0 (Tray1) put
- dup /1 (Tray2) put
- dup /2 (Tray3) put
- dup /3 (MultiMediaFeeder) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: Upper
-*DefaultOutputOrder: Normal
-
-*PageStackOrder Front: Reverse
-*PageStackOrder Upper: Normal
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.003)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.003)" Standard ROM
-*Font Bookman-Light: Standard "(001.003)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.003)" Standard ROM
-*Font Courier: Standard "(002.004)" Standard ROM
-*Font Courier-Bold: Standard "(002.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.004)" Standard ROM
-*Font Courier-Oblique: Standard "(002.004)" 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.008)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006)" Standard ROM
-*Font Palatino-Bold: Standard "(001.005)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.005)" Standard ROM
-*Font Palatino-Italic: Standard "(001.005)" Standard ROM
-*Font Palatino-Roman: Standard "(001.005)" Standard ROM
-*Font Symbol: Special "(001.007)" Special 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004)" Special ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "warming up"
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner is low"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: Engine is off line"
-*Status: "PrinterError: Engine is not responding"
-*Status: "PrinterError: Unknown problem occurred"
-*Status: "PrinterError: Manual feed page not requested"
-*Status: "PrinterError: waiting for manual feed"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "Fax"
-*Source: "LocalTalk"
-*Source: "EtherTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner is low"
-*PrinterError: "paper jam"
-*PrinterError: "out of paper"
-*PrinterError: "service call"
-*PrinterError: "Engine is off line"
-*PrinterError: "Engine is not responding"
-*PrinterError: "Unknown problem occurred"
-*PrinterError: "Manual feed page not requested"
-*PrinterError: "waiting for manual feed"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.400dpi/60 lpi / 400 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 71 lpi / 400 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.400dpi/71 lpi / 400 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.400dpi/71 lpi / 400 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.400dpi/71 lpi / 400 dpi: "66.6667"
-
-*% For 47 lpi / 400 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
-*ColorSepScreenFreq CustomColor.47lpi.400dpi/47 lpi / 400 dpi: "47.1405"
-*ColorSepScreenFreq ProcessCyan.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
-*ColorSepScreenFreq ProcessMagenta.47lpi.400dpi/47 lpi / 400 dpi: "42.1637"
-*ColorSepScreenFreq ProcessYellow.47lpi.400dpi/47 lpi / 400 dpi: "44.4444"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% For 85 lpi / 800 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.800dpi/85 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.800dpi/85 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.800dpi/85 lpi / 800 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.800dpi/85 lpi / 800 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.800dpi/85 lpi / 800 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.800dpi/85 lpi / 800 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.800dpi/85 lpi / 800 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.800dpi/85 lpi / 800 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.800dpi/85 lpi / 800 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 800 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.800dpi/71 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.800dpi/71 lpi / 800 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.800dpi/71 lpi / 800 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.800dpi/71 lpi / 800 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.800dpi/71 lpi / 800 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.800dpi/71 lpi / 800 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.800dpi/71 lpi / 800 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.800dpi/71 lpi / 800 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.800dpi/71 lpi / 800 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.800dpi/71 lpi / 800 dpi: "66.6667"
-
-
-
-*% Produced by "BuildPPD4.0L2.ps" version 4.0 edit 3
-*% Last Edit Date: Jan 3 1995
-*% The byte count of this file should be exactly 033368 or 034253
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Pro 810f
diff --git a/psprint_config/configuration/ppds/APLWBGR1.PS b/psprint_config/configuration/ppds/APLWBGR1.PS
deleted file mode 100644
index ce4a20d5517f..000000000000
--- a/psprint_config/configuration/ppds/APLWBGR1.PS
+++ /dev/null
@@ -1,1081 +0,0 @@
-*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"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWBGR1.PPD"
-*Manufacturer: "Apple"
-*Product: "(LaserWriter 8500)"
-*PSVersion: "(3010.103) 1"
-*ModelName: "Apple LaserWriter 8500"
-*ShortNickName: "Apple LaserWriter 8500"
-*NickName: "Apple LaserWriter 8500 v3010.103"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 16Meg
-*InstalledMemory 16Meg/Standard 16MB: ""
-*InstalledMemory 20Meg/20MB: ""
-*InstalledMemory 24Meg/24MB: ""
-*InstalledMemory 32Meg/32MB: ""
-*InstalledMemory 48Meg/48MB: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get
- 1048576 div cvi 6 string cvs dup length dup 3 add string dup 0 4 index
- putinterval dup 2 index (Meg) putinterval exch pop exch pop = flush
- restore
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *APOptionalDuplexer/Duplex Printing Unit: Boolean
-*DefaultAPOptionalDuplexer: False
-*APOptionalDuplexer True/Installed: ""
-*APOptionalDuplexer False/Not Installed: ""
-*?APOptionalDuplexer: "
- save
- /DiagnosticProcs /ProcSet {findresource}stopped
- {pop pop false}
- {
- begin
- {duplex-unit-present}stopped {false}if
- end
- }ifelse
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *APOptionalDuplexer
-
-*OpenUI *APOptionalCassette1/Cassette (Optional 1): PickOne
-*OrderDependency: 10.0 AnySetup *APOptionalCassette1
-*DefaultAPOptionalCassette1: False
-*APOptionalCassette1 True/Installed: ""
-*APOptionalCassette1 False/Not Installed: ""
-*APOptionalCassette1 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put setpagedevice"
-*End
-*?APOptionalCassette1: "
- save
- currentpagedevice /InputAttributes get
- dup 2 known
- {dup 2 get null ne {
- /Priority 2 copy known {
- get 0 get 2 eq {(Preferred)}{(True)}ifelse
- } {
- pop pop (True)
- } ifelse
- }{
- pop (False)
- }ifelse}
- {pop (False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *APOptionalCassette1
-
-*OpenUI *APOptionalCassette2/Cassette (Optional 2): PickOne
-*OrderDependency: 10.0 AnySetup *APOptionalCassette2
-*DefaultAPOptionalCassette2: False
-*APOptionalCassette2 True/Installed: ""
-*APOptionalCassette2 False/Not Installed: ""
-*APOptionalCassette2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [3 0 1 2] put put setpagedevice"
-*End
-*?APOptionalCassette2: "
- save
- currentpagedevice /InputAttributes get
- dup 3 known
- {dup 3 get null ne {
- /Priority 2 copy known {
- get 0 get 3 eq {(Preferred)}{(True)}ifelse
- } {
- pop pop (True)
- } ifelse
- }{
- pop (False)
- }ifelse}
- {pop (False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *APOptionalCassette2
-
-*CloseGroup: InstallableOptions
-
-*% ==== uninstalled options =======
-*UIConstraints: *APOptionalCassette1 False *InputSlot OptionalCassette1
-*UIConstraints: *APOptionalCassette2 False *InputSlot OptionalCassette2
-*UIConstraints: *InputSlot OptionalCassette1 *APOptionalCassette1 False
-*UIConstraints: *InputSlot OptionalCassette2 *APOptionalCassette2 False
-*UIConstraints: *APOptionalDuplexer False *Duplex DuplexTumble
-*UIConstraints: *APOptionalDuplexer False *Duplex DuplexNoTumble
-*UIConstraints: *Duplex DuplexTumble *APOptionalDuplexer False
-*UIConstraints: *Duplex DuplexNoTumble *APOptionalDuplexer False
-
-*% ==== paper size/tray combos =======
-*UIConstraints: *PageSize Enormous *InputSlot StandardCassette
-*UIConstraints: *PageSize Enormous *InputSlot OptionalCassette1
-*UIConstraints: *PageSize Enormous *InputSlot OptionalCassette2
-*UIConstraints: *PageRegion Enormous *InputSlot StandardCassette
-*UIConstraints: *PageRegion Enormous *InputSlot OptionalCassette1
-*UIConstraints: *PageRegion Enormous *InputSlot OptionalCassette2
-*UIConstraints: *InputSlot StandardCassette *PageSize Enormous
-*UIConstraints: *InputSlot StandardCassette *PageRegion Enormous
-*UIConstraints: *InputSlot OptionalCassette1 *PageSize Enormous
-*UIConstraints: *InputSlot OptionalCassette1 *PageRegion Enormous
-*UIConstraints: *InputSlot OptionalCassette2 *PageSize Enormous
-*UIConstraints: *InputSlot OptionalCassette2 *PageRegion Enormous
-
-*% ==== only one preferred tray =======
-*UIConstraints: *APOptionalCassette1 Preferred *APOptionalCassette2 Preferred
-*UIConstraints: *APOptionalCassette2 Preferred *APOptionalCassette1 Preferred
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "3"
-*Protocols: TBCP
-*Emulators: LaserJetIII
-*StartEmulator_LaserJetIII: "currentfile /LaserJetIII statusdict /emulate get exec "
-*StopEmulator_LaserJetIII: "<1B>E"
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42/FontType resourcestatus
- {pop pop (Type42)}{(None)}ifelse = flush
- restore
-"
-*End
-
-*FreeVM: "2337744"
-*VMOption 16Meg: "2337744"
-*VMOption 20Meg: "2141136"
-*VMOption 24Meg: "2247632"
-*VMOption 32Meg: "5893072"
-*VMOption 48Meg: "13863888"
-
-*FCacheSize 16Meg: 1677721
-*FCacheSize 20Meg: 2097152
-*FCacheSize 24Meg: 2516582
-*FCacheSize 32Meg: 3355443
-*FCacheSize 48Meg: 5033164
-
-*LandscapeOrientation: Minus90
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore"
-*End
-*Throughput: "20"
-*Password: "()"
-*ExitServer: "
-count 0 eq
-{ false } { true exch startjob } ifelse
-not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
-count 0 eq
-{ false } { true exch startjob } ifelse
-not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-systemdict /quit get exec
-(WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get cvi
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-*% Halftone Information ===============
-*DefaultHalftoneType: 1
-*ScreenFreq: "106.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Duplex/Duplex: PickOne
-*OrderDependency: 20.0 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex None/1-Sided: "1 dict dup /Duplex false put setpagedevice"
-*Duplex DuplexNoTumble/2-Sided, Long-Edge Binding (No Tumble): "
- 2 dict dup /Duplex true put dup /Tumble false put setpagedevice
-"
-*End
-*Duplex DuplexTumble/2-Sided, Short-Edge Binding (Tumble): "
- 2 dict dup /Duplex true put dup /Tumble true put setpagedevice
-"
-*End
-*?Duplex: "
- save
- currentpagedevice /Duplex get
- {currentpagedevice /Tumble get {(DuplexTumble)}{(DuplexNoTumble)}ifelse}
- {(None)}ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *Duplex
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): PickOne
-*OrderDependency: 20.0 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
-*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
-*?BitsPerPixel: "
- save
- currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)}ifelse = flush
- restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 20.0 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save
- currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)}ifelse = flush
- restore"
-*End
-*CloseUI: *Smoothing
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 20.0 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize ExtraBig/Large Format 13" x 18": "
- 2 dict dup /PageSize [936 1296] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize MajorBig/Large Format 13" x 18.50": "
- 2 dict dup /PageSize [936 1332] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Enormous/Large Format 13" x 20": "
- 2 dict dup /PageSize [936 1440] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10/Comm10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvMonarch/Monarch Envelope: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC5/C5 Envelope: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvDL/DL Envelope: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Postcard: "
- 2 dict dup /PageSize [284 419] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 18 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [420 595] (A5) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [522 756] (Executive) put
- dup [396 612] (Statement) put
- dup [936 1296] (ExtraBig) put
- dup [936 1332] (MajorBig) put
- dup [936 1440] (Enormous) put
- dup [297 684] (Env10) put
- dup [279 540] (EnvMonarch) put
- dup [459 649] (EnvC5) put
- dup [312 624] (EnvDL) put
- dup [284 419] (Postcard) 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
- currentpagedevice /ImagingBBox get null ne {
- % Form LetterSmall, LegalSmall, or A4Small
- dup length dup 5 add string dup dup 0 5 index putinterval
- 3 -1 roll (Small) putinterval exch pop
- }if
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 20.0 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put
- setpagedevice"
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
- setpagedevice"
-*End
-*PageRegion Tabloid: "
- 3 dict dup /PageSize [792 1224] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [792 1224] put put put
- setpagedevice"
-*End
-*PageRegion A3: "
- 3 dict dup /PageSize [842 1191] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [842 1191] put put put
- setpagedevice"
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
- setpagedevice"
-*End
-*PageRegion A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put
- setpagedevice"
-*End
-*PageRegion B4: "
- 3 dict dup /PageSize [729 1032] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [729 1032] put put put
- setpagedevice"
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put
- setpagedevice"
-*End
-*PageRegion Executive: "
- 3 dict dup /PageSize [522 756] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [522 756] put put put
- setpagedevice"
-*End
-*PageRegion Statement: "
- 3 dict dup /PageSize [396 612] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [396 612] put put put
- setpagedevice"
-*End
-*PageRegion ExtraBig/Large Format 13" x 18": "
- 3 dict dup /PageSize [936 1296] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1296] put put put
- setpagedevice"
-*End
-*PageRegion MajorBig/Large Format 13" x 18.50": "
- 3 dict dup /PageSize [936 1332] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1332] put put put
- setpagedevice"
-*End
-*PageRegion Enormous/Large Format 13" x 20": "
- 3 dict dup /PageSize [936 1440] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [936 1440] put put put
- setpagedevice"
-*End
-*PageRegion Env10/Comm10 Envelope: "
- 3 dict dup /PageSize [297 684] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [297 684] put put put
- setpagedevice"
-*End
-*PageRegion EnvMonarch/Monarch Envelope: "
- 3 dict dup /PageSize [279 540] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [279 540] put put put
- setpagedevice"
-*End
-*PageRegion EnvC5/C5 Envelope: "
- 3 dict dup /PageSize [459 649] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [459 649] put put put
- setpagedevice"
-*End
-*PageRegion EnvDL/DL Envelope: "
- 3 dict dup /PageSize [312 624] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [312 624] put put put
- setpagedevice"
-*End
-*PageRegion Postcard: "
- 3 dict dup /PageSize [284 419] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [284 419] put put put
- setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put
- setpagedevice"
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
- setpagedevice"
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
- setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "9.9001 11.2801 600.78 779.28 "
-*ImageableArea Legal/US Legal: "11.28 13.62 602.64 995.46 "
-*ImageableArea Tabloid: "13.4401 15.8401 777.6 1209.24 "
-*ImageableArea A3: "14.4 16.32 828.48 1174.68 "
-*ImageableArea A4: "10.62 12.24 583.5 830.16 "
-*ImageableArea A5: "11.7601 9.6001 407.4 585.6 "
-*ImageableArea B4: "13.56 15.9001 716.28 1016.94 "
-*ImageableArea B5: "11.28 11.28 503.88 717.84 "
-*ImageableArea Executive: "11.3401 11.28 509.82 744.72 "
-*ImageableArea Statement: "10.0801 10.68 383.88 602.04 "
-*ImageableArea ExtraBig/Large Format 13" x 18": "15.84 14.8801 918.24 1277.88 "
-*ImageableArea MajorBig/Large Format 13" x 18.50": "15.84 17.0401 918.24 1316.04 "
-*ImageableArea Enormous/Large Format 13" x 20": "15.84 17.0401 918.24 1424.04 "
-*ImageableArea Env10/Comm10 Envelope: "11.28 9.6001 287.76 667.56 "
-*ImageableArea EnvMonarch/Monarch Envelope: "10.5601 13.4401 267.84 526.44 "
-*ImageableArea EnvC5/C5 Envelope: "6.4801 9.36 451.92 638.52 "
-*ImageableArea EnvDL/DL Envelope: "11.7601 13.4401 299.76 612.84 "
-*ImageableArea Postcard: "11.2801 12.18 272.4 407.46 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat
- (\n) print flush
-restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension Tabloid: "792 1224"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B4: "729 1032"
-*PaperDimension B5: "516 729"
-*PaperDimension Executive: "522 756"
-*PaperDimension Statement: "396 612"
-*PaperDimension ExtraBig/Large Format 13" x 18": "936 1296"
-*PaperDimension MajorBig/Large Format 13" x 18.50": "936 1332"
-*PaperDimension Enormous/Large Format 13" x 20": "936 1440"
-*PaperDimension Env10/Comm10 Envelope: "297 684"
-*PaperDimension EnvMonarch/Monarch Envelope: "279 540"
-*PaperDimension EnvC5/C5 Envelope: "459 649"
-*PaperDimension EnvDL/DL Envelope: "312 624"
-*PaperDimension Postcard: "284 419"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension A4Small/A4 Small: "595 842"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20.0 AnySetup *InputSlot
-*DefaultInputSlot: StandardCassette
-*InputSlot StandardCassette/Cassette (Standard): "
-currentpagedevice /InputAttributes get 0 get
-dup null eq
-{ pop }
-{ dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
-} ifelse"
-*End
-*InputSlot Multipurpose: "
-currentpagedevice /InputAttributes get 1 get
-dup null eq
-{ pop }
-{ dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
-} ifelse"
-*End
-*InputSlot OptionalCassette1/Cassette (Optional 1): "
-currentpagedevice /InputAttributes get 2 get
-dup null eq
-{ pop }
-{ dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
-} ifelse"
-*End
-*InputSlot OptionalCassette2/Cassette (Optional 2): "
-currentpagedevice /InputAttributes get 3 get
-dup null eq
-{ pop }
-{ dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
-} ifelse"
-*End
-*?InputSlot: "
-save
- 2 dict
- dup /0 (StandardCassette) put
- dup /1 (Multipurpose) put
- dup /2 (OptionalCassette1) put
- dup /3 (OptionalCassette2) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 30.0 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 30.0 AnySetup *TraySwitch
-*DefaultTraySwitch: True
-*TraySwitch True/On: "
- statusdict begin product (LaserWriter 12/640 PS) eq end
- currentpagedevice /Duplex 2 copy known {get}{pop pop false}ifelse and
- { currentpagedevice /InputAttributes get
- /Priority 2 copy known
- { get [ exch {dup 1 eq {pop}if}bind forall ]
- 1 dict dup /InputAttributes 1 dict dup /Priority
- 7 -1 roll put put setpagedevice
- }{pop pop}ifelse
- }if
- 1 dict dup /TraySwitch true put setpagedevice
-"
-*End
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
- save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard ROM
-*Font AlbertusMT-Light: Standard "(001.000)" Standard ROM
-*Font AlbertusMT: Standard "(001.000)" Standard ROM
-*Font AntiqueOlive-Bold: Standard "(501.009)" Standard ROM
-*Font AntiqueOlive-Compact: Standard "(501.008)" Standard ROM
-*Font AntiqueOlive-Italic: Standard "(501.010)" Standard ROM
-*Font AntiqueOlive-Roman: Standard "(501.008)" Standard ROM
-*Font AntiqueOliveCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font AntiqueOliveCE-Compact: Win1250 "(501.008)" ExtendedRoman ROM
-*Font AntiqueOliveCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
-*Font AntiqueOliveCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
-*Font Apple-Chancery: Standard "(001.001)" Standard ROM
-*Font Apple-ChanceryCE: Win1250 "(001.001)" ExtendedRoman ROM
-*Font Arial-BoldItalicMT: Standard "(501.009)" Standard ROM
-*Font Arial-BoldMT: Standard "(501.009)" Standard ROM
-*Font Arial-ItalicMT: Standard "(501.012)" Standard ROM
-*Font ArialCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font ArialCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font ArialCE-Italic: Win1250 "(501.012)" ExtendedRoman ROM
-*Font ArialCE: Win1250 "(501.009)" ExtendedRoman ROM
-*Font ArialMT: Standard "(501.009)" Standard ROM
-*Font AvantGarde-Book: Standard "(501.009)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(501.009)" Standard ROM
-*Font AvantGarde-Demi: Standard "(501.010)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(501.010)" Standard ROM
-*Font AvantGardeCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
-*Font AvantGardeCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font AvantGardeCE-Demi: Win1250 "(501.010)" ExtendedRoman ROM
-*Font AvantGardeCE-DemiOblique: Win1250 "(501.010)" ExtendedRoman ROM
-*Font Bodoni-Bold: Standard "(501.006)" Standard ROM
-*Font Bodoni-BoldItalic: Standard "(501.007)" Standard ROM
-*Font Bodoni-Italic: Standard "(501.007)" Standard ROM
-*Font Bodoni-Poster: Standard "(501.009)" Standard ROM
-*Font Bodoni-PosterCompressed: Standard "(501.007)" Standard ROM
-*Font Bodoni: Standard "(501.008)" Standard ROM
-*Font BodoniCE-Bold: Win1250 "(501.006)" ExtendedRoman ROM
-*Font BodoniCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
-*Font BodoniCE-Italic: Win1250 "(501.007)" ExtendedRoman ROM
-*Font BodoniCE-Poster: Win1250 "(501.009)" ExtendedRoman ROM
-*Font BodoniCE-PosterCompressed: Win1250 "(501.007)" ExtendedRoman ROM
-*Font BodoniCE: Win1250 "(501.008)" ExtendedRoman ROM
-*Font Bookman-Demi: Standard "(501.007)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(501.008)" Standard ROM
-*Font Bookman-Light: Standard "(501.006)" Standard ROM
-*Font Bookman-LightItalic: Standard "(501.007)" Standard ROM
-*Font BookmanCE-Demi: Win1250 "(501.007)" ExtendedRoman ROM
-*Font BookmanCE-DemiItalic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font BookmanCE-Light: Win1250 "(501.006)" ExtendedRoman ROM
-*Font BookmanCE-LightItalic: Win1250 "(501.007)" ExtendedRoman ROM
-*Font Carta: Special "(001.001)" Standard ROM
-*Font Chicago: Standard "(501.011)" Standard ROM
-*Font ChicagoCE: Win1250 "(501.011)" ExtendedRoman ROM
-*Font Clarendon-Bold: Standard "(501.008)" Standard ROM
-*Font Clarendon-Light: Standard "(501.009)" Standard ROM
-*Font Clarendon: Standard "(501.009)" Standard ROM
-*Font ClarendonCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font ClarendonCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
-*Font ClarendonCE: Win1250 "(501.009)" ExtendedRoman ROM
-*Font CooperBlack-Italic: Standard "(001.003)" Standard ROM
-*Font CooperBlack: Standard "(001.003)" Standard ROM
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard ROM
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard ROM
-*Font Coronet-Regular: Standard "(001.000)" Standard ROM
-*Font CoronetCE-Regular: Win1250 "(001.000)" ExtendedRoman ROM
-*Font Courier-Bold: Standard "(501.010)" Standard ROM
-*Font Courier-BoldOblique: Standard "(501.010)" Standard ROM
-*Font Courier-Oblique: Standard "(501.010)" Standard ROM
-*Font Courier: Standard "(501.010)" Standard ROM
-*Font CourierCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
-*Font CourierCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
-*Font CourierCE-Oblique: Win1250 "(501.010)" ExtendedRoman ROM
-*Font CourierCE: Win1250 "(501.010)" ExtendedRoman ROM
-*Font Eurostile-Bold: Standard "(501.008)" Standard ROM
-*Font Eurostile-BoldExtendedTwo: Standard "(501.008)" Standard ROM
-*Font Eurostile-ExtendedTwo: Standard "(501.010)" Standard ROM
-*Font Eurostile: Standard "(501.008)" Standard ROM
-*Font EurostileCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font EurostileCE-BoldExtendedTwo: Win1250 "(501.008)" ExtendedRoman ROM
-*Font EurostileCE-ExtendedTwo: Win1250 "(501.010)" ExtendedRoman ROM
-*Font EurostileCE: Win1250 "(501.008)" ExtendedRoman ROM
-*Font Geneva: Standard "(501.007)" Standard ROM
-*Font GenevaCE: Win1250 "(501.007)" ExtendedRoman ROM
-*Font GillSans-Bold: Standard "(501.007)" Standard ROM
-*Font GillSans-BoldCondensed: Standard "(501.006)" Standard ROM
-*Font GillSans-BoldItalic: Standard "(501.008)" Standard ROM
-*Font GillSans-Condensed: Standard "(501.007)" Standard ROM
-*Font GillSans-ExtraBold: Standard "(501.008)" Standard ROM
-*Font GillSans-Italic: Standard "(501.008)" Standard ROM
-*Font GillSans-Light: Standard "(501.009)" Standard ROM
-*Font GillSans-LightItalic: Standard "(501.009)" Standard ROM
-*Font GillSans: Standard "(501.009)" Standard ROM
-*Font GillSansCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
-*Font GillSansCE-BoldCondensed: Win1250 "(501.006)" ExtendedRoman ROM
-*Font GillSansCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font GillSansCE-Condensed: Win1250 "(501.007)" ExtendedRoman ROM
-*Font GillSansCE-ExtraBold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font GillSansCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font GillSansCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
-*Font GillSansCE-LightItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font GillSansCE-Roman: Win1250 "(501.009)" ExtendedRoman ROM
-*Font Goudy-Bold: Standard "(001.002)" Standard ROM
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard ROM
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard ROM
-*Font Goudy-Italic: Standard "(001.002)" Standard ROM
-*Font Goudy: Standard "(001.003)" Standard ROM
-*Font Helvetica-Bold: Standard "(501.010)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(501.010)" Standard ROM
-*Font Helvetica-Condensed-Bold: Standard "(501.009)" Standard ROM
-*Font Helvetica-Condensed-BoldObl: Standard "(501.009)" Standard ROM
-*Font Helvetica-Condensed-Oblique: Standard "(501.010)" Standard ROM
-*Font Helvetica-Condensed: Standard "(501.010)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(501.010)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(501.010)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(501.008)" Standard ROM
-*Font Helvetica-Narrow: Standard "(501.008)" Standard ROM
-*Font Helvetica-Oblique: Standard "(501.008)" Standard ROM
-*Font Helvetica: Standard "(501.008)" Standard ROM
-*Font HelveticaCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-BoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-Cond: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-CondBold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font HelveticaCE-CondBoldObl: Win1250 "(501.009)" ExtendedRoman ROM
-*Font HelveticaCE-CondObl: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-Narrow: Win1250 "(501.008)" ExtendedRoman ROM
-*Font HelveticaCE-NarrowBold: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-NarrowBoldOblique: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HelveticaCE-NarrowOblique: Win1250 "(501.008)" ExtendedRoman ROM
-*Font HelveticaCE-Oblique: Win1250 "(501.008)" ExtendedRoman ROM
-*Font HelveticaCE: Win1250 "(501.008)" ExtendedRoman ROM
-*Font HoeflerText-Black: Standard "(501.008)" Standard ROM
-*Font HoeflerText-BlackItalic: Standard "(501.009)" Standard ROM
-*Font HoeflerText-Italic: Standard "(501.010)" Standard ROM
-*Font HoeflerText-Ornaments: Special "(001.001)" Special ROM
-*Font HoeflerText-Regular: Standard "(501.009)" Standard ROM
-*Font HoeflerTextCE-Black: Win1250 "(501.008)" ExtendedRoman ROM
-*Font HoeflerTextCE-BlackItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font HoeflerTextCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
-*Font HoeflerTextCE-Regular: Win1250 "(501.009)" ExtendedRoman ROM
-*Font JoannaMT-Bold: Standard "(501.008)" Standard ROM
-*Font JoannaMT-BoldItalic: Standard "(501.008)" Standard ROM
-*Font JoannaMT-Italic: Standard "(501.008)" Standard ROM
-*Font JoannaMT: Standard "(501.009)" Standard ROM
-*Font JoannaMTCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font JoannaMTCE-BoldItalic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font JoannaMTCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font JoannaMTCE: Win1250 "(501.009)" ExtendedRoman ROM
-*Font LetterGothic-Bold: Standard "(501.010)" Standard ROM
-*Font LetterGothic-BoldSlanted: Standard "(501.010)" Standard ROM
-*Font LetterGothic-Slanted: Standard "(501.010)" Standard ROM
-*Font LetterGothic: Standard "(501.009)" Standard ROM
-*Font LetterGothicCE-Bold: Win1250 "(501.010)" ExtendedRoman ROM
-*Font LetterGothicCE-BoldSlanted: Win1250 "(501.010)" ExtendedRoman ROM
-*Font LetterGothicCE-Slanted: Win1250 "(501.010)" ExtendedRoman ROM
-*Font LetterGothicCE: Win1250 "(501.009)" ExtendedRoman ROM
-*Font LubalinGraph-Book: Standard "(501.009)" Standard ROM
-*Font LubalinGraph-BookOblique: Standard "(501.009)" Standard ROM
-*Font LubalinGraph-Demi: Standard "(501.009)" Standard ROM
-*Font LubalinGraph-DemiOblique: Standard "(501.009)" Standard ROM
-*Font LubalinGraphCE-Book: Win1250 "(501.009)" ExtendedRoman ROM
-*Font LubalinGraphCE-BookOblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font LubalinGraphCE-Demi: Win1250 "(501.009)" ExtendedRoman ROM
-*Font LubalinGraphCE-DemiOblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font Marigold: Standard "(001.000)" Standard ROM
-*Font MonaLisa-Recut: Standard "(001.000)" Standard ROM
-*Font Monaco: Standard "(501.012)" Standard ROM
-*Font MonacoCE: Win1250 "(501.012)" ExtendedRoman ROM
-*Font NewCenturySchlbk-Bold: Standard "(501.008)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(501.009)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(501.011)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(501.008)" Standard ROM
-*Font NewCenturySchlbkCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font NewCenturySchlbkCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font NewCenturySchlbkCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
-*Font NewCenturySchlbkCE-Roman: Win1250 "(501.008)" ExtendedRoman ROM
-*Font NewYork: Standard "(501.013)" Standard ROM
-*Font NewYorkCE: Win1250 "(501.013)" ExtendedRoman ROM
-*Font Optima-Bold: Standard "(501.008)" Standard ROM
-*Font Optima-BoldItalic: Standard "(501.009)" Standard ROM
-*Font Optima-Italic: Standard "(501.010)" Standard ROM
-*Font Optima: Standard "(501.010)" Standard ROM
-*Font OptimaCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font OptimaCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font OptimaCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
-*Font OptimaCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
-*Font Oxford: Standard "(001.000)" Standard ROM
-*Font Palatino-Bold: Standard "(501.008)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(501.007)" Standard ROM
-*Font Palatino-Italic: Standard "(501.008)" Standard ROM
-*Font Palatino-Roman: Standard "(501.006)" Standard ROM
-*Font PalatinoCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font PalatinoCE-BoldItalic: Win1250 "(501.007)" ExtendedRoman ROM
-*Font PalatinoCE-Italic: Win1250 "(501.008)" ExtendedRoman ROM
-*Font PalatinoCE-Roman: Win1250 "(501.006)" ExtendedRoman ROM
-*Font StempelGaramond-Bold: Standard "(501.007)" Standard ROM
-*Font StempelGaramond-BoldItalic: Standard "(501.012)" Standard ROM
-*Font StempelGaramond-Italic: Standard "(501.009)" Standard ROM
-*Font StempelGaramond-Roman: Standard "(501.011)" Standard ROM
-*Font StempelGaramondCE-Bold: Win1250 "(501.007)" ExtendedRoman ROM
-*Font StempelGaramondCE-BoldItalic: Win1250 "(501.012)" ExtendedRoman ROM
-*Font StempelGaramondCE-Italic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font StempelGaramondCE-Roman: Win1250 "(501.011)" ExtendedRoman ROM
-*Font Symbol: Special "(001.008)" Standard ROM
-*Font Tekton: Standard "(001.001)" Standard ROM
-*Font Times-Bold: Standard "(501.009)" Standard ROM
-*Font Times-BoldItalic: Standard "(501.009)" Standard ROM
-*Font Times-Italic: Standard "(501.010)" Standard ROM
-*Font Times-Roman: Standard "(501.010)" Standard ROM
-*Font TimesCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font TimesCE-BoldItalic: Win1250 "(501.009)" ExtendedRoman ROM
-*Font TimesCE-Italic: Win1250 "(501.010)" ExtendedRoman ROM
-*Font TimesCE-Roman: Win1250 "(501.010)" ExtendedRoman ROM
-*Font TimesNewRomanCE-Bold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font TimesNewRomanCE-BoldItalic: Win1250 "(501.011)" ExtendedRoman ROM
-*Font TimesNewRomanCE-Italic: Win1250 "(501.011)" ExtendedRoman ROM
-*Font TimesNewRomanCE: Win1250 "(501.010)" ExtendedRoman ROM
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(501.011)" Standard ROM
-*Font TimesNewRomanPS-BoldMT: Standard "(501.009)" Standard ROM
-*Font TimesNewRomanPS-ItalicMT: Standard "(501.011)" Standard ROM
-*Font TimesNewRomanPSMT: Standard "(501.010)" Standard ROM
-*Font Univers-Bold: Standard "(501.008)" Standard ROM
-*Font Univers-BoldExt: Standard "(501.010)" Standard ROM
-*Font Univers-BoldExtObl: Standard "(501.010)" Standard ROM
-*Font Univers-BoldOblique: Standard "(501.008)" Standard ROM
-*Font Univers-Condensed: Standard "(501.011)" Standard ROM
-*Font Univers-CondensedBold: Standard "(501.009)" Standard ROM
-*Font Univers-CondensedBoldOblique: Standard "(501.009)" Standard ROM
-*Font Univers-CondensedOblique: Standard "(501.011)" Standard ROM
-*Font Univers-Extended: Standard "(501.009)" Standard ROM
-*Font Univers-ExtendedObl: Standard "(501.009)" Standard ROM
-*Font Univers-Light: Standard "(501.009)" Standard ROM
-*Font Univers-LightOblique: Standard "(501.009)" Standard ROM
-*Font Univers-Oblique: Standard "(501.009)" Standard ROM
-*Font Univers: Standard "(501.009)" Standard ROM
-*Font UniversCE-Bold: Win1250 "(501.008)" ExtendedRoman ROM
-*Font UniversCE-BoldExt: Win1250 "(501.010)" ExtendedRoman ROM
-*Font UniversCE-BoldExtObl: Win1250 "(501.010)" ExtendedRoman ROM
-*Font UniversCE-BoldOblique: Win1250 "(501.008)" ExtendedRoman ROM
-*Font UniversCE-Condensed: Win1250 "(501.011)" ExtendedRoman ROM
-*Font UniversCE-CondensedBold: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-CondensedBoldOblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-CondensedOblique: Win1250 "(501.011)" ExtendedRoman ROM
-*Font UniversCE-Extended: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-ExtendedObl: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-Light: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-LightOblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-Medium: Win1250 "(501.009)" ExtendedRoman ROM
-*Font UniversCE-Oblique: Win1250 "(501.009)" ExtendedRoman ROM
-*Font Wingdings-Regular: Special "(001.001)" Special ROM
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard ROM
-*Font ZapfChanceryCE-MediumItalic: Win1250 "(002.000)" ExtendedRoman ROM
-*Font ZapfDingbats: Special "(002.000)" Standard ROM
-
-*?FontQuery: "
-save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- (*) {(/)print print (\n)print}bind 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: check if engine is connected"
-*Status: "PrinterError: fuser temperature malfunction"
-*Status: "PrinterError: service call - ROS motor"
-*Status: "PrinterError: service call - fan alarm"
-*Status: "PrinterError: service call - main motor"
-*Status: "PrinterError: service call - NVM"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: top cover open"
-*Status: "PrinterError: fuser cover open"
-*Status: "PrinterError: duplex unit rear cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: cassette fail"
-*Status: "PrinterError: Cassette (Standard): no paper tray"
-*Status: "PrinterError: Cassette (Optional 1): no paper tray"
-*Status: "PrinterError: Cassette (Optional 2): no paper tray"
-*Status: "PrinterError: Multipurpose Tray: no cassette"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: Cassette (Standard): out of paper"
-*Status: "PrinterError: Cassette (Optional 1): out of paper"
-*Status: "PrinterError: Cassette (Optional 2): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Output Tray Full"
-*Status: "PrinterError: Illegal size at duplex mode"
-*Status: "PrinterError: Cassette (Standard): Illegal size at duplex mode"
-*Status: "PrinterError: Cassette (Optional 1): Illegal size at duplex mode"
-*Status: "PrinterError: Cassette (Optional 2): Illegal size at duplex mode"
-*Status: "PrinterError: Multipurpose Tray: Illegal size at duplex mode"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: paper registration misfeed"
-*Status: "PrinterError: paper duplex misfeed"
-*Status: "PrinterError: paper early feed jam"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: incorrect paper size setting"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "check if engine is connected"
-*PrinterError: "fuser temperature malfunction"
-*PrinterError: "service call - ROS motor"
-*PrinterError: "service call - fan alarm"
-*PrinterError: "service call - main motor"
-*PrinterError: "service call - NVM"
-*PrinterError: "service call"
-*PrinterError: "top cover open"
-*PrinterError: "fuser cover open"
-*PrinterError: "duplex unit rear cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "cassette fail"
-*PrinterError: "Cassette (Standard): no paper tray"
-*PrinterError: "Cassette (Optional 1): no paper tray"
-*PrinterError: "Cassette (Optional 2): no paper tray"
-*PrinterError: "Multipurpose Tray: no cassette"
-*PrinterError: "out of paper"
-*PrinterError: "Cassette (Standard): out of paper"
-*PrinterError: "Cassette (Optional 1): out of paper"
-*PrinterError: "Cassette (Optional 2): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Output Tray Full"
-*PrinterError: "Illegal size at duplex mode"
-*PrinterError: "Cassette (Standard): Illegal size at duplex mode"
-*PrinterError: "Cassette (Optional 1): Illegal size at duplex mode"
-*PrinterError: "Cassette (Optional 2): Illegal size at duplex mode"
-*PrinterError: "Multipurpose Tray: Illegal size at duplex mode"
-*PrinterError: "paper jam"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "paper registration misfeed"
-*PrinterError: "paper duplex misfeed"
-*PrinterError: "paper early feed jam"
-*PrinterError: "test printing stage"
-*PrinterError: "incorrect paper size setting"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Last Edit Date: Oct 17 1997
-*% The byte count of this file should be exactly 043414 or 044495
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter 8500
diff --git a/psprint_config/configuration/ppds/APLWCOB1.PS b/psprint_config/configuration/ppds/APLWCOB1.PS
deleted file mode 100644
index d6c6daee0c39..000000000000
--- a/psprint_config/configuration/ppds/APLWCOB1.PS
+++ /dev/null
@@ -1,565 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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.2"
-*FileVersion: "1.2"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWCOB1.PPD"
-*Product: "(Color LaserWriter 12/600 PS)"
-*PSVersion: "(2014.108) 1"
-*ModelName: "LaserWriter Color 12/600 PS"
-*ShortNickName: "Apple Color LaserWriter 12/600"
-*NickName: "Apple Color LaserWriter 12/600 PS v2014.108"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 12Meg
-*InstalledMemory 12Meg/Standard 12 MB: ""
-*InstalledMemory 13Meg/13 MB Upgrade: ""
-*InstalledMemory 16Meg/16 MB Upgrade: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 25Meg/25 MB Upgrade: ""
-*InstalledMemory 28Meg/28 MB Upgrade: ""
-*InstalledMemory 40Meg/40 MB Upgrade: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- = flush
- restore
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *Option1/Cassette (Optional): PickOne
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*Option1 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1] put put setpagedevice"
-*End
-*?Option1: "
- save
- (False)
- currentpagedevice /InputAttributes get
- dup 2 known { 2 get null ne {pop (True)}if }{pop}ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *Option1
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot OptionalCassette
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: TBCP
-*TTRasterizer: Type42
-
-*FreeVM: "1609392"
-*VMOption 12Meg: "1609392"
-*VMOption 13Meg: "2633392"
-*VMOption 16Meg: "3911344"
-*VMOption 24Meg: "5402684"
-*VMOption 25Meg: "7401136"
-*VMOption 28Meg: "5795504"
-*VMOption 40Meg: "13717168"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "12"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*Resolution 600dpi: ""
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*OpenUI *MediaType/Paper Type: PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain: "
- 2 dict
- dup /MediaType (Plain) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Plain) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*MediaType Transparency/Transparency: "
- 2 dict
- dup /MediaType (Transparency) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Transparency) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*?MediaType: "
- save
- currentpagedevice /MediaType get dup null eq
- { pop (Plain) }
- {
- (Transparency) ne {
- (Plain)
- }{
- (Transparency)
- } ifelse
- }ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *MediaType
-
-*OpenUI *OutputMode/Print Quality Mode: PickOne
-*OrderDependency: 50 AnySetup *OutputMode
-*DefaultOutputMode: Normal
-*OutputMode Normal/Normal (Fastest Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Normal put put
- setpagedevice "
-*End
-*OutputMode Best/Best (Slower Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Best put put
- setpagedevice "
-*End
-*?OutputMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get
- /OutputMode get = flush
- restore "
-*End
-*CloseUI: *OutputMode
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-*% Halftone Information ===============
-*ScreenFreq: "200.0"
-*ScreenAngle: "0.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "14.16 14.1601 597.84 769.32 "
-*ImageableArea Legal/US Legal: "14.16 14.1601 597.84 985.32 "
-*ImageableArea A4: "14.1601 14.2401 582.48 819.32 "
-*ImageableArea B5: "14.16 14.7 501.84 706.38 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: StandardCassette
-*InputSlot StandardCassette/Cassette (Standard): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot OptionalCassette/Cassette (Optional): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (StandardCassette) put
- dup /1 (Multipurpose) put
- dup /2 (OptionalCassette) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-Condensed: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" 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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {(/)print print (\n)print}bind 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: door open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (Standard): no paper tray"
-*Status: "PrinterError: Cassette (Standard): out of paper"
-*Status: "PrinterError: Cassette (Optional): no paper tray"
-*Status: "PrinterError: Cassette (Optional): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "PrintServer"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "door open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (Standard): no paper tray"
-*PrinterError: "Cassette (Standard): out of paper"
-*PrinterError: "Cassette (Optional): no paper tray"
-*PrinterError: "Cassette (Optional): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 200 lpi / 600 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "200"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Nov 16 1995
-*% The byte count of this file should be exactly 018026 or 018591
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple Color LaserWriter 12/600 PS
diff --git a/psprint_config/configuration/ppds/APLWCSB1.PS b/psprint_config/configuration/ppds/APLWCSB1.PS
deleted file mode 100644
index de62117134e0..000000000000
--- a/psprint_config/configuration/ppds/APLWCSB1.PS
+++ /dev/null
@@ -1,580 +0,0 @@
-*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"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWCSB1.PPD"
-*Manufacturer: "Apple"
-*Product: "(Color LaserWriter 12/660 PS)"
-*PSVersion: "(2014.108) 2"
-*ModelName: "LaserWriter Color 12/660 PS"
-*ShortNickName: "Apple Color LaserWriter 12/660"
-*NickName: "Apple Color LaserWriter 12/660 PS v2014.108"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 16Meg
-*InstalledMemory 16Meg/Standard 16 MB: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 25Meg/25 MB Upgrade: ""
-*InstalledMemory 28Meg/28 MB Upgrade: ""
-*InstalledMemory 40Meg/40 MB Upgrade: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get
- 1048576 div cvi 6 string cvs dup length dup 3 add string dup 0 4 index
- putinterval dup 2 index (Meg) putinterval exch pop exch pop = flush
- restore
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *APOptionalCassette1/Cassette (Optional): PickOne
-*OrderDependency: 10 AnySetup *APOptionalCassette1
-*DefaultAPOptionalCassette1: False
-*APOptionalCassette1 True/Installed: ""
-*APOptionalCassette1 False/Not Installed: ""
-*APOptionalCassette1 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1] put put setpagedevice"
-*End
-*?APOptionalCassette1: "
- save
- currentpagedevice /InputAttributes get
- dup 2 known
- {dup 2 get null ne {
- /Priority 2 copy known {
- get 0 get 2 eq {(Preferred)}{(True)}ifelse
- } {
- pop pop (True)
- } ifelse
- }{
- pop (False)
- }ifelse}
- {pop (False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *APOptionalCassette1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *APOptionalCassette1 False *InputSlot OptionalCassette
-*UIConstraints: *InputSlot OptionalCassette *APOptionalCassette1 False
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: TBCP
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42 /FontType resourcestatus
- {pop pop (Type42)}{(None)}ifelse = flush
- restore
-"
-*End
-
-*FreeVM: "3911344"
-*VMOption 16Meg: "3911344"
-*VMOption 24Meg: "5402684"
-*VMOption 25Meg: "7401136"
-*VMOption 28Meg: "5795504"
-*VMOption 40Meg: "13717168"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "12"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*Resolution 600dpi: ""
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 20 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
- save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*OpenUI *MediaType/Paper Type: PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain: "
- 2 dict
- dup /MediaType (Plain) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Plain) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*MediaType Transparency/Transparency: "
- 2 dict
- dup /MediaType (Transparency) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Transparency) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*?MediaType: "
- save
- currentpagedevice /MediaType get dup null eq
- { pop (Plain) }
- {
- (Transparency) ne {
- (Plain)
- }{
- (Transparency)
- } ifelse
- }ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *MediaType
-
-*OpenUI *OutputMode/Print Quality Mode: PickOne
-*OrderDependency: 20 AnySetup *OutputMode
-*DefaultOutputMode: Normal
-*OutputMode Normal/Normal (Fastest Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Normal put put
- setpagedevice "
-*End
-*OutputMode Best/Best (Slower Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Best put put
- setpagedevice "
-*End
-*?OutputMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get
- /OutputMode get = flush
- restore "
-*End
-*CloseUI: *OutputMode
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*SuggestedManualFeedTimeout: "300"
-*PrintPSErrors: False
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "0.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 20 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) 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
- currentpagedevice /ImagingBBox get null ne {
- % Form LetterSmall, LegalSmall, or A4Small
- dup length dup 5 add string dup dup 0 5 index putinterval
- 3 -1 roll (Small) putinterval exch pop
- } if
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 20 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "14.16 14.1601 597.84 769.32 "
-*ImageableArea Legal/US Legal: "14.16 14.1601 597.84 985.32 "
-*ImageableArea A4: "14.1601 14.2401 582.48 819.32 "
-*ImageableArea B5: "14.16 14.7 501.84 706.38 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: StandardCassette
-*InputSlot StandardCassette/Cassette (Standard): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot OptionalCassette/Cassette (Optional): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (StandardCassette) put
- dup /1 (Multipurpose) put
- dup /2 (OptionalCassette) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-Condensed: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" 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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {(/)print print (\n)print}bind 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: door open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (Standard): no paper tray"
-*Status: "PrinterError: Cassette (Standard): out of paper"
-*Status: "PrinterError: Cassette (Optional): no paper tray"
-*Status: "PrinterError: Cassette (Optional): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "PrintServer"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "door open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (Standard): no paper tray"
-*PrinterError: "Cassette (Standard): out of paper"
-*PrinterError: "Cassette (Optional): no paper tray"
-*PrinterError: "Cassette (Optional): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 200 lpi / 600 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "200"
-
-*% Last Edit Date: Sep 10 1996
-*% The byte count of this file should be exactly 018570 or 019150
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple Color LaserWriter 12/660 PS
diff --git a/psprint_config/configuration/ppds/APLWGRF1.PS b/psprint_config/configuration/ppds/APLWGRF1.PS
deleted file mode 100644
index 306ff761770b..000000000000
--- a/psprint_config/configuration/ppds/APLWGRF1.PS
+++ /dev/null
@@ -1,747 +0,0 @@
-*PPD-Adobe: "4.2"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.2"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWGRF1.PPD"
-*Product: "(LaserWriter 16/600 PS Fax)"
-*PSVersion: "(2014.106) 1"
-*ModelName: "Apple LaserWriter 16/600 PS Fax"
-*ShortNickName: "Apple LaserWriter 16/600 PS Fax"
-*NickName: "Apple LaserWriter 16/600 PS Fax v2014.106"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 8Meg
-*InstalledMemory 8Meg/Standard 8 MB RAM: ""
-*InstalledMemory 12Meg/12 MB Upgrade: ""
-*InstalledMemory 16Meg/16 MB Upgrade: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 32Meg/32 MB Upgrade: ""
-*?InstalledMemory: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *Option2/Cassette (500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put
-setpagedevice"
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*?Option3: "
- save
- currentpagedevice
- /InputAttributes get
- 3 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *InstalledMemory 8Meg *BitsPerPixel 4
-
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize A5 *InputSlot Upper
-*UIConstraints: *PageSize A5 *InputSlot Lower
-*UIConstraints: *PageSize Com10 *InputSlot Upper
-*UIConstraints: *PageSize Com10 *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot Upper
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot Upper
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot Upper
-*UIConstraints: *PageSize DL *InputSlot Lower
-
-*UIConstraints: *PageRegion A5 *InputSlot Upper
-*UIConstraints: *PageRegion A5 *InputSlot Lower
-*UIConstraints: *PageRegion Com10 *InputSlot Upper
-*UIConstraints: *PageRegion Com10 *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot Upper
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot Upper
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot Upper
-*UIConstraints: *PageRegion DL *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *PageSize A5
-*UIConstraints: *InputSlot Lower *PageSize A5
-*UIConstraints: *InputSlot Upper *PageSize Com10
-*UIConstraints: *InputSlot Lower *PageSize Com10
-*UIConstraints: *InputSlot Upper *PageSize Monarch
-*UIConstraints: *InputSlot Lower *PageSize Monarch
-*UIConstraints: *InputSlot Upper *PageSize C5
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *InputSlot Upper *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize DL
-
-*UIConstraints: *InputSlot Upper *PageRegion A5
-*UIConstraints: *InputSlot Lower *PageRegion A5
-*UIConstraints: *InputSlot Upper *PageRegion Com10
-*UIConstraints: *InputSlot Lower *PageRegion Com10
-*UIConstraints: *InputSlot Upper *PageRegion Monarch
-*UIConstraints: *InputSlot Lower *PageRegion Monarch
-*UIConstraints: *InputSlot Upper *PageRegion C5
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *InputSlot Upper *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion DL
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: LaserJetIII
-*StartEmulator_LaserJetIII: "currentfile /LaserJetIII statusdict /emulate
-get exec "
-*End
-*StopEmulator_LaserJetIII: "<1B>E"
-*TTRasterizer: Type42
-*FaxSupport: Base
-
-*FreeVM: "1539456"
-*VMOption 8Meg: "1539456"
-*VMOption 12Meg: "1662336"
-*VMOption 16Meg: "5815680"
-*VMOption 24Meg: "14114176"
-*VMOption 32Meg: "22396288"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "16"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-
-*% Halftone Information ===============
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1
-exch sub }"
-*End
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict dup /PostRenderingEnhance true put setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict dup /PostRenderingEnhance false put setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): PickOne
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict dup /PreRenderingEnhance true put setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict dup /PreRenderingEnhance false put setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put
- setpagedevice "
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
-setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
-setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983]
-put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[279 540] put put put
- setpagedevice
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize Com10/Comm10 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[297 684] put put put
- setpagedevice
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize C5/C5 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[459 649] put put put
- setpagedevice
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize DL/DL Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[312 624]put put put
- setpagedevice
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice "
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [420 595] (A5) put
- dup [297 684] (Com10) put
- dup [279 540] (Monarch) put
- dup [459 649] (C5) put
- dup [312 624] (DL) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792]
-put put put
- setpagedevice} if "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put
-put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612
-1008] put put put
- setpagedevice} if "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842]
-put put put
- setpagedevice} if "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put
-put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [516
-729] put put put
- setpagedevice} if "
-*End
-*PageRegion A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put
-put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [420
-595] put put put
- setpagedevice} if "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792]
-put put put
- setpagedevice} if "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842]
-put put put
- setpagedevice} if "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put
-put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612
-1008] put put put
- setpagedevice} if "
-*End
-*PageRegion Monarch/Monarch Envelope: "
- 3 dict dup /PageSize [279 540] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [279 540] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [279 540]
-put put put
- setpagedevice} if "
-*End
-*PageRegion Com10/Comm10 Envelope: "
- 3 dict dup /PageSize [297 684] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [297 684] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [297 684]
-put put put
- setpagedevice} if "
-*End
-*PageRegion C5/C5 Envelope: "
- 3 dict dup /PageSize [459 649] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [459 649] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [459 649]
-put put put
- setpagedevice} if "
-*End
-*PageRegion DL/DL Envelope: "
- 3 dict dup /PageSize [312 624] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [312 624] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [312 624]
-put put put
- setpagedevice} if "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "11.52 14.1601 599.04 782.04 "
-*ImageableArea Legal/US Legal: "11.52 14.1601 599.04 998.04 "
-*ImageableArea A4: "10.68 14.1601 582.84 831.96 "
-*ImageableArea B5: "11.52 14.2201 503.04 719.1 "
-*ImageableArea A5: "10.56 14.1601 409.92 585.0 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Com10/Comm10 Envelope: "11.4 14.1601 284.04 674.04 "
-*ImageableArea Monarch/Monarch Envelope: "10.0801 14.1601 267.36 530.04 "
-*ImageableArea C5/C5 Envelope: "11.7601 14.1601 445.68 639.0 "
-*ImageableArea DL/DL Envelope: "11.28 14.1601 299.28 614.04 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension A5: "420 595"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Com10/Comm10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension DL/DL Envelope: "312 624"
-
-*RequiresPageRegion Multipurpose: True
-*RequiresPageRegion Envelope: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Cassette (500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- dup /3 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" 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-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 Helvetica-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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (250 Sheets): out of paper"
-*Status: "PrinterError: Cassette (500 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (500 Sheets): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Envelope Feeder: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-*Status: "PrinterError: Page image timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "RemotePrinter"
-*Source: "PrintServer"
-*Source: "LPR"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheets): no paper tray"
-*PrinterError: "Cassette (250 Sheets): out of paper"
-*PrinterError: "Cassette (500 Sheets): no paper tray"
-*PrinterError: "Cassette (500 Sheets): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Envelope Feeder: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-*PrinterError: "Page image timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Aug 12 1994
-*% The byte count of this file should be exactly 025725 or 026472
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter 16/600 PS Fax
diff --git a/psprint_config/configuration/ppds/APLWGRI1.PS b/psprint_config/configuration/ppds/APLWGRI1.PS
deleted file mode 100644
index 66d2e8e51594..000000000000
--- a/psprint_config/configuration/ppds/APLWGRI1.PS
+++ /dev/null
@@ -1,746 +0,0 @@
-*PPD-Adobe: "4.2"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.2"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWGRI1.PPD"
-*Product: "(LaserWriter 16/600 PS)"
-*PSVersion: "(2014.106) 1"
-*ModelName: "Apple LaserWriter 16/600 PS"
-*ShortNickName: "Apple LaserWriter 16/600 PS"
-*NickName: "Apple LaserWriter 16/600 PS v2014.106"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 8Meg
-*InstalledMemory 8Meg/Standard 8 MB RAM: ""
-*InstalledMemory 12Meg/12 MB Upgrade: ""
-*InstalledMemory 16Meg/16 MB Upgrade: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 32Meg/32 MB Upgrade: ""
-*?InstalledMemory: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *Option2/Cassette (500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put
-setpagedevice"
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*?Option3: "
- save
- currentpagedevice
- /InputAttributes get
- 3 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *InstalledMemory 8Meg *BitsPerPixel 4
-
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize A5 *InputSlot Upper
-*UIConstraints: *PageSize A5 *InputSlot Lower
-*UIConstraints: *PageSize Com10 *InputSlot Upper
-*UIConstraints: *PageSize Com10 *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot Upper
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot Upper
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot Upper
-*UIConstraints: *PageSize DL *InputSlot Lower
-
-*UIConstraints: *PageRegion A5 *InputSlot Upper
-*UIConstraints: *PageRegion A5 *InputSlot Lower
-*UIConstraints: *PageRegion Com10 *InputSlot Upper
-*UIConstraints: *PageRegion Com10 *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot Upper
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot Upper
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot Upper
-*UIConstraints: *PageRegion DL *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *PageSize A5
-*UIConstraints: *InputSlot Lower *PageSize A5
-*UIConstraints: *InputSlot Upper *PageSize Com10
-*UIConstraints: *InputSlot Lower *PageSize Com10
-*UIConstraints: *InputSlot Upper *PageSize Monarch
-*UIConstraints: *InputSlot Lower *PageSize Monarch
-*UIConstraints: *InputSlot Upper *PageSize C5
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *InputSlot Upper *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize DL
-
-*UIConstraints: *InputSlot Upper *PageRegion A5
-*UIConstraints: *InputSlot Lower *PageRegion A5
-*UIConstraints: *InputSlot Upper *PageRegion Com10
-*UIConstraints: *InputSlot Lower *PageRegion Com10
-*UIConstraints: *InputSlot Upper *PageRegion Monarch
-*UIConstraints: *InputSlot Lower *PageRegion Monarch
-*UIConstraints: *InputSlot Upper *PageRegion C5
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *InputSlot Upper *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion DL
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: LaserJetIII
-*StartEmulator_LaserJetIII: "currentfile /LaserJetIII statusdict /emulate
-get exec "
-*End
-*StopEmulator_LaserJetIII: "<1B>E"
-*TTRasterizer: Type42
-
-*FreeVM: "1539456"
-*VMOption 8Meg: "1539456"
-*VMOption 12Meg: "1662336"
-*VMOption 16Meg: "5815680"
-*VMOption 24Meg: "14114176"
-*VMOption 32Meg: "22396288"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "16"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-
-*% Halftone Information ===============
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1
-exch sub }"
-*End
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict dup /PostRenderingEnhance true put setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict dup /PostRenderingEnhance false put setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): PickOne
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict dup /PreRenderingEnhance true put setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict dup /PreRenderingEnhance false put setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put
- setpagedevice "
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
-setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
-setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983]
-put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[279 540] put put put
- setpagedevice
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize Com10/Comm10 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[297 684] put put put
- setpagedevice
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize C5/C5 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[459 649] put put put
- setpagedevice
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize DL/DL Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize
-[312 624]put put put
- setpagedevice
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice "
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [420 595] (A5) put
- dup [297 684] (Com10) put
- dup [279 540] (Monarch) put
- dup [459 649] (C5) put
- dup [312 624] (DL) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792]
-put put put
- setpagedevice} if "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put
-put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612
-1008] put put put
- setpagedevice} if "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842]
-put put put
- setpagedevice} if "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put
-put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [516
-729] put put put
- setpagedevice} if "
-*End
-*PageRegion A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put
-put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [420
-595] put put put
- setpagedevice} if "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792]
-put put put
- setpagedevice} if "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842]
-put put put
- setpagedevice} if "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put
-put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612
-1008] put put put
- setpagedevice} if "
-*End
-*PageRegion Monarch/Monarch Envelope: "
- 3 dict dup /PageSize [279 540] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [279 540] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [279 540]
-put put put
- setpagedevice} if "
-*End
-*PageRegion Com10/Comm10 Envelope: "
- 3 dict dup /PageSize [297 684] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [297 684] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [297 684]
-put put put
- setpagedevice} if "
-*End
-*PageRegion C5/C5 Envelope: "
- 3 dict dup /PageSize [459 649] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [459 649] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [459 649]
-put put put
- setpagedevice} if "
-*End
-*PageRegion DL/DL Envelope: "
- 3 dict dup /PageSize [312 624] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [312 624] put put
-put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [312 624]
-put put put
- setpagedevice} if "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "11.52 14.1601 599.04 782.04 "
-*ImageableArea Legal/US Legal: "11.52 14.1601 599.04 998.04 "
-*ImageableArea A4: "10.68 14.1601 582.84 831.96 "
-*ImageableArea B5: "11.52 14.2201 503.04 719.1 "
-*ImageableArea A5: "10.56 14.1601 409.92 585.0 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Com10/Comm10 Envelope: "11.4 14.1601 284.04 674.04 "
-*ImageableArea Monarch/Monarch Envelope: "10.0801 14.1601 267.36 530.04 "
-*ImageableArea C5/C5 Envelope: "11.7601 14.1601 445.68 639.0 "
-*ImageableArea DL/DL Envelope: "11.28 14.1601 299.28 614.04 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension A5: "420 595"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Com10/Comm10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension DL/DL Envelope: "312 624"
-
-*RequiresPageRegion Multipurpose: True
-*RequiresPageRegion Envelope: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Cassette (500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- dup /3 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" 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-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 Helvetica-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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (250 Sheets): out of paper"
-*Status: "PrinterError: Cassette (500 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (500 Sheets): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Envelope Feeder: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-*Status: "PrinterError: Page image timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "RemotePrinter"
-*Source: "PrintServer"
-*Source: "LPR"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheets): no paper tray"
-*PrinterError: "Cassette (250 Sheets): out of paper"
-*PrinterError: "Cassette (500 Sheets): no paper tray"
-*PrinterError: "Cassette (500 Sheets): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Envelope Feeder: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-*PrinterError: "Page image timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Aug 12 1994
-*% The byte count of this file should be exactly 025687 or 026433
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter 16/600 PS
diff --git a/psprint_config/configuration/ppds/APLWGRJ1.PS b/psprint_config/configuration/ppds/APLWGRJ1.PS
deleted file mode 100644
index af9da083c3a2..000000000000
--- a/psprint_config/configuration/ppds/APLWGRJ1.PS
+++ /dev/null
@@ -1,709 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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.2"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWGRJ1.PPD"
-*Product: "(LaserWriter 16/600 PS-J)"
-*PSVersion: "(2014.106) 1"
-*ModelName: "Apple LaserWriter 16/600 PS-J"
-*ShortNickName: "Apple LaserWriter 16/600 PS-J"
-*NickName: "Apple LaserWriter 16/600 PS-J v2014.106"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 8Meg
-*InstalledMemory 8Meg/Standard 8 MB RAM: ""
-*InstalledMemory 12Meg/12 MB Upgrade: ""
-*InstalledMemory 16Meg/16 MB Upgrade: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 32Meg/32 MB Upgrade: ""
-*?InstalledMemory: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *Option2/Cassette (500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put setpagedevice"
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*?Option3: "
- save
- currentpagedevice
- /InputAttributes get
- 3 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *InstalledMemory 8Meg *BitsPerPixel 4
-*UIConstraints: *InstalledMemory 12Meg *BitsPerPixel 4
-
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize A5 *InputSlot Upper
-*UIConstraints: *PageSize A5 *InputSlot Lower
-*UIConstraints: *PageSize Com10 *InputSlot Upper
-*UIConstraints: *PageSize Com10 *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot Upper
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot Upper
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot Upper
-*UIConstraints: *PageSize DL *InputSlot Lower
-
-*UIConstraints: *PageRegion A5 *InputSlot Upper
-*UIConstraints: *PageRegion A5 *InputSlot Lower
-*UIConstraints: *PageRegion Com10 *InputSlot Upper
-*UIConstraints: *PageRegion Com10 *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot Upper
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot Upper
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot Upper
-*UIConstraints: *PageRegion DL *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *PageSize A5
-*UIConstraints: *InputSlot Lower *PageSize A5
-*UIConstraints: *InputSlot Upper *PageSize Com10
-*UIConstraints: *InputSlot Lower *PageSize Com10
-*UIConstraints: *InputSlot Upper *PageSize Monarch
-*UIConstraints: *InputSlot Lower *PageSize Monarch
-*UIConstraints: *InputSlot Upper *PageSize C5
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *InputSlot Upper *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize DL
-
-*UIConstraints: *InputSlot Upper *PageRegion A5
-*UIConstraints: *InputSlot Lower *PageRegion A5
-*UIConstraints: *InputSlot Upper *PageRegion Com10
-*UIConstraints: *InputSlot Lower *PageRegion Com10
-*UIConstraints: *InputSlot Upper *PageRegion Monarch
-*UIConstraints: *InputSlot Lower *PageRegion Monarch
-*UIConstraints: *InputSlot Upper *PageRegion C5
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *InputSlot Upper *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion DL
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-
-*FreeVM: "1922832"
-*VMOption 8Meg: "1922832"
-*VMOption 12Meg: "4052752"
-*VMOption 16Meg: "6077044"
-*VMOption 24Meg: "14465652"
-*VMOption 32Meg: "22854260"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "16"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-
-*% Halftone Information ===============
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict dup /PostRenderingEnhance true put setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict dup /PostRenderingEnhance false put setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): PickOne
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict dup /PreRenderingEnhance true put setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict dup /PreRenderingEnhance false put setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put
- setpagedevice "
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize [279 540] put put put
- setpagedevice
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize Com10/Comm10 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize [297 684] put put put
- setpagedevice
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize C5/C5 Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize [459 649] put put put
- setpagedevice
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice "
-*End
-*PageSize DL/DL Envelope: "
- currentpagedevice /InputAttributes get 3 known {3} {1} ifelse
- 1 dict dup /InputAttributes 1 dict dup 6 -1 roll 1 dict dup /PageSize [312 624]put put put
- setpagedevice
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice "
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [420 595] (A5) put
- dup [297 684] (Com10) put
- dup [279 540] (Monarch) put
- dup [459 649] (C5) put
- dup [312 624] (DL) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792] put put put
- setpagedevice} if "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 1008] put put put
- setpagedevice} if "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842] put put put
- setpagedevice} if "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [516 729] put put put
- setpagedevice} if "
-*End
-*PageRegion A5: "
- 3 dict dup /PageSize [420 595] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [420 595] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [420 595] put put put
- setpagedevice} if "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 792] put put put
- setpagedevice} if "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [595 842] put put put
- setpagedevice} if "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [612 1008] put put put
- setpagedevice} if "
-*End
-*PageRegion Monarch/Monarch Envelope: "
- 3 dict dup /PageSize [279 540] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [279 540] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [279 540] put put put
- setpagedevice} if "
-*End
-*PageRegion Com10/Comm10 Envelope: "
- 3 dict dup /PageSize [297 684] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [297 684] put put put
- setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [297 684] put put put
- setpagedevice} if "
-*End
-*PageRegion C5/C5 Envelope: "
- 3 dict dup /PageSize [459 649] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [459 649] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [459 649] put put put
- setpagedevice} if "
-*End
-*PageRegion DL/DL Envelope: "
- 3 dict dup /PageSize [312 624] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [312 624] put put put setpagedevice
- currentpagedevice /InputAttributes get 3 known
- {1 dict dup /InputAttributes 1 dict dup 3 1 dict dup /PageSize [312 624] put put put
- setpagedevice} if "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "11.52 14.1601 599.04 782.04 "
-*ImageableArea Legal/US Legal: "11.52 14.1601 599.04 998.04 "
-*ImageableArea A4: "10.68 14.1601 582.84 831.96 "
-*ImageableArea B5: "11.52 14.2201 503.04 719.1 "
-*ImageableArea A5: "10.56 14.1601 409.92 585.0 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Com10/Comm10 Envelope: "11.4 14.1601 284.04 674.04 "
-*ImageableArea Monarch/Monarch Envelope: "10.0801 14.1601 267.36 530.04 "
-*ImageableArea C5/C5 Envelope: "11.7601 14.1601 445.68 639.0 "
-*ImageableArea DL/DL Envelope: "11.28 14.1601 299.28 614.04 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension A5: "420 595"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Com10/Comm10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension DL/DL Envelope: "312 624"
-
-*RequiresPageRegion Multipurpose: True
-*RequiresPageRegion Envelope: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Cassette (500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1 3] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- dup /3 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" 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-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 Helvetica-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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (250 Sheets): out of paper"
-*Status: "PrinterError: Cassette (500 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (500 Sheets): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Envelope Feeder: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-*Status: "PrinterError: Page image timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "LocalTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheets): no paper tray"
-*PrinterError: "Cassette (250 Sheets): out of paper"
-*PrinterError: "Cassette (500 Sheets): no paper tray"
-*PrinterError: "Cassette (500 Sheets): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Envelope Feeder: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-*PrinterError: "Page image timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Dec 5 1995
-*% The byte count of this file should be exactly 025501 or 026210
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter 16/600 PS-J
-
-
diff --git a/psprint_config/configuration/ppds/APLWIIF2.PS b/psprint_config/configuration/ppds/APLWIIF2.PS
deleted file mode 100644
index 245b0c8580da..000000000000
--- a/psprint_config/configuration/ppds/APLWIIF2.PS
+++ /dev/null
@@ -1,428 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "3.1"
-*PCFileName: "APLWIIF2.PPD"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Product: "(LaserWriter IIf)"
-*PSVersion: "(2010.130) 2"
-*ModelName: "Apple LaserWriter IIf v2010.130"
-*NickName: "Apple LaserWriter IIf v2010.130"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: None
-*Option1 None/Minimum 4 MB: ""
-*Option1 5Meg/Upgrade to 5 MB: ""
-*Option1 8Meg/Upgrade to 8 MB: ""
-*?Option1: "
- (None)currentsystemparams/RamSize get
- dup 5242880 eq{pop pop(5Meg)}{8388608 eq{pop(8Meg)}if}ifelse
- =
-"
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 None *BitsPerPixel 4
-
-*UIConstraints: *Option1 None *PageSize Letter.5Meg
-*UIConstraints: *Option1 None *PageSize Letter.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.5Meg
-
-*UIConstraints: *Option1 None *PageSize A4.5Meg
-*UIConstraints: *Option1 None *PageSize A4.8Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.5Meg
-
-*UIConstraints: *Option1 5Meg *PageSize LetterSmall
-*UIConstraints: *Option1 5Meg *PageSize A4Small
-
-*UIConstraints: *Option1 None *PageSize Monarch.5Meg
-*UIConstraints: *Option1 None *PageSize Monarch.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.5Meg
-
-*UIConstraints: *Option1 None *PageSize Com10.5Meg
-*UIConstraints: *Option1 None *PageSize Com10.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.5Meg
-
-*% === Basic Capabilities ===============
-*FreeVM: "2031121"
-*LanguageLevel: "2"
-*Protocols: BCP
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B7F>0"
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush"
-*End
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print (dpi) = flush
- restore"
-*End
-
-*% === PhotoGrade (bits per pixel) =============
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: 4
-*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
-*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% === FinePrint (smoothing) =============
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: True
-*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*% === Halftone Information ===============
-*AccurateScreensSupport: True
-*ScreenFreq: "60.0"
-*ScreenAngle: "45"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
-sub }{dup mul exch dup mul add 1 exch sub }ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: 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: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageSize LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageSize A4Small/A4 Small: "userdict /a4small get exec"
-*PageSize LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageRegion A4Small/A4 Small: "userdict /a4small get exec"
-*PageRegion LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter.4Meg/US Letter: "14.16 7.80002 597.84 784.44 "
-*ImageableArea Letter.5Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.8Meg/US Letter: "14.16 7.8 597.84 784.44"
-*ImageableArea Legal/US Legal: "14.16 7.8 597.84 1000.44 "
-*ImageableArea A4.4Meg/A4: "12.96 9.23999 581.28 832.92 "
-*ImageableArea A4.5Meg/A4: "29 31 567 812 "
-*ImageableArea A4.8Meg/A4: "12.96 9.239 581.28 832.92 "
-*ImageableArea B5: "20.64 9.23999 504.48 715.8 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "23.76 24.96 592.08 982.8 "
-*ImageableArea Monarch.4Meg/Monarch Envelope Center Fed: "178.5 257 433.5 761.88 "
-*ImageableArea Monarch.5Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Monarch.8Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10.4Meg/Com10 Envelope Center Fed: "169.5 113 442.5 761.88 "
-*ImageableArea Com10.5Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*ImageableArea Com10.8Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter.4Meg/US Letter: "612 792"
-*PaperDimension Letter.5Meg/US Letter: "612 792"
-*PaperDimension Letter.8Meg/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4.4Meg/A4: "595 842"
-*PaperDimension A4.5Meg/A4: "595 842"
-*PaperDimension A4.8Meg/A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch.4Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.5Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.8Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10.4Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.5Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.8Meg/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% === Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: laser doide or scanning mirror malfunction"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "out of paper"
-*PrinterError: "no paper tray"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "laser doide or scanning mirror malfunction"
-*PrinterError: "test printing stage"
-*PrinterError: "service call"
-
-*% Color Separation Information ========================
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter IIf" version 2010.130
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 018950 or 019378
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple LaserWriter IIf
diff --git a/psprint_config/configuration/ppds/APLWIIG2.PS b/psprint_config/configuration/ppds/APLWIIG2.PS
deleted file mode 100644
index 3f04758e9800..000000000000
--- a/psprint_config/configuration/ppds/APLWIIG2.PS
+++ /dev/null
@@ -1,440 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "3.1"
-*PCFileName: "APLWIIG2.PPD"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Product: "(LaserWriter IIg)"
-*PSVersion: "(2010.130) 2"
-*ModelName: "Apple LaserWriter IIg v2010.130"
-*NickName: "Apple LaserWriter IIg v2010.130"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: None
-*Option1 None/Minimum 4 MB: ""
-*Option1 5Meg/Upgrade to 5 MB: ""
-*Option1 8Meg/Upgrade to 8 MB: ""
-*?Option1: "
- (None)currentsystemparams/RamSize get
- dup 5242880 eq{pop pop(5Meg)}{8388608 eq{pop(8Meg)}if}ifelse
- =
-"
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 None *PageSize Letter.5Meg
-*UIConstraints: *Option1 None *PageSize Letter.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.5Meg
-
-*UIConstraints: *Option1 None *PageSize A4.5Meg
-*UIConstraints: *Option1 None *PageSize A4.8Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.5Meg
-
-*UIConstraints: *Option1 5Meg *PageSize LetterSmall
-*UIConstraints: *Option1 5Meg *PageSize A4Small
-
-*UIConstraints: *Option1 None *PageSize Monarch.5Meg
-*UIConstraints: *Option1 None *PageSize Monarch.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.5Meg
-
-*UIConstraints: *Option1 None *PageSize Com10.5Meg
-*UIConstraints: *Option1 None *PageSize Com10.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.5Meg
-
-*% === Basic Capabilities ===============
-*FreeVM: "2210413"
-*LanguageLevel: "2"
-*Protocols: BCP
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B7F>0"
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush"
-*End
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print (dpi) = flush
- restore"
-*End
-
-*% === PhotoGrade (bits per pixel) =============
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: 4
-*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
-*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% === FinePrint (smoothing) =============
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: True
-*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*% === Halftone Information ===============
-*AccurateScreensSupport: True
-*ScreenFreq: "106.0"
-*ScreenAngle: "45"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
-sub }{dup mul exch dup mul add 1 exch sub }ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: 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: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageSize LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageSize A4Small/A4 Small: "userdict /a4small get exec"
-*PageSize LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageRegion A4Small/A4 Small: "userdict /a4small get exec"
-*PageRegion LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter.4Meg/US Letter: "14.16 7.80002 597.84 784.44 "
-*ImageableArea Letter.5Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.8Meg/US Letter: "14.16 7.8 597.84 784.44"
-*ImageableArea Legal/US Legal: "14.16 7.8 597.84 1000.44 "
-*ImageableArea A4.4Meg/A4: "12.96 9.23999 581.28 832.92 "
-*ImageableArea A4.5Meg/A4: "29 31 567 812 "
-*ImageableArea A4.8Meg/A4: "12.96 9.239 581.28 832.92 "
-*ImageableArea B5: "20.64 9.23999 504.48 715.8 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "23.76 24.96 592.08 982.8 "
-*ImageableArea Monarch.4Meg/Monarch Envelope Center Fed: "178.5 257 433.5 761.88 "
-*ImageableArea Monarch.5Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Monarch.8Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10.4Meg/Com10 Envelope Center Fed: "169.5 113 442.5 761.88 "
-*ImageableArea Com10.5Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*ImageableArea Com10.8Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter.4Meg/US Letter: "612 792"
-*PaperDimension Letter.5Meg/US Letter: "612 792"
-*PaperDimension Letter.8Meg/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4.4Meg/A4: "595 842"
-*PaperDimension A4.5Meg/A4: "595 842"
-*PaperDimension A4.8Meg/A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch.4Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.5Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.8Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10.4Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.5Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.8Meg/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% === Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: laser doide or scanning mirror malfunction"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "EtherTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "out of paper"
-*PrinterError: "no paper tray"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "laser doide or scanning mirror malfunction"
-*PrinterError: "test printing stage"
-*PrinterError: "service call"
-
-*% Color Separation Information =========================
-*DefaultColorSep: ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 106 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "106.066"
-*ColorSepScreenFreq CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "106.066"
-*ColorSepScreenFreq ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "100.0"
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter IIg" version 2010.130
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 019744 or 020184
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple LaserWriter IIg
diff --git a/psprint_config/configuration/ppds/APLWLOT1.PS b/psprint_config/configuration/ppds/APLWLOT1.PS
deleted file mode 100644
index 0284ac25a0f2..000000000000
--- a/psprint_config/configuration/ppds/APLWLOT1.PS
+++ /dev/null
@@ -1,563 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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
-*%LocalVersion: "J1-1.1L4"
-*FormatVersion: "4.2"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APLWLOT1.PPD"
-*Product: "(Color LaserWriter 12/600 PS-J)"
-*PSVersion: "(2014.108) 2"
-*ModelName: "LaserWriter Color 12/600 PS-J"
-*ShortNickName: "Apple Color LaserWriter 12/600J"
-*NickName: "Apple Color LaserWriter 12/600 PS-J v2014.108"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 16Meg
-*InstalledMemory 16Meg/16 MB Upgrade: ""
-*InstalledMemory 24Meg/24 MB Upgrade: ""
-*InstalledMemory 25Meg/25 MB Upgrade: ""
-*InstalledMemory 28Meg/28 MB Upgrade: ""
-*InstalledMemory 40Meg/40 MB Upgrade: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- = flush
- restore
-"
-*End
-*CloseUI: *InstalledMemory
-
-*OpenUI *Option1/ Cassette (Optional): PickOne
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Intalled: ""
-*Option1 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1] put put setpagedevice"
-*End
-*?Option1: "
- save
- (False)
- currentpagedevice /InputAttributes get
- dup 2 known { 2 get null ne {pop (True)}if }{pop}ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *Option1
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot OptionalCassette
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: TBCP
-*TTRasterizer: Type42
-
-*FreeVM: "3911344"
-*VMOption 16Meg: "3911344"
-*VMOption 24Meg: "5402684"
-*VMOption 25Meg: "7401136"
-*VMOption 28Meg: "5795504"
-*VMOption 40Meg: "13717168"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "12"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*Resolution 600dpi: ""
-*DefaultResolution: 600dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*OpenUI *TraySwitch/Tray Switch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True/On: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Off: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*OpenUI *MediaType/Paper Type: PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain: "
- 2 dict
- dup /MediaType (Plain) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Plain) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*MediaType Transparency/Transparency: "
- 2 dict
- dup /MediaType (Transparency) put
- dup /InputAttributes mark
- currentpagedevice /InputAttributes get
- {
- dup type /dicttype eq {
- dup length 1 add dict begin {def} forall
- /MediaType (Transparency) def
- currentdict end
- } if
- } forall
- counttomark 2 idiv dup dict begin {def} repeat
- pop currentdict end
- put
- setpagedevice
-"
-*End
-*?MediaType: "
- save
- currentpagedevice /MediaType get dup null eq
- { pop (Plain) }
- {
- (Transparency) ne {
- (Plain)
- }{
- (Transparency)
- } ifelse
- }ifelse
- = flush
- restore
-"
-*End
-*CloseUI: *MediaType
-
-*OpenUI *OutputMode/Print Quality Mode: PickOne
-*OrderDependency: 50 AnySetup *OutputMode
-*DefaultOutputMode: Normal
-*OutputMode Normal/ Normal (Fastest Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Normal put put
- setpagedevice "
-*End
-*OutputMode Best/ Best (Slower Print Speed): "
- 1 dict dup /PostRenderingEnhanceDetails
- 2 dict dup /Type 19 put dup /OutputMode /Best put put
- setpagedevice "
-*End
-*?OutputMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get
- /OutputMode get = flush
- restore "
-*End
-*CloseUI: *OutputMode
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "300"
-*PrintPSErrors: False
-
-*% Halftone Information ===============
-*ScreenFreq: "200.0"
-*ScreenAngle: "0.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion Legal/US Legal: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*PageRegion A4: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion B5: "
- 3 dict dup /PageSize [516 729] put dup /ImagingBBox null put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [516 729] put put put setpagedevice "
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 3 dict dup /PageSize [612 792] put dup /ImagingBBox [25 25 587 767] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 792] put put put setpagedevice "
-*End
-*PageRegion A4Small/A4 Small: "
- 3 dict dup /PageSize [595 842] put dup /ImagingBBox [25 25 570 817] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [595 842] put put put setpagedevice "
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 3 dict dup /PageSize [612 1008] put dup /ImagingBBox [25 25 587 983] put
- dup /InputAttributes 1 dict dup 1 1 dict dup /PageSize [612 1008] put put put setpagedevice "
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/ US Letter: "14.16 14.1601 597.84 769.32 "
-*ImageableArea Legal/US Legal: "14.16 14.1601 597.84 985.32 "
-*ImageableArea A4: "14.1601 14.2401 582.48 819.32 "
-*ImageableArea B5: "14.16 14.7 501.84 706.38 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: StandardCassette
-*InputSlot StandardCassette/ Cassette (Standard): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0 1 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/ Multipurpose Tray: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1 0 2] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot OptionalCassette/ Cassette (Optional): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0 1] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (StandardCassette) put
- dup /1 (Multipurpose) put
- dup /2 (OptionalCassette) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-Condensed: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard ROM
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" 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: Standard "(001.007S)" Standard 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: Standard "(001.004S)" Standard ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {(/)print print (\n)print}bind 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: door open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (Standard): no paper tray"
-*Status: "PrinterError: Cassette (Standard): out of paper"
-*Status: "PrinterError: Cassette (Optional): no paper tray"
-*Status: "PrinterError: Cassette (Optional): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: incorrect paper size setting"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "PrintServer"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "door open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (Standard): no paper tray"
-*PrinterError: "Cassette (Standard): out of paper"
-*PrinterError: "Cassette (Optional): no paper tray"
-*PrinterError: "Cassette (Optional): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "incorrect paper size setting"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 200 lpi / 600 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "0"
-*ColorSepScreenAngle ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq CustomColor.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessCyan.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessMagenta.200lpi.600dpi/200 lpi / 600 dpi: "200"
-*ColorSepScreenFreq ProcessYellow.200lpi.600dpi/200 lpi / 600 dpi: "200"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Dec 5 1995
-*% Edited by jbonacci@adobe.com: Dec 5, 1995
-*% The byte count of this file should be exactly 017975 or 018538
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple Color LaserWriter 12/600 PS-J
diff --git a/psprint_config/configuration/ppds/APL_IIF1.PS b/psprint_config/configuration/ppds/APL_IIF1.PS
deleted file mode 100644
index 09661affc712..000000000000
--- a/psprint_config/configuration/ppds/APL_IIF1.PS
+++ /dev/null
@@ -1,520 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "3.0"
-*PCFileName: "APLWIIF1.PPD"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Product: "(LaserWriter IIf)"
-*PSVersion: "(2010.113) 1"
-*ModelName: "Apple LaserWriter IIf v2010.113"
-*NickName: "Apple LaserWriter IIf v2010.113"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: 2Meg
-*Option1 2Meg/Minimum 2 MB: ""
-*Option1 4Meg/Upgrade to 4 MB: ""
-*Option1 5Meg/Upgrade to 5 MB: ""
-*Option1 8Meg/Upgrade to 8 MB: ""
-*?Option1: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 2Meg *BitsPerPixel 4
-*UIConstraints: *Option1 4Meg *BitsPerPixel 4
-
-*UIConstraints: *Option1 2Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 2Meg *PageSize Letter.5Meg
-*UIConstraints: *Option1 2Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 4Meg *PageSize Letter.2Meg
-*UIConstraints: *Option1 4Meg *PageSize Letter.5Meg
-*UIConstraints: *Option1 4Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.2Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.2Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.5Meg
-
-*UIConstraints: *Option1 2Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 2Meg *PageSize A4.5Meg
-*UIConstraints: *Option1 2Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 4Meg *PageSize A4.2Meg
-*UIConstraints: *Option1 4Meg *PageSize A4.5Meg
-*UIConstraints: *Option1 4Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.2Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.2Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.5Meg
-
-*UIConstraints: *Option1 2Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 2Meg *PageSize Legal.5Meg
-*UIConstraints: *Option1 2Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 4Meg *PageSize Legal.2Meg
-*UIConstraints: *Option1 4Meg *PageSize Legal.5Meg
-*UIConstraints: *Option1 4Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Legal.2Meg
-*UIConstraints: *Option1 5Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.2Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.5Meg
-
-*UIConstraints: *Option1 5Meg *PageSize LetterSmall
-*UIConstraints: *Option1 5Meg *PageSize A4Small
-
-*UIConstraints: *Option1 2Meg *PageSize LegalSmall.4Meg
-*UIConstraints: *Option1 2Meg *PageSize LegalSmall.5Meg
-*UIConstraints: *Option1 2Meg *PageSize LegalSmall.8Meg
-*UIConstraints: *Option1 4Meg *PageSize LegalSmall.2Meg
-*UIConstraints: *Option1 4Meg *PageSize LegalSmall.5Meg
-*UIConstraints: *Option1 4Meg *PageSize LegalSmall.8Meg
-*UIConstraints: *Option1 5Meg *PageSize LegalSmall.2Meg
-*UIConstraints: *Option1 5Meg *PageSize LegalSmall.4Meg
-*UIConstraints: *Option1 5Meg *PageSize LegalSmall.8Meg
-*UIConstraints: *Option1 8Meg *PageSize LegalSmall.2Meg
-*UIConstraints: *Option1 8Meg *PageSize LegalSmall.4Meg
-*UIConstraints: *Option1 8Meg *PageSize LegalSmall.5Meg
-
-*UIConstraints: *Option1 2Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 2Meg *PageSize Monarch.5Meg
-*UIConstraints: *Option1 2Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 4Meg *PageSize Monarch.2Meg
-*UIConstraints: *Option1 4Meg *PageSize Monarch.5Meg
-*UIConstraints: *Option1 4Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.2Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.2Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.5Meg
-
-*UIConstraints: *Option1 2Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 2Meg *PageSize Com10.5Meg
-*UIConstraints: *Option1 2Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 4Meg *PageSize Com10.2Meg
-*UIConstraints: *Option1 4Meg *PageSize Com10.5Meg
-*UIConstraints: *Option1 4Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.2Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.2Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.5Meg
-
-*% === Basic Capabilities ===============
-*FreeVM: "296304"
-*LanguageLevel: "2"
-*Protocols: BCP
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B7F>0"
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush"
-*End
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print (dpi) = flush
- restore"
-*End
-
-*% === PhotoGrade (bits per pixel) =============
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: 4
-*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
-*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% === FinePrint (smoothing) =============
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: True
-*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*% === Halftone Information ===============
-*AccurateScreensSupport: True
-*ScreenFreq: "60.0"
-*ScreenAngle: "45"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
-sub }{dup mul exch dup mul add 1 exch sub }ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: 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: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter.2Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.2Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.4Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.5Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.8Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.2Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageSize LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageSize A4Small/A4 Small: "userdict /a4small get exec"
-*PageSize LegalSmall.2Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize LegalSmall.4Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize LegalSmall.5Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize LegalSmall.8Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.2Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.2Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter.2Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.2Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.4Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.5Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.8Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.2Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageRegion A4Small/A4 Small: "userdict /a4small get exec"
-*PageRegion LegalSmall.2Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LegalSmall.4Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LegalSmall.5Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LegalSmall.8Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.2Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.2Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter.2Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.4Meg/US Letter: "15 8 597 784 "
-*ImageableArea Letter.5Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.8Meg/US Letter: "15 8 597 784 "
-*ImageableArea Legal.2Meg/US Legal: "31 247 583 977 "
-*ImageableArea Legal.4Meg/US Legal: "15 8 597 1000 "
-*ImageableArea Legal.5Meg/US Legal: "15 8 597 1000 "
-*ImageableArea Legal.8Meg/US Legal: "15 8 597 1000 "
-*ImageableArea A4.2Meg/A4: "27 31 571 811 "
-*ImageableArea A4.4Meg/A4: "13 10 581 832 "
-*ImageableArea A4.5Meg/A4: "29 31 567 812 "
-*ImageableArea A4.8Meg/A4: "13 10 581 832 "
-*ImageableArea B5: "21 10 504 715 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall.2Meg/US Legal Small: "31 247 583 977 "
-*ImageableArea LegalSmall.4Meg/US Legal Small: "22 26 590 982 "
-*ImageableArea LegalSmall.5Meg/US Legal Small: "22 26 590 982 "
-*ImageableArea LegalSmall.8Meg/US Legal Small: "22 26 590 982 "
-*ImageableArea Monarch.2Meg/Monarch Envelope Center Fed: "178.5 257 433.5 761 "
-*ImageableArea Monarch.4Meg/Monarch Envelope Center Fed: "178.5 257 433.5 761 "
-*ImageableArea Monarch.5Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Monarch.8Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10.2Meg/Com10 Envelope Center Fed: "169.5 113 442.5 761 "
-*ImageableArea Com10.4Meg/Com10 Envelope Center Fed: "169.5 113 442.5 761 "
-*ImageableArea Com10.5Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*ImageableArea Com10.8Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter.2Meg/US Letter: "612 792"
-*PaperDimension Letter.4Meg/US Letter: "612 792"
-*PaperDimension Letter.5Meg/US Letter: "612 792"
-*PaperDimension Letter.8Meg/US Letter: "612 792"
-*PaperDimension Legal.2Meg/US Legal: "612 1008"
-*PaperDimension Legal.4Meg/US Legal: "612 1008"
-*PaperDimension Legal.5Meg/US Legal: "612 1008"
-*PaperDimension Legal.8Meg/US Legal: "612 1008"
-*PaperDimension A4.2Meg/A4: "595 842"
-*PaperDimension A4.4Meg/A4: "595 842"
-*PaperDimension A4.5Meg/A4: "595 842"
-*PaperDimension A4.8Meg/A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall.2Meg/US Legal Small: "612 1008"
-*PaperDimension LegalSmall.4Meg/US Legal Small: "612 1008"
-*PaperDimension LegalSmall.5Meg/US Legal Small: "612 1008"
-*PaperDimension LegalSmall.8Meg/US Legal Small: "612 1008"
-*PaperDimension Monarch.2Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.4Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.5Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.8Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10.2Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.4Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.5Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.8Meg/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% === Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: laser doide or scanning mirror malfunction"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "out of paper"
-*PrinterError: "no paper tray"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "laser doide or scanning mirror malfunction"
-*PrinterError: "test printing stage"
-*PrinterError: "service call"
-
-*% Color Separation Information ========================
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter IIf" version 2010.113
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 024988 or 025508
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple LaserWriter IIf
diff --git a/psprint_config/configuration/ppds/APL_IIG1.PS b/psprint_config/configuration/ppds/APL_IIG1.PS
deleted file mode 100644
index 650d2b4832fb..000000000000
--- a/psprint_config/configuration/ppds/APL_IIG1.PS
+++ /dev/null
@@ -1,483 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "3.0"
-*PCFileName: "APLWIIG1.PPD"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Product: "(LaserWriter IIg)"
-*PSVersion: "(2010.113) 1"
-*ModelName: "Apple LaserWriter IIg v2010.113"
-*NickName: "Apple LaserWriter IIg v2010.113"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: None
-*Option1 None/Minimum 4 MB: ""
-*Option1 5Meg/Upgrade to 5 MB: ""
-*Option1 8Meg/Upgrade to 8 MB: ""
-*?Option1: "
- (None)currentsystemparams/RamSize get
- dup 5242880 eq{pop pop(5Meg)}{8388608 eq{pop(8Meg)}if}ifelse
- =
-"
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 None *PageSize Letter.5Meg
-*UIConstraints: *Option1 None *PageSize Letter.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Letter.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Letter.5Meg
-
-*UIConstraints: *Option1 None *PageSize A4.5Meg
-*UIConstraints: *Option1 None *PageSize A4.8Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 5Meg *PageSize A4.8Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.4Meg
-*UIConstraints: *Option1 8Meg *PageSize A4.5Meg
-
-*UIConstraints: *Option1 None *PageSize Legal.5Meg
-*UIConstraints: *Option1 None *PageSize Legal.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Legal.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Legal.5Meg
-
-*UIConstraints: *Option1 5Meg *PageSize LetterSmall
-*UIConstraints: *Option1 5Meg *PageSize A4Small
-
-*UIConstraints: *Option1 None *PageSize LegalSmall.5Meg
-*UIConstraints: *Option1 None *PageSize LegalSmall.8Meg
-*UIConstraints: *Option1 5Meg *PageSize LegalSmall.4Meg
-*UIConstraints: *Option1 5Meg *PageSize LegalSmall.8Meg
-*UIConstraints: *Option1 8Meg *PageSize LegalSmall.4Meg
-*UIConstraints: *Option1 8Meg *PageSize LegalSmall.5Meg
-
-*UIConstraints: *Option1 None *PageSize Monarch.5Meg
-*UIConstraints: *Option1 None *PageSize Monarch.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Monarch.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Monarch.5Meg
-
-*UIConstraints: *Option1 None *PageSize Com10.5Meg
-*UIConstraints: *Option1 None *PageSize Com10.8Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 5Meg *PageSize Com10.8Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.4Meg
-*UIConstraints: *Option1 8Meg *PageSize Com10.5Meg
-
-*% === Basic Capabilities ===============
-*FreeVM: "509428"
-*LanguageLevel: "2"
-*Protocols: BCP
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B7F>0"
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush"
-*End
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print (dpi) = flush
- restore"
-*End
-
-*OpenUI *MirrorPrint: Boolean
-*OrderDependency: 50 AnySetup *MirrorPrint
-*DefaultMirrorPrint: False
-*MirrorPrint True: "1 dict dup /MirrorPrint true put setpagedevice"
-*MirrorPrint False: "1 dict dup /MirrorPrint false put setpagedevice"
-*?MirrorPrint: "
-save
- currentpagedevice /MirrorPrint get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *MirrorPrint
-
-*% === PhotoGrade (bits per pixel) =============
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: 4
-*BitsPerPixel 4/On: "1 dict dup /PreRenderingEnhance true put setpagedevice"
-*BitsPerPixel None/Off: "1 dict dup /PreRenderingEnhance false put setpagedevice"
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% === FinePrint (smoothing) =============
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: True
-*Smoothing True/On: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/Off: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*% === Halftone Information ===============
-*AccurateScreensSupport: True
-*ScreenFreq: "106.0"
-*ScreenAngle: "45"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
-sub }{dup mul exch dup mul add 1 exch sub }ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: 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: 30 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.4Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.5Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Legal.8Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageSize B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageSize LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageSize A4Small/A4 Small: "userdict /a4small get exec"
-*PageSize LegalSmall.4Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize LegalSmall.5Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize LegalSmall.8Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageSize Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter.4Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.5Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Letter.8Meg/US Letter: "2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.4Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.5Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Legal.8Meg/US Legal: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.4Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.5Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion A4.8Meg/A4: "2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*PageRegion B5: "2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageRegion A4Small/A4 Small: "userdict /a4small get exec"
-*PageRegion LegalSmall.4Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LegalSmall.5Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion LegalSmall.8Meg/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.4Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.5Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch.8Meg/Monarch Envelope Center Fed: "2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.4Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.5Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Com10.8Meg/Com10 Envelope Center Fed: "2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter.4Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.5Meg/US Letter: "31 31 583 761 "
-*ImageableArea Letter.8Meg/US Letter: "15 8 597 784 "
-*ImageableArea Legal.4Meg/US Legal: "31 247 583 977 "
-*ImageableArea Legal.5Meg/US Legal: "15 8 597 1000 "
-*ImageableArea Legal.8Meg/US Legal: "15 8 597 1000 "
-*ImageableArea A4.4Meg/A4: "27 31 571 811 "
-*ImageableArea A4.5Meg/A4: "29 31 567 812 "
-*ImageableArea A4.8Meg/A4: "13 10 581 832 "
-*ImageableArea B5: "21 10 504 715 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall.4Meg/US Legal Small: "31 247 583 977 "
-*ImageableArea LegalSmall.5Meg/US Legal Small: "22 26 590 982 "
-*ImageableArea LegalSmall.8Meg/US Legal Small: "22 26 590 982 "
-*ImageableArea Monarch.4Meg/Monarch Envelope Center Fed: "178.5 257 433.5 761 "
-*ImageableArea Monarch.5Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Monarch.8Meg/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10.4Meg/Com10 Envelope Center Fed: "169.5 113 442.5 761 "
-*ImageableArea Com10.5Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*ImageableArea Com10.8Meg/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Unknown
-*PaperDimension Letter.4Meg/US Letter: "612 792"
-*PaperDimension Letter.5Meg/US Letter: "612 792"
-*PaperDimension Letter.8Meg/US Letter: "612 792"
-*PaperDimension Legal.4Meg/US Legal: "612 1008"
-*PaperDimension Legal.5Meg/US Legal: "612 1008"
-*PaperDimension Legal.8Meg/US Legal: "612 1008"
-*PaperDimension A4.4Meg/A4: "595 842"
-*PaperDimension A4.5Meg/A4: "595 842"
-*PaperDimension A4.8Meg/A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall.4Meg/US Legal Small: "612 1008"
-*PaperDimension LegalSmall.5Meg/US Legal Small: "612 1008"
-*PaperDimension LegalSmall.8Meg/US Legal Small: "612 1008"
-*PaperDimension Monarch.4Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.5Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Monarch.8Meg/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10.4Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.5Meg/Com10 Envelope Center Fed: "610 792"
-*PaperDimension Com10.8Meg/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% === Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: laser doide or scanning mirror malfunction"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: service call"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "EtherTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "out of paper"
-*PrinterError: "no paper tray"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "laser doide or scanning mirror malfunction"
-*PrinterError: "test printing stage"
-*PrinterError: "service call"
-
-*% Color Separation Information =========================
-*DefaultColorSep: ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 106 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.106lpi.300dpi/106 lpi / 300 dpi: "106.066"
-*ColorSepScreenFreq CustomColor.106lpi.300dpi/106 lpi / 300 dpi: "106.066"
-*ColorSepScreenFreq ProcessCyan.106lpi.300dpi/106 lpi / 300 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.106lpi.300dpi/106 lpi / 300 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.106lpi.300dpi/106 lpi / 300 dpi: "100.0"
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter IIg" version 2010.113
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 022027 or 022510
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple LaserWriter IIg
diff --git a/psprint_config/configuration/ppds/APL_NTR1.PS b/psprint_config/configuration/ppds/APL_NTR1.PS
deleted file mode 100644
index 9a2b4174d9ed..000000000000
--- a/psprint_config/configuration/ppds/APL_NTR1.PS
+++ /dev/null
@@ -1,416 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.10"
-*PCFileName: "APLWNTR1.PPD"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Product: "(LaserWriter Personal NTR)"
-*PSVersion: "(2010.129) 1"
-*ModelName: "Apple Personal LaserWriter NTR"
-*ShortNickName: "Apple Personal LaserWriter NTR"
-*NickName: "Apple Personal LaserWriter NTR v2010.129"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Optional Paper Cassette: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*?Option1: "
- save
- currentpagedevice
- /InputAttributes get
- 1 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option1
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Lower
-
-*% General Information and Defaults ===============
-*FreeVM: "1203433"
-*LanguageLevel: "2"
-*Protocols: BCP
-*ColorDevice: False
-*VariablePaperSize: False
-*FileSystem: False
-*Emulators: hplj
-*StartEmulate hplj: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulate hplj: "<1B7F>0"
-*Throughput: "4"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi) = flush
- restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageSize A4Small/A4 Small: "userdict /a4small get exec"
-*PageSize LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageSize Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 4 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small: "userdict /lettersmall get exec"
-*PageRegion A4Small/A4 Small: "userdict /a4small get exec"
-*PageRegion LegalSmall/US Legal Small: "2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*PageRegion Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "14.16 5.4001 597.84 773.4 "
-*ImageableArea Legal/US Legal: "14.16 5.4 597.84 989.4 "
-*ImageableArea A4: "12.9601 3.6001 581.28 825.6 "
-*ImageableArea B5: "16.08 5.4 499.92 711.96 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "16.16 263 272 767.4 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "16.16 119 289 767.4 "
-*?ImageableArea: "
-save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion Upper: True
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Multipurpose Tray : "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*InputSlot Lower/Paper Cassette: "
- currentpagedevice /InputAttributes get
- 1 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [1 0] put
- put setpagedevice
- } ifelse "
-*End
-*?InputSlot: "
-save
- 2 dict
- dup /1 (Lower) put
- dup /0 (Upper) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard Standard ROM
-*Font Bookman-Demi: Standard "(001.003S)" Standard Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.003S)" Standard Standard ROM
-*Font Bookman-Light: Standard "(001.003S)" Standard Standard ROM
-*Font Bookman-LightItalic: Standard "(001.003S)" Standard Standard ROM
-*Font Courier: Standard "(002.003)" Standard Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" Standard Standard ROM
-*Font Helvetica: Standard "(001.006S)" Standard Standard ROM
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Standard ROM
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Standard ROM
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" Standard Standard ROM
-*Font Palatino-Bold: Standard "(001.005S)" Standard Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.005S)" Standard Standard ROM
-*Font Palatino-Italic: Standard "(001.005S)" Standard Standard ROM
-*Font Palatino-Roman: Standard "(001.005S)" Standard Standard ROM
-*Font Symbol: Special "(001.007S)" Special Special ROM
-*Font Times-Bold: Standard "(001.007S)" Standard Standard ROM
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Standard ROM
-*Font Times-Italic: Standard "(001.007S)" Standard Standard ROM
-*Font Times-Roman: Standard "(001.007S)" Standard Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.006)" Standard Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special Special ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "warming up"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: lower tray: out of paper"
-*Status: "PrinterError: lower tray: no paper tray"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: laser diode or scanning mirror malfunction"
-*Status: "PrinterError: test printing stage"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: upper tray: out of paper"
-*Status: "PrinterError: upper tray: manual feed timeout"
-*Status: "PrinterError: waiting for manual feed"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "Internal"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "lower tray: out of paper"
-*PrinterError: "lower tray: no paper tray"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "laser diode or scanning mirror malfunction"
-*PrinterError: "test printing stage"
-*PrinterError: "service call"
-*PrinterError: "upper tray: out of paper"
-*PrinterError: "upper tray: manual feed timeout"
-*PrinterError: "waiting for manual feed"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 014773 or 015189
-*% depending on the filesystem it resides in.
-*% end of PPD file for Apple Personal LaserWriter NTR
diff --git a/psprint_config/configuration/ppds/APNT518_.PS b/psprint_config/configuration/ppds/APNT518_.PS
deleted file mode 100644
index d4982b046cba..000000000000
--- a/psprint_config/configuration/ppds/APNT518_.PS
+++ /dev/null
@@ -1,351 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.0"
-*FileVersion: "2.8"
-*PCFileName: "A_PNT518.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter Personal NT)"
-*PSVersion: "(51.8) 0"
-*ModelName: "Apple LaserWriter Personal NT"
-*NickName: "LaserWriter Personal NT v51.8"
-
-*% General Information and Defaults ===============
-*FreeVM: "402366"
-*LanguageLevel: "1"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "4"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "statusdict begin lettertray end"
-*PageSize Legal/US Legal: "statusdict begin legaltray end"
-*PageSize A4: "statusdict begin a4tray end"
-*PageSize B5: "statusdict begin b5tray end"
-*PageSize LetterSmall/US Letter Small: "statusdict begin lettertray end lettersmall"
-*PageSize A4Small/A4 Small: "statusdict begin a4tray end a4small"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize Monarch/Monarch Envelope Edge Fed: "statusdict begin lettertray end"
-*PageSize Com10/Com10 Envelope Edge Fed: "statusdict begin lettertray end"
-*?PageSize: "
-save
-7 dict
- dup /getregion {newpath clippath pathbbox pop pop pop ceiling cvi} put
- dup /llxltrsml 31 put
- dup /llxa4sml 27 put
- dup /lettertray {getregion llxltrsml eq {(LetterSmall)}{(Letter)}ifelse} put
- dup /a4tray { getregion llxa4sml eq {(A4Small)}{(A4)}ifelse } put
- dup /legaltray (Legal) put
- dup /b5tray (B5) put
- statusdict begin papersize end
- 3 1 roll {get} stopped {(Unknown)}if
- exch not { print (.Transverse) }if
- = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion Monarch/Monarch Envelope Edge Fed: "letter"
-*PageRegion Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "15 6 597 773 "
-*ImageableArea Legal/US Legal: "15 6 597 989 "
-*ImageableArea A4: "13 4 577 825 "
-*ImageableArea B5: "17 6 495 711 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "17 263 272 767 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "17 119 290 767 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Lower
-*InputSlot Lower/Multipurpose Tray: "1 statusdict begin setpapertray end"
-*InputSlot Upper/Paper Cassette: "0 statusdict begin setpapertray end"
-*?InputSlot: "
-save
- [ (Upper) (Lower) ] statusdict begin papertray end
- {get exec} stopped { pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Normal
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.001)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
-*Font Bookman-Light: Standard "(001.001)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
-*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 Emulatorfont: Special "(001.000)" Special ROM
-*Font Emulatorfont-Bold: Special "(001.000)" Special ROM
-*Font Helvetica: Standard "(001.002)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.002)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.004)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.003)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.004)" Standard ROM
-*Font Palatino-Bold: Standard "(001.002)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard ROM
-*Font Palatino-Italic: Standard "(001.002)" Standard ROM
-*Font Palatino-Roman: Standard "(001.001)" Standard ROM
-*Font Symbol: Special "(001.003)" Special ROM
-*Font Times-Bold: Standard "(001.002)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.004)" Standard ROM
-*Font Times-Italic: Standard "(001.002)" Standard ROM
-*Font Times-Roman: Standard "(001.002)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.003)" Standard ROM
-*Font ZapfDingbats: Special "(001.002)" Special ROM
-*?FontQuery: "
-save
- /str 100 string dup 0 (fonts/) putinterval def
- {
- count 1 gt
- {
- exch dup str 6 94 getinterval cvs
- (/) print print (:) print
- FontDirectory exch known
- {(Yes)}{(No)} ifelse =
- }
- {exit} ifelse
- }bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- FontDirectory { pop == } bind forall flush
- (*) = flush
-restore
-"
-*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: "warming up"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: lower tray: out of paper"
-*Status: "PrinterError: lower tray: no papertray"
-*Status: "PrinterError: upper tray: out of paper"
-*Status: "PrinterError: upper tray: manual feed timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "warming up"
-*PrinterError: "cover open"
-*PrinterError: "service call"
-*PrinterError: "paper jam"
-*PrinterError: "lower tray: out of paper"
-*PrinterError: "lower tray: no papertray"
-*PrinterError: "upper tray: out of paper"
-*PrinterError: "upper tray: manual feed timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter-Personal II NT" version 51.8
-*% Produced by "BuildPPD.ps" version 3.0 edit 58
-*% Converted to meet 4.0 specification
-*% Last Edit Date: May 21 1993
-*% The byte count of this file should be exactly 012605 or 012956
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter-Personal II NT
diff --git a/psprint_config/configuration/ppds/APNTX501.PS b/psprint_config/configuration/ppds/APNTX501.PS
deleted file mode 100644
index caebd1381897..000000000000
--- a/psprint_config/configuration/ppds/APNTX501.PS
+++ /dev/null
@@ -1,351 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.0"
-*FileVersion: "1.3"
-*PCFileName: "APNTX501.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter II NTX)"
-*PSVersion: "(50.5) 2"
-*ModelName: "Apple LaserWriter II NTX v50.5"
-*NickName: "Apple LaserWriter II NTX v50.5"
-
-*% General Information and Defaults ===============
-*FreeVM: "4076994"
-*Extensions: FileSystem Composite
-*LanguageLevel: "1"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
-save
- statusdict /diskonline get exec {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "8"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "statusdict /lettertray get exec"
-*PageSize Legal/US Legal: "statusdict /legaltray get exec"
-*PageSize A4: "statusdict /a4tray get exec"
-*PageSize B5: "statusdict /b5tray get exec"
-*PageSize LetterSmall/US Letter Small: "statusdict /lettertray get exec lettersmall"
-*PageSize A4Small/A4 Small: "statusdict /a4tray get exec a4small"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize Monarch/Monarch Envelope Center Fed: "statusdict /lettertray get exec"
-*PageSize Com10/Com10 Envelope Center Fed: "statusdict /lettertray get exec"
-*?PageSize: "
-save
- [(Letter)(Legal)] statusdict /pagetype get exec
- {get} stopped { pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion Monarch/Monarch Envelope Center Fed: "letter"
-*PageRegion Com10/Com10 Envelope Center Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "15 8 597 784 "
-*ImageableArea Legal/US Legal: "15 8 597 1000 "
-*ImageableArea A4: "13 10 577 832 "
-*ImageableArea B5: "21 10 500 715 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Normal
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AGaramond-Bold: Standard "(001.000)" Standard ROM
-*Font AGaramond-BoldItalic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Italic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Regular: Standard "(001.000)" Standard ROM
-*Font AGaramond-Semibold: Standard "(001.000)" Standard ROM
-*Font AGaramond-SemiboldItalic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Titling: Standard "(001.000)" Standard ROM
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.001)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
-*Font Bookman-Light: Standard "(001.001)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
-*Font Courier: Standard "(001.004)" Standard ROM
-*Font Courier-Bold: Standard "(001.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(001.004)" Standard ROM
-*Font Courier-Oblique: Standard "(001.004)" Standard ROM
-*Font Helvetica: Standard "(001.002)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.002)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.004)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.003)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.004)" Standard ROM
-*Font Palatino-Bold: Standard "(001.002)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard ROM
-*Font Palatino-Italic: Standard "(001.002)" Standard ROM
-*Font Palatino-Roman: Standard "(001.001)" Standard ROM
-*Font Symbol: Special "(001.003)" Special ROM
-*Font Times-Bold: Standard "(001.002)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.004)" Standard ROM
-*Font Times-Italic: Standard "(001.002)" Standard ROM
-*Font Times-Roman: Standard "(001.002)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.003)" Standard ROM
-*Font ZapfDingbats: Special "(001.002)" Special ROM
-
-*?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: "warming up"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: no toner cartridge"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "service call"
-*PrinterError: "warming up"
-*PrinterError: "no toner cartridge"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% Produced by "bldppd41.ps" version 4.0 edit 9
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 012379 or 012730
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter II NTX
diff --git a/psprint_config/configuration/ppds/APNTXJ1_.PS b/psprint_config/configuration/ppds/APNTXJ1_.PS
deleted file mode 100644
index afb7edd265b1..000000000000
--- a/psprint_config/configuration/ppds/APNTXJ1_.PS
+++ /dev/null
@@ -1,412 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.1"
-*FileVersion: "1.5"
-*PCFileName: "AP_NTXJ1.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter II NTX)"
-*PSVersion: "(50.5) 2"
-*ModelName: "Apple LaserWriter II NTX-J v50.5"
-*ShortNickName: "Apple LaserWriterII NTX-J v50.5"
-*NickName: "Apple LaserWriter II NTX-J v50.5"
-
-*% General Information and Defaults ===============
-*FreeVM: "4076994"
-*Extensions: FileSystem Composite
-*LanguageLevel: "1"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
-save
- statusdict /diskonline get exec {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "8"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "statusdict /lettertray get exec"
-*PageSize Legal/US Legal: "statusdict /legaltray get exec"
-*PageSize A4: "statusdict /a4tray get exec"
-*PageSize B5: "statusdict /b5tray get exec"
-*PageSize LetterSmall/US Letter Small: "statusdict /lettertray get exec lettersmall"
-*PageSize A4Small/A4 Small: "statusdict /a4tray get exec a4small"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize Monarch/Monarch Envelope Center Fed: "statusdict /lettertray get exec"
-*PageSize Com10/Com10 Envelope Center Fed: "statusdict /lettertray get exec"
-*?PageSize: "
-save
- [(Letter)(Legal)] statusdict /pagetype get exec
- {get} stopped { pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion Monarch/Monarch Envelope Center Fed: "letter"
-*PageRegion Com10/Com10 Envelope Center Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "15 8 597 784 "
-*ImageableArea Legal/US Legal: "15 8 597 1000 "
-*ImageableArea A4: "13 10 577 832 "
-*ImageableArea B5: "21 10 500 715 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Center Fed: "178.5 269 433.5 773 "
-*ImageableArea Com10/Com10 Envelope Center Fed: "169.5 125 442.5 773 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Center Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Center Fed: "610 792"
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Normal
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AGaramond-Bold: Standard "(001.000)" Standard ROM
-*Font AGaramond-BoldItalic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Italic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Regular: Standard "(001.000)" Standard ROM
-*Font AGaramond-Semibold: Standard "(001.000)" Standard ROM
-*Font AGaramond-SemiboldItalic: Standard "(001.000)" Standard ROM
-*Font AGaramond-Titling: Standard "(001.000)" Standard ROM
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.001)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
-*Font Bookman-Light: Standard "(001.001)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
-*Font Courier: Standard "(001.004)" Standard ROM
-*Font Courier-Bold: Standard "(001.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(001.004)" Standard ROM
-*Font Courier-Oblique: Standard "(001.004)" Standard ROM
-*Font GothicBBB-Medium-78-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-H: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-RKSJ-H: RKSJ "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-RKSJ-V: RKSJ "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-SJ-H: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-SJ-V: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-78-V: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-83pv-RKSJ-H: RKSJ "(000.000)" 83pv Disk
-*Font GothicBBB-Medium-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-Ext-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-Ext-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-Ext-H: JIS "(000.000)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-H: RKSJ "(000.000)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-V: RKSJ "(000.000)" Ext Disk
-*Font GothicBBB-Medium-Ext-SJ-H: JIS "(000.000)" Ext Disk
-*Font GothicBBB-Medium-Ext-SJ-V: JIS "(000.000)" Ext Disk
-*Font GothicBBB-Medium-Ext-V: JIS "(000.000)" Ext Disk
-*Font GothicBBB-Medium-H: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-NWP-H: JIS "(000.000)" NWP Disk
-*Font GothicBBB-Medium-NWP-V: JIS "(000.000)" NWP Disk
-*Font GothicBBB-Medium-RKSJ-H: RKSJ "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-RKSJ-V: RKSJ "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-SJ-H: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-SJ-V: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium-V: JIS "(000.000)" JIS-83 Disk
-*Font GothicBBB-Medium.Roman: Special "(000.000)" Special Disk
-*Font GothicBBB-Medium.WP-Symbol: Special "(000.000)" Special Disk
-*Font Helvetica: Standard "(001.002)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.002)" Standard ROM
-*Font Mincho-PC-Hiragana: Special "(000.000)" Special Disk
-*Font Mincho-PC-Katakana: Special "(000.000)" Special Disk
-*Font NewCenturySchlbk-Bold: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.004)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.003)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.004)" Standard ROM
-*Font Palatino-Bold: Standard "(001.002)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard ROM
-*Font Palatino-Italic: Standard "(001.002)" Standard ROM
-*Font Palatino-Roman: Standard "(001.001)" Standard ROM
-*Font Ryumin-Light-78-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-H: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-RKSJ-H: RKSJ "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-RKSJ-V: RKSJ "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-SJ-H: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-SJ-V: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-78-V: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-83pv-RKSJ-H: RKSJ "(000.000)" 83pv Disk
-*Font Ryumin-Light-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-Ext-EUC-H: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-Ext-EUC-V: EUC "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-Ext-H: JIS "(000.000)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-H: RKSJ "(000.000)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-V: RKSJ "(000.000)" Ext Disk
-*Font Ryumin-Light-Ext-SJ-H: JIS "(000.000)" Ext Disk
-*Font Ryumin-Light-Ext-SJ-V: JIS "(000.000)" Ext Disk
-*Font Ryumin-Light-Ext-V: JIS "(000.000)" Ext Disk
-*Font Ryumin-Light-H: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-NWP-H: JIS "(000.000)" NWP Disk
-*Font Ryumin-Light-NWP-V: JIS "(000.000)" NWP Disk
-*Font Ryumin-Light-RKSJ-H: RKSJ "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-RKSJ-V: RKSJ "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-SJ-H: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-SJ-V: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light-V: JIS "(000.000)" JIS-83 Disk
-*Font Ryumin-Light.Roman: Special "(000.000)" Special Disk
-*Font Ryumin-Light.WP-Symbol: Special "(000.000)" Special Disk
-*Font Symbol: Special "(001.003)" Special ROM
-*Font Times-Bold: Standard "(001.002)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.004)" Standard ROM
-*Font Times-Italic: Standard "(001.002)" Standard ROM
-*Font Times-Roman: Standard "(001.002)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.003)" Standard ROM
-*Font ZapfDingbats: Special "(001.002)" Special ROM
-
-*?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: "warming up"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: no toner cartridge"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "service call"
-*PrinterError: "warming up"
-*PrinterError: "no toner cartridge"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% Produced by "bldppd41.ps" version 4.0 edit 9
-*% Last Edit Date: Jun 1 1993
-*% The byte count of this file should be exactly 015866 or 016278
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter II NTX-J
diff --git a/psprint_config/configuration/ppds/APPL_230.PS b/psprint_config/configuration/ppds/APPL_230.PS
deleted file mode 100644
index b44008ce2e0c..000000000000
--- a/psprint_config/configuration/ppds/APPL_230.PS
+++ /dev/null
@@ -1,350 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.0"
-*FileVersion: "3.3"
-*PCFileName: "APPLE230.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter)"
-*PSVersion: "(23.0) 0"
-*ModelName: "Apple LaserWriter"
-*NickName: "Apple LaserWriter v23.0"
-
-*% General Information and Defaults ===============
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FreeVM: "173936"
-*LanguageLevel: "1"
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "8"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.0"
-*ScreenAngle: "45.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{dup mul exch dup mul add 1.0 exch sub }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "letter"
-*PageSize Legal/US Legal: "legal"
-*PageSize LetterSmall/US Letter Small: "lettersmall"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize A4: "a4"
-*PageSize Monarch/Monarch Envelope Edge Fed: "letter"
-*PageSize Com10/Com10 Envelope Edge Fed: "letter"
-*?PageSize: "
-save
- [(Letter)(Legal)] statusdict /pagetype get exec
- {get} stopped { pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion A4: "a4"
-*PageRegion Monarch/Monarch Envelope Edge Fed: "letter"
-*PageRegion Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "18 8 593 784 "
-*ImageableArea Legal/US Legal: "65 37 547 972 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea A4:"17 22 578 820 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "19 269 274 773 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "19 125 292 773 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Reverse
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font Courier-Bold: Standard "(001.000)" Standard ROM
-*Font Courier-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Courier-Oblique: Standard "(001.000)" Standard ROM
-*Font Helvetica: Standard "(001.001)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.001)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.000)" Standard ROM
-*Font Symbol: Special "(001.001)" Special ROM
-*Font Times-Bold: Standard "(001.001)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.001)" Standard ROM
-*Font Times-Italic: Standard "(001.001)" Standard ROM
-*Font Times-Roman: Standard "(001.000)" Standard ROM
-*?FontQuery: "
-save
- /str 100 string dup 0 (fonts/) putinterval def
- {
- count 1 gt
- {
- exch dup str 6 94 getinterval cvs
- (/) print print (:) print
- FontDirectory exch known
- {(Yes)}{(No)} ifelse =
- }
- {exit} ifelse
- }bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- FontDirectory { pop == } bind flush forall (*) = 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: timeout, clearing printer"
-*Status: "PrinterError: timeout"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: no toner cartridge"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: resetting printer"
-*Status: "PrinterError: manual feed timeout"
-*Status: "PrinterError: warming up"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "timeout"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "no toner cartridge"
-*PrinterError: "service call"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "no paper tray"
-*PrinterError: "out of paper"
-*PrinterError: "cover open"
-*PrinterError: "resetting printer"
-*PrinterError: "manual feed timeout"
-*PrinterError: "warming up"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% This patch file inserts a delay before manualfeed to fix a bug
-*% in the version 23 LaserWriter.
-*JobPatchFile 1/ManualFeedDelay: "
-save
-/version23-manualfeedpatch where { pop false } { true }ifelse
- % we don't do an explicit 'get' since product and version MAY
- % be in systemdict or statusdict - this technique gets the lookup
- % without failure
-statusdict begin
- product (LaserWriter) eq % true if LaserWriter
- version cvr 23.0 eq % true if version 23
-end
-
-and % only install this patch if both are true
-and % true only if patch is not installed and is for this printer
- % save object and boolean on stack
-dup { exch restore }if
-% either true OR saveobject false
-dup
-{
- /version23-manualfeedpatch true def
- /oldversion23-showpage /showpage load def
- /showpage % this showpage will wait extra time if manualfeed is true
- {%
- statusdict /manualfeed known
- {% manualfeed known in statusdict
- statusdict /manualfeed get
- {% if true then we loop for 5 seconds
- usertime 5000 add % target usertime
- { % loop
- dup usertime sub 0 lt
- { exit }if
- }loop
- pop % pop the usertime off the stac
- }if
- }if
- oldversion23-showpage
- }bind def
-}if
-not{ restore }if
-"
-*End
-
-*% For "LaserWriter" version 23.0
-*% Produced by "GETapd.ps" version 2.0 edit 45
-*% Converted to meet 4.0 specification
-*% Last Edit Date: Aug 11 1993
-*% The byte count of this file should be exactly 011416 or 011766
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter
diff --git a/psprint_config/configuration/ppds/APPL_380.PS b/psprint_config/configuration/ppds/APPL_380.PS
deleted file mode 100644
index b0b7143a190a..000000000000
--- a/psprint_config/configuration/ppds/APPL_380.PS
+++ /dev/null
@@ -1,329 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.0"
-*FileVersion: "3.7"
-*PCFileName: "APPLE380.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter Plus)"
-*PSVersion: "(38.0) 2"
-*ModelName: "Apple LaserWriter Plus"
-*NickName: "Apple LaserWriter Plus v38.0"
-
-*% General Information and Defaults ===============
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FreeVM: "172872"
-*LanguageLevel: "1"
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "8"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.0"
-*ScreenAngle: "45.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{dup mul exch dup mul add 1.0 exch sub }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "letter"
-*PageSize Legal/US Legal: "legal"
-*PageSize A4: "a4"
-*PageSize B5: "b5"
-*PageSize LetterSmall/US Letter Small: "lettersmall"
-*PageSize A4Small/A4 Small: "a4small"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize Monarch/Monarch Envelope Edge Fed: "letter"
-*PageSize Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion Monarch/Monarch Envelope Edge Fed: "letter"
-*PageRegion Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "18 7.92 593.76 784.32 "
-*ImageableArea Legal/US Legal: "64.08 42 547.68 966.24 "
-*ImageableArea A4: "17.28 22.08 577.68 819.84 "
-*ImageableArea B5: "2.64 3.12 497.76 705.6 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64.08 42 547.68 966.24 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "338 269 593 773 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "320 125 593 773 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
-restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Reverse
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.000)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.000)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.000)" Standard ROM
-*Font Bookman-Demi: Standard "(001.000)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.000)" Standard ROM
-*Font Bookman-Light: Standard "(001.000)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.000)" Standard ROM
-*Font Courier: Standard "(001.000)" Standard ROM
-*Font Courier-Bold: Standard "(001.000)" Standard ROM
-*Font Courier-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Courier-Oblique: Standard "(001.000)" Standard ROM
-*Font Helvetica: Standard "(001.000)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.000)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.000)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.000)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.000)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.000)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.000)" Standard ROM
-*Font Palatino-Bold: Standard "(001.000)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.000)" Standard ROM
-*Font Palatino-Italic: Standard "(001.000)" Standard ROM
-*Font Palatino-Roman: Standard "(001.000)" Standard ROM
-*Font Symbol: Special "(001.001)" Special ROM
-*Font Times-Bold: Standard "(001.000)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.000)" Standard ROM
-*Font Times-Italic: Standard "(001.000)" Standard ROM
-*Font Times-Roman: Standard "(001.000)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.000)" Standard ROM
-*Font ZapfDingbats: Special "(001.000)" Special ROM
-*?FontQuery: "
-save
- /str 100 string dup 0 (fonts/) putinterval def
- {
- count 1 gt
- {
- exch dup str 6 94 getinterval cvs
- (/) print print (:) print
- FontDirectory exch known
- {(Yes)}{(No)} ifelse =
- }
- {exit} ifelse
- }bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- FontDirectory { pop == } bind forall flush (*) = flush
-restore
-"
-*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: timeout, clearing printer"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: no toner cartridge"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: resetting printer"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: timeout"
-*Status: "PrinterError: manual feed timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these>]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these>]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "no toner cartridge"
-*PrinterError: "no paper tray"
-*PrinterError: "cover open"
-*PrinterError: "resetting printer"
-*PrinterError: "out of paper"
-*PrinterError: "timeout"
-*PrinterError: "manual feed timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter Plus" version 38.0
-*% Produced by "GETapd.ps" version 2.0 edit 44
-*% Converted to meet 4.0 specification
-*% Last Edit Date: May 21 1993
-*% The byte count of this file should be exactly 011622 or 011951
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Plus
diff --git a/psprint_config/configuration/ppds/APPL_422.PS b/psprint_config/configuration/ppds/APPL_422.PS
deleted file mode 100644
index a82bbf84e1f5..000000000000
--- a/psprint_config/configuration/ppds/APPL_422.PS
+++ /dev/null
@@ -1,330 +0,0 @@
-*PPD-Adobe: "4.0"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1993 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.0"
-*FileVersion: "3.5"
-*PCFileName: "APPLE422.PPD"
-*LanguageVersion: English
-*Product: "(LaserWriter Plus)"
-*PSVersion: "(42.2) 3"
-*ModelName: "Apple LaserWriter Plus v42.2"
-*NickName: "Apple LaserWriter Plus v42.2"
-
-*% General Information and Defaults ===============
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FreeVM: "172414"
-*LanguageLevel: "1"
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "8"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.0"
-*ScreenAngle: "45.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: " {dup mul exch dup mul add 1.0 exch sub } "
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "
- { dup 5 mul 8 div mul exch dup mul exch add sqrt 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: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "letter"
-*PageSize Legal/US Legal: "legal"
-*PageSize A4: "a4"
-*PageSize B5: "b5"
-*PageSize LetterSmall/US Letter Small: "lettersmall"
-*PageSize A4Small/A4 Small: "a4small"
-*PageSize LegalSmall/US Legal Small: "legal"
-*PageSize Monarch/Monarch Envelope Edge Fed: "letter"
-*PageSize Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "letter"
-*PageRegion Legal/US Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion B5: "b5"
-*PageRegion LetterSmall/US Letter Small: "lettersmall"
-*PageRegion A4Small/A4 Small: "a4small"
-*PageRegion LegalSmall/US Legal Small: "legal"
-*PageRegion Monarch/Monarch Envelope Edge Fed: "letter"
-*PageRegion Com10/Com10 Envelope Edge Fed: "letter"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "18 8 593 784 "
-*ImageableArea Legal/US Legal: "65 42 547 966 "
-*ImageableArea A4: "18 23 577 819 "
-*ImageableArea B5: "3 4 497 705 "
-*ImageableArea LetterSmall/US Letter Small: "30 31 582 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "338 269 593 773 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "320 125 593 773 "
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
-restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get exec {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*DefaultOutputOrder: Reverse
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.001)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM
-*Font Bookman-Demi: Standard "(001.001)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
-*Font Bookman-Light: Standard "(001.001)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
-*Font Courier: Standard "(001.001)" Standard ROM
-*Font Courier-Bold: Standard "(001.001)" Standard ROM
-*Font Courier-BoldOblique: Standard "(001.001)" Standard ROM
-*Font Courier-Oblique: Standard "(001.001)" Standard ROM
-*Font Helvetica: Standard "(001.001)" Standard ROM
-*Font Helvetica-Bold: Standard "(001.001)" Standard ROM
-*Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM
-*Font Helvetica-Narrow: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-Bold: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Narrow-Oblique: Standard "(001.000)" Standard ROM
-*Font Helvetica-Oblique: Standard "(001.001)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard ROM
-*Font Palatino-Bold: Standard "(001.000)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.000)" Standard ROM
-*Font Palatino-Italic: Standard "(001.000)" Standard ROM
-*Font Palatino-Roman: Standard "(001.000)" Standard ROM
-*Font Symbol: Special "(001.001)" Special ROM
-*Font Times-Bold: Standard "(001.001)" Standard ROM
-*Font Times-BoldItalic: Standard "(001.001)" Standard ROM
-*Font Times-Italic: Standard "(001.001)" Standard ROM
-*Font Times-Roman: Standard "(001.001)" Standard ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard ROM
-*Font ZapfDingbats: Special "(001.000)" Special ROM
-*?FontQuery: "
-save
- /str 100 string dup 0 (fonts/) putinterval def
- {
- count 1 gt
- {
- exch dup str 6 94 getinterval cvs
- (/) print print (:) print
- FontDirectory exch known
- {(Yes)}{(No)} ifelse =
- }
- {exit} ifelse
- }bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- FontDirectory { pop == } bind forall flush (*) = flush
-restore
-"
-*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: "warming up"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: no toner cartridge"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: resetting printer"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: timeout"
-*Status: "PrinterError: manual feed timeout"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "no toner cartridge"
-*PrinterError: "no paper tray"
-*PrinterError: "cover open"
-*PrinterError: "resetting printer"
-*PrinterError: "out of paper"
-*PrinterError: "timeout"
-*PrinterError: "manual feed timeout"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi =====================================================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "LaserWriter Plus" version 42.2
-*% Produced by "GETapd.ps" version 2.0 edit 48
-*% Converted to meet 4.0 specification
-*% Last Edit Date: May 21 1993
-*% The byte count of this file should be exactly 011611 or 011941
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Plus
diff --git a/psprint_config/configuration/ppds/APTOLLD1.PS b/psprint_config/configuration/ppds/APTOLLD1.PS
deleted file mode 100644
index fafe6751ebe3..000000000000
--- a/psprint_config/configuration/ppds/APTOLLD1.PS
+++ /dev/null
@@ -1,660 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.17"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APTOLLD1.PPD"
-*Product: "(LaserWriter Pro 600)"
-*PSVersion: "(2010.130) 1"
-*ModelName: "Apple LaserWriter Pro 600"
-*ShortNickName: "Apple LaserWriter Pro 600"
-*NickName: "Apple LaserWriter Pro 600 v2010.130"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: 4Meg
-*Option1 4Meg/Standard 4 MB RAM: ""
-*Option1 8Meg/8 MB Upgrade: ""
-*Option1 16Meg/16 MB Upgrade: ""
-*Option1 32Meg/32 MB Upgrade: ""
-*?Option1: "
- currentsystemparams /RamSize get
- 6 string dup 4 string 4 -1 roll 1048576 div cvi dup 9 gt {exch cvs 0 exch
- putinterval dup 2}{exch cvs 0 exch putinterval dup 1}ifelse
- (Meg) putinterval
- =
-"
-*End
-*CloseUI: *Option1
-
-*OpenUI *Option2/Cassette (500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put setpagedevice"
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*?Option3: "
- save
- currentpagedevice
- /InputAttributes get
- 3 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option3
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Resolution 600dpi *Smoothing True
-*UIConstraints: *Resolution 600dpi *BitsPerPixel 4
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *PageSize B5 *InputSlot Envelope
-*UIConstraints: *PageSize LetterSmall *InputSlot Envelope
-*UIConstraints: *PageSize A4Small *InputSlot Envelope
-*UIConstraints: *PageSize LegalSmall *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *InputSlot Envelope *PageSize B5
-*UIConstraints: *InputSlot Envelope *PageSize LetterSmall
-*UIConstraints: *InputSlot Envelope *PageSize A4Small
-*UIConstraints: *InputSlot Envelope *PageSize LegalSmall
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *PageRegion B5 *InputSlot Envelope
-*UIConstraints: *PageRegion LetterSmall *InputSlot Envelope
-*UIConstraints: *PageRegion A4Small *InputSlot Envelope
-*UIConstraints: *PageRegion LegalSmall *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageRegion Letter
-*UIConstraints: *InputSlot Envelope *PageRegion Legal
-*UIConstraints: *InputSlot Envelope *PageRegion A4
-*UIConstraints: *InputSlot Envelope *PageRegion B5
-*UIConstraints: *InputSlot Envelope *PageRegion LetterSmall
-*UIConstraints: *InputSlot Envelope *PageRegion A4Small
-*UIConstraints: *InputSlot Envelope *PageRegion LegalSmall
-
-*UIConstraints: *Option1 4Meg *VMOption 8Meg
-*UIConstraints: *Option1 4Meg *VMOption 16Meg
-*UIConstraints: *Option1 4Meg *VMOption 32Meg
-
-*UIConstraints: *Option1 8Meg *VMOption 4Meg
-*UIConstraints: *Option1 8Meg *VMOption 16Meg
-*UIConstraints: *Option1 8Meg *VMOption 32Meg
-
-*UIConstraints: *Option1 16Meg *VMOption 4Meg
-*UIConstraints: *Option1 16Meg *VMOption 8Meg
-*UIConstraints: *Option1 16Meg *VMOption 32Meg
-
-*UIConstraints: *Option1 32Meg *VMOption 4Meg
-*UIConstraints: *Option1 32Meg *VMOption 8Meg
-*UIConstraints: *Option1 32Meg *VMOption 16Meg
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: hpcl
-*StartEmulator_hpcl: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hpcl: "<1B7F>0"
-
-*FreeVM: "2078077"
-*VMOption 4Meg/Standard 4 MB RAM: "2078077"
-*VMOption 8Meg/8 MB Upgrade: "2406169"
-*VMOption 16Meg/16 MB Upgrade: "10851725"
-*VMOption 32Meg/32 MB Upgrade: "27598075"
-
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*OrderDependency: 10 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*?Resolution: "
- save
- /ActualValues /ProcSet findresource
- begin HWResolution end
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ScreenFreq: "85.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict
- dup /PostRenderingEnhance false put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict
- dup /PreRenderingEnhance true put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict
- dup /PreRenderingEnhance false put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 7 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [612 792] (LetterSmall) put
- dup [610 792] (Comm10) put
- dup [611 792] (Monarch) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small:"
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "9.84 14.2201 601.2 783.66 "
-*ImageableArea Legal/US Legal: "9.84 14.2201 601.2 999.66 "
-*ImageableArea A4: "9.84 14.2201 578.16 833.82 "
-*ImageableArea B5: "9.84 14.22 501.36 720.78 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "9.84 257 274 783.66 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "9.84 113 292 783.66 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*InputSlot Lower/Cassette (500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- dup /3 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (250 Sheets): out of paper"
-*Status: "PrinterError: Cassette (500 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (500 Sheets): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Envelope Feeder: out of paper"
-*Status: "PrinterError: Manual Feed: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "Parallel"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "out of paper"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheets): no paper tray"
-*PrinterError: "Cassette (250 Sheets): out of paper"
-*PrinterError: "Cassette (500 Sheets): no paper tray"
-*PrinterError: "Cassette (500 Sheets): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Envelope Feeder: out of paper"
-*PrinterError: "Manual Feed: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 022816 or 023476
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Pro 600
diff --git a/psprint_config/configuration/ppds/APTOLLW1.PS b/psprint_config/configuration/ppds/APTOLLW1.PS
deleted file mode 100644
index f836e66a68af..000000000000
--- a/psprint_config/configuration/ppds/APTOLLW1.PS
+++ /dev/null
@@ -1,656 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.15"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "APTOLLW1.PPD"
-*Product: "(LaserWriter Pro 630)"
-*PSVersion: "(2010.130) 1"
-*ModelName: "Apple LaserWriter Pro 630"
-*ShortNickName: "Apple LaserWriter Pro 630"
-*NickName: "Apple LaserWriter Pro 630 v2010.130"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Memory Configuration: PickOne
-*DefaultOption1: None
-*Option1 None/Standard 8 MB RAM: ""
-*Option1 16Meg/16 MB Upgrade: ""
-*Option1 32Meg/32 MB Upgrade: ""
-*?Option1: "
- (None)currentsystemparams/RamSize get
- dup 16777216 eq{pop pop(16Meg)}{33554432 eq{pop(32Meg)}if}ifelse
- =
-"
-*End
-*CloseUI: *Option1
-
-*OpenUI *Option2/Cassette (500 Sheets): PickOne
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*Option2 Preferred/Installed and Preferred: "
- 1 dict dup /InputAttributes 1 dict dup /Priority [2 0 1 3] put put setpagedevice"
-*End
-*?Option2: "
- save
- currentpagedevice
- /InputAttributes get
- 2 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Envelope Feeder: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/Not Installed: ""
-*?Option3: "
- save
- currentpagedevice
- /InputAttributes get
- 3 known {(True)}{(False)} ifelse = flush
- restore "
-*End
-*CloseUI: *Option3
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Resolution 600dpi *Smoothing True
-*UIConstraints: *Resolution 600dpi *BitsPerPixel 4
-*UIConstraints: *Option2 False *InputSlot Lower
-*UIConstraints: *Option3 False *InputSlot Envelope
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *PageSize B5 *InputSlot Envelope
-*UIConstraints: *PageSize LetterSmall *InputSlot Envelope
-*UIConstraints: *PageSize A4Small *InputSlot Envelope
-*UIConstraints: *PageSize LegalSmall *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *InputSlot Envelope *PageSize B5
-*UIConstraints: *InputSlot Envelope *PageSize LetterSmall
-*UIConstraints: *InputSlot Envelope *PageSize A4Small
-*UIConstraints: *InputSlot Envelope *PageSize LegalSmall
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *PageRegion B5 *InputSlot Envelope
-*UIConstraints: *PageRegion LetterSmall *InputSlot Envelope
-*UIConstraints: *PageRegion A4Small *InputSlot Envelope
-*UIConstraints: *PageRegion LegalSmall *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageRegion Letter
-*UIConstraints: *InputSlot Envelope *PageRegion Legal
-*UIConstraints: *InputSlot Envelope *PageRegion A4
-*UIConstraints: *InputSlot Envelope *PageRegion B5
-*UIConstraints: *InputSlot Envelope *PageRegion LetterSmall
-*UIConstraints: *InputSlot Envelope *PageRegion A4Small
-*UIConstraints: *InputSlot Envelope *PageRegion LegalSmall
-
-*UIConstraints: *Option1 None *VMOption
-
-*UIConstraints: *Option1 16Meg *VMOption None
-*UIConstraints: *Option1 16Meg *VMOption 32Meg
-
-*UIConstraints: *Option1 32Meg *VMOption None
-*UIConstraints: *Option1 32Meg *VMOption 16Meg
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: hpcl
-*StartEmulator_hpcl: "currentfile /hpcl statusdict /emulate get exec "
-*StopEmulator_hpcl: "<1B7F>0"
-
-*FreeVM: "2406169"
-*VMOption None/Standard 8 MB RAM: "2406169"
-*VMOption 16Meg/16 MB Upgrade: "10851725"
-*VMOption 32Meg/32 MB Upgrade: "27598075"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "8"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*OrderDependency: 10 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 600dpi: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*?Resolution: "
- save
- /ActualValues /ProcSet findresource
- begin HWResolution end
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ScreenFreq: "85.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/FinePrint(TM): Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: False
-*Smoothing True/On: "
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*Smoothing False/Off: "
- 2 dict
- dup /PostRenderingEnhance false put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPostRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?Smoothing: "
- save currentpagedevice /PostRenderingEnhanceDetails get
- /ActualPostRenderingEnhance get
- {(True)}{(False)} ifelse = flush restore"
-*End
-*CloseUI: *Smoothing
-
-*OpenUI *BitsPerPixel/PhotoGrade(TM): Boolean
-*OrderDependency: 50 AnySetup *BitsPerPixel
-*DefaultBitsPerPixel: None
-*BitsPerPixel 4/On: "
- 2 dict
- dup /PreRenderingEnhance true put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance true put
- put
- setpagedevice
-"
-*End
-*BitsPerPixel None/Off: "
- 2 dict
- dup /PreRenderingEnhance false put
- dup /PreRenderingEnhanceDetails
- 2 dict
- dup /Type 1 put
- dup /ActualPreRenderingEnhance false put
- put
- setpagedevice
-"
-*End
-*?BitsPerPixel: "
- save currentpagedevice /PreRenderingEnhanceDetails get
- /ActualPreRenderingEnhance get
- {(4)}{(None)} ifelse = flush restore"
-*End
-*CloseUI: *BitsPerPixel
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 7 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [610 792] (Comm10) put
- dup [611 792] (Monarch) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
- restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/US Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal/US Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterSmall/US Letter Small: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Small/A4 Small: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LegalSmall/US Legal Small: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Monarch/Monarch Envelope Edge Fed: "
- 2 dict dup /PageSize [611 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Com10/Com10 Envelope Edge Fed: "
- 2 dict dup /PageSize [610 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter: "9.84 14.2201 601.2 783.66 "
-*ImageableArea Legal/US Legal: "9.84 14.2201 601.2 999.66 "
-*ImageableArea A4: "9.84 14.2201 578.16 833.82 "
-*ImageableArea B5: "9.84 14.22 501.36 720.78 "
-*ImageableArea LetterSmall/US Letter Small: "31 31 583 761 "
-*ImageableArea A4Small/A4 Small: "29 31 567 812 "
-*ImageableArea LegalSmall/US Legal Small: "64 54 548 954 "
-*ImageableArea Monarch/Monarch Envelope Edge Fed: "9.84 257 274 783.66 "
-*ImageableArea Com10/Com10 Envelope Edge Fed: "9.84 113 292 783.66 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension Legal/US Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension LetterSmall/US Letter Small: "612 792"
-*PaperDimension A4Small/A4 Small: "595 842"
-*PaperDimension LegalSmall/US Legal Small: "612 1008"
-*PaperDimension Monarch/Monarch Envelope Edge Fed: "611 792"
-*PaperDimension Com10/Com10 Envelope Edge Fed: "610 792"
-
-*RequiresPageRegion Multipurpose: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Cassette (250 Sheets): "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Multipurpose/Multipurpose Tray: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*InputSlot Lower/Cassette (500 Sheets): "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2 0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- currentpagedevice /InputAttributes get 3 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [3 0] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Multipurpose) put
- dup /2 (Lower) put
- dup /3 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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.003)" Standard ROM
-*Font Courier-Bold: Standard "(002.003)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.003)" Standard ROM
-*Font Courier-Oblique: Standard "(002.003)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Bold: Standard "(001.008S)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006S)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005S)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006S)" 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.006)" Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special ROM
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: toner cartridge missing or incorrect"
-*Status: "PrinterError: paper jam"
-*Status: "PrinterError: Cassette (250 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (250 Sheets): out of paper"
-*Status: "PrinterError: Cassette (500 Sheets): no paper tray"
-*Status: "PrinterError: Cassette (500 Sheets): out of paper"
-*Status: "PrinterError: Multipurpose Tray: out of paper"
-*Status: "PrinterError: Envelope Feeder: out of paper"
-*Status: "PrinterError: Manual Feed: out of paper"
-*Status: "PrinterError: waiting for manual feed"
-*Status: "PrinterError: fixing temperature malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "EtherTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "out of paper"
-*PrinterError: "toner cartridge missing or incorrect"
-*PrinterError: "paper jam"
-*PrinterError: "Cassette (250 Sheets): no paper tray"
-*PrinterError: "Cassette (250 Sheets): out of paper"
-*PrinterError: "Cassette (500 Sheets): no paper tray"
-*PrinterError: "Cassette (500 Sheets): out of paper"
-*PrinterError: "Multipurpose Tray: out of paper"
-*PrinterError: "Envelope Feeder: out of paper"
-*PrinterError: "Manual Feed: out of paper"
-*PrinterError: "waiting for manual feed"
-*PrinterError: "fixing temperature malfunction"
-*PrinterError: "scanner motor malfunction"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Mar 23 1994
-*% The byte count of this file should be exactly 022556 or 023212
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserWriter Pro 630
diff --git a/psprint_config/configuration/ppds/CAECOGR1.PS b/psprint_config/configuration/ppds/CAECOGR1.PS
deleted file mode 100644
index 585e3795ea98..000000000000
--- a/psprint_config/configuration/ppds/CAECOGR1.PS
+++ /dev/null
@@ -1,591 +0,0 @@
-*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
-*% For "CalComp EcoGrafix/PS" version 2014.106
-*%
-*FormatVersion: "4.3"
-*FileVersion: "1.3"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "CAECOGR1.PPD"
-
-*% General Information ============================
-
-*Product: "(EcoGrafix/PS)"
-*PSVersion: "(2014.106) 12"
-*Manufacturer: "CalComp"
-*ModelName: "CalComp EcoGrafix/PS"
-*ShortNickName: "CalComp EcoGrafix/PS"
-*NickName: "CalComp EcoGrafix/PS v2014.106"
-
-*% Options and Constraints ========================
-
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *InstalledMemory/Memory Configuration: PickOne
-*DefaultInstalledMemory: 16MB
-*InstalledMemory 16MB/16 MB: ""
-*InstalledMemory 24MB/24 MB: ""
-*InstalledMemory 32MB/32 MB: ""
-*InstalledMemory 40MB/40 MB: ""
-*InstalledMemory 48MB/48 MB: ""
-*InstalledMemory 64MB/64 MB: ""
-*InstalledMemory 72MB/72 MB: ""
-*InstalledMemory 80MB/80 MB: ""
-*InstalledMemory 96MB/96 MB: ""
-*InstalledMemory 128MB/128 MB: ""
-*?InstalledMemory: "
- save
- currentsystemparams/RamSize get 1048576 idiv ( ) cvs print (MB) = flush
- restore"
-*End
-*CloseUI: *InstalledMemory
-*CloseGroup: InstallableOptions
-
-*% Device Capabilities ============================
-
-*LanguageLevel: "2"
-*Protocols: TBCP
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: True
-*Throughput: "1"
-
-*FreeVM: "6002624"
-*VMOption 16MB: "6002624"
-*VMOption 24MB: "13006912"
-*VMOption 32MB: "20027456"
-*VMOption 40MB: "26965952"
-*VMOption 48MB: "34019264"
-*VMOption 64MB: "48076736"
-*VMOption 72MB: "55105472"
-*VMOption 80MB: "62117824"
-*VMOption 96MB: "76183488"
-*VMOption 128MB: "103462848"
-
-*% System Management ==============================
-
-*Password: "()"
-*ExitServer: "
- count 0 ne dup {exch startjob} if
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush
- quit
- } if"
-*End
-
-*Reset: "
- count 0 ne dup {exch startjob} if
- not {
- (WARNING: Cannot reset the printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush
- quit
- } if
- systemdict/quit get exec
- (WARNING: Printer Reset failed.) = flush"
-*End
-
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42 /FontType resourcestatus {pop pop (Type42)}{(None)} ifelse = flush
- restore"
-*End
-
-*FileSystem: True
-*?FileSystem: "
- save
- false
- (%disk?%)
- {currentdevparams dup /Writeable known {/Writeable get or}{pop} ifelse}
- 10 string /IODevice resourceforall {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*SuggestedJobTimeout: "0"
-*SuggestedWaitTimeout: "0"
-*PrintPSErrors: True
-
-*% Resolution =====================================
-
-*DefaultResolution: 400x800dpi
-*?Resolution: "
- save
- currentpagedevice/HWResolution get aload pop exch
- ( ) cvs print (x) print ( ) cvs print (dpi) = flush
- restore"
-*End
-
-*% Halftone Information ===========================
-
-*ScreenFreq: "45.0"
-*ScreenAngle: "45.0"
-*DefaultHalftoneType: 1
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
- {abs exch abs 2 copy add 1 gt
- {1 sub dup mul exch 1 sub dup mul add 1 sub}
- {dup mul exch dup mul add 1 exch sub}
- ifelse}"
-*End
-*ScreenProc Line: "{pop}"
-*ScreenProc Ellipse: "{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub}"
-*ResScreenFreq 400x400dpi: "45.0"
-*ResScreenAngle 400x400dpi: "45.0"
-*ResScreenFreq 400x800dpi: "45.0"
-*ResScreenAngle 400x800dpi: "45.0"
-
-*DefaultTransfer: Null
-*Transfer Null: "{}"
-*Transfer Null.Inverse: "{1 exch sub}"
-
-*% Print Quality ==================================
-
-*OpenUI *OutputMode/Print Quality: PickOne
-*OrderDependency: 40 AnySetup *OutputMode
-*DefaultOutputMode: Enhanced
-*OutputMode Proof: "
- (<<) cvx exec
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- 2 dict dup/Type 21 put dup/PrintQuality 0 put
- /HWResolution [400 400]
- (>>) cvx exec setpagedevice"
-*End
-*OutputMode Standard: "
- (<<) cvx exec
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- 2 dict dup/Type 21 put dup/PrintQuality 1 put
- /HWResolution [400 400]
- (>>) cvx exec setpagedevice"
-*End
-*OutputMode Enhanced: "
- (<<) cvx exec
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- 2 dict dup/Type 21 put dup/PrintQuality 2 put
- /HWResolution [400 800]
- (>>) cvx exec setpagedevice"
-*End
-*?OutputMode: "
- save
- 3 dict
- dup 0 (Proof) put
- dup 1 (Standard) put
- dup 2 (Enhanced) put
- currentpagedevice/PostRenderingEnhanceDetails get
- /PrintQuality get {get} stopped {pop pop (Unknown)} if = flush
- restore"
-*End
-*CloseUI: *OutputMode
-
-*% Nesting ========================================
-*OpenUI *CANesting/Nesting: Boolean
-*OrderDependency: 50 AnySetup *CANesting
-*DefaultCANesting: False
-*CANesting True/On: "
- currentpagedevice/PageSize get dup 0 get 2528 1 index div
- dup cvi dup 4 1 roll sub 1 index mul 2 index 1 sub div add
- 5 dict
- dup /PageSize 2529 6 index 1 get 10 add 2 array astore put
- dup /Orientation 3 put
- dup /ImagingBBox null put
- dup /BeginPage [
- [6 index /mod 8 -1 roll /mul 5 /translate
- /userdict (/AGDOrigMtx) /exec /matrix /currentmatrix /put
- 0 0 21 -1 roll aload pop /rectclip]{cvx}forall
- ] cvx bind put
- dup /EndPage [
- [/exch 1 /add 9 -1 roll /mod 1 /index 0 /eq
- {exch pop 0 eq}{1 ne exch 2 eq and} /ifelse]{cvx}forall
- ] cvx bind put
- setpagedevice
- userdict dup /setpagedevice /pop load put /erasepage {} put"
-*End
-*CANesting False/Off: ""
-*CloseUI: *CANesting
-
-*% Paper Handling =================================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 20 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter: "
- (<<) cvx exec
- /PageSize [612 792] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize Tabloid: "
- (<<) cvx exec
- /PageSize [792 1224] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize Ledger: "
- (<<) cvx exec
- /PageSize [1224 792] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize AnsiC: "
- (<<) cvx exec
- /PageSize [1224 1584] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize AnsiD: "
- (<<) cvx exec
- /PageSize [1584 2448] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize AnsiE: "
- (<<) cvx exec
- /PageSize [2448 3168] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize AnsiF: "
- (<<) cvx exec
- /PageSize [2016 2880] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize A4: "
- (<<) cvx exec
- /PageSize [595 842] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize A3: "
- (<<) cvx exec
- /PageSize [842 1191] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize A2: "
- (<<) cvx exec
- /PageSize [1191 1684] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize A1: "
- (<<) cvx exec
- /PageSize [1684 2384] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageSize A0: "
- (<<) cvx exec
- /PageSize [2384 3370] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop 2 copy gt {exch} if
- (Unknown)
- (<<) cvx exec
- [612 792] (Letter)
- [792 1224] (Tabloid)
- [1224 792] (Ledger)
- [1224 1584] (AnsiC)
- [1584 2448] (AnsiD)
- [2448 3168] (AnsiE)
- [2016 2880] (AnsiF)
- [595 842] (A4)
- [842 1191] (A3)
- [1191 1684] (A2)
- [1684 2384] (A1)
- [2384 3370] (A0)
- (>>) cvx exec
- {exch aload pop 4 index sub abs 5 le
- {4 index sub abs 5 le {exch pop exit} if}
- {pop} ifelse
- pop
- } bind forall
- = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 30 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter: "
- (<<) cvx exec
- /PageSize [612 792] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion Tabloid: "
- (<<) cvx exec
- /PageSize [792 1224] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion Ledger: "
- (<<) cvx exec
- /PageSize [1224 792] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion AnsiC: "
- (<<) cvx exec
- /PageSize [1224 1584] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion AnsiD: "
- (<<) cvx exec
- /PageSize [1584 2448] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion AnsiE: "
- (<<) cvx exec
- /PageSize [2448 3168] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion AnsiF: "
- (<<) cvx exec
- /PageSize [2016 2880] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion A4: "
- (<<) cvx exec
- /PageSize [595 842] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion A3: "
- (<<) cvx exec
- /PageSize [842 1191] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion A2: "
- (<<) cvx exec
- /PageSize [1191 1684] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion A1: "
- (<<) cvx exec
- /PageSize [1684 2384] /Orientation 1 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*PageRegion A0: "
- (<<) cvx exec
- /PageSize [2384 3370] /Orientation 0 /ImagingBBox null
- (>>) cvx exec setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter: "0.09 0.0 612.045 789.12"
-*ImageableArea Tabloid: "0.09 0.0 792.045 1221.12"
-*ImageableArea Ledger: "0.0 0.09 1221.12 792.045"
-*ImageableArea AnsiC: "0.0901 0.0 1224.05 1584.0"
-*ImageableArea AnsiD: "0.09 0.0 1584.05 2448.0"
-*ImageableArea AnsiE: "0.0 0.0 2448.0 3167.82"
-*ImageableArea AnsiF: "0.0 0.0 2016.0 2879.82"
-*ImageableArea A4: "0.0 0.0 594.9 840.96"
-*ImageableArea A3: "0.0 0.0 841.86 1186.56"
-*ImageableArea A2: "0.0901 0.0 1190.97 1681.92"
-*ImageableArea A1: "0.0 0.0 1683.9 2378.88"
-*ImageableArea A0: "0.0 0.0 2378.88 3369.78"
-*?ImageableArea: "
- save
- /ur {10000 mul floor 10000 div ( ) cvs} bind def
- /ll {10000 mul ceiling 10000 div ( ) cvs print ( ) print} bind def
- newpath clippath pathbbox
- 4 -2 roll exch ll ll exch ur print ( ) print ur = flush
- restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Tabloid: "792 1224"
-*PaperDimension Ledger: "1224 792"
-*PaperDimension AnsiC: "1224 1584"
-*PaperDimension AnsiD: "1584 2448"
-*PaperDimension AnsiE: "2448 3168"
-*PaperDimension AnsiF: "2016 2880"
-*PaperDimension A4: "595 842"
-*PaperDimension A3: "842 1191"
-*PaperDimension A2: "1191 1684"
-*PaperDimension A1: "1684 2384"
-*PaperDimension A0: "2384 3370"
-
-*% Custom Page Sizes ==============================
-
-*HWMargins: 0 0 0 0
-*CenterRegistered: False
-*DefaultLeadingEdge: PreferLong
-*LeadingEdge PreferLong: ""
-*NonUIOrderDependency: 35 AnySetup *CustomPageSize
-*ParamCustomPageSize Width: 1 points 279 2529
-*ParamCustomPageSize Height: 2 points 279 17280
-*ParamCustomPageSize WidthOffset: 4 points 0 2250
-*ParamCustomPageSize HeightOffset: 5 points 0 0
-*ParamCustomPageSize Orientation: 3 int 0 3
-*CustomPageSize True: "
- 4 dict begin
- 2 copy 0 eq exch 0 eq and {
- pop pop dup 0 eq {
- pop 2 copy gt {1}{0} ifelse index 2520 le {1}{0} ifelse
- } if
- }{
- 2 array astore /PageOffset exch def
- } ifelse
- /Orientation exch def
- 2 copy gt {
- 1 index 540 lt {exch pop 540 exch} if
- }{
- dup 540 lt {pop 540} if
- } ifelse
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict end setpagedevice"
-*End
-*MaxMediaWidth: "2529"
-*MaxMediaHeight: "17280"
-
-*% Input Slot =====================================
-
-*OpenUI *InputSlot: PickOne
-*DefaultInputSlot: OnlyOne
-*InputSlot OnlyOne/Roll Media: ""
-*?InputSlot: "save (OnlyOne) = flush restore"
-*CloseUI: *InputSlot
-
-*RequiresPageRegion All: True
-
-*% Font Information ===============================
-
-*DefaultFont: Courier
-*Font ACaslon-Italic: Standard "(001.001)" Standard ROM
-*Font ACaslon-Regular: Standard "(001.001)" Standard ROM
-*Font ACaslon-Semibold: Standard "(001.001)" Standard ROM
-*Font ACaslon-SemiboldItalic: Standard "(001.001)" Standard ROM
-*Font AGaramond-Bold: Standard "(001.001)" Standard ROM
-*Font AGaramond-BoldItalic: Standard "(001.001)" Standard ROM
-*Font AGaramond-Italic: Standard "(001.001)" Standard ROM
-*Font AGaramond-Regular: Standard "(001.001)" Standard ROM
-*Font Americana: Standard "(001.000)" Standard ROM
-*Font Americana-ExtraBold: Standard "(001.000)" Standard ROM
-*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 Barmeno-Bold: Standard "(001.000)" Standard ROM
-*Font Barmeno-ExtraBold: Standard "(001.000)" Standard ROM
-*Font Barmeno-Medium: Standard "(001.000)" Standard ROM
-*Font Barmeno-Regular: Standard "(001.000)" Standard ROM
-*Font Blackoak: Standard "(001.001)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" Standard ROM
-*Font Carta: Special "(001.001)" Special 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 Formata-Italic: Standard "(001.001)" Standard ROM
-*Font Formata-Medium: Standard "(001.001)" Standard ROM
-*Font Formata-MediumItalic: Standard "(001.001)" Standard ROM
-*Font Formata-Regular: Standard "(001.001)" 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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font Kaufmann: Standard "(001.000)" Standard ROM
-*Font Lithos-Black: Standard "(001.001)" Standard ROM
-*Font Lithos-Regular: Standard "(001.001)" 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 Parisian: Standard "(001.001)" Standard ROM
-*Font ParkAvenue: Standard "(001.005)" Standard ROM
-*Font Poetica-SuppOrnaments: Special "(001.000)" Special ROM
-*Font Symbol: Special "(001.007S)" Special ROM
-*Font Tekton: Standard "(001.001)" Standard ROM
-*Font Tekton-Bold: Standard "(001.000)" Standard 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 Trajan-Bold: Standard "(001.000)" Standard ROM
-*Font WoodtypeOrnaments-Two: Special "(001.002)" Special ROM
-*Font ZapfChancery-MediumItalic: Standard "(001.007S)" Standard ROM
-*Font ZapfDingbats: Special "(001.004S)" Special ROM
-
-*?FontQuery: "
- save
- count 1 sub {
- exch dup 128 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)}{(No)} ifelse =
- } bind repeat
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save
- (*) {cvn ==} bind 128 string /Font resourceforall
- (*) = flush
- restore"
-*End
-
-*% Printer Messages ===============================
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier."
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "Parallel"
-*Source: "LocalTalk"
-*Source: "EtherTalk"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.47lpi.400x800dpi/47 lpi / 400x800 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 47 lpi / 400x400 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.47lpi.400x800dpi/47 lpi / 400x800 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.47lpi.400x800dpi/47 lpi / 400x800 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.47lpi.400x800dpi/47 lpi / 400x800 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.47lpi.400x800dpi/47 lpi / 400x800 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.47lpi.400x800dpi/47 lpi / 400x800 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.47lpi.400x800dpi/47 lpi / 400x800 dpi: "47.1405"
-*ColorSepScreenFreq CustomColor.47lpi.400x800dpi/47 lpi / 400x800 dpi: "47.1405"
-*ColorSepScreenFreq ProcessCyan.47lpi.400x800dpi/47 lpi / 400x800 dpi: "42.1637"
-*ColorSepScreenFreq ProcessMagenta.47lpi.400x800dpi/47 lpi / 400x800 dpi: "42.1637"
-*ColorSepScreenFreq ProcessYellow.47lpi.400x800dpi/47 lpi / 400x800 dpi: "44.4444"
-
-*% Last Edit Date: Dec 5 1996
-*% End of PPD file for EcoGrafix/PS
-*% The byte count of this file should be exactly 019934 or 020525
-*% depending on the filesystem it resides in.
-*% end of PPD file for EcoGrafix/PS
diff --git a/psprint_config/configuration/ppds/DC1152_1.PS b/psprint_config/configuration/ppds/DC1152_1.PS
deleted file mode 100644
index c0bb06712f85..000000000000
--- a/psprint_config/configuration/ppds/DC1152_1.PS
+++ /dev/null
@@ -1,476 +0,0 @@
-*PPD-Adobe: "4.0"
-*% 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
-*%Copyright 1993 Digital Equipment Corporation.
-*FileVersion: "1.2"
-*FormatVersion: "4.0"
-*LanguageVersion: English
-*PCFileName: "DC1152_1.PPD"
-*Product: "(DEClaser 1152)"
-*PSVersion: "(2011.113) 12"
-*ModelName: "Digital DEClaser 1152"
-*NickName: "Digital DEClaser 1152 17 fonts"
-
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Optional Cassette: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Memory Configuration: PickOne
-*DefaultOption2: None
-*Option2 None/Standard 2 MB RAM: ""
-*Option2 4Meg/4 MB Upgrade: ""
-*CloseUI: *Option2
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Lower
-
-*UIConstraints: *InputSlot Lower *PageSize A5
-*UIConstraints: *InputSlot Lower *PageSize B5
-*UIConstraints: *InputSlot Lower *PageSize C5
-*UIConstraints: *InputSlot Lower *PageSize DL
-*UIConstraints: *InputSlot Lower *PageSize Statement
-*UIConstraints: *InputSlot Lower *PageSize TwoThirdsA4
-*UIConstraints: *PageSize A5 *InputSlot Lower
-*UIConstraints: *PageSize B5 *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot Lower
-*UIConstraints: *PageSize Statement *InputSlot Lower
-*UIConstraints: *PageSize TwoThirdsA4 *InputSlot Lower
-
-*UIConstraints: *InputSlot Lower *PageRegion A5
-*UIConstraints: *InputSlot Lower *PageRegion B5
-*UIConstraints: *InputSlot Lower *PageRegion C5
-*UIConstraints: *InputSlot Lower *PageRegion DL
-*UIConstraints: *InputSlot Lower *PageRegion Statement
-*UIConstraints: *InputSlot Lower *PageRegion TwoThirdsA4
-*UIConstraints: *PageRegion A5 *InputSlot Lower
-*UIConstraints: *PageRegion B5 *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot Lower
-*UIConstraints: *PageRegion Statement *InputSlot Lower
-*UIConstraints: *PageRegion TwoThirdsA4 *InputSlot Lower
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP
-*Emulators: hplj
-*StartEmulator_hplj: "currentfile /LaserJetIIP statusdict /emulate get exec "
-*StopEmulator_hplj: "<1B7F>0"
-
-*FreeVM: "284922"
-*VMOption None/Standard 2 MB RAM: "284922"
-*VMOption 4Meg/4 MB Upgrade: "2383370"
-
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-
-*Throughput: "4"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 300dpi
-*Resolution 300dpi: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter: "statusdict /lettertray get exec"
-*PageSize Legal: "statusdict /legaltray get exec"
-*PageSize A4: "statusdict /a4tray get exec"
-*PageSize Executive: "statusdict /executivetray get exec"
-*PageSize Monarch/Monarch Envelope: "statusdict /3.875x7.5tray get exec"
-*PageSize Comm10/Comm10 Envelope: "statusdict /4.125x9.5tray get exec"
-*PageSize 7x9: "statusdict /7x9tray get exec"
-*PageSize A5: "statusdict /a5tray get exec"
-*PageSize B5/B5 Envelope: "statusdict /b5tray get exec"
-*PageSize C5/C5 Envelope: "statusdict /c5tray get exec"
-*PageSize DL/DL Envelope: "statusdict /envelopetray get exec dl"
-*PageSize Statement: "statusdict /halflettertray get exec"
-*PageSize TwoThirdsA4/Two Thirds A4: "statusdict /twothirdsa4tray get exec"
-*PageSize LetterSmall: "statusdict /lettertray get exec lettersmall"
-*PageSize LegalSmall: "statusdict /legaltray get exec legalsmall"
-*PageSize A4Small: "statusdict /a4tray get exec a4small"
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 13 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [522 756] (Executive) put
- dup [279 540] (Monarch) put
- dup [297 684] (Comm10) put
- dup [504 648] (7x9) put
- dup [419 595] (A5) put
- dup [515 728] (B5) put
- dup [459 649] (C5) put
- dup [311 623] (DL) put
- dup [396 612] (Statement) put
- dup [561 595] (TwoThirdsA4) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter: "letter"
-*PageRegion Legal: "legal"
-*PageRegion A4: "a4"
-*PageRegion Executive: "executivepage"
-*PageRegion Monarch/Monarch Envelope: "3.875x7.5"
-*PageRegion Comm10/Comm10 Envelope: "4.125x9.5"
-*PageRegion 7x9: "7x9"
-*PageRegion A5: "a5"
-*PageRegion B5/B5 Envelope: "b5"
-*PageRegion C5/C5 Envelope: "c5"
-*PageRegion DL/DL Envelope: "dl"
-*PageRegion Statement: "halfletter"
-*PageRegion TwoThirdsA4/Two Thirds A4: "twothirdsa4"
-*PageRegion LetterSmall: "lettersmall"
-*PageRegion LegalSmall: "legalsmall"
-*PageRegion A4Small: "a4small"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter: "12.0 4.8001 595.68 781.2 "
-*ImageableArea Legal: "12.0 12.1201 595.68 989.88 "
-*ImageableArea A4: "12.0 12.0 580.32 835.44 "
-*ImageableArea Executive: "13.4401 9.24 512.64 749.4 "
-*ImageableArea Monarch/Monarch Envelope: "10.0801 9.12 263.52 534.96 "
-*ImageableArea Comm10/Comm10 Envelope: "12.0 10.0801 280.8 679.92 "
-*ImageableArea 7x9: "12.0 9.24 488.16 642.84 "
-*ImageableArea A5: "13.4401 7.2 405.12 587.76 "
-*ImageableArea B5/B5 Envelope: "9.12 8.1601 500.64 722.16 "
-*ImageableArea C5/C5 Envelope: "13.4401 12.0 443.52 646.32 "
-*ImageableArea DL/DL Envelope: "10.08 9.24 301.92 618.84 "
-*ImageableArea Statement: "13.4401 9.24 382.08 606.84 "
-*ImageableArea TwoThirdsA4/Two Thirds A4: "9.12 9.24 546.72 590.04 "
-*ImageableArea LetterSmall: "25.44 30.0 578.4 760.8 "
-*ImageableArea LegalSmall: "61.92 39.96 545.76 963.0 "
-*ImageableArea A4Small: "23.52 26.04 568.8 807.0 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension Executive: "522 756"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension Comm10/Comm10 Envelope: "297 684"
-*PaperDimension 7x9: "504 648"
-*PaperDimension A5: "419 595"
-*PaperDimension B5/B5 Envelope: "515 728"
-*PaperDimension C5/C5 Envelope: "459 649"
-*PaperDimension DL/DL Envelope: "311 623"
-*PaperDimension Statement: "396 612"
-*PaperDimension TwoThirdsA4/Two Thirds A4: "561 595"
-*PaperDimension LetterSmall: "612 792"
-*PaperDimension LegalSmall: "612 1008"
-*PaperDimension A4Small: "595 842"
-
-*RequiresPageRegion Upper: True
-*LandscapeOrientation: Plus90
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Unknown
-*InputSlot Upper/Multimedia Feeder: "
- currentpagedevice /InputAttributes get
- 0 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse "
-*End
-*InputSlot Lower/Cassette: "
- currentpagedevice /InputAttributes get
- 1 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [1] put
- put setpagedevice
- } ifelse "
-*End
-*?InputSlot: "
-save
- 2 dict
- dup /0 (Upper) put
- dup /1 (Lower) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font Courier: Standard "(002.002)" Standard
-*Font Courier-Bold: Standard "(002.002)" Standard
-*Font Courier-BoldOblique: Standard "(002.002)" Standard
-*Font Courier-Oblique: Standard "(002.002)" Standard
-*Font Helvetica: Standard "(001.002)" Standard
-*Font Helvetica-Bold: Standard "(001.002)" Standard
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard
-*Font Helvetica-Narrow: Standard "(001.002)" Standard
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard
-*Font Helvetica-Oblique: Standard "(001.002)" Standard
-*Font Symbol: Special "(001.003)" Special
-*Font Times-Bold: Standard "(001.002)" Standard
-*Font Times-BoldItalic: Standard "(001.004)" Standard
-*Font Times-Italic: Standard "(001.002)" Standard
-*Font Times-Roman: Standard "(001.002)" Standard
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "printing"
-*Status: "printing test page"
-*Status: "busy"
-*Status: "waiting"
-*Status: "resetting printer"
-*Status: "printing engine test"
-*Status: "PrinterError: beam detect error"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: no toner cartridge"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: load option tray"
-*Status: "PrinterError: request manual feed of paper"
-*Status: "PrinterError: paper path 1"
-*Status: "PrinterError: paper path 3"
-*Status: "PrinterError: paper path 4"
-*Status: "PrinterError: paper path 6"
-*Status: "PrinterError: no paper tray"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: manual feed timeout"
-*Status: "PrinterError: Service 50"
-*Status: "PrinterError: Service 51"
-*Status: "PrinterError: Service 52"
-*Status: "PrinterError: Service 57"
-*Status: "PrinterError: Service 68"
-*Status: "PrinterError: Service 80"
-*Status: "PrinterError: Service 81"
-*Status: "PrinterError: Service 82"
-*Status: "PrinterError: Service 83"
-*Status: "PrinterError: Service 84"
-*Status: "PrinterError: Service 85"
-*Status: "PrinterError: Service 86"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "SerialB"
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "Internal"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "beam detect error"
-*PrinterError: "cover open"
-*PrinterError: "no toner cartridge"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "load option tray"
-*PrinterError: "request manual feed of paper"
-*PrinterError: "paper path 1"
-*PrinterError: "paper path 3"
-*PrinterError: "paper path 4"
-*PrinterError: "paper path 6"
-*PrinterError: "no paper tray"
-*PrinterError: "out of paper"
-*PrinterError: "manual feed timeout"
-*PrinterError: "Service 50"
-*PrinterError: "Service 51"
-*PrinterError: "Service 52"
-*PrinterError: "Service 57"
-*PrinterError: "Service 68"
-*PrinterError: "Service 80"
-*PrinterError: "Service 81"
-*PrinterError: "Service 82"
-*PrinterError: "Service 83"
-*PrinterError: "Service 84"
-*PrinterError: "Service 85"
-*PrinterError: "Service 86"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: Feb 7 1996
-*% The byte count of this file should be exactly 015971 or 016447
-*% depending on the filesystem it resides in.
-*% end of PPD file for DEClaser 1152
-
diff --git a/psprint_config/configuration/ppds/EFAX3010.PS b/psprint_config/configuration/ppds/EFAX3010.PS
deleted file mode 100644
index c406da17e78d..000000000000
--- a/psprint_config/configuration/ppds/EFAX3010.PS
+++ /dev/null
@@ -1,1698 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.1"
-*PCFileName: "EFAX3010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery ZX 5790)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery ZX 5790 Color Server v3010.104"
-*ShortNickName: "Fiery ZX 5790 v3010.104"
-*NickName: "Fiery ZX 5790 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*%EFIFlags *Instruct Column
-*%EFIGroup *Instruct Notes/Notes
-*%EFIJobNote *Instruct/Instructions :128
-
-*% === Options and Constraints ==============================
-
-*% Transparencies, Thick paper, and Transparent Interleave
-*% should only be printed from Manual Feed.
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-
-*UIConstraints: *PageSize Docupac *InputSlot Tray1
-*UIConstraints: *PageRegion Docupac *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize Docupac
-*UIConstraints: *InputSlot Tray1 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray2
-*UIConstraints: *PageRegion Docupac *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize Docupac
-*UIConstraints: *InputSlot Tray2 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray3
-*UIConstraints: *PageRegion Docupac *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize Docupac
-*UIConstraints: *InputSlot Tray3 *PageRegion Docupac
-
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray1
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray1 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray2
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray2 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray3
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray3 *PageRegion SEFB5
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-
-*UIConstraints: *PageSize B4 *InputSlot Tray1
-*UIConstraints: *PageRegion B4 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B4
-*UIConstraints: *InputSlot Tray1 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray2
-*UIConstraints: *PageRegion B4 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B4
-*UIConstraints: *InputSlot Tray2 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray3
-*UIConstraints: *PageRegion B4 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B4
-*UIConstraints: *InputSlot Tray3 *PageRegion B4
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFSharpness Spooler|Command
-*%EFIGroup *EFSharpness Job/Job
-*OpenUI *EFSharpness/Sharpness :PickOne
-*OrderDependency: 40 AnySetup *EFSharpness
-*DefaultEFSharpness: EFSharpnessDEF
-*EFSharpness EFSharpnessDEF/Printer's default: ""
-*EFSharpness Softer/Softer: " userdict /XJXsharpness known
- { 10 XJXsharpness }
- { (printerinfo sharpness 10) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Normal/Normal: " userdict /XJXsharpness known
- { 3 XJXsharpness }
- { (printerinfo sharpness 3) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Sharper/Sharper: " userdict /XJXsharpness known
- { 4 XJXsharpness }
- { (printerinfo sharpness 4) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSharpness
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 14 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 792] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [516 728] (SEFB5) put
- dup [684 842] (Docupac) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "9 12 589 783"
-*ImageableArea A4/A4: "9 12 572 833"
-*ImageableArea Legal/Legal: "9 9 600 985"
-*ImageableArea Tabloid/11x17: "9 9 780 1201"
-*ImageableArea A3/A3: "10 10 830 1168"
-*ImageableArea 8x10/8x10: "9 12 553 711"
-*ImageableArea Legal13/Legal 13: "9 9 600 913"
-*ImageableArea 9x12/9x12: "9 9 636 841"
-*ImageableArea SEFLet/SEF Letter: "9 10 600 770"
-*ImageableArea SEFA4/SEF A4: "9 10 583 820"
-*ImageableArea B4/B4: "9 9 717 1006"
-*ImageableArea B5/B5: "9 9 490 717"
-*ImageableArea SEFB5/SEF B5: "9 12 507 703"
-*ImageableArea Docupac/Docupac: "9 9 672 819"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension SEFB5/SEF B5: "516 728"
-*PaperDimension Docupac/Docupac: "684 842"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: "(printerinfo trayselect -1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Manual Feed: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 5.19.98
-*% End of PPD file
-*% The byte count of this file should be exactly 067211 or 068909
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery ZX 5790
diff --git a/psprint_config/configuration/ppds/EFAX4010.PS b/psprint_config/configuration/ppds/EFAX4010.PS
deleted file mode 100644
index 839cb98901b1..000000000000
--- a/psprint_config/configuration/ppds/EFAX4010.PS
+++ /dev/null
@@ -1,1976 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.0"
-*PCFileName: "EFAX4010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery ZX DocuColor 40)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery ZX DocuColor 40 Color Server v1.0"
-*ShortNickName: "Fiery ZX DocuColor 40 v1.0"
-*NickName: "Fiery ZX DocuColor 40 Color Server v1.0"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*% === Options and Constraints =========
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-*%EFIGroupName FreeForm/FreeForm :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*%EFIFlags *Instruct Column
-*%EFIGroup *Instruct Notes/Notes
-*%EFIJobNote *Instruct/Instructions :128
-
-*% Constraints on Compression and document printing
-*% (can't constraint on collate because is works with sorter...)
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-
-*% SlipSheet on means no Tray 3
-*UIConstraints: *Slipsheet True *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *Slipsheet True
-
-*% Slip Sheet disabled when Sorter On
-*UIConstraints: *Sorter True *Slipsheet True
-*UIConstraints: *Slipsheet True *Sorter True
-
-*% Slip Sheet disabled when stapling on
-*UIConstraints: *EFStapler On *Slipsheet True
-*UIConstraints: *Slipsheet True *EFStapler On
-
-*% Stapler must be off when the job is uncollated
-*UIConstraints: *EFCollate False *EFStapler On
-*UIConstraints: *EFStapler On *EFCollate False
-
-*% Stapler must be off for transparency and film
-*UIConstraints: *MediaType Transparent *EFStapler On
-*UIConstraints: *MediaType Interleaved *EFStapler On
-*UIConstraints: *MediaType Film *EFStapler On
-*UIConstraints: *EFStapler On *MediaType Transparent
-*UIConstraints: *EFStapler On *MediaType Interleaved
-*UIConstraints: *EFStapler On *MediaType Film
-
-*% Constraints on MediaType with Tray1-3...................
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *MediaType Film *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-*UIConstraints: *InputSlot Tray1 *MediaType Film
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *MediaType Film *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-*UIConstraints: *InputSlot Tray2 *MediaType Film
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *MediaType Film *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-*UIConstraints: *InputSlot Tray3 *MediaType Film
-
-*UIConstraints: *MediaType Thick *EFDuplex TopTop
-*UIConstraints: *MediaType Thick *EFDuplex TopBot
-*UIConstraints: *MediaType Transparent *EFDuplex TopTop
-*UIConstraints: *MediaType Transparent *EFDuplex TopBot
-*UIConstraints: *MediaType Interleaved *EFDuplex TopTop
-*UIConstraints: *MediaType Interleaved *EFDuplex TopBot
-*UIConstraints: *MediaType Film *EFDuplex TopTop
-*UIConstraints: *MediaType Film *EFDuplex TopBot
-*UIConstraints: *InputSlot TrayManual *EFDuplex TopTop
-*UIConstraints: *InputSlot TrayManual *EFDuplex TopBot
-
-*UIConstraints: *EFDuplex TopTop *MediaType Thick
-*UIConstraints: *EFDuplex TopTop *MediaType Transparent
-*UIConstraints: *EFDuplex TopTop *MediaType Interleaved
-*UIConstraints: *EFDuplex TopTop *MediaType Film
-*UIConstraints: *EFDuplex TopTop *InputSlot TrayManual
-*UIConstraints: *EFDuplex TopBot *MediaType Thick
-*UIConstraints: *EFDuplex TopBot *MediaType Transparent
-*UIConstraints: *EFDuplex TopBot *MediaType Interleaved
-*UIConstraints: *EFDuplex TopBot *MediaType Film
-*UIConstraints: *EFDuplex TopBot *InputSlot TrayManual
-
-*% Constraints for FreeForm =======================
-*UIConstraints: *EFCreateMaster *EFUseMaster
-*UIConstraints: *EFUseMaster *EFCreateMaster
-
-*% ColorWise UIConstraints start here
-*% TV@UIC1.0@CMYK@971202
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride DummyEFRGB_OR
-*UIConstraints: *EFRGBOverride DummyEFRGB_OR *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride DummyEFRGB_OR
-
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-
-*% ColorWise UIConstraints end here
-
-
-*% General Information and Defaults ===============
-*FreeVM: "16632226"
-*VMOption None/Standard: "16632226"
-*FCacheSize None: 204800
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*VariablePaperSize: True
-*PrintPSErrors: True
-*TTRasterizer: Type42
-*ContoneOnly: True
-*ScreenFreq: "100"
-*ScreenAngle: "50"
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "40"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *EFPrange Command
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70.0 AnySetup *EFPrange
-*DefaultEFPrange: All
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFScale Command|Rerip
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80.0 AnySetup *EFScale
-*DefaultEFScale: 100
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's Default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFCreateMaster Spooler|Command|Column|Rerip
-*%EFIGroup *EFCreateMaster FreeForm/FreeForm
-*OpenUI *EFCreateMaster/Create Master :PickOne
-*OrderDependency: 57.0 AnySetup *EFCreateMaster
-*DefaultEFCreateMaster: None
-*EFCreateMaster None/None: ""
-*EFCreateMaster formC1/1: " 1 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC2/2: " 2 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC3/3: " 3 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC4/4: " 4 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC5/5: " 5 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC6/6: " 6 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC7/7: " 7 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC8/8: " 8 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC9/9: " 9 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC10/10: " 10 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC11/11: " 11 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC12/12: " 12 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC13/13: " 13 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC14/14: " 14 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*EFCreateMaster formC15/15: " 15 /EFI_CODEV /ProcSet findresource dup
- /EfiCreateMaster known {/EfiCreateMaster
- get exec} { pop } ifelse"
-*End
-*CloseUI: *EFCreateMaster
-
-*%EFIFlags *EFUseMaster Spooler|Command|Column|Rerip
-*%EFIGroup *EFUseMaster FreeForm/FreeForm
-*OpenUI *EFUseMaster/Use Master :PickOne
-*OrderDependency: 57.0 AnySetup *EFUseMaster
-*DefaultEFUseMaster: None
-*EFUseMaster None/None: ""
-*EFUseMaster formU1/1: " 1 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU2/2: " 2 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU3/3: " 3 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU4/4: " 4 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU5/5: " 5 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU6/6: " 6 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU7/7: " 7 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU8/8: " 8 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU9/9: " 9 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU10/10: " 10 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU11/11: " 11 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU12/12: " 12 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU13/13: " 13 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU14/14: " 14 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*EFUseMaster formU15/15: " 15 /EFI_CODEV /ProcSet findresource dup /EfiUseMaster
- known {/EfiUseMaster get exec
- } { pop } ifelse"
-*End
-*CloseUI: *EFUseMaster
-
-*%EFIFlags *EFCollate Spooler|Command|Column
-*%EFIGroup *EFCollate Finishing/Finishing
-*OpenUI *EFCollate/Collation : Boolean
-*OrderDependency: 50.0 AnySetup *EFCollate
-*DefaultEFCollate: True
-*EFCollate True/Collated: "<< /Collate true>> setpagedevice"
-*EFCollate False/Uncollated: "<< /Collate false>> setpagedevice"
-*?EFCollate: "{currentpagedevice /Collate get } stopped { (False) }
- { {(True)} {(False)} ifelse } ifelse = flush"
-*End
-*CloseUI: *EFCollate
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: Reverse
-*EFOutputOrder Normal/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- if "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- if "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFDuplex Spooler|Command|Column|Rerip
-*%EFIGroup *EFDuplex Finishing/Finishing
-*OpenUI *EFDuplex/Duplex :PickOne
-*OrderDependency: 50.0 AnySetup *EFDuplex
-*DefaultEFDuplex: False
-*EFDuplex False/Off: "<< /Duplex false /Policies << /Duplex 1 >> >> setpagedevice"
-*EFDuplex TopTop/Top-Top: "
- << /Duplex true /Policies << /Duplex 0 >> /Tumble false >> setpagedevice "
-*End
-*EFDuplex TopBot/Top-Bottom: "
- << /Duplex true /Policies << /Duplex 0 >> /Tumble true >> setpagedevice "
-*End
-*?EFDuplex: "{currentpagedevice /Duplex get } stopped { (False) }
- { {(True)} {(False)} ifelse } ifelse = flush"
-*End
-*CloseUI: *EFDuplex
-
-*%EFIFlags *Slipsheet Spooler|Command|Column
-*%EFIGroup *Slipsheet Finishing/Finishing
-*OpenUI *Slipsheet/Slip Sheet :Boolean
-*OrderDependency: 12.0 AnySetup *Slipsheet
-*DefaultSlipsheet: False
-*Slipsheet True/On:" userdict /XJXsetSlipSheet known
- { 1 XJXsetSlipSheet }
- if "
-*End
-*Slipsheet False/Off:" userdict /XJXsetSlipSheet known
- { 0 XJXsetSlipSheet }
- if "
-*End
-*CloseUI: *Slipsheet
-
-*%EFIFlags *Sorter Command|Column
-*%EFIGroup *Sorter Finishing/Finishing
-*OpenUI *Sorter/Sorter : PickOne
-*OrderDependency: 40.0 AnySetup *Sorter
-*DefaultSorter: False
-*Sorter False/Off: " userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- if "
-*End
-*Sorter True/On: " userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- if "
-*End
-*CloseUI: *Sorter
-
-*%EFIFlags *EFStapler Command|Column
-*%EFIGroup *EFStapler Finishing/Finishing
-*OpenUI *EFStapler/Stapler :PickOne
-*OrderDependency: 40.0 AnySetup *EFStapler
-*DefaultEFStapler: Off
-*EFStapler Off/Off: " userdict /XJXsetstapler known
- { 0 XJXsetstapler }
- if "
-*End
-*EFStapler On/On: " userdict /XJXsetstapler known
- { 1 XJXsetstapler }
- if "
-*End
-*CloseUI: *EFStapler
-
-*%EFIFlags *EFCopierMode Command
-*%EFIGroup *EFCopierMode Color/Color
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40.0 AnySetup *EFCopierMode
-*DefaultEFCopierMode: TextInh
-*EFCopierMode TextInh/Text Enhancement: " userdict /XJXsetmapmode known
- { 2 XJXsetmapmode }
- if "
-*End
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- if "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- if "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *ColorModel Command|Rerip
-*%EFIGroup *ColorModel Color/Color
-*OpenUI *ColorModel/Color Mode :PickOne
-*OrderDependency: 15.0 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode }
- { << /ProcessColorModel /DeviceCMYK >> setpagedevice } ifelse "
-*End
-*ColorModel Gray/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode }
- { << /ProcessColorModel /DeviceGray >> setpagedevice } ifelse "
-*End
-*?ColorModel: " currentpagedevice /ProcessColorModel get /DeviceCMYK eq {(CMYK)}{(Gray)} ifelse == "
-*CloseUI: *ColorModel
-
-*%EFIFlags *EFOverprint Command|Rerip
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :Boolean
-*OrderDependency: 40.0 AnySetup *EFOverprint
-*DefaultEFOverprint: False
-*EFOverprint True/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- if "
-*End
-*EFOverprint False/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *DEFPAPERSIZE Setup
-*OpenUIEFI *DEFPAPERSIZE/Default Paper Sizes :PickOne
-*OrderDependency: 20.0 AnySetup *DEFPAPERSIZE
-*DefaultDEFPAPERSIZE: US
-*DEFPAPERSIZE US/US: ""
-*DEFPAPERSIZE Metric/Metric: ""
-*CloseUIEFI: *DEFPAPERSIZE
-
-*%EFIFlags *CONVPAPERSIZE Setup
-*OpenUIEFI *CONVPAPERSIZE/Convert Paper Sizes : PickOne
-*OrderDependency: 25.0 AnySetup *CONVPAPERSIZE
-*DefaultCONVPAPERSIZE: False
-*CONVPAPERSIZE False/No: ""
-*CONVPAPERSIZE LetterToA4/Letter/11x17->A4/A3: ""
-*CONVPAPERSIZE A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *CONVPAPERSIZE
-
-*%EFIFlags *COVPGATEND Setup
-*OpenUIEFI *COVPGATEND/Print Cover Page : PickOne
-*OrderDependency: 30.0 AnySetup *COVPGATEND
-*DefaultCOVPGATEND: NO
-*COVPGATEND YES/Yes: ""
-*COVPGATEND NO/No: ""
-*CloseUIEFI: *COVPGATEND
-
-*%EFIFlags *COURIERSUBST Setup
-*OpenUIEFI *COURIERSUBST/Allow Courier Substitution :PickOne
-*OrderDependency: 35.0 AnySetup *COURIERSUBST
-*DefaultCOURIERSUBST: YES
-*COURIERSUBST YES/Yes: ""
-*COURIERSUBST NO/No: ""
-*CloseUIEFI: *COURIERSUBST
-
-*%EFIFlags *PSERROR Setup
-*OpenUIEFI *PSERROR/Print to PS Error : PickOne
-*OrderDependency: 40.0 AnySetup *PSERROR
-*DefaultPSERROR: NO
-*PSERROR YES/Yes: ""
-*PSERROR NO/No: ""
-*CloseUIEFI: *PSERROR
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20.0 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *DefChkHPBlack Setup
-*OpenUIEFI *DefChkHPBlack/Detect Black as default : PickOne
-*OrderDependency: 21.0 AnySetup *DefChkHPBlack
-*DefaultDefChkHPBlack: YES
-*DefChkHPBlack YES/Yes: ""
-*DefChkHPBlack NO/No: ""
-*CloseUIEFI: *DefChkHPBlack
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50.0 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*MediaType Film/Opaque Film: " userdict /XJXsetmediatype known
- { 5 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60.0 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: Presentation
-*EFColorRendDict Photographic/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent } if "
-*End
-*EFColorRendDict Presentation/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent } if "
-*End
-*EFColorRendDict Solid/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent } if "
-*End
-*EFColorRendDict None/None: ""
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*% ColorWise body starts here
-*% TV@B1.0@CMYK@971217
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetLightestColAdj known {
- userdict /EFIColordict get /SetLightestColAdj get exec
- } if } if "
-*End
-*EFBrightness +0.16/90% Lighter: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetLighterColAdj known {
- userdict /EFIColordict get /SetLighterColAdj get exec
- } if } if "
-*End
-*EFBrightness +0.08/95% Light: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetLightColAdj known {
- userdict /EFIColordict get /SetLightColAdj get exec
- } if } if "
-*End
-*EFBrightness 00.00/100% Normal: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetNormalColAdj known {
- userdict /EFIColordict get /SetNormalColAdj get exec
- } if } if "
-*End
-*EFBrightness -0.08/105% Dark: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetDarkColAdj known {
- userdict /EFIColordict get /SetDarkColAdj get exec
- } if } if "
-*End
-*EFBrightness -0.16/110% Darker: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetDarkerColAdj known {
- userdict /EFIColordict get /SetDarkerColAdj get exec
- } if } if "
-*End
-*EFBrightness -0.24/115% Darkest: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetDarkestColAdj known {
- userdict /EFIColordict get /SetDarkestColAdj get exec
- } if } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: DummyEFRGB_OR
-*EFRGBOverride DummyEFRGB_OR/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBColorSpaceBypass known {
- (EFIRGB) userdict /EFIColordict get /SetRGBColorSpaceBypass get exec
- } if } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBColorSpaceBypass known {
- (SRGB) userdict /EFIColordict get /SetRGBColorSpaceBypass get exec
- } if } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBColorSpaceBypass known {
- (APPLE13) userdict /EFIColordict get /SetRGBColorSpaceBypass get exec
- } if } if "
-*End
-*EFRGBOverride Other/Other: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBColorSpaceBypass known {
- (OTHER) userdict /EFIColordict get /SetRGBColorSpaceBypass get exec
- } if } if "
-*End
-*EFRGBOverride Off/Off: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBColorSpaceBypass known {
- null userdict /EFIColordict get /SetRGBColorSpaceBypass get exec
- } if } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: DummyEFRGB_OG
-*EFRGBOtherGamma DummyEFRGB_OG/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (1.0) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (1.2) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (1.4) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (1.6) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (1.8) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (2.0) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (2.2) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (2.4) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (2.6) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (2.8) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherGamma known {
- (3.0) userdict /EFIColordict get /SetRGBOtherGamma get exec
- } if } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: DummyEFRGB_OW
-*EFRGBOtherWtPt DummyEFRGB_OW/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherWhitePoint known {
- (5000K) userdict /EFIColordict get /SetRGBOtherWhitePoint get exec
- } if } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherWhitePoint known {
- (5500K) userdict /EFIColordict get /SetRGBOtherWhitePoint get exec
- } if } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherWhitePoint known {
- (6500K) userdict /EFIColordict get /SetRGBOtherWhitePoint get exec
- } if } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherWhitePoint known {
- (7500K) userdict /EFIColordict get /SetRGBOtherWhitePoint get exec
- } if } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherWhitePoint known {
- (9300K) userdict /EFIColordict get /SetRGBOtherWhitePoint get exec
- } if } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: DummyEFRGB_OP
-*EFRGBOtherPhos DummyEFRGB_OP/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (Hitachi EBU) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (Hitachi/Ikegami) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (NTSC) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (Radius Pivot) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (SMPTE) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetRGBOtherPhosphors known {
- (Trinitron) userdict /EFIColordict get /SetRGBOtherPhosphors get exec
- } if } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (SWOP-Coated) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation DIC/DIC: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (DIC) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Euroscale/Euroscale: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Euroscale) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Custom1/Custom-1: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Custom-1) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Custom2/Custom-2: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Custom-2) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Custom3/Custom-3: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Custom-3) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Custom4/Custom-4: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Custom-4) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation Custom5/Custom-5: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (Custom-5) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation None/None: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (.None) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetCMYKSimulation known {
- (.MatchCopy) userdict /EFIColordict get /SetCMYKSimulation get exec
- } if } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetFastSimulationSpeed known {
- userdict /EFIColordict get /SetFastSimulationSpeed get exec
- } if } if "
-*End
-*EFSimSpeed Full/Full: " userdict /EFIColordict known {
- userdict /EFIColordict get /SetSlowSimulationSpeed known {
- userdict /EFIColordict get /SetSlowSimulationSpeed get exec
- } if } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " userdict /EFIColordict known {
- userdict /EFIColordict get /DisablePureBlack known {
- userdict /EFIColordict get /DisablePureBlack get exec
- } if } if "
-*End
-*EFPureBlack True/On: " userdict /EFIColordict known {
- userdict /EFIColordict get /EnablePureBlack known {
- userdict /EFIColordict get /EnablePureBlack get exec
- } if } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " userdict /EFIColordict known {
- userdict /EFIColordict get /DisableBlackOverprint known {
- userdict /EFIColordict get /DisableBlackOverprint get exec
- } if } if "
-*End
-*EFBlkOverprint True/On: " userdict /EFIColordict known {
- userdict /EFIColordict get /EnableBlackOverprint known {
- userdict /EFIColordict get /EnableBlackOverprint get exec
- } if } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " userdict /EFIColordict known {
- userdict /EFIColordict get /DisableSpotColorMatching known {
- userdict /EFIColordict get /DisableSpotColorMatching get exec
- } if } if "
-*End
-*EFSpotColors True/On: " userdict /EFIColordict known {
- userdict /EFIColordict get /EnableSpotColorMatching known {
- userdict /EFIColordict get /EnableSpotColorMatching get exec
- } if } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-
-*%EFIFlags *EFHPBlack Spooler|Command|Rerip
-*%EFIGroup *EFHPBlack Job/Job
-*OpenUI *EFHPBlack/Black Detection : Boolean
-*OrderDependency: 40.0 AnySetup *EFHPBlack
-*DefaultEFHPBlack: True
-*EFHPBlack False/Off: " userdict /XJXsethpblack known
- { 0 XJXsethpblack }
- if "
-*End
-*EFHPBlack True/On: " userdict /XJXsethpblack known
- { 1 XJXsethpblack }
- if "
-*End
-*CloseUI: *EFHPBlack
-
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-
-*%EFIFlags *PageSize Command|Column|Rerip
-*%EFIGroup *PageSize Media/Media
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90.0 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { (TabloidExtra) XJXsetpagesize } { 12x18 } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal) XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize ISOB4/ISOB4: " userdict /XJXsetpagesize known
- { (ISOB4) XJXsetpagesize } { isob4 } ifelse "
-*End
-*PageSize ISOB5/ISOB5: " userdict /XJXsetpagesize known
- { (ISOB5) XJXsetpagesize }
- { << /PageSize [499 709] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A6/SEF A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { SEFA6 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFISOB5/SEF ISOB5: " userdict /XJXsetpagesize known
- { (ISOB5SEF) XJXsetpagesize }
- { << /PageSize [499 709] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (EightByTenSEF) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize 9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (NineByEleven) XJXsetpagesize } { SEF9x11 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize Docupac/SEF Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { SEFDocupac } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 18 dict
- dup [612 792] (Letter) put
- dup [595 842] (A4) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [864 1296] (TabloidExtra) put
- dup [612 1008] (Legal) put
- dup [612 936] (Legal13) put
- dup [709 1001] (ISOB4) put
- dup [499 709] (ISOB5) put
- dup [297 420] (A6) put
- dup [612 793] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [499 708] (SEFISOB5) put
- dup [576 721] (SEF8x10) put
- dup [576 720] (8x10) put
- dup [648 792] (9x11) put
- dup [648 864] (9x12) put
- dup [684 842] (Docupac) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95.0 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { << (TabloidExtra) XJXsetpagesize } { 12x18 } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal) XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion ISOB4/ISOB4: " userdict /XJXsetpagesize known
- { (ISOB4) XJXsetpagesize } { isob4 } ifelse "
-*End
-*PageRegion ISOB5/ISOB5: " userdict /XJXsetpagesize known
- { (ISOB5) XJXsetpagesize }
- { << /PageSize [499 709] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A6/SEF A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { SEFA6 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFISOB5/SEF ISOB5: " userdict /XJXsetpagesize known
- { (ISOB5SEF) XJXsetpagesize }
- { << /PageSize [499 709] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (SEF8x10) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (8x10) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion 9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (9x11) XJXsetpagesize } { SEF9x11 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (9x12) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion Docupac/SEF Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { SEFDocupac } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "2 2 610 790"
-*ImageableArea A4/A4: "2 2 593 840"
-*ImageableArea Tabloid/11x17: "7 2 785 1222"
-*ImageableArea A3/A3: "2 2 840 1189"
-*ImageableArea TabloidExtra/12x18: "9 3 855 1293"
-*ImageableArea Legal/Legal: "7 2 605 1006"
-*ImageableArea Legal13/Legal 13: "7 2 605 934"
-*ImageableArea ISOB4/ISOB4: "7 2 702 999"
-*ImageableArea ISOB5/ISOB5: "2 2 497 707"
-*ImageableArea A6/SEF A6: "7 2 290 418"
-*ImageableArea SEFLet/SEF Letter: "7 2 605 790"
-*ImageableArea SEFA4/SEF A4: "7 2 588 840"
-*ImageableArea SEFISOB5/SEF ISOB5: "7 2 492 707"
-*ImageableArea SEF8x10/SEF 8x10: "7 2 569 718"
-*ImageableArea 8x10/8x10: "2 2 574 718"
-*ImageableArea 9x11/SEF 9x11: "7 2 641 790"
-*ImageableArea 9x12/9x12: "7 2 641 862"
-*ImageableArea Docupac/SEF Docupac: "7 2 677 840"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension TabloidExtra/12x18: "864 1296"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension ISOB4/ISOB4: "709 1001"
-*PaperDimension ISOB5/ISOB5: "499 709"
-*PaperDimension A6/SEF A6: "297 420"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension SEFISOB5/SEF ISOB5: "499 708"
-*PaperDimension SEF8x10/SEF 8x10: "576 721"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension 9x11/SEF 9x11: "648 792"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension Docupac/SEF Docupac: "684 842"
-
-*% Custom Page Sizes
-*CustomPageSize True: "
- pop pop pop 2 dict begin
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end setpagedevice"
-*End
-*ParamCustomPageSize Width: 1 points 0 864
-*ParamCustomPageSize Height: 2 points 0 1296
-*ParamCustomPageSize WidthOffset: 3 points 0 0
-*ParamCustomPageSize HeightOffset: 4 points 0 0
-*ParamCustomPageSize Orientation: 5 int 0 0
-*MaxMediaWidth: "864"
-*MaxMediaHeight: "1296"
-*HWMargins: 0 0 0 0
-
-*% PPD pages ends
-
-*RequiresPageRegion All: True
-
-*%EFIFlags *InputSlot Command|Spooler|Column
-*%EFIGroup *InputSlot Media/Media
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20.0 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/Auto Select: " userdict /XJXsettraysel known
- { -1 XJXsettraysel }
- if "
-*End
-*InputSlot Tray1/Tray 1: " userdict /XJXsettraysel known
- { 1 XJXsettraysel }
- if "
-*End
-*InputSlot Tray2/Tray 2: " userdict /XJXsettraysel known
- { 2 XJXsettraysel }
- if "
-*End
-*InputSlot Tray3/Tray 3: " userdict /XJXsettraysel known
- { 3 XJXsettraysel }
- if "
-*End
-*InputSlot TrayManual/Bypass Tray: " userdict /XJXsettraysel known
- { 4 XJXsettraysel }
- if "
-*End
-*CloseUI: *InputSlot
-
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.100lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.100lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.100lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.100lpi.400dpi: "0"
-*ColorSepScreenAngle Black.100lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.100lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.100lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.100lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.100lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.100lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.100lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.100lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.100lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 2.13.98
-*% End of PPD file
-*% The byte count of this file should be exactly 077509 or 079485
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery ZX DocuColor 40
diff --git a/psprint_config/configuration/ppds/EFAX5010.PS b/psprint_config/configuration/ppds/EFAX5010.PS
deleted file mode 100644
index 08580b2c82ef..000000000000
--- a/psprint_config/configuration/ppds/EFAX5010.PS
+++ /dev/null
@@ -1,2190 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.0"
-*PCFileName: "EFAX5010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery ZX 5750)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery ZX 5750 Color Server v3010.104"
-*ShortNickName: "Fiery ZX 5750 v3010.104"
-*NickName: "Fiery ZX 5750 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*%EFIFlags *Instruct Column
-*%EFIGroup *Instruct Notes/Notes
-*%EFIJobNote *Instruct/Instructions :128
-
-*% === Options and Constraints ==============================
-
-*% UIConstraints for Trays, Paper Sizes, and Media Types
-
-*% Only Plain paper may be printed from the trays.
-*% Disallow all other media types from trays 1-4.
-
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Transparent
-
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Thick
-
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Interleaved
-
-*UIConstraints: *MediaType Coated *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Coated
-
-*UIConstraints: *MediaType Thick2 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Thick2
-
-*UIConstraints: *MediaType Tacking *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Tacking
-
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType SSTransfer
-
-*UIConstraints: *MediaType Labels *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Labels
-
-*% Certain paper sizes may only be printed Manualfeed
-*% Disallow these paper sizes from trays 1-4.
-
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray1
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray1 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray2
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray2 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray3
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray3 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray4
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray4 *PageRegion TabloidExtra
-
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray1
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray1 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray2
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray2 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray3
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray3 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray4
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray4 *PageRegion SEF8x10
-
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray1
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray1 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray2
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray2 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray3
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray3 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray4
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray4 *PageRegion SEF9x11
-
-*UIConstraints: *PageSize 9x11 *InputSlot Tray1
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize 9x11
-*UIConstraints: *InputSlot Tray1 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray2
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize 9x11
-*UIConstraints: *InputSlot Tray2 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray3
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize 9x11
-*UIConstraints: *InputSlot Tray3 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray4
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize 9x11
-*UIConstraints: *InputSlot Tray4 *PageRegion 9x11
-
-*UIConstraints: *PageSize A6 *InputSlot Tray1
-*UIConstraints: *PageRegion A6 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize A6
-*UIConstraints: *InputSlot Tray1 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray2
-*UIConstraints: *PageRegion A6 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize A6
-*UIConstraints: *InputSlot Tray2 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray3
-*UIConstraints: *PageRegion A6 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize A6
-*UIConstraints: *InputSlot Tray3 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray4
-*UIConstraints: *PageRegion A6 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize A6
-*UIConstraints: *InputSlot Tray4 *PageRegion A6
-
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray1
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray1 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray2
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray2 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray3
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray3 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray4
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray4 *PageRegion SEFB5
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray4
-*UIConstraints: *PageRegion B5 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize B5
-*UIConstraints: *InputSlot Tray4 *PageRegion B5
-
-*UIConstraints: *PageSize 4x6 *InputSlot Tray1
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize 4x6
-*UIConstraints: *InputSlot Tray1 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray2
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize 4x6
-*UIConstraints: *InputSlot Tray2 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray3
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize 4x6
-*UIConstraints: *InputSlot Tray3 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray4
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize 4x6
-*UIConstraints: *InputSlot Tray4 *PageRegion 4x6
-
-*% Each paper size is supported for only certain media
-*% types. Disallow unsupported combinations.
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Transparent
-*UIConstraints: *PageRegion TabloidExtra *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize TabloidExtra
-*UIConstraints: *MediaType Transparent *PageRegion TabloidExtra
-*UIConstraints: *PageSize Legal13 *MediaType Transparent
-*UIConstraints: *PageRegion Legal13 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize Legal13
-*UIConstraints: *MediaType Transparent *PageRegion Legal13
-*UIConstraints: *PageSize Legal *MediaType Transparent
-*UIConstraints: *PageRegion Legal *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize Legal
-*UIConstraints: *MediaType Transparent *PageRegion Legal
-*UIConstraints: *PageSize SEF8x10 *MediaType Transparent
-*UIConstraints: *PageRegion SEF8x10 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEF8x10
-*UIConstraints: *MediaType Transparent *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Transparent
-*UIConstraints: *PageRegion 8x10 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 8x10
-*UIConstraints: *MediaType Transparent *PageRegion 8x10
-*UIConstraints: *PageSize SEF9x11 *MediaType Transparent
-*UIConstraints: *PageRegion SEF9x11 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEF9x11
-*UIConstraints: *MediaType Transparent *PageRegion SEF9x11
-*UIConstraints: *PageSize 9x11 *MediaType Transparent
-*UIConstraints: *PageRegion 9x11 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 9x11
-*UIConstraints: *MediaType Transparent *PageRegion 9x11
-*UIConstraints: *PageSize 9x12 *MediaType Transparent
-*UIConstraints: *PageRegion 9x12 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 9x12
-*UIConstraints: *MediaType Transparent *PageRegion 9x12
-*UIConstraints: *PageSize A6 *MediaType Transparent
-*UIConstraints: *PageRegion A6 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize A6
-*UIConstraints: *MediaType Transparent *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Transparent
-*UIConstraints: *PageRegion B4 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize B4
-*UIConstraints: *MediaType Transparent *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Transparent
-*UIConstraints: *PageRegion SEFB5 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEFB5
-*UIConstraints: *MediaType Transparent *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Transparent
-*UIConstraints: *PageRegion B5 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize B5
-*UIConstraints: *MediaType Transparent *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Transparent
-*UIConstraints: *PageRegion 4x6 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 4x6
-*UIConstraints: *MediaType Transparent *PageRegion 4x6
-
-*UIConstraints: *PageSize 8x10 *MediaType Thick
-*UIConstraints: *PageRegion 8x10 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize 8x10
-*UIConstraints: *MediaType Thick *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Thick
-*UIConstraints: *PageRegion A6 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize A6
-*UIConstraints: *MediaType Thick *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Thick
-*UIConstraints: *PageRegion B4 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize B4
-*UIConstraints: *MediaType Thick *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Thick
-*UIConstraints: *PageRegion SEFB5 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize SEFB5
-*UIConstraints: *MediaType Thick *PageRegion SEFB5
-*UIConstraints: *PageSize 4x6 *MediaType Thick
-*UIConstraints: *PageRegion 4x6 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize 4x6
-*UIConstraints: *MediaType Thick *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Interleaved
-*UIConstraints: *PageRegion TabloidExtra *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize TabloidExtra
-*UIConstraints: *MediaType Interleaved *PageRegion TabloidExtra
-*UIConstraints: *PageSize Legal13 *MediaType Interleaved
-*UIConstraints: *PageRegion Legal13 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize Legal13
-*UIConstraints: *MediaType Interleaved *PageRegion Legal13
-*UIConstraints: *PageSize Legal *MediaType Interleaved
-*UIConstraints: *PageRegion Legal *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize Legal
-*UIConstraints: *MediaType Interleaved *PageRegion Legal
-*UIConstraints: *PageSize SEF8x10 *MediaType Interleaved
-*UIConstraints: *PageRegion SEF8x10 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEF8x10
-*UIConstraints: *MediaType Interleaved *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Interleaved
-*UIConstraints: *PageRegion 8x10 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 8x10
-*UIConstraints: *MediaType Interleaved *PageRegion 8x10
-*UIConstraints: *PageSize SEF9x11 *MediaType Interleaved
-*UIConstraints: *PageRegion SEF9x11 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEF9x11
-*UIConstraints: *MediaType Interleaved *PageRegion SEF9x11
-*UIConstraints: *PageSize 9x11 *MediaType Interleaved
-*UIConstraints: *PageRegion 9x11 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 9x11
-*UIConstraints: *MediaType Interleaved *PageRegion 9x11
-*UIConstraints: *PageSize 9x12 *MediaType Interleaved
-*UIConstraints: *PageRegion 9x12 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 9x12
-*UIConstraints: *MediaType Interleaved *PageRegion 9x12
-*UIConstraints: *PageSize A6 *MediaType Interleaved
-*UIConstraints: *PageRegion A6 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize A6
-*UIConstraints: *MediaType Interleaved *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Interleaved
-*UIConstraints: *PageRegion B4 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize B4
-*UIConstraints: *MediaType Interleaved *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Interleaved
-*UIConstraints: *PageRegion SEFB5 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEFB5
-*UIConstraints: *MediaType Interleaved *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Interleaved
-*UIConstraints: *PageRegion B5 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize B5
-*UIConstraints: *MediaType Interleaved *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Interleaved
-*UIConstraints: *PageRegion 4x6 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 4x6
-*UIConstraints: *MediaType Interleaved *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Coated
-*UIConstraints: *PageRegion TabloidExtra *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize TabloidExtra
-*UIConstraints: *MediaType Coated *PageRegion TabloidExtra
-*UIConstraints: *PageSize A6 *MediaType Coated
-*UIConstraints: *PageRegion A6 *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize A6
-*UIConstraints: *MediaType Coated *PageRegion A6
-*UIConstraints: *PageSize 4x6 *MediaType Coated
-*UIConstraints: *PageRegion 4x6 *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize 4x6
-*UIConstraints: *MediaType Coated *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Thick2
-*UIConstraints: *PageRegion TabloidExtra *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize TabloidExtra
-*UIConstraints: *MediaType Thick2 *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Thick2
-*UIConstraints: *PageRegion SEF8x10 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize SEF8x10
-*UIConstraints: *MediaType Thick2 *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Thick2
-*UIConstraints: *PageRegion 8x10 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize 8x10
-*UIConstraints: *MediaType Thick2 *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Thick2
-*UIConstraints: *PageRegion A6 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize A6
-*UIConstraints: *MediaType Thick2 *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Thick2
-*UIConstraints: *PageRegion B4 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize B4
-*UIConstraints: *MediaType Thick2 *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Thick2
-*UIConstraints: *PageRegion SEFB5 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize SEFB5
-*UIConstraints: *MediaType Thick2 *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Thick2
-*UIConstraints: *PageRegion B5 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize B5
-*UIConstraints: *MediaType Thick2 *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Thick2
-*UIConstraints: *PageRegion 4x6 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize 4x6
-*UIConstraints: *MediaType Thick2 *PageRegion 4x6
-
-*UIConstraints: *PageSize Tabloid *MediaType Tacking
-*UIConstraints: *PageRegion Tabloid *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize Tabloid
-*UIConstraints: *MediaType Tacking *PageRegion Tabloid
-*UIConstraints: *PageSize TabloidExtra *MediaType Tacking
-*UIConstraints: *PageRegion TabloidExtra *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize TabloidExtra
-*UIConstraints: *MediaType Tacking *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Tacking
-*UIConstraints: *PageRegion SEF8x10 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize SEF8x10
-*UIConstraints: *MediaType Tacking *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Tacking
-*UIConstraints: *PageRegion 8x10 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize 8x10
-*UIConstraints: *MediaType Tacking *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Tacking
-*UIConstraints: *PageRegion A6 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize A6
-*UIConstraints: *MediaType Tacking *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Tacking
-*UIConstraints: *PageRegion B4 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize B4
-*UIConstraints: *MediaType Tacking *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Tacking
-*UIConstraints: *PageRegion SEFB5 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize SEFB5
-*UIConstraints: *MediaType Tacking *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Tacking
-*UIConstraints: *PageRegion B5 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize B5
-*UIConstraints: *MediaType Tacking *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Tacking
-*UIConstraints: *PageRegion 4x6 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize 4x6
-*UIConstraints: *MediaType Tacking *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType SSTransfer
-*UIConstraints: *PageRegion TabloidExtra *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize TabloidExtra
-*UIConstraints: *MediaType SSTransfer *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType SSTransfer
-*UIConstraints: *PageRegion SEF8x10 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize SEF8x10
-*UIConstraints: *MediaType SSTransfer *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType SSTransfer
-*UIConstraints: *PageRegion 8x10 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize 8x10
-*UIConstraints: *MediaType SSTransfer *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType SSTransfer
-*UIConstraints: *PageRegion A6 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize A6
-*UIConstraints: *MediaType SSTransfer *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType SSTransfer
-*UIConstraints: *PageRegion B4 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize B4
-*UIConstraints: *MediaType SSTransfer *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType SSTransfer
-*UIConstraints: *PageRegion SEFB5 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize SEFB5
-*UIConstraints: *MediaType SSTransfer *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType SSTransfer
-*UIConstraints: *PageRegion B5 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize B5
-*UIConstraints: *MediaType SSTransfer *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType SSTransfer
-*UIConstraints: *PageRegion 4x6 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize 4x6
-*UIConstraints: *MediaType SSTransfer *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Labels
-*UIConstraints: *PageRegion TabloidExtra *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize TabloidExtra
-*UIConstraints: *MediaType Labels *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Labels
-*UIConstraints: *PageRegion SEF8x10 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize SEF8x10
-*UIConstraints: *MediaType Labels *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Labels
-*UIConstraints: *PageRegion 8x10 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize 8x10
-*UIConstraints: *MediaType Labels *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Labels
-*UIConstraints: *PageRegion A6 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize A6
-*UIConstraints: *MediaType Labels *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Labels
-*UIConstraints: *PageRegion B4 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize B4
-*UIConstraints: *MediaType Labels *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Labels
-*UIConstraints: *PageRegion SEFB5 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize SEFB5
-*UIConstraints: *MediaType Labels *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Labels
-*UIConstraints: *PageRegion B5 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize B5
-*UIConstraints: *MediaType Labels *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Labels
-*UIConstraints: *PageRegion 4x6 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize 4x6
-*UIConstraints: *MediaType Labels *PageRegion 4x6
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*MediaType Coated/Coated Paper: " userdict /XJXsetmediatype known
- { 5 XJXsetmediatype } if"
-*End
-*MediaType Thick2/Thick Paper 2: " userdict /XJXsetmediatype known
- { 6 XJXsetmediatype } if"
-*End
-*MediaType Tacking/Tacking Film: " userdict /XJXsetmediatype known
- { 7 XJXsetmediatype } if"
-*End
-*MediaType SSTransfer/SST: " userdict /XJXsetmediatype known
- { 8 XJXsetmediatype } if"
-*End
-*MediaType Labels/Labels: " userdict /XJXsetmediatype known
- { 9 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { (TabloidExtra) XJXsetpagesize }
- { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize 4x6/Postcard: " userdict /XJXsetpagesize known
- { (Postcard) XJXsetpagesize }
- { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A6/A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { a6 } ifelse "
-*End
-*PageSize 9x11/9x11: " userdict /XJXsetpagesize known
- { (NineByEleven) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType null
- /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (NineByElevenSEF) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (EightByTenSEF) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 19 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 793] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [516 728] (SEFB5) put
- dup [864 1296] (TabloidExtra) put
- dup [288 432] (4x6) put
- dup [297 420] (A6) put
- dup [648 792] (9x11) put
- dup [648 793] (SEF9x11) put
- dup [576 721] (SEF8x10) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { (TabloidExtra) XJXsetpagesize }
- { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion 4x6/Postcard: " userdict /XJXsetpagesize known
- { (Postcard) XJXsetpagesize }
- { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A6/A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { a6 } ifelse "
-*End
-*PageRegion 9x11/9x11: " userdict /XJXsetpagesize known
- { (NineByEleven) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType null
- /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (NineByElevenSEF) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (EightByTenSEF) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "14 11 595 783"
-*ImageableArea A4/A4: "14 11 578 833"
-*ImageableArea Legal/Legal: "9 14 601 991"
-*ImageableArea Tabloid/11x17: "9 14 781 1207"
-*ImageableArea A3/A3: "9 14 829 1172"
-*ImageableArea 8x10/8x10: "14 11 559 711"
-*ImageableArea Legal13/Legal 13: "9 14 601 919"
-*ImageableArea 9x12/9x12: "9 14 637 847"
-*ImageableArea SEFLet/SEF Letter: "9 14 601 775"
-*ImageableArea SEFA4/SEF A4: "9 14 584 825"
-*ImageableArea TabloidExtra/12x18: "9 11 856 1282"
-*ImageableArea 4x6/Postcard: "9 14 277 415"
-*ImageableArea B4/B4: "9 14 718 1015"
-*ImageableArea B5/B5: "14 11 499 720"
-*ImageableArea SEFB5/SEF B5: "9 14 505 712"
-*ImageableArea A6/A6: "9 14 286 403"
-*ImageableArea 9x11/9x11: "14 11 631 783"
-*ImageableArea SEF9x11/SEF 9x11: "9 14 637 775"
-*ImageableArea SEF8x10/SEF 8x10: "9 14 565 703"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension SEFB5/SEF B5: "516 728"
-*PaperDimension TabloidExtra/12x18: "864 1296"
-*PaperDimension 4x6/Postcard: "288 432"
-*PaperDimension A6/A6: "297 420"
-*PaperDimension 9x11/9x11: "648 792"
-*PaperDimension SEF9x11/SEF 9x11: "648 793"
-*PaperDimension SEF8x10/SEF 8x10: "576 721"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: "(printerinfo trayselect -1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*% For Tray 4 on 5750, trayselect value is 9, this is what
-*% we set on the copier.
-*InputSlot Tray4/Tray 4: "(printerinfo trayselect 9) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Manual Feed: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 5.19.98
-*% End of PPD file
-*% The byte count of this file should be exactly 091362 or 093552
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery ZX 5750
diff --git a/psprint_config/configuration/ppds/EFAX7010.PS b/psprint_config/configuration/ppds/EFAX7010.PS
deleted file mode 100644
index 7cadf8829728..000000000000
--- a/psprint_config/configuration/ppds/EFAX7010.PS
+++ /dev/null
@@ -1,1698 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.1"
-*PCFileName: "EFAX7010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery ZX 5799)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery ZX 5799 Color Server v3010.104"
-*ShortNickName: "Fiery ZX 5799 v3010.104"
-*NickName: "Fiery ZX 5799 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*%EFIFlags *Instruct Column
-*%EFIGroup *Instruct Notes/Notes
-*%EFIJobNote *Instruct/Instructions :128
-
-*% === Options and Constraints ==============================
-
-*% Transparencies, Thick paper, and Transparent Interleave
-*% should only be printed from Manual Feed.
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-
-*UIConstraints: *PageSize Docupac *InputSlot Tray1
-*UIConstraints: *PageRegion Docupac *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize Docupac
-*UIConstraints: *InputSlot Tray1 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray2
-*UIConstraints: *PageRegion Docupac *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize Docupac
-*UIConstraints: *InputSlot Tray2 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray3
-*UIConstraints: *PageRegion Docupac *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize Docupac
-*UIConstraints: *InputSlot Tray3 *PageRegion Docupac
-
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray1
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray1 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray2
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray2 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray3
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray3 *PageRegion SEFB5
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-
-*UIConstraints: *PageSize B4 *InputSlot Tray1
-*UIConstraints: *PageRegion B4 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B4
-*UIConstraints: *InputSlot Tray1 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray2
-*UIConstraints: *PageRegion B4 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B4
-*UIConstraints: *InputSlot Tray2 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray3
-*UIConstraints: *PageRegion B4 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B4
-*UIConstraints: *InputSlot Tray3 *PageRegion B4
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFSharpness Spooler|Command
-*%EFIGroup *EFSharpness Job/Job
-*OpenUI *EFSharpness/Sharpness :PickOne
-*OrderDependency: 40 AnySetup *EFSharpness
-*DefaultEFSharpness: EFSharpnessDEF
-*EFSharpness EFSharpnessDEF/Printer's default: ""
-*EFSharpness Softer/Softer: " userdict /XJXsharpness known
- { 10 XJXsharpness }
- { (printerinfo sharpness 10) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Normal/Normal: " userdict /XJXsharpness known
- { 3 XJXsharpness }
- { (printerinfo sharpness 3) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Sharper/Sharper: " userdict /XJXsharpness known
- { 4 XJXsharpness }
- { (printerinfo sharpness 4) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSharpness
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 14 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 792] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [516 728] (SEFB5) put
- dup [684 842] (Docupac) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "9 12 589 783"
-*ImageableArea A4/A4: "9 12 572 833"
-*ImageableArea Legal/Legal: "9 9 600 985"
-*ImageableArea Tabloid/11x17: "9 9 780 1201"
-*ImageableArea A3/A3: "10 10 830 1168"
-*ImageableArea 8x10/8x10: "9 12 553 711"
-*ImageableArea Legal13/Legal 13: "9 9 600 913"
-*ImageableArea 9x12/9x12: "9 9 636 841"
-*ImageableArea SEFLet/SEF Letter: "9 10 600 770"
-*ImageableArea SEFA4/SEF A4: "9 10 583 820"
-*ImageableArea B4/B4: "9 9 717 1006"
-*ImageableArea B5/B5: "9 9 490 717"
-*ImageableArea SEFB5/SEF B5: "9 12 507 703"
-*ImageableArea Docupac/Docupac: "9 9 672 819"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension SEFB5/SEF B5: "516 728"
-*PaperDimension Docupac/Docupac: "684 842"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: "(printerinfo trayselect -1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Manual Feed: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 5.19.98
-*% End of PPD file
-*% The byte count of this file should be exactly 067211 or 068909
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery ZX 5799
diff --git a/psprint_config/configuration/ppds/EFMX3010.PS b/psprint_config/configuration/ppds/EFMX3010.PS
deleted file mode 100644
index b3d2c8be5403..000000000000
--- a/psprint_config/configuration/ppds/EFMX3010.PS
+++ /dev/null
@@ -1,1669 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.0"
-*PCFileName: "EFMX3010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery X2 5790)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery X2 5790 Color Server v3010.104"
-*ShortNickName: "Fiery X2 5790 v3010.104"
-*NickName: "Fiery X2 5790 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*% === Options and Constraints ==============================
-
-*% Transparencies, Thick paper, and Transparent Interleave
-*% should only be printed from Manual Feed.
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-
-*UIConstraints: *PageSize Docupac *InputSlot Tray1
-*UIConstraints: *PageRegion Docupac *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize Docupac
-*UIConstraints: *InputSlot Tray1 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray2
-*UIConstraints: *PageRegion Docupac *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize Docupac
-*UIConstraints: *InputSlot Tray2 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray3
-*UIConstraints: *PageRegion Docupac *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize Docupac
-*UIConstraints: *InputSlot Tray3 *PageRegion Docupac
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-
-*UIConstraints: *PageSize B4 *InputSlot Tray1
-*UIConstraints: *PageRegion B4 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B4
-*UIConstraints: *InputSlot Tray1 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray2
-*UIConstraints: *PageRegion B4 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B4
-*UIConstraints: *InputSlot Tray2 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray3
-*UIConstraints: *PageRegion B4 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B4
-*UIConstraints: *InputSlot Tray3 *PageRegion B4
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFSharpness Spooler|Command
-*%EFIGroup *EFSharpness Job/Job
-*OpenUI *EFSharpness/Sharpness :PickOne
-*OrderDependency: 40 AnySetup *EFSharpness
-*DefaultEFSharpness: EFSharpnessDEF
-*EFSharpness EFSharpnessDEF/Printer's default: ""
-*EFSharpness Softer/Softer: " userdict /XJXsharpness known
- { 10 XJXsharpness }
- { (printerinfo sharpness 10) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Normal/Normal: " userdict /XJXsharpness known
- { 3 XJXsharpness }
- { (printerinfo sharpness 3) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Sharper/Sharper: " userdict /XJXsharpness known
- { 4 XJXsharpness }
- { (printerinfo sharpness 4) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSharpness
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 13 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 792] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [684 842] (Docupac) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "9 12 589 783"
-*ImageableArea A4/A4: "9 12 572 833"
-*ImageableArea Legal/Legal: "9 9 600 985"
-*ImageableArea Tabloid/11x17: "9 9 780 1201"
-*ImageableArea A3/A3: "10 10 830 1168"
-*ImageableArea 8x10/8x10: "9 12 553 711"
-*ImageableArea Legal13/Legal 13: "9 9 600 913"
-*ImageableArea 9x12/9x12: "9 9 636 841"
-*ImageableArea SEFLet/SEF Letter: "9 10 600 770"
-*ImageableArea SEFA4/SEF A4: "9 10 583 820"
-*ImageableArea B4/B4: "9 9 717 1006"
-*ImageableArea B5/B5: "9 9 490 717"
-*ImageableArea Docupac/Docupac: "9 9 672 819"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension Docupac/Docupac: "684 842"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: ""
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Bypass Tray: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 6/2/98
-*% End of PPD file
-*% The byte count of this file should be exactly 066432 or 068101
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery X2 5790
diff --git a/psprint_config/configuration/ppds/EFMX5010.PS b/psprint_config/configuration/ppds/EFMX5010.PS
deleted file mode 100644
index 59d78c25b4ef..000000000000
--- a/psprint_config/configuration/ppds/EFMX5010.PS
+++ /dev/null
@@ -1,2183 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.1"
-*PCFileName: "EFMX5010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery X2 5750)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery X2 5750 Color Server v3010.104"
-*ShortNickName: "Fiery X2 5750 v3010.104"
-*NickName: "Fiery X2 5750 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*% === Options and Constraints ==============================
-
-*% UIConstraints for Trays, Paper Sizes, and Media Types
-
-*% Only Plain paper may be printed from the trays.
-*% Disallow all other media types from trays 1-4.
-
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Transparent
-
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Thick *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Thick
-
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Interleaved
-
-*UIConstraints: *MediaType Coated *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Coated
-*UIConstraints: *MediaType Coated *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Coated
-
-*UIConstraints: *MediaType Thick2 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Thick2
-
-*UIConstraints: *MediaType Tacking *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Tacking
-
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType SSTransfer
-
-*UIConstraints: *MediaType Labels *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Labels
-*UIConstraints: *MediaType Labels *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *MediaType Labels
-
-*% Certain paper sizes may only be printed Manualfeed
-*% Disallow these paper sizes from trays 1-4.
-
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray1
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray1 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray2
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray2 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray3
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray3 *PageRegion TabloidExtra
-*UIConstraints: *PageSize TabloidExtra *InputSlot Tray4
-*UIConstraints: *PageRegion TabloidExtra *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize TabloidExtra
-*UIConstraints: *InputSlot Tray4 *PageRegion TabloidExtra
-
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray1
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray1 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray2
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray2 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray3
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray3 *PageRegion SEF8x10
-*UIConstraints: *PageSize SEF8x10 *InputSlot Tray4
-*UIConstraints: *PageRegion SEF8x10 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEF8x10
-*UIConstraints: *InputSlot Tray4 *PageRegion SEF8x10
-
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray1
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray1 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray2
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray2 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray3
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray3 *PageRegion SEF9x11
-*UIConstraints: *PageSize SEF9x11 *InputSlot Tray4
-*UIConstraints: *PageRegion SEF9x11 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEF9x11
-*UIConstraints: *InputSlot Tray4 *PageRegion SEF9x11
-
-*UIConstraints: *PageSize 9x11 *InputSlot Tray1
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize 9x11
-*UIConstraints: *InputSlot Tray1 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray2
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize 9x11
-*UIConstraints: *InputSlot Tray2 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray3
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize 9x11
-*UIConstraints: *InputSlot Tray3 *PageRegion 9x11
-*UIConstraints: *PageSize 9x11 *InputSlot Tray4
-*UIConstraints: *PageRegion 9x11 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize 9x11
-*UIConstraints: *InputSlot Tray4 *PageRegion 9x11
-
-*UIConstraints: *PageSize A6 *InputSlot Tray1
-*UIConstraints: *PageRegion A6 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize A6
-*UIConstraints: *InputSlot Tray1 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray2
-*UIConstraints: *PageRegion A6 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize A6
-*UIConstraints: *InputSlot Tray2 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray3
-*UIConstraints: *PageRegion A6 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize A6
-*UIConstraints: *InputSlot Tray3 *PageRegion A6
-*UIConstraints: *PageSize A6 *InputSlot Tray4
-*UIConstraints: *PageRegion A6 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize A6
-*UIConstraints: *InputSlot Tray4 *PageRegion A6
-
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray1
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray1 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray2
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray2 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray3
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray3 *PageRegion SEFB5
-*UIConstraints: *PageSize SEFB5 *InputSlot Tray4
-*UIConstraints: *PageRegion SEFB5 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize SEFB5
-*UIConstraints: *InputSlot Tray4 *PageRegion SEFB5
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray4
-*UIConstraints: *PageRegion B5 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize B5
-*UIConstraints: *InputSlot Tray4 *PageRegion B5
-
-*UIConstraints: *PageSize 4x6 *InputSlot Tray1
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize 4x6
-*UIConstraints: *InputSlot Tray1 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray2
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize 4x6
-*UIConstraints: *InputSlot Tray2 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray3
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize 4x6
-*UIConstraints: *InputSlot Tray3 *PageRegion 4x6
-*UIConstraints: *PageSize 4x6 *InputSlot Tray4
-*UIConstraints: *PageRegion 4x6 *InputSlot Tray4
-*UIConstraints: *InputSlot Tray4 *PageSize 4x6
-*UIConstraints: *InputSlot Tray4 *PageRegion 4x6
-
-*% Each paper size is supported for only certain media
-*% types. Disallow unsupported combinations.
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Transparent
-*UIConstraints: *PageRegion TabloidExtra *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize TabloidExtra
-*UIConstraints: *MediaType Transparent *PageRegion TabloidExtra
-*UIConstraints: *PageSize Legal13 *MediaType Transparent
-*UIConstraints: *PageRegion Legal13 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize Legal13
-*UIConstraints: *MediaType Transparent *PageRegion Legal13
-*UIConstraints: *PageSize Legal *MediaType Transparent
-*UIConstraints: *PageRegion Legal *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize Legal
-*UIConstraints: *MediaType Transparent *PageRegion Legal
-*UIConstraints: *PageSize SEF8x10 *MediaType Transparent
-*UIConstraints: *PageRegion SEF8x10 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEF8x10
-*UIConstraints: *MediaType Transparent *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Transparent
-*UIConstraints: *PageRegion 8x10 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 8x10
-*UIConstraints: *MediaType Transparent *PageRegion 8x10
-*UIConstraints: *PageSize SEF9x11 *MediaType Transparent
-*UIConstraints: *PageRegion SEF9x11 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEF9x11
-*UIConstraints: *MediaType Transparent *PageRegion SEF9x11
-*UIConstraints: *PageSize 9x11 *MediaType Transparent
-*UIConstraints: *PageRegion 9x11 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 9x11
-*UIConstraints: *MediaType Transparent *PageRegion 9x11
-*UIConstraints: *PageSize 9x12 *MediaType Transparent
-*UIConstraints: *PageRegion 9x12 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 9x12
-*UIConstraints: *MediaType Transparent *PageRegion 9x12
-*UIConstraints: *PageSize A6 *MediaType Transparent
-*UIConstraints: *PageRegion A6 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize A6
-*UIConstraints: *MediaType Transparent *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Transparent
-*UIConstraints: *PageRegion B4 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize B4
-*UIConstraints: *MediaType Transparent *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Transparent
-*UIConstraints: *PageRegion SEFB5 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize SEFB5
-*UIConstraints: *MediaType Transparent *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Transparent
-*UIConstraints: *PageRegion B5 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize B5
-*UIConstraints: *MediaType Transparent *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Transparent
-*UIConstraints: *PageRegion 4x6 *MediaType Transparent
-*UIConstraints: *MediaType Transparent *PageSize 4x6
-*UIConstraints: *MediaType Transparent *PageRegion 4x6
-
-*UIConstraints: *PageSize 8x10 *MediaType Thick
-*UIConstraints: *PageRegion 8x10 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize 8x10
-*UIConstraints: *MediaType Thick *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Thick
-*UIConstraints: *PageRegion A6 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize A6
-*UIConstraints: *MediaType Thick *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Thick
-*UIConstraints: *PageRegion B4 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize B4
-*UIConstraints: *MediaType Thick *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Thick
-*UIConstraints: *PageRegion SEFB5 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize SEFB5
-*UIConstraints: *MediaType Thick *PageRegion SEFB5
-*UIConstraints: *PageSize 4x6 *MediaType Thick
-*UIConstraints: *PageRegion 4x6 *MediaType Thick
-*UIConstraints: *MediaType Thick *PageSize 4x6
-*UIConstraints: *MediaType Thick *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Interleaved
-*UIConstraints: *PageRegion TabloidExtra *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize TabloidExtra
-*UIConstraints: *MediaType Interleaved *PageRegion TabloidExtra
-*UIConstraints: *PageSize Legal13 *MediaType Interleaved
-*UIConstraints: *PageRegion Legal13 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize Legal13
-*UIConstraints: *MediaType Interleaved *PageRegion Legal13
-*UIConstraints: *PageSize Legal *MediaType Interleaved
-*UIConstraints: *PageRegion Legal *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize Legal
-*UIConstraints: *MediaType Interleaved *PageRegion Legal
-*UIConstraints: *PageSize SEF8x10 *MediaType Interleaved
-*UIConstraints: *PageRegion SEF8x10 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEF8x10
-*UIConstraints: *MediaType Interleaved *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Interleaved
-*UIConstraints: *PageRegion 8x10 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 8x10
-*UIConstraints: *MediaType Interleaved *PageRegion 8x10
-*UIConstraints: *PageSize SEF9x11 *MediaType Interleaved
-*UIConstraints: *PageRegion SEF9x11 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEF9x11
-*UIConstraints: *MediaType Interleaved *PageRegion SEF9x11
-*UIConstraints: *PageSize 9x11 *MediaType Interleaved
-*UIConstraints: *PageRegion 9x11 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 9x11
-*UIConstraints: *MediaType Interleaved *PageRegion 9x11
-*UIConstraints: *PageSize 9x12 *MediaType Interleaved
-*UIConstraints: *PageRegion 9x12 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 9x12
-*UIConstraints: *MediaType Interleaved *PageRegion 9x12
-*UIConstraints: *PageSize A6 *MediaType Interleaved
-*UIConstraints: *PageRegion A6 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize A6
-*UIConstraints: *MediaType Interleaved *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Interleaved
-*UIConstraints: *PageRegion B4 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize B4
-*UIConstraints: *MediaType Interleaved *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Interleaved
-*UIConstraints: *PageRegion SEFB5 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize SEFB5
-*UIConstraints: *MediaType Interleaved *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Interleaved
-*UIConstraints: *PageRegion B5 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize B5
-*UIConstraints: *MediaType Interleaved *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Interleaved
-*UIConstraints: *PageRegion 4x6 *MediaType Interleaved
-*UIConstraints: *MediaType Interleaved *PageSize 4x6
-*UIConstraints: *MediaType Interleaved *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Coated
-*UIConstraints: *PageRegion TabloidExtra *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize TabloidExtra
-*UIConstraints: *MediaType Coated *PageRegion TabloidExtra
-*UIConstraints: *PageSize A6 *MediaType Coated
-*UIConstraints: *PageRegion A6 *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize A6
-*UIConstraints: *MediaType Coated *PageRegion A6
-*UIConstraints: *PageSize 4x6 *MediaType Coated
-*UIConstraints: *PageRegion 4x6 *MediaType Coated
-*UIConstraints: *MediaType Coated *PageSize 4x6
-*UIConstraints: *MediaType Coated *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Thick2
-*UIConstraints: *PageRegion TabloidExtra *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize TabloidExtra
-*UIConstraints: *MediaType Thick2 *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Thick2
-*UIConstraints: *PageRegion SEF8x10 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize SEF8x10
-*UIConstraints: *MediaType Thick2 *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Thick2
-*UIConstraints: *PageRegion 8x10 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize 8x10
-*UIConstraints: *MediaType Thick2 *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Thick2
-*UIConstraints: *PageRegion A6 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize A6
-*UIConstraints: *MediaType Thick2 *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Thick2
-*UIConstraints: *PageRegion B4 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize B4
-*UIConstraints: *MediaType Thick2 *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Thick2
-*UIConstraints: *PageRegion SEFB5 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize SEFB5
-*UIConstraints: *MediaType Thick2 *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Thick2
-*UIConstraints: *PageRegion B5 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize B5
-*UIConstraints: *MediaType Thick2 *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Thick2
-*UIConstraints: *PageRegion 4x6 *MediaType Thick2
-*UIConstraints: *MediaType Thick2 *PageSize 4x6
-*UIConstraints: *MediaType Thick2 *PageRegion 4x6
-
-*UIConstraints: *PageSize Tabloid *MediaType Tacking
-*UIConstraints: *PageRegion Tabloid *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize Tabloid
-*UIConstraints: *MediaType Tacking *PageRegion Tabloid
-*UIConstraints: *PageSize TabloidExtra *MediaType Tacking
-*UIConstraints: *PageRegion TabloidExtra *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize TabloidExtra
-*UIConstraints: *MediaType Tacking *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Tacking
-*UIConstraints: *PageRegion SEF8x10 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize SEF8x10
-*UIConstraints: *MediaType Tacking *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Tacking
-*UIConstraints: *PageRegion 8x10 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize 8x10
-*UIConstraints: *MediaType Tacking *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Tacking
-*UIConstraints: *PageRegion A6 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize A6
-*UIConstraints: *MediaType Tacking *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Tacking
-*UIConstraints: *PageRegion B4 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize B4
-*UIConstraints: *MediaType Tacking *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Tacking
-*UIConstraints: *PageRegion SEFB5 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize SEFB5
-*UIConstraints: *MediaType Tacking *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Tacking
-*UIConstraints: *PageRegion B5 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize B5
-*UIConstraints: *MediaType Tacking *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Tacking
-*UIConstraints: *PageRegion 4x6 *MediaType Tacking
-*UIConstraints: *MediaType Tacking *PageSize 4x6
-*UIConstraints: *MediaType Tacking *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType SSTransfer
-*UIConstraints: *PageRegion TabloidExtra *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize TabloidExtra
-*UIConstraints: *MediaType SSTransfer *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType SSTransfer
-*UIConstraints: *PageRegion SEF8x10 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize SEF8x10
-*UIConstraints: *MediaType SSTransfer *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType SSTransfer
-*UIConstraints: *PageRegion 8x10 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize 8x10
-*UIConstraints: *MediaType SSTransfer *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType SSTransfer
-*UIConstraints: *PageRegion A6 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize A6
-*UIConstraints: *MediaType SSTransfer *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType SSTransfer
-*UIConstraints: *PageRegion B4 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize B4
-*UIConstraints: *MediaType SSTransfer *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType SSTransfer
-*UIConstraints: *PageRegion SEFB5 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize SEFB5
-*UIConstraints: *MediaType SSTransfer *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType SSTransfer
-*UIConstraints: *PageRegion B5 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize B5
-*UIConstraints: *MediaType SSTransfer *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType SSTransfer
-*UIConstraints: *PageRegion 4x6 *MediaType SSTransfer
-*UIConstraints: *MediaType SSTransfer *PageSize 4x6
-*UIConstraints: *MediaType SSTransfer *PageRegion 4x6
-
-*UIConstraints: *PageSize TabloidExtra *MediaType Labels
-*UIConstraints: *PageRegion TabloidExtra *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize TabloidExtra
-*UIConstraints: *MediaType Labels *PageRegion TabloidExtra
-*UIConstraints: *PageSize SEF8x10 *MediaType Labels
-*UIConstraints: *PageRegion SEF8x10 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize SEF8x10
-*UIConstraints: *MediaType Labels *PageRegion SEF8x10
-*UIConstraints: *PageSize 8x10 *MediaType Labels
-*UIConstraints: *PageRegion 8x10 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize 8x10
-*UIConstraints: *MediaType Labels *PageRegion 8x10
-*UIConstraints: *PageSize A6 *MediaType Labels
-*UIConstraints: *PageRegion A6 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize A6
-*UIConstraints: *MediaType Labels *PageRegion A6
-*UIConstraints: *PageSize B4 *MediaType Labels
-*UIConstraints: *PageRegion B4 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize B4
-*UIConstraints: *MediaType Labels *PageRegion B4
-*UIConstraints: *PageSize SEFB5 *MediaType Labels
-*UIConstraints: *PageRegion SEFB5 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize SEFB5
-*UIConstraints: *MediaType Labels *PageRegion SEFB5
-*UIConstraints: *PageSize B5 *MediaType Labels
-*UIConstraints: *PageRegion B5 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize B5
-*UIConstraints: *MediaType Labels *PageRegion B5
-*UIConstraints: *PageSize 4x6 *MediaType Labels
-*UIConstraints: *PageRegion 4x6 *MediaType Labels
-*UIConstraints: *MediaType Labels *PageSize 4x6
-*UIConstraints: *MediaType Labels *PageRegion 4x6
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*MediaType Coated/Coated Paper: " userdict /XJXsetmediatype known
- { 5 XJXsetmediatype } if"
-*End
-*MediaType Thick2/Thick Paper 2: " userdict /XJXsetmediatype known
- { 6 XJXsetmediatype } if"
-*End
-*MediaType Tacking/Tacking Film: " userdict /XJXsetmediatype known
- { 7 XJXsetmediatype } if"
-*End
-*MediaType SSTransfer/SST: " userdict /XJXsetmediatype known
- { 8 XJXsetmediatype } if"
-*End
-*MediaType Labels/Labels: " userdict /XJXsetmediatype known
- { 9 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { (TabloidExtra) XJXsetpagesize }
- { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize 4x6/Postcard: " userdict /XJXsetpagesize known
- { (Postcard) XJXsetpagesize }
- { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A6/A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { a6 } ifelse "
-*End
-*PageSize 9x11/9x11: " userdict /XJXsetpagesize known
- { (NineByEleven) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType null
- /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (NineByElevenSEF) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (EightByTenSEF) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 19 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 793] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [516 728] (SEFB5) put
- dup [864 1296] (TabloidExtra) put
- dup [288 432] (4x6) put
- dup [297 420] (A6) put
- dup [648 792] (9x11) put
- dup [648 793] (SEF9x11) put
- dup [576 721] (SEF8x10) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion SEFB5/SEF B5: " userdict /XJXsetpagesize known
- { (B5SEF) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion TabloidExtra/12x18: " userdict /XJXsetpagesize known
- { (TabloidExtra) XJXsetpagesize }
- { << /PageSize [864 1296] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [864 1296] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion 4x6/Postcard: " userdict /XJXsetpagesize known
- { (Postcard) XJXsetpagesize }
- { << /PageSize [288 432] /MediaType (ShortEdgeFeed)
- /InputAttributes << 1 << /PageSize [288 432] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A6/A6: " userdict /XJXsetpagesize known
- { (A6) XJXsetpagesize } { a6 } ifelse "
-*End
-*PageRegion 9x11/9x11: " userdict /XJXsetpagesize known
- { (NineByEleven) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType null
- /InputAttributes << 0 << /PageSize [648 792] /MediaType null >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEF9x11/SEF 9x11: " userdict /XJXsetpagesize known
- { (NineByElevenSEF) XJXsetpagesize }
- { << /PageSize [648 792] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [648 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEF8x10/SEF 8x10: " userdict /XJXsetpagesize known
- { (EightByTenSEF) XJXsetpagesize }
- { << /PageSize [576 720] /MediaType (ShortEdgeFeed)
- /InputAttributes << 0 << /PageSize [576 720] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
- } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "14 11 595 783"
-*ImageableArea A4/A4: "14 11 578 833"
-*ImageableArea Legal/Legal: "9 14 601 991"
-*ImageableArea Tabloid/11x17: "9 14 781 1207"
-*ImageableArea A3/A3: "9 14 829 1172"
-*ImageableArea 8x10/8x10: "14 11 559 711"
-*ImageableArea Legal13/Legal 13: "9 14 601 919"
-*ImageableArea 9x12/9x12: "9 14 637 847"
-*ImageableArea SEFLet/SEF Letter: "9 14 601 775"
-*ImageableArea SEFA4/SEF A4: "9 14 584 825"
-*ImageableArea TabloidExtra/12x18: "9 11 856 1282"
-*ImageableArea 4x6/Postcard: "9 14 277 415"
-*ImageableArea B4/B4: "9 14 718 1015"
-*ImageableArea B5/B5: "14 11 499 720"
-*ImageableArea SEFB5/SEF B5: "9 14 505 712"
-*ImageableArea A6/A6: "9 14 286 403"
-*ImageableArea 9x11/9x11: "14 11 631 783"
-*ImageableArea SEF9x11/SEF 9x11: "9 14 637 775"
-*ImageableArea SEF8x10/SEF 8x10: "9 14 565 703"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension SEFB5/SEF B5: "516 728"
-*PaperDimension TabloidExtra/12x18: "864 1296"
-*PaperDimension 4x6/Postcard: "288 432"
-*PaperDimension A6/A6: "297 420"
-*PaperDimension 9x11/9x11: "648 792"
-*PaperDimension SEF9x11/SEF 9x11: "648 793"
-*PaperDimension SEF8x10/SEF 8x10: "576 721"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: ""
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*% For Tray 4 on 5750, trayselect value is 9, this is what
-*% we set on the copier.
-*InputSlot Tray4/Tray 4: "(printerinfo trayselect 9) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Bypass Tray: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 6/2/98
-*% End of PPD file
-*% The byte count of this file should be exactly 091521 or 093704
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery X2 5750
diff --git a/psprint_config/configuration/ppds/EFMX7010.PS b/psprint_config/configuration/ppds/EFMX7010.PS
deleted file mode 100644
index 53aa246b3ab8..000000000000
--- a/psprint_config/configuration/ppds/EFMX7010.PS
+++ /dev/null
@@ -1,1669 +0,0 @@
-*PPD-Adobe: "4.3"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1995 Adobe Systems Incorporated.
-*% All Rights Reserved.
-*% Permission is granted for redistribution of this file as
-*% long as this copyright notice is intact and the contents
-*% of the file is not altered in any way from its original form.
-*% End of Copyright statement
-*% *********
-*% EFI Information Block
-*%
-*FileVersion: "0.1"
-*%
-*% *********
-
-*FormatVersion: "4.3"
-*FileVersion: "1.0"
-*PCFileName: "EFMX7010.PPD"
-*LanguageVersion: English
-*LanguageEncoding: ISOLatin1
-*Product: "(Fiery X2 5799)"
-*PSVersion: "(3010.104) 1"
-*ModelName: "Fiery X2 5799 Color Server v3010.104"
-*ShortNickName: "Fiery X2 5799 v3010.104"
-*NickName: "Fiery X2 5799 Color Server v3010.104"
-*Manufacturer: "Xerox"
-
-*% PPD body begins
-
-*%EFIGroupName Job/Job :True
-*%EFIGroupName Media/Media :True
-*%EFIGroupName Color/Color :True
-*%EFIGroupName Finishing/Finishing :True
-*%EFIGroupName Notes/Notes :True
-
-*%EFIFlags *Notes1 Column
-*%EFIGroup *Notes1 Notes/Notes
-*%EFIJobNote *Notes1/Notes 1 :32
-
-*%EFIFlags *Notes2 Column
-*%EFIGroup *Notes2 Notes/Notes
-*%EFIJobNote *Notes2/Notes 2 :32
-
-*% === Options and Constraints ==============================
-
-*% Transparencies, Thick paper, and Transparent Interleave
-*% should only be printed from Manual Feed.
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *MediaType Interleaved
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Thick
-*UIConstraints: *MediaType Transparent *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Transparent
-*UIConstraints: *MediaType Interleaved *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *MediaType Interleaved
-
-*UIConstraints: *PageSize Docupac *InputSlot Tray1
-*UIConstraints: *PageRegion Docupac *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize Docupac
-*UIConstraints: *InputSlot Tray1 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray2
-*UIConstraints: *PageRegion Docupac *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize Docupac
-*UIConstraints: *InputSlot Tray2 *PageRegion Docupac
-*UIConstraints: *PageSize Docupac *InputSlot Tray3
-*UIConstraints: *PageRegion Docupac *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize Docupac
-*UIConstraints: *InputSlot Tray3 *PageRegion Docupac
-
-*UIConstraints: *PageSize B5 *InputSlot Tray1
-*UIConstraints: *PageRegion B5 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B5
-*UIConstraints: *InputSlot Tray1 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray2
-*UIConstraints: *PageRegion B5 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B5
-*UIConstraints: *InputSlot Tray2 *PageRegion B5
-*UIConstraints: *PageSize B5 *InputSlot Tray3
-*UIConstraints: *PageRegion B5 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B5
-*UIConstraints: *InputSlot Tray3 *PageRegion B5
-
-*UIConstraints: *PageSize B4 *InputSlot Tray1
-*UIConstraints: *PageRegion B4 *InputSlot Tray1
-*UIConstraints: *InputSlot Tray1 *PageSize B4
-*UIConstraints: *InputSlot Tray1 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray2
-*UIConstraints: *PageRegion B4 *InputSlot Tray2
-*UIConstraints: *InputSlot Tray2 *PageSize B4
-*UIConstraints: *InputSlot Tray2 *PageRegion B4
-*UIConstraints: *PageSize B4 *InputSlot Tray3
-*UIConstraints: *PageRegion B4 *InputSlot Tray3
-*UIConstraints: *InputSlot Tray3 *PageSize B4
-*UIConstraints: *InputSlot Tray3 *PageRegion B4
-
-*UIConstraints: *EFColorMode GRAY *EFOverprint On
-*UIConstraints: *EFOverprint On *EFColorMode GRAY
-
-*% Full frame does not support reverse print, collate
-*UIConstraints: *EFCompression False *EFOutputOrder Reverse
-*UIConstraints: *EFCompression False *EFSorter Collate
-*UIConstraints: *EFOutputOrder Reverse *EFCompression False
-*UIConstraints: *EFSorter Collate *EFCompression False
-*UIConstraints: *FRAME_MODE ADOBE *EFOutputOrder Reverse
-*UIConstraints: *EFOutputOrder Reverse *FRAME_MODE ADOBE
-
-*% ColorWise UIConstraints begin here
-*% TV@UIC1.0@CMYK@980402
-
-*UIConstraints: *EFSimulation None *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation None
-*UIConstraints: *EFSimulation None *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation None
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Quick
-*UIConstraints: *EFSimSpeed Quick *EFSimulation MatchCopy
-*UIConstraints: *EFSimulation MatchCopy *EFSimSpeed Full
-*UIConstraints: *EFSimSpeed Full *EFSimulation MatchCopy
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFRGBOverrideDEF *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFRGBOverrideDEF
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride EFIRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride EFIRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride sRGB *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride sRGB
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Apple13 *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Apple13
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.0
-*UIConstraints: *EFRGBOtherGamma 1.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.2
-*UIConstraints: *EFRGBOtherGamma 1.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.4
-*UIConstraints: *EFRGBOtherGamma 1.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.6
-*UIConstraints: *EFRGBOtherGamma 1.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 1.8
-*UIConstraints: *EFRGBOtherGamma 1.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.0
-*UIConstraints: *EFRGBOtherGamma 2.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.2
-*UIConstraints: *EFRGBOtherGamma 2.2 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.4
-*UIConstraints: *EFRGBOtherGamma 2.4 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.6
-*UIConstraints: *EFRGBOtherGamma 2.6 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 2.8
-*UIConstraints: *EFRGBOtherGamma 2.8 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherGamma 3.0
-*UIConstraints: *EFRGBOtherGamma 3.0 *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5000K
-*UIConstraints: *EFRGBOtherWtPt 5000K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 5500K
-*UIConstraints: *EFRGBOtherWtPt 5500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 6500K
-*UIConstraints: *EFRGBOtherWtPt 6500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 7500K
-*UIConstraints: *EFRGBOtherWtPt 7500K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherWtPt 9300K
-*UIConstraints: *EFRGBOtherWtPt 9300K *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiEBU
-*UIConstraints: *EFRGBOtherPhos HitachiEBU *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos HitachiIkegami
-*UIConstraints: *EFRGBOtherPhos HitachiIkegami *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos NTSC
-*UIConstraints: *EFRGBOtherPhos NTSC *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos RadiusPivot
-*UIConstraints: *EFRGBOtherPhos RadiusPivot *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos SMPTE
-*UIConstraints: *EFRGBOtherPhos SMPTE *EFRGBOverride Off
-*UIConstraints: *EFRGBOverride Off *EFRGBOtherPhos Trinitron
-*UIConstraints: *EFRGBOtherPhos Trinitron *EFRGBOverride Off
-*UIConstraints: *EFBlkOverprint True *EFPureBlack False
-*UIConstraints: *EFPureBlack False *EFBlkOverprint True
-
-*% ColorWise UIConstraints end here
-
-*% General Information and Defaults ===============
-*FCacheSize None: 524288
-*TTRasterizer: Type42
-*ContoneOnly: False
-*FreeVM: "5767168"
-*LanguageLevel: "3"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*PrintPSErrors: True
-*FileSystem: True
-*?FileSystem: "
- save
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
- restore
- "
-*End
-*Throughput: "10"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING: Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 400dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*AccurateScreensSupport: True
-
-*%EFIFlags *FRAME_MODE Setup
-*OpenUIEFI *FRAME_MODE/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *FRAME_MODE
-*DefaultFRAME_MODE: AREND
-*FRAME_MODE AREND/On: ""
-*FRAME_MODE ADOBE/Off: ""
-*CloseUIEFI: *FRAME_MODE
-
-*%EFIFlags *EFCompression Spooler|Command|Column|Rerip
-*%EFIGroup *EFCompression Job/Job
-*OpenUI *EFCompression/Compression :PickOne
-*OrderDependency: 05.0 AnySetup *EFCompression
-*DefaultEFCompression: SCDefault
-*EFCompression SCDefault/Printer's default: ""
-*%DefaultEFCompression: True
-*EFCompression False/Off: " userdict /XJXsetRenderType known
- { (ADOBE) XJXsetRenderType }
- if "
-*End
-*EFCompression True/On: " userdict /XJXsetRenderType known
- { (AREND) XJXsetRenderType }
- if "
-*End
-*?EFCompression: "(True) = flush"
-*CloseUI: *EFCompression
-
-*%EFIFlags *EFOutputOrder Spooler|Command|Column|Setup
-*%EFIGroup *EFOutputOrder Finishing/Finishing
-*OpenUI *EFOutputOrder/Page Order :PickOne
-*OrderDependency: 12.0 AnySetup *EFOutputOrder
-*DefaultEFOutputOrder: EFOutputOrderDEF
-*EFOutputOrder EFOutputOrderDEF/Printer's default: ""
-*EFOutputOrder Forward/Forward:" userdict /XJXsetprintorder known
- { 0 XJXsetprintorder }
- { (printerinfo PrintOrder 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFOutputOrder Reverse/Reverse:" userdict /XJXsetprintorder known
- { 1 XJXsetprintorder }
- { (printerinfo PrintOrder 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFOutputOrder
-
-*%EFIFlags *EFCopierMode Command|Spooler
-*%EFIGroup *EFCopierMode Job/Job
-*OpenUI *EFCopierMode/Copier Mode :PickOne
-*OrderDependency: 40 AnySetup *EFCopierMode
-*DefaultEFCopierMode: EFCopierModeDEF
-*EFCopierMode EFCopierModeDEF/Printer's default: ""
-*EFCopierMode Photo/Photo: " userdict /XJXsetmapmode known
- { 0 XJXsetmapmode }
- { (printerinfo setmapmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFCopierMode Map/Map: " userdict /XJXsetmapmode known
- { 1 XJXsetmapmode }
- { (printerinfo setmapmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFCopierMode
-
-*%EFIFlags *EFOverprint
-*%EFIGroup *EFOverprint Color/Color
-*OpenUI *EFOverprint/Combine Separations :PickOne
-*OrderDependency: 40 AnySetup *EFOverprint
-*DefaultEFOverprint: EFOverprintDEF
-*EFOverprint EFOverprintDEF/Printer's default: ""
-*EFOverprint On/On: " userdict /XJXsetoverprint known
- { 1 XJXsetoverprint }
- { (printerinfo overprint 1) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
- { 0 XJXsetoverprint }
- { (printerinfo overprint 0) =string
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
- userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode } if "
-*End
-*CloseUI: *EFOverprint
-
-*%EFIFlags *EFColorMode Spooler|Command|Rerip|Setup
-*%EFIGroup *EFColorMode Color/Color
-*OpenUI *EFColorMode/Color Mode :PickOne
-*OrderDependency: 15 AnySetup *EFColorMode
-*DefaultEFColorMode: EFColorModeDEF
-*EFColorMode EFColorModeDEF/Printer's default: ""
-*EFColorMode CMYK/CMYK: "userdict /XJXsetcolormode known
- { (CMYK) XJXsetcolormode } if "
-*End
-*EFColorMode GRAY/Grayscale: "userdict /XJXsetcolormode known
- { (Grayscale) XJXsetcolormode} if "
-*End
-*?EFColorMode: " currentpagedevice /ProcessColorModel get == } if "
-*CloseUI: *EFColorMode
-
-*%EFIFlags *EFDefPaperSize Setup
-*OpenUIEFI *EFDefPaperSize/Default Paper Sizes :PickOne
-*OrderDependency: 20 AnySetup *EFDefPaperSize
-*DefaultEFDefPaperSize: US
-*EFDefPaperSize US/US: ""
-*EFDefPaperSize Metric/Metric: ""
-*CloseUIEFI: *EFDefPaperSize
-
-*%EFIFlags *EFConvPaperSize Setup
-*OpenUIEFI *EFConvPaperSize/Convert Paper Sizes : PickOne
-*OrderDependency: 25 AnySetup *EFConvPaperSize
-*DefaultEFConvPaperSize: False
-*EFConvPaperSize False/No: ""
-*EFConvPaperSize LetterToA4/Letter/11x17->A4/A3: ""
-*EFConvPaperSize A4ToLetter/A4/A3->Letter/11x17: ""
-*CloseUIEFI: *EFConvPaperSize
-
-*%EFIFlags *EFCovPgAtEnd Setup
-*OpenUIEFI *EFCovPgAtEnd/Print Cover Page : PickOne
-*OrderDependency: 30 AnySetup *EFCovPgAtEnd
-*DefaultEFCovPgAtEnd: NO
-*EFCovPgAtEnd YES/Yes: ""
-*EFCovPgAtEnd NO/No: ""
-*CloseUIEFI: *EFCovPgAtEnd
-
-*%EFIFlags *EFCourierSubst Setup
-*OpenUIEFI *EFCourierSubst/Allow Courier Substitution :PickOne
-*OrderDependency: 35 AnySetup *EFCourierSubst
-*DefaultEFCourierSubst: YES
-*EFCourierSubst YES/Yes: ""
-*EFCourierSubst NO/No: ""
-*CloseUIEFI: *EFCourierSubst
-
-*%EFIFlags *EFPSError Setup
-*OpenUIEFI *EFPSError/Print to PS Error : PickOne
-*OrderDependency: 40 AnySetup *EFPSError
-*DefaultEFPSError: NO
-*EFPSError YES/Yes: ""
-*EFPSError NO/No: ""
-*CloseUIEFI: *EFPSError
-
-*%EFIFlags *EFUseBypassTray Setup
-*OpenUIEFI *EFUseBypassTray/Enable Bypass Tray as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseBypassTray
-*DefaultEFUseBypassTray: NO
-*EFUseBypassTray YES/Yes: ""
-*EFUseBypassTray NO/No: ""
-*CloseUIEFI: *EFUseBypassTray
-
-*%EFIFlags *EFUseSorter Setup
-*OpenUIEFI *EFUseSorter/Enable Sorter as default : PickOne
-*OrderDependency: 20 AnySetup *EFUseSorter
-*DefaultEFUseSorter: NO
-*EFUseSorter YES/Yes: ""
-*EFUseSorter NO/No: ""
-*CloseUIEFI: *EFUseSorter
-
-*%EFIFlags *EFSorter Spooler|Command|Column
-*%EFIGroup *EFSorter Finishing/Finishing
-*OpenUI *EFSorter/Sorter Mode :PickOne
-*OrderDependency: 50 AnySetup *EFSorter
-*DefaultEFSorter: EFSorterDEF
-*EFSorter EFSorterDEF/Printer's default: ""
-*EFSorter False/Off: " << /Collate false>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Collate/Collate: "<< /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 0 XJXsetsorter }
- { (printerinfo sortmode 0) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSorter Sort/Sort: " << /Collate true>> setpagedevice
- userdict /XJXsetsorter known
- { 1 XJXsetsorter }
- { (printerinfo sortmode 1) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSorter
-
-*%EFIFlags *MediaType Spooler|Command|Column|Rerip
-*%EFIGroup *MediaType Media/Media
-*OpenUI *MediaType/Media Type :PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: MediaTypeDEF
-*MediaType MediaTypeDEF/Printer's default: ""
-*MediaType Plain/Plain Paper: " userdict /XJXsetmediatype known
- { 1 XJXsetmediatype } if"
-*End
-*MediaType Thick/Thick Paper: " userdict /XJXsetmediatype known
- { 2 XJXsetmediatype } if"
-*End
-*MediaType Transparent/Transparency: " userdict /XJXsetmediatype known
- { 3 XJXsetmediatype } if"
-*End
-*MediaType Interleaved/Interleaved: " userdict /XJXsetmediatype known
- { 4 XJXsetmediatype } if"
-*End
-*?MediaType: " FieryXJdict /CB_GetMediaType known {
- FieryXJdict /CB_GetMediaType get exec == } if"
-*End
-*CloseUI: *MediaType
-
-*%EFIFlags *EFColorRendDict Spooler|Command|Rerip
-*%EFIGroup *EFColorRendDict Color/Color
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-*OrderDependency: 60 AnySetup *EFColorRendDict
-*DefaultEFColorRendDict: EFColorRendDictDEF
-*EFColorRendDict EFColorRendDictDEF/Printer's default: ""
-*EFColorRendDict Preferred/Photographic: " userdict /XJXsetrenderingintent known
- { (Photographic) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Business/Presentation: " userdict /XJXsetrenderingintent known
- { (Presentation) XJXsetrenderingintent
- } if "
-*End
-*EFColorRendDict Colorimetric/Solid Color: " userdict /XJXsetrenderingintent known
- { (Solid) XJXsetrenderingintent
- } if "
-*End
-*?EFColorRendDict: " FieryXJdict /CB_GetRenderingIntent known {
- FieryXJdict /CB_GetRenderingIntent get exec == } if"
-*End
-*CloseUI: *EFColorRendDict
-
-*%EFIFlags *EFSharpness Spooler|Command
-*%EFIGroup *EFSharpness Job/Job
-*OpenUI *EFSharpness/Sharpness :PickOne
-*OrderDependency: 40 AnySetup *EFSharpness
-*DefaultEFSharpness: EFSharpnessDEF
-*EFSharpness EFSharpnessDEF/Printer's default: ""
-*EFSharpness Softer/Softer: " userdict /XJXsharpness known
- { 10 XJXsharpness }
- { (printerinfo sharpness 10) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Normal/Normal: " userdict /XJXsharpness known
- { 3 XJXsharpness }
- { (printerinfo sharpness 3) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*EFSharpness Sharper/Sharper: " userdict /XJXsharpness known
- { 4 XJXsharpness }
- { (printerinfo sharpness 4) =string
- FieryXJdict /ExtCmdGetExec get exec { pop } if } ifelse "
-*End
-*CloseUI: *EFSharpness
-
-*%EFIFlags *EFPrange
-*%EFIGroup *EFPrange Job/Job
-*OpenUIEFI *EFPrange/Page Range : PickOne
-*OrderDependency: 70 AnySetup *EFPrange
-*DefaultEFPrange: EFPrangeDEF
-*EFPrange EFPrangeDEF/Printer's default: ""
-*EFPrange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ ] put
- setglobal "
-*End
-*EFPrange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
- setglobal "
-*End
-*EFPrange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- currentglobal true setglobal
- DriverOps /pagerange [ 0 1 2 4 6 ] put
- setglobal "
-*End
-*CloseUIEFI: *EFPrange
-
-*%EFIFlags *EFFlip
-*%EFIGroup *EFFlip Job/Job
-*OpenUIEFI *EFFlip/Flip : PickOne
-*OrderDependency: 75 AnySetup *EFFlip
-*DefaultEFFlip: EFFlipDEF
-*EFFlip EFFlipDEF/Printer's default: ""
-*EFFlip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*EFFlip H/Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-*End
-*EFFlip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFFlip
-
-*%EFIFlags *EFScale
-*%EFIGroup *EFScale Job/Job
-*OpenUIEFI *EFScale/Scale : PickOne
-*OrderDependency: 80 AnySetup *EFScale
-*DefaultEFScale: EFScaleDEF
-*EFScale EFScaleDEF/Printer's default: ""
-*EFScale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 2 put << >> setpagedevice "
-*End
-*EFScale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1.5 put << >> setpagedevice "
-*End
-*EFScale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# 1 put << >> setpagedevice "
-*End
-*EFScale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .75 put << >> setpagedevice "
-*End
-*EFScale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /scale# .5 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFScale
-
-*%EFIFlags *EFRotate
-*%EFIGroup *EFRotate Job/Job
-*OpenUIEFI *EFRotate/Rotate: PickOne
-*OrderDependency: 85 AnySetup *EFRotate
-*DefaultEFRotate: EFRotateDEF
-*EFRotate EFRotateDEF/Printer's default: ""
-*EFRotate 0/0: " << >> setpagedevice "
-*EFRotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 90 put << >> setpagedevice "
-*End
-*EFRotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 270 put << >> setpagedevice "
-*End
-*EFRotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
- DriverOps /rotate# 180 put << >> setpagedevice "
-*End
-*CloseUIEFI: *EFRotate
-
-*% ColorWise body begins here
-*% TV@B1.0@CMYK@980402
-
-*%EFIFlags *EFBrightness Spooler|Command|Rerip
-*%EFIGroup *EFBrightness Color/Color
-*OpenUI *EFBrightness/Brightness :PickOne
-*OrderDependency: 55.0 AnySetup *EFBrightness
-*DefaultEFBrightness: 00.00
-*EFBrightness +0.24/85% Lightest: " /XJXsetBrightness where
- { pop (LIGHTEST) XJXsetBrightness } if "
-*End
-*EFBrightness +0.16/90% Lighter: " /XJXsetBrightness where
- { pop (LIGHTER) XJXsetBrightness } if "
-*End
-*EFBrightness +0.08/95% Light: " /XJXsetBrightness where
- { pop (LIGHT) XJXsetBrightness } if "
-*End
-*EFBrightness 00.00/100% Normal: " /XJXsetBrightness where
- { pop (NORMAL) XJXsetBrightness } if "
-*End
-*EFBrightness -0.08/105% Dark: " /XJXsetBrightness where
- { pop (DARK) XJXsetBrightness } if "
-*End
-*EFBrightness -0.16/110% Darker: " /XJXsetBrightness where
- { pop (DARKER) XJXsetBrightness } if "
-*End
-*EFBrightness -0.24/115% Darkest: " /XJXsetBrightness where
- { pop (DARKEST) XJXsetBrightness } if "
-*End
-*CloseUI: *EFBrightness
-
-
-*%EFIFlags *EFRGBOverride Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFRGBOverride Color/Color
-*OpenUI *EFRGBOverride/RGB Source :PickOne
-*OrderDependency: 56.0 AnySetup *EFRGBOverride
-*DefaultEFRGBOverride: EFRGBOverrideDEF
-*EFRGBOverride EFRGBOverrideDEF/Printer's default: ""
-*EFRGBOverride EFIRGB/EFIRGB: " /XJXsetRGBOverride where
- { pop (EFIRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride sRGB/sRGB (PC): " /XJXsetRGBOverride where
- { pop (SRGB) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Apple13/Apple Standard: " /XJXsetRGBOverride where
- { pop (APPLE13) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Other/Other: " /XJXsetRGBOverride where
- { pop (OTHER) XJXsetRGBOverride } if "
-*End
-*EFRGBOverride Off/Off: " /XJXsetRGBOverride where
- { pop (Off) XJXsetRGBOverride } if "
-*End
-*CloseUI: *EFRGBOverride
-
-
-*%EFIFlags *EFRGBOtherGamma Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherGamma Color/Color
-*OpenUI *EFRGBOtherGamma/(Other) Gamma :PickOne
-*OrderDependency: 56.1 AnySetup *EFRGBOtherGamma
-*DefaultEFRGBOtherGamma: EFRGBOtherGammaDEF
-*EFRGBOtherGamma EFRGBOtherGammaDEF/Printer's default: ""
-*EFRGBOtherGamma 1.0/1.0: " /XJXsetRGBOtherGamma where
- { pop (1.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.2/1.2: " /XJXsetRGBOtherGamma where
- { pop (1.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.4/1.4: " /XJXsetRGBOtherGamma where
- { pop (1.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.6/1.6: " /XJXsetRGBOtherGamma where
- { pop (1.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 1.8/1.8: " /XJXsetRGBOtherGamma where
- { pop (1.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.0/2.0: " /XJXsetRGBOtherGamma where
- { pop (2.0) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.2/2.2: " /XJXsetRGBOtherGamma where
- { pop (2.2) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.4/2.4: " /XJXsetRGBOtherGamma where
- { pop (2.4) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.6/2.6: " /XJXsetRGBOtherGamma where
- { pop (2.6) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 2.8/2.8: " /XJXsetRGBOtherGamma where
- { pop (2.8) XJXsetRGBOtherGamma } if "
-*End
-*EFRGBOtherGamma 3.0/3.0: " /XJXsetRGBOtherGamma where
- { pop (3.0) XJXsetRGBOtherGamma } if "
-*End
-*CloseUI: *EFRGBOtherGamma
-
-
-*%EFIFlags *EFRGBOtherWtPt Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherWtPt Color/Color
-*OpenUI *EFRGBOtherWtPt/(Other) White Point :PickOne
-*OrderDependency: 56.2 AnySetup *EFRGBOtherWtPt
-*DefaultEFRGBOtherWtPt: EFRGBOtherWtPtDEF
-*EFRGBOtherWtPt EFRGBOtherWtPtDEF/Printer's default: ""
-*EFRGBOtherWtPt 5000K/5000 K (D50): " /XJXsetRGBOtherWtPt where
- { pop (5000K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 5500K/5500 K: " /XJXsetRGBOtherWtPt where
- { pop (5500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 6500K/6500 K (D65): " /XJXsetRGBOtherWtPt where
- { pop (6500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 7500K/7500 K: " /XJXsetRGBOtherWtPt where
- { pop (7500K) XJXsetRGBOtherWtPt } if "
-*End
-*EFRGBOtherWtPt 9300K/9300 K: " /XJXsetRGBOtherWtPt where
- { pop (9300K) XJXsetRGBOtherWtPt } if "
-*End
-*CloseUI: *EFRGBOtherWtPt
-
-
-*%EFIFlags *EFRGBOtherPhos Spooler|Command|Rerip
-*%EFIGroup *EFRGBOtherPhos Color/Color
-*OpenUI *EFRGBOtherPhos/(Other) Phosphors :PickOne
-*OrderDependency: 56.3 AnySetup *EFRGBOtherPhos
-*DefaultEFRGBOtherPhos: EFRGBOtherPhosDEF
-*EFRGBOtherPhos EFRGBOtherPhosDEF/Printer's default: ""
-*EFRGBOtherPhos HitachiEBU/Hitachi EBU: " /XJXsetRGBOtherPhos where
- { pop (Hitachi EBU) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos HitachiIkegami/Hitachi/Ikegami: " /XJXsetRGBOtherPhos where
- { pop (Hitachi/Ikegami) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos NTSC/NTSC: " /XJXsetRGBOtherPhos where
- { pop (NTSC) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos RadiusPivot/Radius Pivot: " /XJXsetRGBOtherPhos where
- { pop (Radius Pivot) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos SMPTE/SMPTE: " /XJXsetRGBOtherPhos where
- { pop (SMPTE) XJXsetRGBOtherPhos } if "
-*End
-*EFRGBOtherPhos Trinitron/Trinitron: " /XJXsetRGBOtherPhos where
- { pop (Trinitron) XJXsetRGBOtherPhos } if "
-*End
-*CloseUI: *EFRGBOtherPhos
-
-
-*%EFIFlags *EFSimulation Spooler|Command|Rerip
-*%EFIGroup *EFSimulation Color/Color
-*OpenUI *EFSimulation/CMYK Simulation :PickOne
-*OrderDependency: 57.0 AnySetup *EFSimulation
-*DefaultEFSimulation: EFSimulationDEF
-*EFSimulation EFSimulationDEF/Printer's default: ""
-*EFSimulation SWOP/SWOP-Coated: " /XJXsetSimulation where
- { pop (SWOP-Coated) XJXsetSimulation } if "
-*End
-*EFSimulation DIC/DIC: " /XJXsetSimulation where
- { pop (DIC) XJXsetSimulation } if "
-*End
-*EFSimulation Euroscale/Euroscale: " /XJXsetSimulation where
- { pop (Euroscale) XJXsetSimulation } if "
-*End
-*EFSimulation Custom1/Custom-1: " /XJXsetSimulation where
- { pop (Custom-1) XJXsetSimulation } if "
-*End
-*EFSimulation Custom2/Custom-2: " /XJXsetSimulation where
- { pop (Custom-2) XJXsetSimulation } if "
-*End
-*EFSimulation Custom3/Custom-3: " /XJXsetSimulation where
- { pop (Custom-3) XJXsetSimulation } if "
-*End
-*EFSimulation Custom4/Custom-4: " /XJXsetSimulation where
- { pop (Custom-4) XJXsetSimulation } if "
-*End
-*EFSimulation Custom5/Custom-5: " /XJXsetSimulation where
- { pop (Custom-5) XJXsetSimulation } if "
-*End
-*EFSimulation None/None: " /XJXsetSimulation where
- { pop (.None) XJXsetSimulation } if "
-*End
-*EFSimulation MatchCopy/Match Copy: " /XJXsetSimulation where
- { pop (.MatchCopy) XJXsetSimulation } if "
-*End
-*CloseUI: *EFSimulation
-
-
-*%EFIFlags *EFSimSpeed Spooler|Command|Rerip
-*%EFIGroup *EFSimSpeed Color/Color
-*OpenUI *EFSimSpeed/CMYK Simulation Method :PickOne
-*OrderDependency: 58.0 AnySetup *EFSimSpeed
-*DefaultEFSimSpeed: EFSimSpeedDEF
-*EFSimSpeed EFSimSpeedDEF/Printer's default: ""
-*EFSimSpeed Quick/Quick: " /XJXsetSimSpeed where
- { pop (Quick) XJXsetSimSpeed } if "
-*End
-*EFSimSpeed Full/Full: " /XJXsetSimSpeed where
- { pop (Full) XJXsetSimSpeed } if "
-*End
-*CloseUI: *EFSimSpeed
-
-
-*%EFIFlags *EFPureBlack Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFPureBlack Color/Color
-*OpenUI *EFPureBlack/Pure Black Text/Graphics :PickOne
-*OrderDependency: 59.0 AnySetup *EFPureBlack
-*DefaultEFPureBlack: EFPureBlackDEF
-*EFPureBlack EFPureBlackDEF/Printer's default: ""
-*EFPureBlack False/Off: " /XJXsetPureBlack where
- { pop (False) XJXsetPureBlack } if "
-*End
-*EFPureBlack True/On: " /XJXsetPureBlack where
- { pop (True) XJXsetPureBlack } if "
-*End
-*CloseUI: *EFPureBlack
-
-
-*%EFIFlags *EFBlkOverprint Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFBlkOverprint Color/Color
-*OpenUI *EFBlkOverprint/Black Overprint :PickOne
-*OrderDependency: 60.0 AnySetup *EFBlkOverprint
-*DefaultEFBlkOverprint: EFBlkOverprintDEF
-*EFBlkOverprint EFBlkOverprintDEF/Printer's default: ""
-*EFBlkOverprint False/Off: " /XJXsetBlkOverprint where
- { pop (False) XJXsetBlkOverprint } if "
-*End
-*EFBlkOverprint True/On: " /XJXsetBlkOverprint where
- { pop (True) XJXsetBlkOverprint } if "
-*End
-*CloseUI: *EFBlkOverprint
-
-
-*%EFIFlags *EFSpotColors Spooler|Command|Rerip|ColorSetup
-*%EFIGroup *EFSpotColors Color/Color
-*OpenUI *EFSpotColors/Spot Color Matching :PickOne
-*OrderDependency: 61.0 AnySetup *EFSpotColors
-*DefaultEFSpotColors: EFSpotColorsDEF
-*EFSpotColors EFSpotColorsDEF/Printer's default: ""
-*EFSpotColors False/Off: " /XJXsetSpotColors where
- { pop (False) XJXsetSpotColors } if "
-*End
-*EFSpotColors True/On: " /XJXsetSpotColors where
- { pop (True) XJXsetSpotColors } if "
-*End
-*CloseUI: *EFSpotColors
-
-*% ColorWise body ends here
-
-
-*%EFIFlags *EFRaster Command|Column|Rerip
-*%EFIGroup *EFRaster Job/Job
-*OpenUI *EFRaster/Save Fast Reprint : Boolean
-*OrderDependency: 65.0 AnySetup *EFRaster
-*DefaultEFRaster: False
-*EFRaster True/On: " userdict /XJXsetraster known
- { 1 XJXsetraster }
- if "
-*End
-*EFRaster False/Off: " userdict /XJXsetraster known
- { 0 XJXsetraster }
- if "
-*End
-*CloseUI: *EFRaster
-
-*% Halftone Information =============================
-*ScreenFreq: "50.0"
-*ScreenAngle: "0"
-*DefaultScreenProc: Line
-*ScreenProc Line: "
- {2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- {
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- }
- exch get 8 dup mul div} exec}"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% PPD pages begins
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*%EFIFlags *PageSize Column
-*OpenUI *PageSize/Page Size :PickOne
-*OrderDependency: 90 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter:" userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageSize Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageSize A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageSize 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageSize Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageSize 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageSize SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageSize B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageSize B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageSize Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 13 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [576 720] (8x10) put
- dup [612 936] (Legal13) put
- dup [648 864] (9x12) put
- dup [612 792] (SEFLet) put
- dup [595 843] (SEFA4) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [684 842] (Docupac) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*%EFIFlags *PageRegion
-*OpenUI *PageRegion :PickOne
-*OrderDependency: 95 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter: " userdict /XJXsetpagesize known
- { (Letter) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion A4/A4: " userdict /XJXsetpagesize known
- { (A4)XJXsetpagesize }
- { << /PageSize [595 842] /MediaType null
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion Legal/Legal: " userdict /XJXsetpagesize known
- { (Legal)XJXsetpagesize } { legal } ifelse "
-*End
-*PageRegion Tabloid/11x17: " userdict /XJXsetpagesize known
- { (Tabloid) XJXsetpagesize } { 11x17 } ifelse "
-*End
-*PageRegion A3/A3: " userdict /XJXsetpagesize known
- { (A3) XJXsetpagesize } { a3 } ifelse "
-*End
-*PageRegion 8x10/8x10: " userdict /XJXsetpagesize known
- { (EightByTen) XJXsetpagesize } { 8x10 } ifelse "
-*End
-*PageRegion Legal13/Legal 13: " userdict /XJXsetpagesize known
- { (Legal13) XJXsetpagesize } { legal13 } ifelse "
-*End
-*PageRegion 9x12/9x12: " userdict /XJXsetpagesize known
- { (NineByTwelve) XJXsetpagesize } { 9x12 } ifelse "
-*End
-*PageRegion SEFLet/SEF Letter: " userdict /XJXsetpagesize known
- { (LetterSEF) XJXsetpagesize }
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion SEFA4/SEF A4: " userdict /XJXsetpagesize known
- { (A4SEF) XJXsetpagesize }
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
- /Policies << /PageSize 7 >> >> setpagedevice
- } ifelse "
-*End
-*PageRegion B4/B4: " userdict /XJXsetpagesize known
- { (B4) XJXsetpagesize } { b4 } ifelse "
-*End
-*PageRegion B5/B5: " userdict /XJXsetpagesize known
- { (B5) XJXsetpagesize } { b5 } ifelse "
-*End
-*PageRegion Docupac/Docupac: " userdict /XJXsetpagesize known
- { (Docupac) XJXsetpagesize } { Docupac } ifelse "
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter: "9 12 589 783"
-*ImageableArea A4/A4: "9 12 572 833"
-*ImageableArea Legal/Legal: "9 9 600 985"
-*ImageableArea Tabloid/11x17: "9 9 780 1201"
-*ImageableArea A3/A3: "10 10 830 1168"
-*ImageableArea 8x10/8x10: "9 12 553 711"
-*ImageableArea Legal13/Legal 13: "9 9 600 913"
-*ImageableArea 9x12/9x12: "9 9 636 841"
-*ImageableArea SEFLet/SEF Letter: "9 10 600 770"
-*ImageableArea SEFA4/SEF A4: "9 10 583 820"
-*ImageableArea B4/B4: "9 9 717 1006"
-*ImageableArea B5/B5: "9 9 490 717"
-*ImageableArea Docupac/Docupac: "9 9 672 819"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter: "612 792"
-*PaperDimension A4/A4: "595 842"
-*PaperDimension Legal/Legal: "612 1008"
-*PaperDimension Tabloid/11x17: "792 1224"
-*PaperDimension A3/A3: "842 1191"
-*PaperDimension 8x10/8x10: "576 720"
-*PaperDimension Legal13/Legal 13: "612 936"
-*PaperDimension 9x12/9x12: "648 864"
-*PaperDimension SEFLet/SEF Letter: "612 793"
-*PaperDimension SEFA4/SEF A4: "595 843"
-*PaperDimension B4/B4: "729 1032"
-*PaperDimension B5/B5: "516 729"
-*PaperDimension Docupac/Docupac: "684 842"
-
-*% PPD pages ends
-
-*%EFIFlags *EFTrayOvrWrt Spooler|Command
-*OpenUIEFI *EFTrayOvrWrt/Bypass Tray :Boolean
-*OrderDependency: 65 AnySetup *EFTrayOvrWrt
-*DefaultEFTrayOvrWrt: False
-*EFTrayOvrWrt True/On: "1 dict dup /ManualFeed true put setpagedevice"
-*EFTrayOvrWrt False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-*?EFTrayOvrWrt: "
- save currentpagedevice /ManualFeed get
- {(True)} {(False)} ifelse = flush restore"
-*End
-*CloseUIEFI: *EFTrayOvrWrt
-
-*RequiresPageRegion All: True
-*%EFIFlags *InputSlot Command|Column
-*%EFIGroup *InputSlot Finishing/Finishing
-*OpenUI *InputSlot/Paper Source : PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: AutoSelect
-*InputSlot AutoSelect/AutoSelect: ""
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string
- FieryXJdict /ExtCmdGetExec get exec {pop} if"
-*End
-*InputSlot ManualFeed/Bypass Tray: "
- 1 dict dup /ManualFeed true put setpagedevice"
-*End
-*CloseUI: *InputSlot
-
-*% Font Information =========================
-*DefaultFont: Courier
-*Font AlbertusMT: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Italic: Standard "(001.000)" Standard Disk
-*Font AlbertusMT-Light: Standard "(001.000)" Standard Disk
-*Font AntiqueOlive-Bold: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Compact: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Italic: Standard "(001.001)" Standard Disk
-*Font AntiqueOlive-Roman: Standard "(001.001)" Standard Disk
-*Font Apple-Chancery: Standard "(002.000)" Standard Disk
-*Font Arial-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font Arial-BoldMT: Standard "(002.000)" Standard Disk
-*Font Arial-ItalicMT: Standard "(002.000)" Standard Disk
-*Font ArialMT: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Book: Standard "(002.000)" Standard Disk
-*Font AvantGarde-BookOblique: Standard "(002.000)" Standard Disk
-*Font AvantGarde-Demi: Standard "(002.000)" Standard Disk
-*Font AvantGarde-DemiOblique: Standard "(002.000)" Standard Disk
-*Font Bodoni: Standard "(001.002)" Standard Disk
-*Font Bodoni-Bold: Standard "(001.002)" Standard Disk
-*Font Bodoni-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Italic: Standard "(001.002)" Standard Disk
-*Font Bodoni-Poster: Standard "(001.002)" Standard Disk
-*Font Bodoni-PosterCompressed: Standard "(001.001)" Standard Disk
-*Font Bookman-Demi: Standard "(002.000)" Standard Disk
-*Font Bookman-DemiItalic: Standard "(002.000)" Standard Disk
-*Font Bookman-Light: Standard "(002.000)" Standard Disk
-*Font Bookman-LightItalic: Standard "(002.000)" Standard Disk
-*Font Carta: Standard "(001.001)" Standard Disk
-*Font Chicago: Standard "(002.000)" Standard Disk
-*Font Clarendon: Standard "(001.001)" Standard Disk
-*Font Clarendon-Bold: Standard "(001.001)" Standard Disk
-*Font Clarendon-Light: Standard "(001.001)" Standard Disk
-*Font CooperBlack: Standard "(001.003)" Standard Disk
-*Font CooperBlack-Italic: Standard "(001.003)" Standard Disk
-*Font Copperplate-ThirtyThreeBC: Standard "(001.002)" Standard Disk
-*Font Copperplate-ThirtyTwoBC: Standard "(001.002)" Standard Disk
-*Font Coronet-Regular: Standard "(001.000)" Standard Disk
-*Font Courier: Standard "(003.000)" Standard Disk
-*Font Courier-Bold: Standard "(003.000)" Standard Disk
-*Font Courier-BoldOblique: Standard "(003.000)" Standard Disk
-*Font Courier-Oblique: Standard "(003.000)" Standard Disk
-*Font Eurostile: Standard "(001.002)" Standard Disk
-*Font Eurostile-Bold: Standard "(001.001)" Standard Disk
-*Font Eurostile-BoldExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Eurostile-ExtendedTwo: Standard "(001.002)" Standard Disk
-*Font Geneva: Standard "(002.000)" Standard Disk
-*Font GillSans: Standard "(001.002)" Standard Disk
-*Font GillSans-Bold: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldCondensed: Standard "(001.001)" Standard Disk
-*Font GillSans-BoldItalic: Standard "(001.002)" Standard Disk
-*Font GillSans-Condensed: Standard "(001.001)" Standard Disk
-*Font GillSans-ExtraBold: Standard "(001.001)" Standard Disk
-*Font GillSans-Italic: Standard "(001.002)" Standard Disk
-*Font GillSans-Light: Standard "(001.001)" Standard Disk
-*Font GillSans-LightItalic: Standard "(001.002)" Standard Disk
-*Font Goudy: Standard "(001.003)" Standard Disk
-*Font Goudy-Bold: Standard "(001.002)" Standard Disk
-*Font Goudy-BoldItalic: Standard "(001.002)" Standard Disk
-*Font Goudy-ExtraBold: Standard "(001.001)" Standard Disk
-*Font Goudy-Italic: Standard "(001.002)" Standard Disk
-*Font Helvetica: Standard "(002.000)" Standard Disk
-*Font Helvetica-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-BoldObl: Standard "(002.000)" Standard Disk
-*Font Helvetica-Condensed-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(002.000)" Standard Disk
-*Font Helvetica-Oblique: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Black: Standard "(002.000)" Standard Disk
-*Font HoeflerText-BlackItalic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Italic: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Ornaments: Standard "(002.000)" Standard Disk
-*Font HoeflerText-Regular: Standard "(002.000)" Standard Disk
-*Font JoannaMT: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Bold: Standard "(001.000)" Standard Disk
-*Font JoannaMT-BoldItalic: Standard "(001.000)" Standard Disk
-*Font JoannaMT-Italic: Standard "(001.000)" Standard Disk
-*Font LetterGothic: Standard "(001.004)" Standard Disk
-*Font LetterGothic-Bold: Standard "(001.006)" Standard Disk
-*Font LetterGothic-BoldSlanted: Standard "(001.005)" Standard Disk
-*Font LetterGothic-Slanted: Standard "(001.004)" Standard Disk
-*Font LubalinGraph-Book: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-BookOblique: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-Demi: Standard "(001.002)" Standard Disk
-*Font LubalinGraph-DemiOblique: Standard "(001.002)" Standard Disk
-*Font Marigold: Standard "(001.000)" Standard Disk
-*Font Monaco: Standard "(002.000)" Standard Disk
-*Font MonaLisa-Recut: Standard "(001.000)" Standard Disk
-*Font NewCenturySchlbk-Bold: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-BoldItalic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Italic: Standard "(002.000)" Standard Disk
-*Font NewCenturySchlbk-Roman: Standard "(002.000)" Standard Disk
-*Font NewYork: Standard "(002.000)" Standard Disk
-*Font Optima: Standard "(001.005)" Standard Disk
-*Font Optima-Bold: Standard "(001.005)" Standard Disk
-*Font Optima-BoldItalic: Standard "(001.000)" Standard Disk
-*Font Optima-Italic: Standard "(001.000)" Standard Disk
-*Font Oxford: Standard "(001.000)" Standard Disk
-*Font Palatino-Bold: Standard "(002.000)" Standard Disk
-*Font Palatino-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Palatino-Italic: Standard "(002.000)" Standard Disk
-*Font Palatino-Roman: Standard "(002.000)" Standard Disk
-*Font StempelGaramond-Bold: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Italic: Standard "(001.002)" Standard Disk
-*Font StempelGaramond-Roman: Standard "(001.002)" Standard Disk
-*Font Symbol: Standard "(001.008)" Standard Disk
-*Font Tekton: Standard "(001.001)" Standard Disk
-*Font Times-Bold: Standard "(002.000)" Standard Disk
-*Font Times-BoldItalic: Standard "(002.000)" Standard Disk
-*Font Times-Italic: Standard "(002.000)" Standard Disk
-*Font Times-Roman: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-BoldMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPS-ItalicMT: Standard "(002.000)" Standard Disk
-*Font TimesNewRomanPSMT: Standard "(002.000)" Standard Disk
-*Font Univers: Standard "(001.003)" Standard Disk
-*Font Univers-Bold: Standard "(001.003)" Standard Disk
-*Font Univers-BoldExt: Standard "(001.000)" Standard Disk
-*Font Univers-BoldExtObl: Standard "(001.000)" Standard Disk
-*Font Univers-BoldOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Condensed: Standard "(001.002)" Standard Disk
-*Font Univers-CondensedBold: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedBoldOblique: Standard "(001.001)" Standard Disk
-*Font Univers-CondensedOblique: Standard "(001.002)" Standard Disk
-*Font Univers-Extended: Standard "(001.000)" Standard Disk
-*Font Univers-ExtendedObl: Standard "(001.000)" Standard Disk
-*Font Univers-Light: Standard "(001.003)" Standard Disk
-*Font Univers-LightOblique: Standard "(001.003)" Standard Disk
-*Font Univers-Oblique: Standard "(001.003)" Standard Disk
-*Font Wingdings-Regular: Standard "(002.000)" Standard Disk
-*Font ZapfChancery-MediumItalic: Standard "(002.000)" Standard Disk
-*Font ZapfDingbats: Standard "(002.000)" Standard Disk
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
- save (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "scanning"
-
-*Status: "PrinterError: Ok"
-*Status: "PrinterError: Reset the copier and fiery"
-*Status: "PrinterError: Copier is busy (Copier mode)"
-*Status: "PrinterError: Copier is busy (AGOC)"
-*Status: "PrinterError: Copier is busy (FUSER)"
-*Status: "PrinterError: Copier is busy (ROS)"
-*Status: "PrinterError: Copier is busy (DRUM HEATER)"
-*Status: "PrinterError: Copier is busy (MC)"
-*Status: "PrinterError: Paper jam"
-*Status: "PrinterError: Copier's interlock is open"
-*Status: "PrinterError: Out of toner"
-*Status: "PrinterError: Fuser web empty"
-*Status: "PrinterError: Waste toner container is full"
-*Status: "PrinterError: Copier's accessary is disabled"
-
-*Status: "PrinterError: Load A3 paper in tray"
-*Status: "PrinterError: Load A4 paper in tray"
-*Status: "PrinterError: Load A4 SEF paper in tray"
-*Status: "PrinterError: Load 11x17 paper in tray"
-*Status: "PrinterError: Load Letter paper in tray"
-*Status: "PrinterError: Load Letter SEF paper in tray"
-*Status: "PrinterError: Load Legal paper in tray"
-*Status: "PrinterError: Load 8x10 paper in tray"
-*Status: "PrinterError: Load Legal 13 paper in tray"
-*Status: "PrinterError: Load 9x12 paper in tray"
-
-*Status: "PrinterError: An unknown copier error occurred"
-*Status: "PrinterError: Copier is offline"
-
-*Status: "PrinterError: Load A3 paper in bypass tray"
-*Status: "PrinterError: Load A4 paper bypass tray"
-*Status: "PrinterError: Load A4 SEF paper bypass tray"
-*Status: "PrinterError: Load 11x17 paper bypass tray"
-*Status: "PrinterError: Load Letter paper bypass tray"
-*Status: "PrinterError: Load Letter SEF paper bypass tray"
-*Status: "PrinterError: Load Legal paper bypass tray"
-*Status: "PrinterError: Load 8x10 paper bypass tray"
-*Status: "PrinterError: Load Legal 13 paper bypass tray"
-*Status: "PrinterError: Load 9x12 paper bypass tray"
-
-*Status: "PrinterError: Sorter problem (See copier console)"
-*Status: "PrinterError: Copier is busy (UI)"
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "EtherTalk"
-*Source: "Parallel"
-*Source: "TCP/IP"
-*Source: "Novell IPX"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Ok"
-*PrinterError: "Reset the copier and fiery"
-*PrinterError: "Copier is busy (Copier mode)"
-*PrinterError: "Copier is busy (AGOC)"
-*PrinterError: "Copier is busy (FUSER)"
-*PrinterError: "Copier is busy (ROS)"
-*PrinterError: "Copier is busy (DRUM HEATER)"
-*PrinterError: "Copier is busy (MC)"
-*PrinterError: "Paper jam"
-*PrinterError: "Copier's interlock is open"
-*PrinterError: "Out of toner"
-*PrinterError: "Fuser web empty"
-*PrinterError: "Waste toner container is full"
-*PrinterError: "Copier's accessary is disabled"
-
-*PrinterError: "Load A3 paper in tray"
-*PrinterError: "Load A4 paper in tray"
-*PrinterError: "Load A4 SEF paper in tray"
-*PrinterError: "Load 11x17 paper in tray"
-*PrinterError: "Load Letter paper in tray"
-*PrinterError: "Load Letter SEF paper in tray"
-*PrinterError: "Load Legal paper in tray"
-*PrinterError: "Load 8x10 paper in tray"
-*PrinterError: "Load Legal 13 paper in tray"
-*PrinterError: "Load 9x12 paper in tray"
-
-*PrinterError: "An unknown copier error occurred"
-*PrinterError: "Copier is offline"
-
-*PrinterError: "Load A3 paper in bypass tray"
-*PrinterError: "Load A4 paper bypass tray"
-*PrinterError: "Load A4 SEF paper bypass tray"
-*PrinterError: "Load 11x17 paper bypass tray"
-*PrinterError: "Load Letter paper bypass tray"
-*PrinterError: "Load Letter SEF paper bypass tray"
-*PrinterError: "Load Legal paper bypass tray"
-*PrinterError: "Load 8x10 paper bypass tray"
-*PrinterError: "Load Legal 13 paper bypass tray"
-*PrinterError: "Load 9x12 paper bypass tray"
-
-*PrinterError: "Sorter problem (See copier console)"
-*PrinterError: "Copier is busy (UI)"
-
-
-*% Color Separation Information ====================
-
-
-*% Custom Inks for Fiery Logo
-*InkName: P300FieryBlue/Fiery Blue
-*InkName: P199FieryRed/Fiery Red
-*InkName: PblackFieryBlack/Fiery Black
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-*DefaultColorSep: Black.50lpi.400dpi
-
-*% -------Halftone Graphics Mode (Hi-Res mode)
-*ColorSepScreenAngle Cyan.50lpi.400dpi: "0"
-*ColorSepScreenAngle Magenta.50lpi.400dpi: "0"
-*ColorSepScreenAngle Yellow.50lpi.400dpi: "0"
-*ColorSepScreenAngle Black.50lpi.400dpi: "0"
-*ColorSepScreenFreq Cyan.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Magenta.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Yellow.50lpi.400dpi: "50.0"
-*ColorSepScreenFreq Black.50lpi.400dpi: "50.0"
-*ColorSepScreenProc Cyan.50lpi.400dpi: "{6 5
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Magenta.50lpi.400dpi: "{4 7
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Yellow.50lpi.400dpi: "{5 2
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*ColorSepScreenProc Black.50lpi.400dpi: "{2 4
- { 3 1 roll 4 -1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec 8 mul 3 1 roll exch
- {dup 8 ge { 8 sub} if exch
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
- dup 0 lt {0 exch sub} if cvi
- }
- exec add
- [
- 48 18 8 16 46 16 6 14
- 56 60 32 24 54 58 30 22
- 4 12 44 40 2 10 42 38
- 28 20 52 64 26 18 50 62
-
- 45 15 5 13 47 17 7 15
- 53 57 29 21 55 59 31 23
- 1 9 41 37 3 11 43 39
- 25 17 49 61 27 19 51 63
- ]
- exch get 8 dup mul div} exec}"
-*End
-
-*% PPD Last Modified 6/2/98
-*% End of PPD file
-*% The byte count of this file should be exactly 066432 or 068101
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery X2 5799
diff --git a/psprint_config/configuration/ppds/EFXJK1F3.PS b/psprint_config/configuration/ppds/EFXJK1F3.PS
deleted file mode 100644
index bbdb76837b18..000000000000
--- a/psprint_config/configuration/ppds/EFXJK1F3.PS
+++ /dev/null
@@ -1,1945 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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
-
-
-*% All Rights Reserved.
-
-*% Permission is granted for redistribution of this file as
-
-*% long as this copyright notice is intact and the contents
-
-*% of the file is not altered in any way from its original form.
-
-*% End of Copyright statement
-
-
-
-*% *********
-
-*% EFI Information Block
-
-*%
-
-*FileVersion: "0.1"
-
-*% EF4File
-
-*% EFConversionKey: "Kodak"
-
-*%
-
-*% *********
-
-
-
-*FormatVersion: "4.2"
-
-*FileVersion: "1.1"
-
-*PCFileName: "EFXJK1F3.PPD"
-
-*LanguageVersion: English
-
-*LanguageEncoding: ISOLatin1
-
-*Product: "(Fiery XJK 1000 1525-1550)"
-
-*PSVersion: "(2015.802) 0"
-
-*ModelName: "Fiery XJK 1525-1550 Color Server v2015.802"
-
-*ShortNickName: "Fiery XJK1000 1525-50 v2015.802"
-
-*NickName: "Fiery XJK 1000 1525-1550 Color Server v2015.802"
-
-*Manufacturer: "Kodak"
-
-
-
-*% PPD body begins
-
-
-
-*% === Options and Constraints =========
-
-
-
-*UIConstraints: *COLORMODE GRAY *EFColorRendDict Preferred
-
-*UIConstraints: *EFColorRendDict Preferred *COLORMODE GRAY
-
-*UIConstraints: *COLORMODE GRAY *EFColorRendDict Business
-
-*UIConstraints: *EFColorRendDict Business *COLORMODE GRAY
-
-*UIConstraints: *COLORMODE GRAY *EFColorRendDict Colorimetric
-
-*UIConstraints: *EFColorRendDict Colorimetric *COLORMODE GRAY
-
-*UIConstraints: *COLORMODE GRAY *EFColorRendDict Monitor
-
-*UIConstraints: *EFColorRendDict Monitor *COLORMODE GRAY
-
-
-
-*UIConstraints: *ManualFeed False *MediaType Transparent
-
-*UIConstraints: *MediaType Transparent *ManualFeed False
-
-
-
-*UIConstraints: *MediaType Transparent *InputSlot AutoSelect
-
-*%UIConstraints: *InputSlot AutoSelect *MediaType Transparent
-
-
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Preferred
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Colorimetric
-
-*UIConstraints: *EFColorRendDict Preferred *MediaType Transparent
-
-*UIConstraints: *EFColorRendDict Colorimetric *MediaType Transparent
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Monitor
-
-*UIConstraints: *EFColorRendDict Monitor *MediaType Transparent
-
-
-
-*UIConstraints: *PRINTERMODE Halftone *COLORMODE GRAY
-
-*UIConstraints: *COLORMODE GRAY *PRINTERMODE Halftone
-
-
-
-*% Overprinting Constraints ================
-
-*UIConstraints: *EFOverprint On *PRINTERMODE Halftone
-
-*UIConstraints: *PRINTERMODE Halftone *EFOverprint On
-
-
-
-*UIConstraints: *EFOverprint On *EFColorRendDict Preferred
-
-*UIConstraints: *EFOverprint On *EFColorRendDict Colorimetric
-
-*UIConstraints: *EFOverprint On *EFColorRendDict Business
-
-*UIConstraints: *EFOverprint On *EFColorRendDict Monitor
-
-*UIConstraints: *EFColorRendDict Preferred *EFOverprint On
-
-*UIConstraints: *EFColorRendDict Colorimetric *EFOverprint On
-
-*UIConstraints: *EFColorRendDict Business *EFOverprint On
-
-*UIConstraints: *EFColorRendDict Monitor *EFOverprint On
-
-
-
-*UIConstraints: *COLORMODE GRAY *EFOverprint On
-
-*UIConstraints: *EFOverprint On *COLORMODE GRAY
-
-
-
-*UIConstraintsEFI: *ENABLECOMP NO *PHYSMEMSIZE 48
-
-
-
-*% General Information and Defaults ===============
-
-*FreeVM: "4413108"
-
-*LanguageLevel: "2"
-
-*ColorDevice: True
-
-*DefaultColorSpace: CMYK
-
-*PrintPSErrors: True
-
-*FileSystem: True
-
-*?FileSystem: "
-
- save
-
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
-
- restore
-
- "
-
-*End
-
-*Throughput: "10"
-
-*Password: "0"
-
-*ExitServer: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
-"
-
-*End
-
-
-
-*Reset: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot reset printer.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
- systemdict /quit get exec
-
- (WARNING: Printer Reset Failed.) = flush
-
-"
-
-*End
-
-
-
-*DefaultResolution: 400dpi
-
-*?Resolution: "
-
-save
-
- initgraphics
-
- 0 0 moveto currentpoint matrix defaultmatrix transform
-
- 0 72 lineto currentpoint matrix defaultmatrix transform
-
- 3 -1 roll sub dup mul
-
- 3 1 roll exch sub dup mul
-
- add sqrt round cvi
-
- ( ) cvs print (dpi) = flush
-
-restore
-
-"
-
-*End
-
-
-
-*AccurateScreensSupport: True
-
-
-
-*%EFIFlags *ENABLECOMP Setup
-
-*OpenUIEFI *ENABLECOMP/Memory Multiplier : PickOne
-
-*OrderDependency: 05 AnySetup *ENABLECOMP
-
-*DefaultENABLECOMP: YES
-
-*ENABLECOMP YES/On: ""
-
-*ENABLECOMP NO/Off: ""
-
-*CloseUIEFI: *ENABLECOMP
-
-
-
-*%EFIFlags *PRINTERMODE Command|Setup
-
-*OpenUI *PRINTERMODE/Printer Mode :PickOne
-
-*OrderDependency: 15 AnySetup *PRINTERMODE
-
-*DefaultPRINTERMODE: PrintDEF
-
-*PRINTERMODE PrintDEF/Printer's default: ""
-
-*PRINTERMODE Contone/Contone: " userdict /setcolorbundle known
-
- { << /Compression /Disabled /HalftoneMode /Contone >> setcolorbundle }
-
- { << /DeviceRenderingInfo << /Type 4
-
- /ValuesPerColorComponent 256 >> >> setpagedevice } ifelse "
-
-*End
-
-*PRINTERMODE Halftone/Halftone: " userdict /setcompression known
-
- { << /HalftoneMode /Halftone >> setcolorbundle }
-
- { << /DeviceRenderingInfo << /Type 4
-
- /ValuesPerColorComponent 2 >> >> setpagedevice } ifelse "
-
-*End
-
-*?PRINTERMODE: "currentpagedevice /DeviceRenderingInfo get
-
- /ValuesPerColorComponent get ln 2 ln div cvi = flush"
-
-*End
-
-*CloseUI: *PRINTERMODE
-
-
-
-*%EFIFlags *EFOverprint
-
-*OpenUI *EFOverprint/Combine Separations :PickOne
-
-*OrderDependency: 40 AnySetup *EFOverprint
-
-*DefaultEFOverprint: OverPrintDEF
-
-*EFOverprint OverPrintDEF/Printer's default: ""
-
-*EFOverprint On/On: " userdict /XJXsetoverprint known
-
- { 1 XJXsetoverprint }
-
- { (printerinfo overprint 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
-
- userdict /setcolorbundle known
-
- { << /ColorMode /Grayscale /Compression /Disabled >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceGray >> setpagedevice } ifelse "
-
-*End
-
-*EFOverprint Off/Off: " userdict /XJXsetoverprint known
-
- { 0 XJXsetoverprint }
-
- { (printerinfo overprint 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*?EFOverprint: ""
-
-*CloseUI: *EFOverprint
-
-
-
-*%EFIFlags *COLORMODE Command|Setup
-
-*OpenUI *COLORMODE/Color Mode :PickOne
-
-*OrderDependency: 12 AnySetup *COLORMODE
-
-*DefaultCOLORMODE: ColorDEF
-
-*COLORMODE ColorDEF/Printer's default: ""
-
-*COLORMODE CMYK/CMYK: " userdict /setcolorbundle known
-
- { << /ColorMode /CMYK >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceCMYK >> setpagedevice } ifelse "
-
-*End
-
-*COLORMODE GRAY/Grayscale: " userdict /setcolorbundle known
-
- { << /ColorMode /Grayscale /Compression /Disabled >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceGray >> setpagedevice } ifelse "
-
-*End
-
-*?COLORMODE: " currentpagedevice /ProcessColorModel get == } if "
-
-*CloseUI: *COLORMODE
-
-
-
-*%EFIFlags *DEFPAPERSIZE Setup
-
-*OpenUIEFI *DEFPAPERSIZE/Default Paper Sizes :PickOne
-
-*OrderDependency: 20 AnySetup *DEFPAPERSIZE
-
-*DefaultDEFPAPERSIZE: US
-
-*DEFPAPERSIZE US/US: ""
-
-*DEFPAPERSIZE Metric/Metric: ""
-
-*?DEFPAPERSIZE: ""
-
-*CloseUIEFI: *DEFPAPERSIZE
-
-
-
-*%EFIFlags *CONVPAPERSIZE Setup
-
-*OpenUIEFI *CONVPAPERSIZE/Convert Paper Sizes : PickOne
-
-*OrderDependency: 25 AnySetup *CONVPAPERSIZE
-
-*DefaultCONVPAPERSIZE: False
-
-*CONVPAPERSIZE False/No: ""
-
-*CONVPAPERSIZE LetterToA4/Letter/11x17->A4/A3: ""
-
-*CONVPAPERSIZE A4ToLetter/A4/A3->Letter/11x17: ""
-
-*?CONVPAPERSIZE: ""
-
-*CloseUIEFI: *CONVPAPERSIZE
-
-
-
-*%EFIFlags *COVPGATEND Setup
-
-*OpenUIEFI *COVPGATEND/Print Cover Page : PickOne
-
-*OrderDependency: 30 AnySetup *COVPGATEND
-
-*DefaultCOVPGATEND: NO
-
-*COVPGATEND YES/Yes: ""
-
-*COVPGATEND NO/No: ""
-
-*CloseUIEFI: *COVPGATEND
-
-
-
-*%EFIFlags *COURIERSUBST Setup
-
-*OpenUIEFI *COURIERSUBST/Allow Courier Substitution :PickOne
-
-*OrderDependency: 35 AnySetup *COURIERSUBST
-
-*DefaultCOURIERSUBST: YES
-
-*COURIERSUBST YES/Yes: ""
-
-*COURIERSUBST NO/No: ""
-
-*CloseUIEFI: *COURIERSUBST
-
-
-
-*%EFIFlags *PSERROR Setup
-
-*OpenUIEFI *PSERROR/Print to PS Error : PickOne
-
-*OrderDependency: 40 AnySetup *PSERROR
-
-*DefaultPSERROR: NO
-
-*PSERROR YES/Yes: ""
-
-*PSERROR NO/No: ""
-
-*CloseUIEFI: *PSERROR
-
-
-
-*%EFIFlags *EFHPBlack Spooler|Command
-
-*OpenUI *EFHPBlack/High Productivity Black : PickOne
-
-*OrderDependency: 40 AnySetup *EFHPBlack
-
-*DefaultEFHPBlack: EFHPBlackDEF
-
-*EFHPBlack EFHPBlackDEF/Printer's default: ""
-
-*EFHPBlack False/Off: " userdict /XJXsethpblack known
-
- { 0 XJXsethpblack }
-
- { (printerinfo CheckHPBlack 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*EFHPBlack True/On: " userdict /XJXsethpblack known
-
- { 1 XJXsethpblack }
-
- { (printerinfo CheckHPBlack 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*CloseUI: *EFHPBlack
-
-
-
-*%EFIFlags *MediaType Spooler|Command
-
-*OpenUI *MediaType/Media Type :PickOne
-
-*OrderDependency: 50 AnySetup *MediaType
-
-*DefaultMediaType: MediaTypeDEF
-
-*MediaType MediaTypeDEF/Printer's default: ""
-
-*MediaType Plain/Plain Paper: " userdict /setcolorbundle known
-
- { << /MediaType /Plain >> setcolorbundle 1 XJXsetmediatype } if"
-
-*End
-
-*MediaType Transparent/Transparency: " userdict /setcolorbundle known
-
- { << /MediaType /Transparent >> setcolorbundle 2 XJXsetmediatype } if"
-
-*End
-
-*?MediaType: " userdict /setcolorbundle known {
-
- currentcolorbundle /MediaType get == } if"
-
-*End
-
-*CloseUI: *MediaType
-
-
-
-*%EFIFlags *EFColorRendDict Spooler|Command
-
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-
-*OrderDependency: 60 AnySetup *EFColorRendDict
-
-*DefaultEFColorRendDict: RenderingDEF
-
-*EFColorRendDict RenderingDEF/Printer's default: ""
-
-*EFColorRendDict Preferred/Photographic: " userdict /setcolorbundle known
-
- { << /ColorRendering /Photographic >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTPreferredColorRendering } { /PreferredColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Business/Presentation: " userdict /setcolorbundle known
-
- { << /ColorRendering /Presentation >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTBusinessColorRendering } { /BusinessColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Monitor/Monitor: " userdict /setcolorbundle known
-
- { << /ColorRendering /Monitor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTMonitorColorRendering } { /MonitorColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Colorimetric/Solid Color: " userdict /setcolorbundle known
-
- { << /ColorRendering /Solid >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*?EFColorRendDict: " userdict /setcolorbundle known
-
- { currentcolorbundle /ColorRendering get == } if "
-
-*End
-
-*CloseUI: *EFColorRendDict
-
-
-
-*%EFIFlags *Brightness Spooler|Command
-
-*OpenUI *Brightness/Brightness :PickOne
-
-*OrderDependency: 55 AnySetup *Brightness
-
-*DefaultBrightness: BrightnessDEF
-
-*Brightness BrightnessDEF/Printer's default: ""
-
-*Brightness +0.24/85% Lightest: " {dup 180 mul sin 0.15 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness +0.16/90% Lighter: " {dup 180 mul sin 0.10 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness +0.08/95% Light: " {dup 180 mul sin 0.05 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness 00.00/100% Normal: " {} settransfer "
-
-*Brightness -0.08/105% Dark: " {dup 180 mul sin -0.05 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness -0.16/110% Darker: " {dup 180 mul sin -0.10 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness -0.24/115% Darkest: " {dup 180 mul sin -0.15 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*CloseUI: *Brightness
-
-
-
-*%EFIFlags *TonerReduction Spooler|Command
-
-*OpenUI *TonerReduction/Toner Reduction :PickOne
-
-*OrderDependency: 70 AnySetup *TonerReduction
-
-*DefaultTonerReduction: TonerReductionDEF
-
-*TonerReduction TonerReductionDEF/Printer's default: ""
-
-*TonerReduction False/Off: " userdict /XJXsettonerreduction known
-
- { 0 XJXsettonerreduction }
-
- { (printerinfo checkucr 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec {pop} if } ifelse "
-
-*End
-
-*TonerReduction True/On: " userdict /XJXsettonerreduction known
-
- { 1 XJXsettonerreduction }
-
- { (printerinfo checkucr 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec {pop} if } ifelse "
-
-*End
-
-*CloseUI: *TonerReduction
-
-
-
-*%EFIFlags *ManualFeed Spooler|Command
-
-*OpenUI *ManualFeed/Manual Feed :Boolean
-
-*OrderDependency: 65 AnySetup *ManualFeed
-
-*DefaultManualFeed: False
-
-*ManualFeed True/On: "1 dict dup /ManualFeed true put setpagedevice"
-
-*ManualFeed False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-
-*?ManualFeed: "
-
- save currentpagedevice /ManualFeed get
-
- {(True)} {(False)} ifelse = flush restore"
-
-*End
-
-*CloseUI: *ManualFeed
-
-
-
-*%EFIFlags *Prange Command
-
-*OpenUIEFI *Prange/Page Range : PickOne
-
-*OrderDependency: 70 AnySetup *Prange
-
-*DefaultPrange: All
-
-*Prange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ ] put
-
- setglobal "
-
-*End
-
-*Prange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1 2 4 6 ] put
-
- setglobal "
-
-*End
-
-*?Prange: ""
-
-*CloseUIEFI: *Prange
-
-
-
-*%EFIFlags *Flip Command
-
-*OpenUIEFI *Flip/Flip : PickOne
-
-*OrderDependency: 75 AnySetup *Flip
-
-*DefaultFlip: None
-
-*Flip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*Flip H/Horizonal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*?Flip: ""
-
-*CloseUIEFI: *Flip
-
-
-
-*%EFIFlags *Scale Command
-
-*OpenUIEFI *Scale/Scale : PickOne
-
-*OrderDependency: 80 AnySetup *Scale
-
-*DefaultScale: 100
-
-*Scale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 2 put << >> setpagedevice "
-
-*End
-
-*Scale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1.5 put << >> setpagedevice "
-
-*End
-
-*Scale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1 put << >> setpagedevice "
-
-*End
-
-*Scale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .75 put << >> setpagedevice "
-
-*End
-
-*Scale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .5 put << >> setpagedevice "
-
-*End
-
-*?Scale: ""
-
-*CloseUIEFI: *Scale
-
-
-
-*%EFIFlags *Rotate Command
-
-*OpenUIEFI *Rotate/Rotate: PickOne
-
-*OrderDependency: 85 AnySetup *Rotate
-
-*DefaultRotate: 0
-
-*Rotate 0/0: " << >> setpagedevice "
-
-*Rotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 90 put << >> setpagedevice "
-
-*End
-
-*Rotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 270 put << >> setpagedevice "
-
-*End
-
-*Rotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 180 put << >> setpagedevice "
-
-*End
-
-*?Rotate: ""
-
-*CloseUIEFI: *Rotate
-
-
-
-*%================= Halftone Information ===============
-
-*ScreenFreq: "66.0"
-
-*ScreenAngle: "0"
-
-*DefaultScreenProc: Text
-
-*ScreenProc Text: "
-
- {2 4
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*DefaultTransfer: Null
-
-*Transfer Null: "{ }"
-
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-
-
-*% Black substitution is always on.
-
-*DefaultBlackSubstitution: True
-
-*BlackSubstitution True: ""
-
-*?BlackSubstitution: "(True) == flush"
-
-
-
-*% PPD pages begins
-
-
-
-*% Paper Handling ===================
-
-*% Use these entries to set paper size most of the time, unless there is
-
-*% specific reason to use PageRegion.
-
-*%EFIFlags *PageSize Command
-
-*OpenUI *PageSize/Page Size :PickOne
-
-*OrderDependency: 45 AnySetup *PageSize
-
-*DefaultPageSize: Letter
-
-*PageSize Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType null
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize Legal/Legal: " userdict /setcolorbundle known
-
- { << /PageSize /Legal >> setcolorbundle } { legal } ifelse "
-
-*End
-
-*PageSize Tabloid/11x17: " userdict /setcolorbundle known
-
- { << /PageSize /11x17 >> setcolorbundle } { 11x17 } ifelse "
-
-*End
-
-*PageSize A3/A3: " userdict /setcolorbundle known
-
- { << /PageSize /A3 >> setcolorbundle } { a3 } ifelse "
-
-*End
-
-*PageSize A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType null
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize LetR/Letter-R:" userdict /setcolorbundle known
-
- { << /PageSize /Letter-R >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize A4R/A4-R:" userdict /setcolorbundle known
-
- { << /PageSize /A4-R >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*?PageSize: "
-
- save currentpagedevice /PageSize get aload pop
-
- 2 copy gt {exch} if (Unknown)
-
- 7 dict
-
- dup [612 792] (Letter) put
-
- dup [612 1008] (Legal) put
-
- dup [792 1224] (Tabloid) put
-
- dup [842 1191] (A3) put
-
- dup [595 842] (A4) put
-
- dup [612 792] (LetR) put
-
- dup [595 842] (A4R) put
-
- { exch aload pop 6 index sub abs 7 le exch 7 index sub abs 7 le and
-
- { exch pop exit } { pop } ifelse
-
- } bind forall = flush pop pop
-
- restore"
-
-*End
-
-*CloseUI: *PageSize
-
-
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-
-*%EFIFlags *PageRegion
-
-*OpenUI *PageRegion :PickOne
-
-*OrderDependency: 47 AnySetup *PageRegion
-
-*DefaultPageRegion: Letter
-
-*PageRegion Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType null
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion Legal/Legal: " userdict /setcolorbundle known
-
- { << /PageSize /Legal >> setcolorbundle } { legal } ifelse "
-
-*End
-
-*PageRegion Tabloid/11x17: " userdict /setcolorbundle known
-
- { << /PageSize /11x17 >> setcolorbundle } { 11x17 } ifelse "
-
-*End
-
-*PageRegion A3/A3: " userdict /setcolorbundle known
-
- { << /PageSize /A3 >> setcolorbundle } { a3 } ifelse "
-
-*End
-
-*PageRegion A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType null
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion LetR/Letter-R:" userdict /setcolorbundle known
-
- { << /PageSize /Letter-R >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion A4R/A4-R: " userdict /setcolorbundle known
-
- { << /PageSize /A4-R >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*CloseUI: *PageRegion
-
-
-
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter/Letter: "10 9 589 780"
-
-*ImageableArea Legal/Legal: "12 10 603 985"
-
-*ImageableArea Tabloid/11x17: "12 10 783 1201"
-
-*ImageableArea A3/A3: "12 10 833 1167"
-
-*ImageableArea A4/A4: "10 9 573 830"
-
-*ImageableArea LetR/Letter-R: "12 10 603 770"
-
-*ImageableArea A4R/A4-R: "12 10 587 820"
-
-*?ImageableArea: "
-
- save /cvp { cvi ( ) cvs print ( ) print } bind def
-
- newpath clippath pathbbox
-
- 4 -2 roll exch 2 {ceiling cvp} repeat
-
- exch 2 {floor cvp} repeat flush
-
- restore
-
-"
-
-*End
-
-
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: Letter
-
-*PaperDimension Letter/Letter: "612 792"
-
-*PaperDimension Legal/Legal: "612 1008"
-
-*PaperDimension Tabloid/11x17: "792 1224"
-
-*PaperDimension A3/A3: "842 1191"
-
-*PaperDimension A4/A4: "595 842"
-
-*PaperDimension LetR/Letter-R: "612 793"
-
-*PaperDimension A4R/A4-R: "595 843"
-
-
-
-*% PPD pages ends
-
-
-
-*RequiresPageRegion All: True
-
-*%EFIFlags *InputSlot
-
-*OpenUI *InputSlot/Paper Source : PickOne
-
-*OrderDependency: 100 AnySetup *InputSlot
-
-*DefaultInputSlot: AutoSelect
-
-*InputSlot AutoSelect/AutoSelect: ""
-
-*CloseUI: *InputSlot
-
-
-
-*DefaultOutputOrder: OutputOrderDEF
-
-*OutputOrder OutputOrderDEF/Printer's default: ""
-
-
-
-*% Font Information =========================
-
-*DefaultFont: Courier
-
-*Font ACaslon-Italic: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Regular: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Semibold: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-SemiboldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Bold: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Italic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Regular: Standard "(001.002)" Standard Disk
-
-*Font Americana: Standard "(001.002)" Standard Disk
-
-*Font Americana-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Book: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Demi: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-DemiOblique: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Bold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Medium: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Regular: Standard "(001.002)" Standard Disk
-
-*Font Blackoak: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Demi: Standard "(001.002)" Standard Disk
-
-*Font Bookman-DemiItalic: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Light: Standard "(001.002)" Standard Disk
-
-*Font Bookman-LightItalic: Standard "(001.002)" Standard Disk
-
-*Font Carta: Standard "(001.002)" Standard Disk
-
-*Font Courier: Standard "(001.002)" Standard Disk
-
-*Font Courier-Bold: Standard "(001.002)" Standard Disk
-
-*Font Courier-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Courier-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Formata-Italic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Medium: Standard "(001.002)" Standard Disk
-
-*Font Formata-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Regular: Standard "(001.002)" Standard Disk
-
-*Font Helvetica: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Kaufmann: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Black: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Regular: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Italic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Bold: Standard "(001.002)" Standard Disk
-
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Italic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Roman: Standard "(001.002)" Standard Disk
-
-*Font Parisian: Standard "(001.002)" Standard Disk
-
-*Font ParkAvenue: Standard "(001.002)" Standard Disk
-
-*Font Poetica-SuppOrnaments: Standard "(001.002)" Standard Disk
-
-*Font Symbol: Standard "(001.002)" Standard Disk
-
-*Font Tekton: Standard "(001.002)" Standard Disk
-
-*Font Tekton-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Times-Italic: Standard "(001.002)" Standard Disk
-
-*Font Times-Roman: Standard "(001.002)" Standard Disk
-
-*Font Trajan-Bold: Standard "(001.002)" Standard Disk
-
-*Font WoodtypeOrnaments-Two: Standard "(001.002)" Standard Disk
-
-*Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font ZapfDingbats: Standard "(001.002)" Standard Disk
-
-*?FontQuery: "
-
- save
-
- { count 1 gt
-
- { exch dup 127 string cvs (/) print print (:) print
-
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
-
- } { exit } ifelse
-
- } bind loop
-
- (*) = flush
-
- restore"
-
-*End
-
-
-
-*?FontList: "
-
- save (*) {cvn ==} 128 string /Font resourceforall
-
- (*) = flush restore"
-
-*End
-
-
-
-*% Printer Messages (verbatim from printer):
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-
-*Message: "\FontName\ not found, using Courier"
-
-
-
-*% Status (format: %%[ status: <one of these> ]%% )
-
-*Status: "idle"
-
-*Status: "busy"
-
-*Status: "waiting"
-
-*Status: "printing"
-
-*Status: "scanning"
-
-*Status: "PrinterError: Copier is busy"
-
-*Status: "PrinterError: Copier is in standby mode"
-
-*Status: "PrinterError: Service cable is disconnected"
-
-*Status: "PrinterError: Out of fuser oil"
-
-*Status: "PrinterError: Copier door is open"
-
-*Status: "PrinterError: Paper jam"
-
-*Status: "PrinterError: Out of paper"
-
-*Status: "PrinterError: Waste toner container is full"
-
-*Status: "PrinterError: Out of toner"
-
-*Status: "PrinterError: There is no key"
-
-*Status: "PrinterError: There is no control card"
-
-*Status: "PrinterError: ID mode"
-
-*Status: "PrinterError: Copier needs attention; see copier control panel"
-
-*Status: "PrinterError: Load A3 paper"
-
-*Status: "PrinterError: Load A4 paper"
-
-*Status: "PrinterError: Load 11x17 paper"
-
-*Status: "PrinterError: Load Letter paper"
-
-*Status: "PrinterError: Load Letter-R paper"
-
-*Status: "PrinterError: Load A4-R paper"
-
-*Status: "PrinterError: Load B4 paper"
-
-*Status: "PrinterError: Load B5-R paper"
-
-*Status: "PrinterError: Load Legal paper"
-
-*Status: "PrinterError: Check copier power and cable connection"
-
-*Status: "PrinterError: Check film scanner connection"
-
-*Status: "PrinterError: Copier is warming up"
-
-*Status: "PrinterError: Copier communication error; call copier technician"
-
-*Status: "PrinterError: Set paper size, then load manual feed paper"
-
-*Status: "PrinterError: An unknown copier error occurred"
-
-*Status: "PrinterError: Load manual feed paper"
-
-*Status: "PrinterError: Remove manual feed paper, then set size"
-
-*Status: "PrinterError: Copier is disconnected"
-
-*Status: "PrinterError: Film Scanner has copy control"
-
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*Source: "EtherTalk"
-
-*Source: "Parallel"
-
-*Source: "TCP/IP"
-
-*Source: "Novell IPX"
-
-
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Copier is busy"
-
-*PrinterError: "Copier is in standby mode"
-
-*PrinterError: "Service cable is disconnected"
-
-*PrinterError: "Out of fuser oil"
-
-*PrinterError: "Copier door is open"
-
-*PrinterError: "Paper jam"
-
-*PrinterError: "Out of paper"
-
-*PrinterError: "Waste toner container is full"
-
-*PrinterError: "Out of toner"
-
-*PrinterError: "There is no key"
-
-*PrinterError: "There is no control card"
-
-*PrinterError: "ID mode"
-
-*PrinterError: "Copier needs attention; see copier control panel"
-
-*PrinterError: "Load A3 paper"
-
-*PrinterError: "Load A4 paper"
-
-*PrinterError: "Load 11x17 paper"
-
-*PrinterError: "Load Letter paper"
-
-*PrinterError: "Load Legal paper"
-
-*PrinterError: "Load Letter-R paper"
-
-*PrinterError: "Load A4-R paper"
-
-*PrinterError: "Load B4 paper"
-
-*PrinterError: "Load B5-R paper"
-
-*PrinterError: "Check copier power and cable connection"
-
-*PrinterError: "Check film scanner connection"
-
-*PrinterError: "Copier is warming up"
-
-*PrinterError: "Copier communication error; call copier technician"
-
-*PrinterError: "Set paper size, then load manual feed paper"
-
-*PrinterError: "An unknown copier error occurred"
-
-*PrinterError: "Load manual feed paper"
-
-*PrinterError: "Remove manual feed paper, then set size"
-
-*PrinterError: "Copier is disconnected"
-
-*PrinterError: "Film Scanner has copy control"
-
-
-
-
-
-*% Color Separation Information ====================
-
-
-
-
-
-*% Custom Inks for Fiery Logo
-
-*InkName: P300FieryBlue/Fiery Blue
-
-*InkName: P199FieryRed/Fiery Red
-
-*InkName: PblackFieryBlack/Fiery Black
-
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-
-
-*DefaultColorSep: Black.100lpi.400dpi
-
-*DefaultSeparations: False
-
-
-
-*% ------Halftone Text Mode (Default)
-
-*ColorSepScreenAngle Cyan.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Magenta.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Yellow.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Black.100lpi.400dpi: "0"
-
-*ColorSepScreenFreq Cyan.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Magenta.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Yellow.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Black.100lpi.400dpi: "50.0"
-
-*ColorSepScreenProc Cyan.100lpi.400dpi: "{6 5
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Magenta.100lpi.400dpi: "{4 7
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Yellow.100lpi.400dpi: "{5 2
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Black.100lpi.400dpi: "{2 4
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*% End of PPD file for ColorPASS 350-550
-
-*% The byte count of this file should be exactly 036732 or 038677
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery XJK 1000 1525-1550
diff --git a/psprint_config/configuration/ppds/EFXJK2F3.PS b/psprint_config/configuration/ppds/EFXJK2F3.PS
deleted file mode 100644
index c9f65d96d959..000000000000
--- a/psprint_config/configuration/ppds/EFXJK2F3.PS
+++ /dev/null
@@ -1,2479 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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
-
-
-*% All Rights Reserved.
-
-*% Permission is granted for redistribution of this file as
-
-*% long as this copyright notice is intact and the contents
-
-*% of the file is not altered in any way from its original form.
-
-*% End of Copyright statement
-
-
-
-*% *********
-
-*% EFI Information Block
-
-*%
-
-*FileVersion: "0.1"
-
-*% EF4File
-
-*% EFConversionKey: "Kodak"
-
-*%
-
-*% *********
-
-
-
-*FormatVersion: "4.2"
-
-*FileVersion: "1.1"
-
-*PCFileName: "EFXJK2F3.PPD"
-
-*LanguageVersion: English
-
-*LanguageEncoding: ISOLatin1
-
-*Product: "(Fiery XJK 1000 1560-1565)"
-
-*PSVersion: "(2015.802) 0"
-
-*ModelName: "Fiery XJK 1560-1565 Color Server v2015.802"
-
-*ShortNickName: "Fiery XJK1000 1560-65 v2015.802"
-
-*NickName: "Fiery XJK 1000 1560-1565 Color Server v2015.802"
-
-*Manufacturer: "Kodak"
-
-
-
-*% PPD body begins
-
-
-
-*OpenGroup: InstallableOptions/Options Installed
-
-
-
-*OpenUI *EFCEtype/Copier Type : PickOne
-
-*DefaultEFCEtype: CE1560
-
-*EFCEtype CE1560/CE1560: ""
-
-*EFCEtype CE1565/CE1565: ""
-
-*CloseUI: *EFCEtype
-
-
-
-*OpenUI *EFSorterStaplerOption/Sorter and Stapler : PickOne
-
-*DefaultEFSorterStaplerOption: False
-
-*EFSorterStaplerOption False/Not Installed: ""
-
-*EFSorterStaplerOption SorterOnly/Sorter Only: ""
-
-*EFSorterStaplerOption SorterStapler/Sorter with Stapler: ""
-
-*CloseUI: *EFSorterStaplerOption
-
-
-
-*CloseGroup: InstallableOptions
-
-
-
-*% === Options and Constraints =========
-
-
-
-*% CE1560 does not support duplex, Tumble
-
-*UIConstraints: *EFCEtype CE1560 *EFDuplex True
-
-*UIConstraints: *EFCEtype CE1560 *EFDuplex False
-
-*UIConstraints: *EFDuplex True *EFCEtype CE1560
-
-*UIConstraints: *EFDuplex False *EFCEtype CE1560
-
-*UIConstraints: *EFCEtype CE1560 *Tumble False
-
-*UIConstraints: *EFCEtype CE1560 *Tumble True
-
-*UIConstraints: *Tumble False *EFCEtype CE1560
-
-*UIConstraints: *Tumble True *EFCEtype CE1560
-
-
-
-*UIConstraints: *EFCEtype CE1560 *InputSlot Tray3
-
-*UIConstraints: *InputSlot Tray3 *EFCEtype CE1560
-
-
-
-*% SorterStaplerOption enable/disable Sorter and Stapler
-
-*UIConstraints: *EFSorterStaplerOption False *EFSorter False
-
-*UIConstraints: *EFSorterStaplerOption False *EFSorter Group
-
-*UIConstraints: *EFSorterStaplerOption False *EFSorter Sort
-
-*UIConstraints: *EFSorterStaplerOption False *EFStapler False
-
-*UIConstraints: *EFSorterStaplerOption False *EFStapler True
-
-*UIConstraints: *EFSorterStaplerOption SorterOnly *EFStapler False
-
-*UIConstraints: *EFSorterStaplerOption SorterOnly *EFStapler True
-
-
-
-*UIConstraints: *EFSorter False *EFSorterStaplerOption False
-
-*UIConstraints: *EFSorter Group *EFSorterStaplerOption False
-
-*UIConstraints: *EFSorter Sort *EFSorterStaplerOption False
-
-*UIConstraints: *EFStapler False *EFSorterStaplerOption False
-
-*UIConstraints: *EFStapler True *EFSorterStaplerOption False
-
-*UIConstraints: *EFStapler False *EFSorterStaplerOption SorterOnly
-
-*UIConstraints: *EFStapler True *EFSorterStaplerOption SorterOnly
-
-
-
-*% Grayscale does not support Halftone, HPBlack, TonerReduction, EFOverprint
-
-*UIConstraints: *COLORMODE GRAY *EFOverprint True
-
-*UIConstraints: *COLORMODE GRAY *EFHPBlack True
-
-*UIConstraints: *COLORMODE GRAY *TonerReduction True
-
-*UIConstraints: *COLORMODE GRAY *PRINTERMODE Halftone
-
-
-
-*UIConstraints: *EFOverprint True *COLORMODE GRAY
-
-*UIConstraints: *EFHPBlack True *COLORMODE GRAY
-
-*UIConstraints: *TonerReduction True *COLORMODE GRAY
-
-*UIConstraints: *PRINTERMODE Halftone *COLORMODE GRAY
-
-
-
-*% EFOverprint does not support halftone
-
-*UIConstraints: *EFOverprint True *PRINTERMODE Halftone
-
-*UIConstraints: *PRINTERMODE Halftone *EFOverprint True
-
-
-
-*% Thick paper is available only through manual tray
-
-*UIConstraints: *MediaType Thick *InputSlot Tray1
-
-*UIConstraints: *MediaType Thick *InputSlot Tray2
-
-*UIConstraints: *MediaType Thick *InputSlot Tray3
-
-*%UIConstraints: *InputSlot Tray1 *MediaType Thick
-
-*%UIConstraints: *InputSlot Tray2 *MediaType Thick
-
-*%UIConstraints: *InputSlot Tray3 *MediaType Thick
-
-*UIConstraints: *MediaType Thick *ManualFeed False
-
-*UIConstraints: *ManualFeed False *MediaType Thick
-
-
-
-*% Thick paper does not support Duplex, Tumble, InputSlot
-
-*UIConstraints: *MediaType Thick *EFDuplex True
-
-*UIConstraints: *MediaType Thick *Tumble True
-
-*UIConstraints: *MediaType Thick *Tumble False
-
-*UIConstraints: *EFDuplex True *MediaType Thick
-
-*UIConstraints: *Tumble True *MediaType Thick
-
-*UIConstraints: *Tumble False *MediaType Thick
-
-
-
-*% Transparent paper does not support Duplex, DuplexImageArea, ImageShift, Tumble, Stapler
-
-*UIConstraints: *MediaType Transparent *EFDuplex True
-
-*UIConstraints: *MediaType Transparent *DuplexImageArea True
-
-*UIConstraints: *MediaType Transparent *DuplexImageArea False
-
-*UIConstraints: *MediaType Transparent *EFImageShift -5
-
-*UIConstraints: *MediaType Transparent *EFImageShift -4
-
-*UIConstraints: *MediaType Transparent *EFImageShift -3
-
-*UIConstraints: *MediaType Transparent *EFImageShift -2
-
-*UIConstraints: *MediaType Transparent *EFImageShift -1
-
-*UIConstraints: *MediaType Transparent *EFImageShift 0
-
-*UIConstraints: *MediaType Transparent *EFImageShift 1
-
-*UIConstraints: *MediaType Transparent *EFImageShift 2
-
-*UIConstraints: *MediaType Transparent *EFImageShift 3
-
-*UIConstraints: *MediaType Transparent *EFImageShift 4
-
-*UIConstraints: *MediaType Transparent *EFImageShift 5
-
-*UIConstraints: *MediaType Transparent *Tumble True
-
-*UIConstraints: *MediaType Transparent *Tumble False
-
-*UIConstraints: *MediaType Transparent *EFStapler True
-
-
-
-*UIConstraints: *EFDuplex True *MediaType Transparent
-
-*UIConstraints: *DuplexImageArea True *MediaType Transparent
-
-*UIConstraints: *DuplexImageArea False *MediaType Transparent
-
-*UIConstraints: *EFImageShift -5 *MediaType Transparent
-
-*UIConstraints: *EFImageShift -4 *MediaType Transparent
-
-*UIConstraints: *EFImageShift -3 *MediaType Transparent
-
-*UIConstraints: *EFImageShift -2 *MediaType Transparent
-
-*UIConstraints: *EFImageShift -1 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 0 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 1 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 2 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 3 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 4 *MediaType Transparent
-
-*UIConstraints: *EFImageShift 5 *MediaType Transparent
-
-*UIConstraints: *Tumble True *MediaType Transparent
-
-*UIConstraints: *Tumble False *MediaType Transparent
-
-*UIConstraints: *EFStapler True *MediaType Transparent
-
-
-
-*% Transparent paper only support Presentation rendering style
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Preferred
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Colorimetric
-
-*UIConstraints: *EFColorRendDict Preferred *MediaType Transparent
-
-*UIConstraints: *EFColorRendDict Colorimetric *MediaType Transparent
-
-*UIConstraints: *MediaType Transparent *EFColorRendDict Monitor
-
-*UIConstraints: *EFColorRendDict Monitor *MediaType Transparent
-
-
-
-*% Rendering Style does not support over print
-
-*UIConstraints: *EFOverprint True *EFColorRendDict Preferred
-
-*UIConstraints: *EFOverprint True *EFColorRendDict Business
-
-*UIConstraints: *EFOverprint True *EFColorRendDict Monitor
-
-*UIConstraints: *EFOverprint True *EFColorRendDict Colorimetric
-
-
-
-*UIConstraints: *EFColorRendDict Preferred *EFOverprint True
-
-*UIConstraints: *EFColorRendDict Business *EFOverprint True
-
-*UIConstraints: *EFColorRendDict Monitor *EFOverprint True
-
-*UIConstraints: *EFColorRendDict Colorimetric *EFOverprint True
-
-
-
-*% Simplex does not support Tumble
-
-*UIConstraints: *EFDuplex False *Tumble True
-
-*UIConstraints: *EFDuplex False *Tumble False
-
-
-
-*UIConstraints: *Tumble True *EFDuplex False
-
-*UIConstraints: *Tumble False *EFDuplex False
-
-
-
-*% COnstraints: stapler is defined only if sorter is selected.
-
-*UIConstraints: *EFSorter False *EFStapler True
-
-*UIConstraints: *EFSorter Group *EFStapler True
-
-
-
-*UIConstraints: *EFStapler True *EFSorter False
-
-*UIConstraints: *EFStapler True *EFSorter Group
-
-
-
-*UIConstraintsEFI: *ENABLECOMP NO *PHYSMEMSIZE 48
-
-
-
-*%
-
-*% General Information and Defaults ===============
-
-*FreeVM: "4413108"
-
-*LanguageLevel: "2"
-
-*ColorDevice: True
-
-*DefaultColorSpace: CMYK
-
-*PrintPSErrors: True
-
-*FileSystem: True
-
-*?FileSystem: "
-
- save
-
- statusdict /diskstatus known{(True)} {(False)} ifelse = flush
-
- restore
-
- "
-
-*End
-
-*Throughput: "10"
-
-*Password: "0"
-
-*ExitServer: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
-"
-
-*End
-
-
-
-*Reset: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot reset printer.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
- systemdict /quit get exec
-
- (WARNING: Printer Reset Failed.) = flush
-
-"
-
-*End
-
-
-
-*DefaultResolution: 400dpi
-
-*?Resolution: "
-
-save
-
- initgraphics
-
- 0 0 moveto currentpoint matrix defaultmatrix transform
-
- 0 72 lineto currentpoint matrix defaultmatrix transform
-
- 3 -1 roll sub dup mul
-
- 3 1 roll exch sub dup mul
-
- add sqrt round cvi
-
- ( ) cvs print (dpi) = flush
-
-restore
-
-"
-
-*End
-
-
-
-*AccurateScreensSupport: True
-
-
-
-*%EFIFlags *COLORMODE Command|Setup|Spooler
-
-*OpenUI *COLORMODE/Color Mode :PickOne
-
-*OrderDependency: 12 AnySetup *COLORMODE
-
-*DefaultCOLORMODE: ColorDEF
-
-*COLORMODE ColorDEF/Printer's default: ""
-
-*COLORMODE CMYK/CMYK: " userdict /setcolorbundle known
-
- { << /ColorMode /CMYK >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceCMYK >> setpagedevice } ifelse "
-
-*End
-
-*COLORMODE GRAY/Grayscale: " userdict /setcolorbundle known
-
- { << /ColorMode /Grayscale /Compression /Disabled >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceGray >> setpagedevice } ifelse "
-
-*End
-
-*?COLORMODE: " currentpagedevice /ProcessColorModel get == } if "
-
-*CloseUI: *COLORMODE
-
-
-
-*%EFIFlags *ENABLECOMP Setup
-
-*OpenUIEFI *ENABLECOMP/Memory Multiplier : PickOne
-
-*OrderDependency: 05 AnySetup *ENABLECOMP
-
-*DefaultENABLECOMP: YES
-
-*ENABLECOMP YES/On: ""
-
-*ENABLECOMP NO/Off: ""
-
-*CloseUIEFI: *ENABLECOMP
-
-
-
-*%EFIFlags *PRINTERMODE Command|Setup
-
-*OpenUI *PRINTERMODE/Printer Mode :PickOne
-
-*OrderDependency: 15 AnySetup *PRINTERMODE
-
-*DefaultPRINTERMODE: PrintDEF
-
-*PRINTERMODE PrintDEF/Printer's default: ""
-
-*PRINTERMODE Contone/Contone: " userdict /setcolorbundle known
-
- { << /Compression /Disabled /HalftoneMode /Contone >> setcolorbundle }
-
- { << /DeviceRenderingInfo << /Type 4
-
- /ValuesPerColorComponent 256 >> >> setpagedevice } ifelse "
-
-*End
-
-*PRINTERMODE Halftone/Halftone: " userdict /setcompression known
-
- { << /HalftoneMode /Halftone >> setcolorbundle }
-
- { << /DeviceRenderingInfo << /Type 4
-
- /ValuesPerColorComponent 2 >> >> setpagedevice } ifelse "
-
-*End
-
-*?PRINTERMODE: "currentpagedevice /DeviceRenderingInfo get
-
- /ValuesPerColorComponent get ln 2 ln div cvi = flush"
-
-*End
-
-*CloseUI: *PRINTERMODE
-
-
-
-*%EFIFlags *EFOverprint
-
-*OpenUI *EFOverprint/Combine Separations :PickOne
-
-*OrderDependency: 40 AnySetup *EFOverprint
-
-*DefaultEFOverprint: OverPrintDEF
-
-*EFOverprint OverPrintDEF/Printer's default: ""
-
-*EFOverprint True/On: " userdict /XJXsetoverprint known
-
- { 1 XJXsetoverprint }
-
- { (printerinfo overprint 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse
-
- userdict /setcolorbundle known
-
- { << /ColorMode /Grayscale /Compression /Disabled >> setcolorbundle }
-
- { << /ProcessColorModel /DeviceGray >> setpagedevice } ifelse "
-
-*End
-
-*EFOverprint False/Off: " userdict /XJXsetoverprint known
-
- { 0 XJXsetoverprint }
-
- { (printerinfo overprint 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*?EFOverprint: ""
-
-*CloseUI: *EFOverprint
-
-
-
-*%EFIFlags *DEFPAPERSIZE Setup
-
-*OpenUIEFI *DEFPAPERSIZE/Default Paper Sizes :PickOne
-
-*OrderDependency: 20 AnySetup *DEFPAPERSIZE
-
-*DefaultDEFPAPERSIZE: US
-
-*DEFPAPERSIZE US/US: ""
-
-*DEFPAPERSIZE Metric/Metric: ""
-
-*?DEFPAPERSIZE: ""
-
-*CloseUIEFI: *DEFPAPERSIZE
-
-
-
-*%EFIFlags *CONVPAPERSIZE Setup
-
-*OpenUIEFI *CONVPAPERSIZE/Convert Paper Sizes : PickOne
-
-*OrderDependency: 25 AnySetup *CONVPAPERSIZE
-
-*DefaultCONVPAPERSIZE: False
-
-*CONVPAPERSIZE False/No: ""
-
-*CONVPAPERSIZE LetterToA4/Letter/11x17->A4/A3: ""
-
-*CONVPAPERSIZE A4ToLetter/A4/A3->Letter/11x17: ""
-
-*?CONVPAPERSIZE: ""
-
-*CloseUIEFI: *CONVPAPERSIZE
-
-
-
-*%EFIFlags *COVPGATEND Setup
-
-*OpenUIEFI *COVPGATEND/Print Cover Page : PickOne
-
-*OrderDependency: 30 AnySetup *COVPGATEND
-
-*DefaultCOVPGATEND: NO
-
-*COVPGATEND YES/Yes: ""
-
-*COVPGATEND NO/No: ""
-
-*CloseUIEFI: *COVPGATEND
-
-
-
-*%EFIFlags *COURIERSUBST Setup
-
-*OpenUIEFI *COURIERSUBST/Allow Courier Substitution :PickOne
-
-*OrderDependency: 35 AnySetup *COURIERSUBST
-
-*DefaultCOURIERSUBST: YES
-
-*COURIERSUBST YES/Yes: ""
-
-*COURIERSUBST NO/No: ""
-
-*CloseUIEFI: *COURIERSUBST
-
-
-
-*%EFIFlags *PSERROR Setup
-
-*OpenUIEFI *PSERROR/Print to PS Error : PickOne
-
-*OrderDependency: 40 AnySetup *PSERROR
-
-*DefaultPSERROR: NO
-
-*PSERROR YES/Yes: ""
-
-*PSERROR NO/No: ""
-
-*CloseUIEFI: *PSERROR
-
-
-
-*%EFIFlags *EFHPBlack Spooler|Command
-
-*OpenUI *EFHPBlack/High Productivity Black : PickOne
-
-*OrderDependency: 40 AnySetup *EFHPBlack
-
-*DefaultEFHPBlack: EFHPBlackDEF
-
-*EFHPBlack EFHPBlackDEF/Printer's default: ""
-
-*EFHPBlack False/Off: " userdict /XJXsethpblack known
-
- { 0 XJXsethpblack }
-
- { (printerinfo CheckHPBlack 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*EFHPBlack True/On: " userdict /XJXsethpblack known
-
- { 1 XJXsethpblack }
-
- { (printerinfo CheckHPBlack 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*CloseUI: *EFHPBlack
-
-
-
-*%EFIFlags *MediaType Spooler|Command
-
-*OpenUI *MediaType/Media Type :PickOne
-
-*OrderDependency: 50 AnySetup *MediaType
-
-*DefaultMediaType: MediaTypeDEF
-
-*MediaType MediaTypeDEF/Printer's default: ""
-
-*MediaType Plain/Plain Paper: " userdict /setcolorbundle known
-
- { << /MediaType /Plain >> setcolorbundle 1 XJXsetmediatype } if"
-
-*End
-
-*MediaType Transparent/Transparency: " userdict /setcolorbundle known
-
- { << /MediaType /Transparent >> setcolorbundle 2 XJXsetmediatype } if"
-
-*End
-
-*MediaType Thick/Thick Paper: " userdict /setcolorbundle known
-
- { << /MediaType /Thick >> setcolorbundle 3 XJXsetmediatype } if"
-
-*End
-
-*?MediaType: " userdict /setcolorbundle known {
-
- currentcolorbundle /MediaType get == } if"
-
-*End
-
-*CloseUI: *MediaType
-
-
-
-*%EFIFlags *EFSorter Spooler|Command
-
-*OpenUI *EFSorter/Sorter Mode :PickOne
-
-*OrderDependency: 50 AnySetup *EFSorter
-
-*DefaultEFSorter: False
-
-*EFSorter False/Off: " userdict /XJXsetsorter known
-
- { 0 XJXsetsorter }
-
- { (printerinfo sortmode 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*EFSorter Sort/Sort: " userdict /XJXsetsorter known
-
- { 1 XJXsetsorter }
-
- { (printerinfo sortmode 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*EFSorter Group/Group: " userdict /XJXsetsorter known
-
- { 2 XJXsetsorter }
-
- { (printerinfo sortmode 2) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*CloseUI: *EFSorter
-
-
-
-*%EFIFlags *EFStapler Spooler|Command
-
-*OpenUI *EFStapler/Stapler Mode :PickOne
-
-*OrderDependency: 50 AnySetup *EFStapler
-
-*DefaultEFStapler: False
-
-*EFStapler False/Off: " userdict /XJXsetstapler known
-
- { 0 XJXsetstapler }
-
- { (printerinfo staplemode 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*EFStapler True/On: " userdict /XJXsetstapler known
-
- { 1 XJXsetstapler }
-
- { (printerinfo staplemode 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec { pop } if } ifelse "
-
-*End
-
-*CloseUI: *EFStapler
-
-
-
-*%EFIFlags *EFDuplex Spooler|Command
-
-*OpenUI *EFDuplex/Duplex : PickOne
-
-*OrderDependency: 50 AnySetup *EFDuplex
-
-*DefaultEFDuplex: EFDuplexDEF
-
-*EFDuplex EFDuplexDEF/Printer's default: ""
-
-*EFDuplex False/Off: "<< /Duplex false /Policies << /Duplex 1 >> >> setpagedevice"
-
-*EFDuplex True/On: " << /Duplex true /Policies << /Duplex 0 >> >> setpagedevice"
-
-*CloseUI: *EFDuplex
-
-
-
-*%EFIFlags *DuplexImageArea Spooler|Command
-
-*OpenUI *DuplexImageArea/Imageable Area :PickOne
-
-*OrderDependency: 50 AnySetup *DuplexImageArea
-
-*DefaultDuplexImageArea: DuplexImageAreaDEF
-
-*DuplexImageArea DuplexImageAreaDEF/Printer's default: ""
-
-*DuplexImageArea True/Full Area: " (ImageableMax) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if currentpagedevice setpagedevice"
-
-*End
-
-*DuplexImageArea False/Duplex Area: " (ImageableAlign) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if currentpagedevice setpagedevice"
-
-*End
-
-*CloseUI: *DuplexImageArea
-
-
-
-*%EFIFlags *EFImageShift Spooler|Command
-
-*OpenUI *EFImageShift/Image Shift :PickOne
-
-*OrderDependency: 50 AnySetup *EFImageShift
-
-*DefaultEFImageShift: EFImageShiftDEF
-
-*EFImageShift EFImageShiftDEF/Printer's default: ""
-
-*EFImageShift -5/ -5 mm: " userdict /XJXsetimageshift known
-
- { -79 XJXsetimageshift }
-
- { (ImageShift -79) =string % mm to pixels
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift -4/ -4 mm: " userdict /XJXsetimageshift known
-
- { -63 XJXsetimageshift }
-
- { (ImageShift -63) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift -3/ -3 mm: " userdict /XJXsetimageshift known
-
- { -47 XJXsetimageshift }
-
- { (ImageShift -47) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift -2/ -2 mm: " userdict /XJXsetimageshift known
-
- { -31 XJXsetimageshift }
-
- { (ImageShift -31) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift -1/ -1 mm: " userdict /XJXsetimageshift known
-
- { -15 XJXsetimageshift }
-
- { (ImageShift -15) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 0/ 0: " userdict /XJXsetimageshift known
-
- { 0 XJXsetimageshift }
-
- { (ImageShift 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 1/ 1 mm: " userdict /XJXsetimageshift known
-
- { 15 XJXsetimageshift }
-
- { (ImageShift 15) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 2/ 2 mm: " userdict /XJXsetimageshift known
-
- { 31 XJXsetimageshift }
-
- { (ImageShift 31) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 3/ 3 mm: " userdict /XJXsetimageshift known
-
- { 47 XJXsetimageshift }
-
- { (ImageShift 47) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 4/ 4 mm: " userdict /XJXsetimageshift known
-
- { 63 XJXsetimageshift }
-
- { (ImageShift 63) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*EFImageShift 5/ 5 mm: " userdict /XJXsetimageshift known
-
- { 79 XJXsetimageshift }
-
- { (ImageShift 79) =string
-
- /CPSI /ProcSet findresource /externalcommand get
-
- exec {pop} if } ifelse "
-
-*End
-
-*CloseUI: *EFImageShift
-
-
-
-*%EFIFlags *Tumble Spooler|Command
-
-*OpenUI *Tumble/Page Turn :PickOne
-
-*OrderDependency: 50 AnySetup *Tumble
-
-*DefaultTumble: TumbleDEF
-
-*Tumble TumbleDEF/Printer's default: ""
-
-*Tumble False/Top-Top: " << /Tumble false >> setpagedevice "
-
-*Tumble True/Top-Bottom: " << /Tumble true >> setpagedevice "
-
-*CloseUI: *Tumble
-
-
-
-*%EFIFlags *EFColorRendDict Spooler|Command
-
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-
-*OrderDependency: 60 AnySetup *EFColorRendDict
-
-*DefaultEFColorRendDict: RenderingDEF
-
-*EFColorRendDict RenderingDEF/Printer's default: ""
-
-*EFColorRendDict Preferred/Photographic: " userdict /setcolorbundle known
-
- { << /ColorRendering /Photographic >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTPreferredColorRendering } { /PreferredColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Business/Presentation: " userdict /setcolorbundle known
-
- { << /ColorRendering /Presentation >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTBusinessColorRendering } { /BusinessColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Monitor/Monitor: " userdict /setcolorbundle known
-
- { << /ColorRendering /Monitor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTMonitorColorRendering } { /MonitorColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Colorimetric/Solid Color: " userdict /setcolorbundle known
-
- { << /ColorRendering /Solid >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*?EFColorRendDict: " userdict /setcolorbundle known
-
- { currentcolorbundle /ColorRendering get == } if "
-
-*End
-
-*CloseUI: *EFColorRendDict
-
-
-
-*%EFIFlags *Brightness Spooler|Command
-
-*OpenUI *Brightness/Brightness :PickOne
-
-*OrderDependency: 55 AnySetup *Brightness
-
-*DefaultBrightness: BrightnessDEF
-
-*Brightness BrightnessDEF/Printer's default: ""
-
-*Brightness +0.24/85% Lightest: " {dup 180 mul sin 0.15 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness +0.16/90% Lighter: " {dup 180 mul sin 0.10 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness +0.08/95% Light: " {dup 180 mul sin 0.05 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness 00.00/100% Normal: " {} settransfer "
-
-*Brightness -0.08/105% Dark: " {dup 180 mul sin -0.05 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness -0.16/110% Darker: " {dup 180 mul sin -0.10 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*Brightness -0.24/115% Darkest: " {dup 180 mul sin -0.15 mul add } bind
-
- userdict /ColorAdjust known
-
- { dup dup dup ColorAdjust /coloradjust get exec }
-
- { { /Dummy1 exec /Dummy2 exec } bind dup 2 currenttransfer put
-
- dup 0 4 -1 roll put settransfer } ifelse "
-
-*End
-
-*CloseUI: *Brightness
-
-
-
-*%EFIFlags *TonerReduction Spooler|Command
-
-*OpenUI *TonerReduction/Toner Reduction :PickOne
-
-*OrderDependency: 70 AnySetup *TonerReduction
-
-*DefaultTonerReduction: TonerReductionDEF
-
-*TonerReduction TonerReductionDEF/Printer's default: ""
-
-*TonerReduction False/Off: " userdict /XJXsettonerreduction known
-
- { 0 XJXsettonerreduction }
-
- { (printerinfo checkucr 0) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec {pop} if } ifelse "
-
-*End
-
-*TonerReduction True/On: " userdict /XJXsettonerreduction known
-
- { 1 XJXsettonerreduction }
-
- { (printerinfo checkucr 1) =string
-
- /CPSI /ProcSet findresource /externalcommand get exec {pop} if } ifelse "
-
-*End
-
-*CloseUI: *TonerReduction
-
-
-
-*%EFIFlags *Prange Command
-
-*OpenUIEFI *Prange/Page Range : PickOne
-
-*OrderDependency: 70 AnySetup *Prange
-
-*DefaultPrange: All
-
-*Prange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ ] put
-
- setglobal "
-
-*End
-
-*Prange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1 2 4 6 ] put
-
- setglobal "
-
-*End
-
-*?Prange: ""
-
-*CloseUIEFI: *Prange
-
-
-
-*%EFIFlags *Flip Command
-
-*OpenUIEFI *Flip/Flip : PickOne
-
-*OrderDependency: 75 AnySetup *Flip
-
-*DefaultFlip: None
-
-*Flip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*Flip H/Horizonal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*?Flip: ""
-
-*CloseUIEFI: *Flip
-
-
-
-*%EFIFlags *Scale Command
-
-*OpenUIEFI *Scale/Scale : PickOne
-
-*OrderDependency: 80 AnySetup *Scale
-
-*DefaultScale: 100
-
-*Scale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 2 put << >> setpagedevice "
-
-*End
-
-*Scale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1.5 put << >> setpagedevice "
-
-*End
-
-*Scale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1 put << >> setpagedevice "
-
-*End
-
-*Scale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .75 put << >> setpagedevice "
-
-*End
-
-*Scale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .5 put << >> setpagedevice "
-
-*End
-
-*?Scale: ""
-
-*CloseUIEFI: *Scale
-
-
-
-*%EFIFlags *Rotate Command
-
-*OpenUIEFI *Rotate/Rotate : PickOne
-
-*OrderDependency: 85 AnySetup *Rotate
-
-*DefaultRotate: 0
-
-*Rotate 0/0: " << >> setpagedevice "
-
-*Rotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 90 put << >> setpagedevice "
-
-*End
-
-*Rotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 270 put << >> setpagedevice "
-
-*End
-
-*Rotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 180 put << >> setpagedevice "
-
-*End
-
-*?Rotate: ""
-
-*CloseUIEFI: *Rotate
-
-
-
-*RequiresPageRegion All: True
-
-*%EFIFlags *InputSlot
-
-*OpenUI *InputSlot/Paper Source : PickOne
-
-*OrderDependency: 20 AnySetup *InputSlot
-
-*DefaultInputSlot: Tray1
-
-*InputSlot Tray1/Tray 1: "(printerinfo trayselect 1) =string /CPSI /ProcSet
-
- findresource /externalcommand get exec {pop} if"
-
-*End
-
-*InputSlot Tray2/Tray 2: "(printerinfo trayselect 2) =string /CPSI /ProcSet
-
- findresource /externalcommand get exec {pop} if"
-
-*End
-
-*InputSlot Tray3/Tray 3: "(printerinfo trayselect 3) =string /CPSI /ProcSet
-
- findresource /externalcommand get exec {pop} if"
-
-*End
-
-*CloseUI: *InputSlot
-
-
-
-*%EFIFlags *ManualFeed Spooler|Command
-
-*OpenUI *ManualFeed/Bypass Tray :Boolean
-
-*OrderDependency: 65 AnySetup *ManualFeed
-
-*DefaultManualFeed: False
-
-*ManualFeed True/On: "1 dict dup /ManualFeed true put setpagedevice"
-
-*ManualFeed False/Off: "1 dict dup /ManualFeed false put setpagedevice"
-
-*?ManualFeed: "
-
- save currentpagedevice /ManualFeed get
-
- {(True)} {(False)} ifelse = flush restore"
-
-*End
-
-*CloseUI: *ManualFeed
-
-
-
-*%================= Halftone Information ===============
-
-*ScreenFreq: "66.0"
-
-*ScreenAngle: "0"
-
-*DefaultScreenProc: Text
-
-*ScreenProc Text: "
-
- {2 4
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*DefaultTransfer: Null
-
-*Transfer Null: "{ }"
-
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-
-
-*% Black substitution is always on.
-
-*DefaultBlackSubstitution: True
-
-*BlackSubstitution True: ""
-
-*?BlackSubstitution: "(True) == flush"
-
-
-
-*% PPD pages begins
-
-
-
-*% Paper Handling ===================
-
-*% Use these entries to set paper size most of the time, unless there is
-
-*% specific reason to use PageRegion.
-
-*%EFIFlags *PageSize Command
-
-*OpenUI *PageSize/Page Size :PickOne
-
-*OrderDependency: 45 AnySetup *PageSize
-
-*DefaultPageSize: Letter
-
-*PageSize Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType null
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize Legal/Legal: " userdict /setcolorbundle known
-
- { << /PageSize /Legal >> setcolorbundle } { legal } ifelse "
-
-*End
-
-*PageSize Tabloid/11x17: " userdict /setcolorbundle known
-
- { << /PageSize /11x17 >> setcolorbundle } { 11x17 } ifelse "
-
-*End
-
-*PageSize A3/A3: " userdict /setcolorbundle known
-
- { << /PageSize /A3 >> setcolorbundle } { a3 } ifelse "
-
-*End
-
-*PageSize A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType null
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize LetR/Letter-R:" userdict /setcolorbundle known
-
- { << /PageSize /Letter-R >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageSize A4R/A4-R:" userdict /setcolorbundle known
-
- { << /PageSize /A4-R >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*?PageSize: "
-
- save currentpagedevice /PageSize get aload pop
-
- 2 copy gt {exch} if (Unknown)
-
- 7 dict
-
- dup [612 792] (Letter) put
-
- dup [612 1008] (Legal) put
-
- dup [792 1224] (Tabloid) put
-
- dup [842 1191] (A3) put
-
- dup [595 842] (A4) put
-
- dup [612 792] (LetR) put
-
- dup [595 842] (A4R) put
-
- { exch aload pop 6 index sub abs 7 le exch 7 index sub abs 7 le and
-
- { exch pop exit } { pop } ifelse
-
- } bind forall = flush pop pop
-
- restore"
-
-*End
-
-*CloseUI: *PageSize
-
-
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-
-*%EFIFlags *PageRegion
-
-*OpenUI *PageRegion :PickOne
-
-*OrderDependency: 47 AnySetup *PageRegion
-
-*DefaultPageRegion: Letter
-
-*PageRegion Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType null
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion Legal/Legal: " userdict /setcolorbundle known
-
- { << /PageSize /Legal >> setcolorbundle } { legal } ifelse "
-
-*End
-
-*PageRegion Tabloid/11x17: " userdict /setcolorbundle known
-
- { << /PageSize /11x17 >> setcolorbundle } { 11x17 } ifelse "
-
-*End
-
-*PageRegion A3/A3: " userdict /setcolorbundle known
-
- { << /PageSize /A3 >> setcolorbundle } { a3 } ifelse "
-
-*End
-
-*PageRegion A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType null
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType null >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion LetR/Letter-R:" userdict /setcolorbundle known
-
- { << /PageSize /Letter-R >> setcolorbundle }
-
- { << /PageSize [612 792] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [612 792] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*PageRegion A4R/A4-R: " userdict /setcolorbundle known
-
- { << /PageSize /A4-R >> setcolorbundle }
-
- { << /PageSize [595 842] /MediaType (ShortEdgeFeed)
-
- /InputAttributes << 0 << /PageSize [595 842] /MediaType (ShortEdgeFeed) >> >> >> setpagedevice
-
- } ifelse "
-
-*End
-
-*CloseUI: *PageRegion
-
-
-
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter/Letter: "10 9 588 780"
-
-*ImageableArea Legal/Legal: "12 10 603 985"
-
-*ImageableArea Tabloid/11x17: "12 10 783 1201"
-
-*ImageableArea A3/A3: "13 11 831 1166"
-
-*ImageableArea A4/A4: "10 9 573 830"
-
-*ImageableArea LetR/Letter-R: "12 10 603 770"
-
-*ImageableArea A4R/A4-R: "12 10 587 820"
-
-*?ImageableArea: "
-
- save /cvp { cvi ( ) cvs print ( ) print } bind def
-
- newpath clippath pathbbox
-
- 4 -2 roll exch 2 {ceiling cvp} repeat
-
- exch 2 {floor cvp} repeat flush
-
- restore
-
-"
-
-*End
-
-
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: Letter
-
-*PaperDimension Letter/Letter: "612 792"
-
-*PaperDimension Legal/Legal: "612 1008"
-
-*PaperDimension Tabloid/11x17: "792 1224"
-
-*PaperDimension A3/A3: "842 1191"
-
-*PaperDimension A4/A4: "595 842"
-
-*PaperDimension LetR/Letter-R: "612 793"
-
-*PaperDimension A4R/A4-R: "595 843"
-
-
-
-*% PPD pages ends
-
-
-
-*DefaultOutputOrder: OutputOrderDEF
-
-*OutputOrder OutputOrderDEF/Printer's default: ""
-
-
-
-*% Font Information =========================
-
-*DefaultFont: Courier
-
-*Font ACaslon-Italic: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Regular: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Semibold: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-SemiboldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Bold: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Italic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Regular: Standard "(001.002)" Standard Disk
-
-*Font Americana: Standard "(001.002)" Standard Disk
-
-*Font Americana-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Book: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Demi: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-DemiOblique: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Bold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Medium: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Regular: Standard "(001.002)" Standard Disk
-
-*Font Blackoak: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Demi: Standard "(001.002)" Standard Disk
-
-*Font Bookman-DemiItalic: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Light: Standard "(001.002)" Standard Disk
-
-*Font Bookman-LightItalic: Standard "(001.002)" Standard Disk
-
-*Font Carta: Standard "(001.002)" Standard Disk
-
-*Font Courier: Standard "(001.002)" Standard Disk
-
-*Font Courier-Bold: Standard "(001.002)" Standard Disk
-
-*Font Courier-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Courier-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Formata-Italic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Medium: Standard "(001.002)" Standard Disk
-
-*Font Formata-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Regular: Standard "(001.002)" Standard Disk
-
-*Font Helvetica: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Kaufmann: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Black: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Regular: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Italic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Bold: Standard "(001.002)" Standard Disk
-
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Italic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Roman: Standard "(001.002)" Standard Disk
-
-*Font Parisian: Standard "(001.002)" Standard Disk
-
-*Font ParkAvenue: Standard "(001.002)" Standard Disk
-
-*Font Poetica-SuppOrnaments: Standard "(001.002)" Standard Disk
-
-*Font Symbol: Standard "(001.002)" Standard Disk
-
-*Font Tekton: Standard "(001.002)" Standard Disk
-
-*Font Tekton-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Times-Italic: Standard "(001.002)" Standard Disk
-
-*Font Times-Roman: Standard "(001.002)" Standard Disk
-
-*Font Trajan-Bold: Standard "(001.002)" Standard Disk
-
-*Font WoodtypeOrnaments-Two: Standard "(001.002)" Standard Disk
-
-*Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font ZapfDingbats: Standard "(001.002)" Standard Disk
-
-*?FontQuery: "
-
- save
-
- { count 1 gt
-
- { exch dup 127 string cvs (/) print print (:) print
-
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
-
- } { exit } ifelse
-
- } bind loop
-
- (*) = flush
-
- restore"
-
-*End
-
-
-
-*?FontList: "
-
- save (*) {cvn ==} 128 string /Font resourceforall
-
- (*) = flush restore"
-
-*End
-
-
-
-*% Printer Messages (verbatim from printer):
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-
-*Message: "\FontName\ not found, using Courier"
-
-
-
-*% Status (format: %%[ status: <one of these> ]%% )
-
-*Status: "idle"
-
-*Status: "busy"
-
-*Status: "waiting"
-
-*Status: "printing"
-
-*Status: "scanning"
-
-*Status: "PrinterError: Copier is busy"
-
-*Status: "PrinterError: Copier is in standby mode"
-
-*Status: "PrinterError: Service cable is disconnected"
-
-*Status: "PrinterError: Out of fuser oil"
-
-*Status: "PrinterError: Copier door is open"
-
-*Status: "PrinterError: Paper jam"
-
-*Status: "PrinterError: Out of paper"
-
-*Status: "PrinterError: Waste toner container is full"
-
-*Status: "PrinterError: Out of toner"
-
-*Status: "PrinterError: There is no key"
-
-*Status: "PrinterError: There is no control card"
-
-*Status: "PrinterError: ID mode"
-
-*Status: "PrinterError: Copier needs attention; see copier control panel"
-
-*Status: "PrinterError: Load A3 paper"
-
-*Status: "PrinterError: Load A4 paper"
-
-*Status: "PrinterError: Load 11x17 paper"
-
-*Status: "PrinterError: Load Letter paper"
-
-*Status: "PrinterError: Load Letter-R paper"
-
-*Status: "PrinterError: Load A4-R paper"
-
-*Status: "PrinterError: Load B4 paper"
-
-*Status: "PrinterError: Load B5-R paper"
-
-*Status: "PrinterError: Load Legal paper"
-
-*Status: "PrinterError: Check copier power and cable connection"
-
-*Status: "PrinterError: Check film scanner connection"
-
-*Status: "PrinterError: Copier is warming up"
-
-*Status: "PrinterError: Copier communication error; call copier technician"
-
-*Status: "PrinterError: Set paper size, then load manual feed paper"
-
-*Status: "PrinterError: An unknown copier error occurred"
-
-*Status: "PrinterError: Load manual feed paper"
-
-*Status: "PrinterError: Remove manual feed paper, then set size"
-
-*Status: "PrinterError: Copier is disconnected"
-
-*Status: "PrinterError: Film Scanner has copy control"
-
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*Source: "EtherTalk"
-
-*Source: "Parallel"
-
-*Source: "TCP/IP"
-
-*Source: "Novell IPX"
-
-
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Copier is busy"
-
-*PrinterError: "Copier is in standby mode"
-
-*PrinterError: "Service cable is disconnected"
-
-*PrinterError: "Out of fuser oil"
-
-*PrinterError: "Copier door is open"
-
-*PrinterError: "Paper jam"
-
-*PrinterError: "Out of paper"
-
-*PrinterError: "Waste toner container is full"
-
-*PrinterError: "Out of toner"
-
-*PrinterError: "There is no key"
-
-*PrinterError: "There is no control card"
-
-*PrinterError: "ID mode"
-
-*PrinterError: "Copier needs attention; see copier control panel"
-
-*PrinterError: "Load A3 paper"
-
-*PrinterError: "Load A4 paper"
-
-*PrinterError: "Load 11x17 paper"
-
-*PrinterError: "Load Letter paper"
-
-*PrinterError: "Load Legal paper"
-
-*PrinterError: "Load Letter-R paper"
-
-*PrinterError: "Load A4-R paper"
-
-*PrinterError: "Load B4 paper"
-
-*PrinterError: "Load B5-R paper"
-
-*PrinterError: "Check copier power and cable connection"
-
-*PrinterError: "Check film scanner connection"
-
-*PrinterError: "Copier is warming up"
-
-*PrinterError: "Copier communication error; call copier technician"
-
-*PrinterError: "Set paper size, then load manual feed paper"
-
-*PrinterError: "An unknown copier error occurred"
-
-*PrinterError: "Load manual feed paper"
-
-*PrinterError: "Remove manual feed paper, then set size"
-
-*PrinterError: "Copier is disconnected"
-
-*PrinterError: "Film Scanner has copy control"
-
-
-
-
-
-*% Color Separation Information ====================
-
-
-
-
-
-*% Custom Inks for Fiery Logo
-
-*InkName: P300FieryBlue/Fiery Blue
-
-*InkName: P199FieryRed/Fiery Red
-
-*InkName: PblackFieryBlack/Fiery Black
-
-*CustomCMYK P300FieryBlue: ".9 .9 .0 .0"
-
-*CustomCMYK P199FieryRed: ".0 .9 .9 .0"
-
-*CustomCMYK PblackFieryBlack: ".2 .1 .1 .9"
-
-
-
-*DefaultColorSep: Black.100lpi.400dpi
-
-*DefaultSeparations: False
-
-
-
-*% ------Halftone Text Mode (Default)
-
-*ColorSepScreenAngle Cyan.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Magenta.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Yellow.100lpi.400dpi: "0"
-
-*ColorSepScreenAngle Black.100lpi.400dpi: "0"
-
-*ColorSepScreenFreq Cyan.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Magenta.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Yellow.100lpi.400dpi: "50.0"
-
-*ColorSepScreenFreq Black.100lpi.400dpi: "50.0"
-
-*ColorSepScreenProc Cyan.100lpi.400dpi: "{6 5
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Magenta.100lpi.400dpi: "{4 7
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Yellow.100lpi.400dpi: "{5 2
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*ColorSepScreenProc Black.100lpi.400dpi: "{2 4
-
- { 3 1 roll 4 -1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec 8 mul 3 1 roll exch
-
- {dup 8 ge { 8 sub} if exch
-
- dup -1.0 le {pop -1.0} if dup 0.97 gt {pop 0.97} if
-
- 1.0 add 8 2 div mul add dup 8 ge {8 sub} if
-
- dup 0 lt {0 exch sub} if cvi
-
- }
-
- exec add
-
- [
-
- 48 18 8 16 46 16 6 14
-
- 56 60 32 24 54 58 30 22
-
- 4 12 44 40 2 10 42 38
-
- 28 20 52 64 26 18 50 62
-
-
-
- 45 15 5 13 47 17 7 15
-
- 53 57 29 21 55 59 31 23
-
- 1 9 41 37 3 11 43 39
-
- 25 17 49 61 27 19 51 63
-
- ]
-
- exch get 8 dup mul div} exec}"
-
-*End
-
-
-
-*% End of PPD file
-
-
-
-
-
-
-
-*% The byte count of this file should be exactly 047923 or 050402
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery XJK 1000 1560-1565
diff --git a/psprint_config/configuration/ppds/EFXJK303.PS b/psprint_config/configuration/ppds/EFXJK303.PS
deleted file mode 100644
index 3908fe438893..000000000000
--- a/psprint_config/configuration/ppds/EFXJK303.PS
+++ /dev/null
@@ -1,1075 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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
-
-
-*% 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
-
-*% Created for Kodak 8650
-
-*FileVersion: "0.1"
-
-*%EF1File, EFLEPPD
-
-*% EFConversionKey: "Canon"
-
-
-
-*FormatVersion: "4.2"
-
-*FileVersion: "1.0"
-
-*LanguageEncoding: ISOLatin1
-
-*LanguageVersion: English
-
-*PCFileName: "EFXJK303.PPD"
-
-*Product: "(Fiery XJK 8650)"
-
-*PSVersion: "(2015.802) 0"
-
-*ModelName: "Fiery XJK 8650 Color Server v2015.802"
-
-*ShortNickName: "Fiery XJK 8650 v2015.802"
-
-*NickName: "Fiery XJK 8650 Color Server v2015.802"
-
-*LanguageLevel: "2"
-
-*Manufacturer: "Kodak"
-
-
-
-
-
-*% === Constraints =========
-
-
-
-*% Prevent transparency for certain page sizes
-
-
-
-*% ==== Device Capabilities ===============
-
-*Protocols: BCP TBCP
-
-*ColorDevice: True
-
-*DefaultColorSpace: CMYK
-
-*TTRasterizer: Type42
-
-*SuggestedJobTimeout: "0"
-
-*SuggestedWaitTimeout: "70"
-
-*PrintPSErrors: False
-
-*Throughput: "1"
-
-*Password: "()"
-
-*FileSystem: True
-
-*?FileSystem: "
-
- save
-
- [ (*)
-
- { dup dup (%disk) search
-
- { pop pop pop
-
- length string copy dup currentdevparams /Writeable get
-
- {/Writeabledev Writeabledev 1 add def} if
-
- }{
-
- pop pop pop
-
- } ifelse }
-
- 50 string /IODevice resourceforall
-
- ]
-
- length 1 ge {(True)}{(False)}ifelse = flush
-
- restore
-
- "
-
-*End
-
-
-
-*ExitServer: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not {
-
- (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
- "
-
-*End
-
-
-
-*Reset: "
-
- count 0 eq {false}{true exch startjob} ifelse
-
- {
-
- systemdict /quit get exec
-
- }{
-
- (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } ifelse
-
- "
-
-*End
-
-
-
-*DefaultResolution: 300dpi
-
-*Resolution 300dpi: " "
-
-*?Resolution: "
-
- save
-
- currentpagedevice /HWResolution get
-
- 0 get ( ) cvs print (dpi) = flush
-
- restore
-
- "
-
-*End
-
-
-
-*DefaultTransfer: Null
-
-*Transfer Null: "{ }"
-
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-
-
-*%EFIFlags *DEFPAPERSIZE Setup
-
-*OpenUIEFI *DEFPAPERSIZE/Default Paper Sizes :PickOne
-
-*OrderDependency: 20 AnySetup *DEFPAPERSIZE
-
-*DefaultDEFPAPERSIZE: US
-
-*DEFPAPERSIZE US/US: ""
-
-*DEFPAPERSIZE Metric/Metric: ""
-
-*?DEFPAPERSIZE: ""
-
-*CloseUIEFI: *DEFPAPERSIZE
-
-
-
-*%EFIFlags *CONVPAPERSIZE Setup
-
-*OpenUIEFI *CONVPAPERSIZE/Convert Paper Sizes : PickOne
-
-*OrderDependency: 25 AnySetup *CONVPAPERSIZE
-
-*DefaultCONVPAPERSIZE: False
-
-*CONVPAPERSIZE False/No: ""
-
-*CONVPAPERSIZE LetterToA4/Letter/11x17->A4/A3: ""
-
-*CONVPAPERSIZE A4ToLetter/A4/A3->Letter/11x17: ""
-
-*?CONVPAPERSIZE: ""
-
-*CloseUIEFI: *CONVPAPERSIZE
-
-
-
-*%EFIFlags *COVPGATEND Setup
-
-*OpenUIEFI *COVPGATEND/Print Cover Page : PickOne
-
-*OrderDependency: 30 AnySetup *COVPGATEND
-
-*DefaultCOVPGATEND: NO
-
-*COVPGATEND YES/Yes: ""
-
-*COVPGATEND NO/No: ""
-
-*CloseUIEFI: *COVPGATEND
-
-
-
-*%EFIFlags *COURIERSUBST Setup
-
-*OpenUIEFI *COURIERSUBST/Allow Courier Substitution :PickOne
-
-*OrderDependency: 35 AnySetup *COURIERSUBST
-
-*DefaultCOURIERSUBST: YES
-
-*COURIERSUBST YES/Yes: ""
-
-*COURIERSUBST NO/No: ""
-
-*CloseUIEFI: *COURIERSUBST
-
-
-
-*%EFIFlags *PSERROR Setup
-
-*OpenUIEFI *PSERROR/Print to PS Error : PickOne
-
-*OrderDependency: 40 AnySetup *PSERROR
-
-*DefaultPSERROR: NO
-
-*PSERROR YES/Yes: ""
-
-*PSERROR NO/No: ""
-
-*CloseUIEFI: *PSERROR
-
-
-
-*%EFIFlags *EFColorRendDict Spooler|Command
-
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-
-*OrderDependency: 60 AnySetup *EFColorRendDict
-
-*DefaultEFColorRendDict: RenderingDEF
-
-*EFColorRendDict RenderingDEF/Printer's default: ""
-
-*EFColorRendDict Preferred/Photographic: " userdict /setcolorbundle known
-
- { << /ColorRendering /Photographic >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTPreferredColorRendering } { /PreferredColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Business/Presentation: " userdict /setcolorbundle known
-
- { << /ColorRendering /Presentation >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTBusinessColorRendering } { /BusinessColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Monitor/Monitor: " userdict /setcolorbundle known
-
- { << /ColorRendering /Monitor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTMonitorColorRendering } { /MonitorColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Colorimetric/Solid Color: " userdict /setcolorbundle known
-
- { << /ColorRendering /Solid >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict UltraColor/Kodak UltraColor: " userdict /setcolorbundle known
-
- { << /ColorRendering /UltraColor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*?EFColorRendDict: " userdict /setcolorbundle known
-
- { currentcolorbundle /ColorRendering get == } if "
-
-*End
-
-*CloseUI: *EFColorRendDict
-
-
-
-*%EFIFlags *MediaType Spooler|Command
-
-*OpenUI *MediaType/Media Type: PickOne
-
-*OrderDependency: 10 AnySetup *MediaType
-
-*DefaultMediaType: MediaTypeDEF
-
-*MediaType MediaTypeDEF/Printer's default: ""
-
-*MediaType Plain/Photographic: "currenttransfer 2 dict dup /MediaType (reflection) put
-
- dup /OutputType () put setpagedevice settransfer"
-
-*End
-
-*MediaType Transparent/Transparency: "currenttransfer 1 dict dup /MediaType (transparency) put
-
- setpagedevice settransfer"
-
-*End
-
-*?MediaType: "
-
- save
-
- currentpagedevice /MediaType {get} stopped
-
- {pop pop (Unknown)} {dup null eq {pop (Unknown)} if} ifelse
-
- = flush
-
- restore
-
- "
-
-*End
-
-*CloseUI: *MediaType
-
-
-
-
-
-*%EFIFlags *Prange Command
-
-*OpenUIEFI *Prange/Page Range : PickOne
-
-*OrderDependency: 70 AnySetup *Prange
-
-*DefaultPrange: All
-
-*Prange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ ] put
-
- setglobal "
-
-*End
-
-*Prange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1 2 4 6 ] put
-
- setglobal "
-
-*End
-
-*?Prange: ""
-
-*CloseUIEFI: *Prange
-
-
-
-*%EFIFlags *Flip Command
-
-*OpenUIEFI *Flip/Flip : PickOne
-
-*OrderDependency: 75 AnySetup *Flip
-
-*DefaultFlip: None
-
-*Flip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*Flip H/Horizonal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*?Flip: ""
-
-*CloseUIEFI: *Flip
-
-
-
-*%EFIFlags *Scale Command
-
-*OpenUIEFI *Scale/Scale : PickOne
-
-*OrderDependency: 80 AnySetup *Scale
-
-*DefaultScale: 100
-
-*Scale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 2 put << >> setpagedevice "
-
-*End
-
-*Scale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1.5 put << >> setpagedevice "
-
-*End
-
-*Scale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1 put << >> setpagedevice "
-
-*End
-
-*Scale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .75 put << >> setpagedevice "
-
-*End
-
-*Scale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .5 put << >> setpagedevice "
-
-*End
-
-*?Scale: ""
-
-*CloseUIEFI: *Scale
-
-
-
-*%EFIFlags *Rotate Command
-
-*OpenUIEFI *Rotate/Rotate: PickOne
-
-*OrderDependency: 85 AnySetup *Rotate
-
-*DefaultRotate: 0
-
-*Rotate 0/0: " << >> setpagedevice "
-
-*Rotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 90 put << >> setpagedevice "
-
-*End
-
-*Rotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 270 put << >> setpagedevice "
-
-*End
-
-*Rotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 180 put << >> setpagedevice "
-
-*End
-
-*?Rotate: ""
-
-*CloseUIEFI: *Rotate
-
-
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-
-
-*%EFIFlags *PageSize Command|Spooler
-
-*OpenUI *PageSize: PickOne
-
-*OrderDependency: 40 AnySetup *PageSize
-
-*DefaultPageSize: Letter
-
-*PageSize Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle } if "
-
-*End
-
-*PageSize A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
-
-
- if "
-
-*End
-
-*PageSize 8_5x12/8.5 x 12 in (216 x 307 mm): " userdict /setcolorbundle known
-
- { << /PageSize /8_5x12 >> setcolorbundle } if "
-
-*End
-
-*PageSize 210x307mm/210 x 307 mm:" userdict /setcolorbundle known
-
- { << /PageSize /210x307mm >> setcolorbundle } if "
-
-*End
-
-*?PageSize: "
-
-save
-
- currentpagedevice /PageSize get aload pop
-
- 2 copy gt {exch} if
-
- (Unknown)
-
- 4 dict
-
- dup [612 792] (Letter) put
-
- dup [595 842] (A4) put
-
- dup [612 870] (8_5x12) put
-
- dup [595 870] (210x307mm)
-
- {
-
- exch aload pop
-
- 4 index sub abs 5 le exch
-
- 5 index sub abs 5 le and
-
- {
-
- exch pop exit
-
- }{
-
- pop
-
- } ifelse
-
- } bind forall
-
- = flush pop pop
-
-restore"
-
-*End
-
-*CloseUI: *PageSize
-
-
-
-*%EFIFlags *PageRegion
-
-*OpenUI *PageRegion: PickOne
-
-*OrderDependency: 40 AnySetup *PageRegion
-
-*DefaultPageRegion: Letter
-
-*PageRegion Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle } if "
-
-*End
-
-*PageRegion A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle } if " % Letter to A4
-
-*End
-
-*PageRegion 8_5x12/8.5 x 12 in (216 x 307 mm): " userdict /setcolorbundle known
-
- { << /PageSize /8_5x12 >> setcolorbundle } if "
-
-*End
-
-*PageRegion 210x307mm/210 x 307 mm:" userdict /setcolorbundle known
-
- { << /PageSize /210x307mm >> setcolorbundle } if "
-
-*End
-
-*CloseUI: *PageRegion
-
-
-
-*% The following entries provide information about specific paper keywords.
-
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter/Letter: "18.2401 74.7601 594.24 717.96 "
-
-*ImageableArea A4/A4: "9.6001 74.2800 585.60 767.88 "
-
-*ImageableArea 8_5x12/8.5 x 12 in (216 x 307 mm):"18.2401 76.4400 594.24 796.44 "
-
-*ImageableArea 210x307mm/210 x 307 mm: "9.6001 76.4400 585.60 796.44 "
-
-*?ImageableArea: "
-
- save
-
- /cvp { ( ) cvs print ( ) print } bind def
-
- /upperright {10000 mul floor 10000 div} bind def
-
- /lowerleft {10000 mul ceiling 10000 div} bind def
-
- newpath clippath pathbbox
-
- 4 -2 roll exch 2 {lowerleft cvp} repeat
-
- exch 2 {upperright cvp} repeat flush
-
- restore"
-
-*End
-
-
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: Letter
-
-*PaperDimension Letter/Letter: "612 792 "
-
-*PaperDimension A4/A4: "595 842 "
-
-*PaperDimension 8_5x12/8.5 x 12 in (216 x 307 mm): "612 870 "
-
-*PaperDimension 210x307mm/210 x 307 mm: "595 870 "
-
-
-
-*OpenUI *InputSlot: PickOne
-
-*DefaultInputSlot: Cassette
-
-*InputSlot Cassette/Paper Tray: ""
-
-*?InputSlot: "save (Cassette) = flush restore"
-
-*CloseUI: *InputSlot
-
-*RequiresPageRegion All: True
-
-
-
-
-
-*% Font Information =========================
-
-*DefaultFont: Courier
-
-*Font AvantGarde-Book: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Demi: Standard "(001.003)" Standard Disk
-
-*Font AvantGarde-DemiOblique: Standard "(001.003)" 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 Disk
-
-*Font Courier-Bold: Standard "(002.002)" Standard Disk
-
-*Font Courier-BoldOblique: Standard "(002.002)" Standard Disk
-
-*Font Courier-Oblique: Standard "(002.002)" Standard Disk
-
-*Font Helvetica: Standard "(001.006)" Standard Disk
-
-*Font Helvetica-Bold: Standard "(001.007)" Standard Disk
-
-*Font Helvetica-BoldOblique: Standard "(001.007)" Standard Disk
-
-*Font Helvetica-Condensed: Standard "(001.001)" Standard Disk
-
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Oblique: Standard "(001.001)" Standard Disk
-
-*Font Helvetica-Narrow: Standard "(001.001)" Standard Disk
-
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-BoldObl: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Oblique: Standard "(001.001)" Standard Disk
-
-*Font Helvetica-Oblique: Standard "(001.006)" Standard Disk
-
-*Font NewCenturySchlbk-Bold: Standard "(001.008)" Standard Disk
-
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006)" Standard Disk
-
-*Font NewCenturySchlbk-Italic: Standard "(001.005)" Standard Disk
-
-*Font NewCenturySchlbk-Roman: Standard "(001.006)" Standard Disk
-
-*Font Palatino-Bold: Standard "(001.005)" Standard Disk
-
-*Font Palatino-BoldItalic: Standard "(001.005)" Standard Disk
-
-*Font Palatino-Italic: Standard "(001.005)" Standard Disk
-
-*Font Palatino-Roman: Standard "(001.005)" Standard Disk
-
-*Font Symbol: Special "(001.003)" Special Disk
-
-*Font Times-Bold: Standard "(001.007)" Standard Disk
-
-*Font Times-BoldItalic: Standard "(001.009)" Standard Disk
-
-*Font Times-Italic: Standard "(001.007)" Standard Disk
-
-*Font Times-Roman: Standard "(001.007)" Standard Disk
-
-*Font ZapfChancery-MediumItalic: Standard "(001.003)" Standard Disk
-
-*Font ZapfDingbats: Special "(001.002)" Special Disk
-
-*?FontQuery: "
-
- save
-
- { count 1 gt
-
- { exch dup 127 string cvs (/) print print (:) print
-
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
-
- } { exit } ifelse
-
- } bind loop
-
- (*) = flush
-
- restore"
-
-*End
-
-*?FontList: "
-
-save
-
- (*) {cvn ==} 128 string /Font resourceforall
-
- (*) = flush
-
-restore"
-
-*End
-
-*% Printer Messages (verbatim from printer):
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-
-*Status: "idle"
-
-*Status: "busy"
-
-*Status: "waiting"
-
-*Status: "initializing"
-
-*Status: "holding"
-
-*Status: "PrinterError: requires service - \ServiceCodeNumber\"
-
-*Status: "PrinterError: paper tray needs attention"
-
-*Status: "PrinterError: cover is open"
-
-*Status: "PrinterError: print ribbon needs to be changed"
-
-*Status: "PrinterError: print ribbon is jammed"
-
-*Status: "PrinterError: paper is jammed"
-
-*Status: "PrinterError: requires 8.5 x 11 in, Paper"
-
-*Status: "PrinterError: requires A4, Paper"
-
-*Status: "PrinterError: requires 8.5 x 12 in, Paper"
-
-*Status: "PrinterError: requires 210 x 307 mm, Paper"
-
-*Status: "PrinterError: requires 8.5 x 14 in, Paper"
-
-*Status: "PrinterError: requires 210 x 358 mm, Paper"
-
-*Status: "PrinterError: requires 9.5 x 14 in, Paper"
-
-*Status: "PrinterError: requires 8.5 x 11 in, Transparency"
-
-*Status: "PrinterError: requires A4, Transparency"
-
-*Status: "PrinterError: requires 8.5 x 12 in, Transparency"
-
-*Status: "PrinterError: requires 210 x 307 mm, Transparency"
-
-*Status: "PrinterError: requires 8.5 x 14 in, Transparency"
-
-*Status: "PrinterError: requires 210 x 358 mm, Transparency"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Three-Color Ribbon/XtraLife Media/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Three-Color Ribbon/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Black Ribbon/XtraLife Media"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/XtraLife Media/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Four-Color Ribbon/CMYK"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE 5x7 Color Ribbon"
-
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*Source: "LocalTalk"
-
-*Source: "Parallel"
-
-*Source: "EtherTalk"
-
-*Source: "IPX"
-
-*Source: "TcpIp"
-
-*Source: "SCSIComm"
-
-
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "requires service - \ServiceCodeNumber\"
-
-*PrinterError: "paper tray needs attention"
-
-*PrinterError: "cover is open"
-
-*PrinterError: "print ribbon needs to be changed"
-
-*PrinterError: "print ribbon is jammed"
-
-*PrinterError: "paper is jammed"
-
-*PrinterError: "requires 8.5 x 11 in, Paper"
-
-*PrinterError: "requires A4, Paper"
-
-*PrinterError: "requires 8.5 x 12 in, Paper"
-
-*PrinterError: "requires 210 x 307 mm, Paper"
-
-*PrinterError: "requires 8.5 x 14 in, Paper"
-
-*PrinterError: "requires 210 x 358 mm, Paper"
-
-*PrinterError: "requires 9.5 x 14 in, Paper"
-
-*PrinterError: "requires 8.5 x 11 in, Transparency"
-
-*PrinterError: "requires A4, Transparency"
-
-*PrinterError: "requires 8.5 x 12 in, Transparency"
-
-*PrinterError: "requires 210 x 307 mm, Transparency"
-
-*PrinterError: "requires 8.5 x 14 in, Transparency"
-
-*PrinterError: "requires 210 x 358 mm, Transparency"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Three-Color Ribbon/XtraLife Media/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Three-Color Ribbon/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Black Ribbon/XtraLife Media"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/XtraLife Media/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Four-Color Ribbon/CMYK"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE 5x7 Color Ribbon"
-
-
-
-*% end of PPD
-
-
-
-*% The byte count of this file should be exactly 020393 or 021468
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery XJK 8650
diff --git a/psprint_config/configuration/ppds/EFXJK3F3.PS b/psprint_config/configuration/ppds/EFXJK3F3.PS
deleted file mode 100644
index 98b437c9507c..000000000000
--- a/psprint_config/configuration/ppds/EFXJK3F3.PS
+++ /dev/null
@@ -1,1135 +0,0 @@
-*PPD-Adobe: "4.2"
-*% 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
-
-
-*% 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
-
-*% Created for Kodak 8650
-
-*FileVersion: "0.1"
-
-*%EF1File, EFLEPPD
-
-*% EFConversionKey: "Canon"
-
-
-
-*FormatVersion: "4.2"
-
-*FileVersion: "1.0"
-
-*LanguageEncoding: ISOLatin1
-
-*LanguageVersion: English
-
-*PCFileName: "EFXJK3F3.PPD"
-
-*Product: "(Fiery XJK 1000 8650)"
-
-*PSVersion: "(2015.802) 0"
-
-*ModelName: "Fiery XJK 8650 Color Server v2015.802"
-
-*ShortNickName: "Fiery XJK1000 8650 v2015.802"
-
-*NickName: "Fiery XJK 1000 8650 Color Server v2015.802"
-
-*LanguageLevel: "2"
-
-*Manufacturer: "Kodak"
-
-
-
-
-
-*% === Constraints =========
-
-
-
-*% Prevent transparency for certain page sizes
-
-
-
-*% ==== Device Capabilities ===============
-
-*Protocols: BCP TBCP
-
-*ColorDevice: True
-
-*DefaultColorSpace: CMYK
-
-*TTRasterizer: Type42
-
-*SuggestedJobTimeout: "0"
-
-*SuggestedWaitTimeout: "70"
-
-*PrintPSErrors: False
-
-*Throughput: "1"
-
-*Password: "()"
-
-*FileSystem: True
-
-*?FileSystem: "
-
- save
-
- [ (*)
-
- { dup dup (%disk) search
-
- { pop pop pop
-
- length string copy dup currentdevparams /Writeable get
-
- {/Writeabledev Writeabledev 1 add def} if
-
- }{
-
- pop pop pop
-
- } ifelse }
-
- 50 string /IODevice resourceforall
-
- ]
-
- length 1 ge {(True)}{(False)}ifelse = flush
-
- restore
-
- "
-
-*End
-
-
-
-*ExitServer: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not {
-
- (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
- "
-
-*End
-
-
-
-*Reset: "
-
- count 0 eq {false}{true exch startjob} ifelse
-
- {
-
- systemdict /quit get exec
-
- }{
-
- (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } ifelse
-
- "
-
-*End
-
-
-
-*DefaultResolution: 300dpi
-
-*Resolution 300dpi: " "
-
-*?Resolution: "
-
- save
-
- currentpagedevice /HWResolution get
-
- 0 get ( ) cvs print (dpi) = flush
-
- restore
-
- "
-
-*End
-
-
-
-*DefaultTransfer: Null
-
-*Transfer Null: "{ }"
-
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-
-
-
-
-*%EFIFlags *DEFPAPERSIZE Setup
-
-*OpenUIEFI *DEFPAPERSIZE/Default Paper Sizes :PickOne
-
-*OrderDependency: 20 AnySetup *DEFPAPERSIZE
-
-*DefaultDEFPAPERSIZE: US
-
-*DEFPAPERSIZE US/US: ""
-
-*DEFPAPERSIZE Metric/Metric: ""
-
-*?DEFPAPERSIZE: ""
-
-*CloseUIEFI: *DEFPAPERSIZE
-
-
-
-*%EFIFlags *CONVPAPERSIZE Setup
-
-*OpenUIEFI *CONVPAPERSIZE/Convert Paper Sizes : PickOne
-
-*OrderDependency: 25 AnySetup *CONVPAPERSIZE
-
-*DefaultCONVPAPERSIZE: False
-
-*CONVPAPERSIZE False/No: ""
-
-*CONVPAPERSIZE LetterToA4/Letter/11x17->A4/A3: ""
-
-*CONVPAPERSIZE A4ToLetter/A4/A3->Letter/11x17: ""
-
-*?CONVPAPERSIZE: ""
-
-*CloseUIEFI: *CONVPAPERSIZE
-
-
-
-*%EFIFlags *COVPGATEND Setup
-
-*OpenUIEFI *COVPGATEND/Print Cover Page : PickOne
-
-*OrderDependency: 30 AnySetup *COVPGATEND
-
-*DefaultCOVPGATEND: NO
-
-*COVPGATEND YES/Yes: ""
-
-*COVPGATEND NO/No: ""
-
-*CloseUIEFI: *COVPGATEND
-
-
-
-*%EFIFlags *COURIERSUBST Setup
-
-*OpenUIEFI *COURIERSUBST/Allow Courier Substitution :PickOne
-
-*OrderDependency: 35 AnySetup *COURIERSUBST
-
-*DefaultCOURIERSUBST: YES
-
-*COURIERSUBST YES/Yes: ""
-
-*COURIERSUBST NO/No: ""
-
-*CloseUIEFI: *COURIERSUBST
-
-
-
-*%EFIFlags *PSERROR Setup
-
-*OpenUIEFI *PSERROR/Print to PS Error : PickOne
-
-*OrderDependency: 40 AnySetup *PSERROR
-
-*DefaultPSERROR: NO
-
-*PSERROR YES/Yes: ""
-
-*PSERROR NO/No: ""
-
-*CloseUIEFI: *PSERROR
-
-
-
-*%EFIFlags *EFColorRendDict Spooler|Command
-
-*OpenUI *EFColorRendDict/Rendering Style :PickOne
-
-*OrderDependency: 60 AnySetup *EFColorRendDict
-
-*DefaultEFColorRendDict: RenderingDEF
-
-*EFColorRendDict RenderingDEF/Printer's default: ""
-
-*EFColorRendDict Preferred/Photographic: " userdict /setcolorbundle known
-
- { << /ColorRendering /Photographic >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTPreferredColorRendering } { /PreferredColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Business/Presentation: " userdict /setcolorbundle known
-
- { << /ColorRendering /Presentation >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTBusinessColorRendering } { /BusinessColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Monitor/Monitor: " userdict /setcolorbundle known
-
- { << /ColorRendering /Monitor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTMonitorColorRendering } { /MonitorColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict Colorimetric/Solid Color: " userdict /setcolorbundle known
-
- { << /ColorRendering /Solid >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*EFColorRendDict UltraColor/Kodak UltraColor: " userdict /setcolorbundle known
-
- { << /ColorRendering /UltraColor >> setcolorbundle }
-
- { /DefaultColorRendering
-
- currentpagedevice /DeviceRenderingInfo
-
- get /ValuesPerColorComponent get 2 eq
-
- { /HTColorimetricColorRendering } { /ColorimetricColorRendering } ifelse
-
- /ColorRendering findresource
-
- /ColorRendering defineresource setcolorrendering
-
- } ifelse "
-
-*End
-
-*?EFColorRendDict: " userdict /setcolorbundle known
-
- { currentcolorbundle /ColorRendering get == } if "
-
-*End
-
-*CloseUI: *EFColorRendDict
-
-
-
-
-
-*%EFIFlags *MediaType Spooler|Command
-
-*OpenUI *MediaType/Media Type: PickOne
-
-*OrderDependency: 10 AnySetup *MediaType
-
-*DefaultMediaType: MediaTypeDEF
-
-*MediaType MediaTypeDEF/Printer's default: ""
-
-*MediaType Plain/Photographic: "currenttransfer 2 dict dup /MediaType (reflection) put
-
- dup /OutputType () put setpagedevice settransfer"
-
-*End
-
-*MediaType Transparent/Transparency: "currenttransfer 1 dict dup /MediaType (transparency) put
-
- setpagedevice settransfer"
-
-*End
-
-*?MediaType: "
-
- save
-
- currentpagedevice /MediaType {get} stopped
-
- {pop pop (Unknown)} {dup null eq {pop (Unknown)} if} ifelse
-
- = flush
-
- restore
-
- "
-
-*End
-
-*CloseUI: *MediaType
-
-*%EFIFlags *Prange Command
-
-*OpenUIEFI *Prange/Page Range : PickOne
-
-*OrderDependency: 70 AnySetup *Prange
-
-*DefaultPrange: All
-
-*Prange All/All: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ ] put
-
- setglobal "
-
-*End
-
-*Prange Even/Even: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 1 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange Odd/Odd: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1000 { dup 2 add } repeat ] put
-
- setglobal "
-
-*End
-
-*Prange range1/1-3, 5, 7: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- currentglobal true setglobal
-
- DriverOps /pagerange [ 0 1 2 4 6 ] put
-
- setglobal "
-
-*End
-
-*?Prange: ""
-
-*CloseUIEFI: *Prange
-
-
-
-*%EFIFlags *Flip Command
-
-*OpenUIEFI *Flip/Flip : PickOne
-
-*OrderDependency: 75 AnySetup *Flip
-
-*DefaultFlip: None
-
-*Flip None/None: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip V/Vertical: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? false put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*Flip H/Horizonal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? false put << >> setpagedevice "
-
-*End
-
-*Flip VH/Vertical & Horizontal: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /fliph? true put DriverOps /flipv? true put << >> setpagedevice "
-
-*End
-
-*?Flip: ""
-
-*CloseUIEFI: *Flip
-
-
-
-*%EFIFlags *Scale Command
-
-*OpenUIEFI *Scale/Scale : PickOne
-
-*OrderDependency: 80 AnySetup *Scale
-
-*DefaultScale: 100
-
-*Scale 200/200%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 2 put << >> setpagedevice "
-
-*End
-
-*Scale 150/150%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1.5 put << >> setpagedevice "
-
-*End
-
-*Scale 100/100%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# 1 put << >> setpagedevice "
-
-*End
-
-*Scale 75/75%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .75 put << >> setpagedevice "
-
-*End
-
-*Scale 50/50%: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /scale# .5 put << >> setpagedevice "
-
-*End
-
-*?Scale: ""
-
-*CloseUIEFI: *Scale
-
-
-
-*%EFIFlags *Rotate Command
-
-*OpenUIEFI *Rotate/Rotate: PickOne
-
-*OrderDependency: 85 AnySetup *Rotate
-
-*DefaultRotate: 0
-
-*Rotate 0/0: " << >> setpagedevice "
-
-*Rotate 90/90 CCW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 90 put << >> setpagedevice "
-
-*End
-
-*Rotate 270/90 CW: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 270 put << >> setpagedevice "
-
-*End
-
-*Rotate 180/180: " userdict /DriverOps known not { /DriverOps /ProcSet findresource pop } if
-
- DriverOps /rotate# 180 put << >> setpagedevice "
-
-*End
-
-*?Rotate: ""
-
-*CloseUIEFI: *Rotate
-
-
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-
-
-*%EFIFlags *PageSize Command|Spooler
-
-*OpenUI *PageSize: PickOne
-
-*OrderDependency: 40 AnySetup *PageSize
-
-*DefaultPageSize: Letter
-
-*PageSize Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle } if "
-
-*End
-
-*PageSize A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle }
-
-
-
- if "
-
-*End
-
-*PageSize 8_5x12/8.5 x 12 in (216 x 307 mm): " userdict /setcolorbundle known
-
- { << /PageSize /8_5x12 >> setcolorbundle } if "
-
-*End
-
-*PageSize 210x307mm/210 x 307 mm:" userdict /setcolorbundle known
-
- { << /PageSize /210x307mm >> setcolorbundle } if "
-
-*End
-
-*?PageSize: "
-
-save
-
- currentpagedevice /PageSize get aload pop
-
- 2 copy gt {exch} if
-
- (Unknown)
-
- 4 dict
-
- dup [612 792] (Letter) put
-
- dup [595 842] (A4) put
-
- dup [612 870] (8_5x12) put
-
- dup [595 870] (210x307mm)
-
- {
-
- exch aload pop
-
- 4 index sub abs 5 le exch
-
- 5 index sub abs 5 le and
-
- {
-
- exch pop exit
-
- }{
-
- pop
-
- } ifelse
-
- } bind forall
-
- = flush pop pop
-
-restore"
-
-*End
-
-*CloseUI: *PageSize
-
-
-
-*%EFIFlags *PageRegion
-
-*OpenUI *PageRegion: PickOne
-
-*OrderDependency: 40 AnySetup *PageRegion
-
-*DefaultPageRegion: Letter
-
-*PageRegion Letter/Letter: " userdict /setcolorbundle known
-
- { << /PageSize /Letter >> setcolorbundle } if "
-
-*End
-
-*PageRegion A4/A4: " userdict /setcolorbundle known
-
- { << /PageSize /A4 >> setcolorbundle } if " % Letter to A4
-
-*End
-
-*PageRegion 8_5x12/8.5 x 12 in (216 x 307 mm): " userdict /setcolorbundle known
-
- { << /PageSize /8_5x12 >> setcolorbundle } if "
-
-*End
-
-*PageRegion 210x307mm/210 x 307 mm:" userdict /setcolorbundle known
-
- { << /PageSize /210x307mm >> setcolorbundle } if "
-
-*End
-
-*CloseUI: *PageRegion
-
-
-
-*% The following entries provide information about specific paper keywords.
-
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter/Letter: "18.2401 74.7601 594.24 717.96 "
-
-*ImageableArea A4/A4: "9.6001 74.2800 585.60 767.88 "
-
-*ImageableArea 8_5x12/8.5 x 12 in (216 x 307 mm):"18.2401 76.4400 594.24 796.44 "
-
-*ImageableArea 210x307mm/210 x 307 mm: "9.6001 76.4400 585.60 796.44 "
-
-*?ImageableArea: "
-
- save
-
- /cvp { ( ) cvs print ( ) print } bind def
-
- /upperright {10000 mul floor 10000 div} bind def
-
- /lowerleft {10000 mul ceiling 10000 div} bind def
-
- newpath clippath pathbbox
-
- 4 -2 roll exch 2 {lowerleft cvp} repeat
-
- exch 2 {upperright cvp} repeat flush
-
- restore"
-
-*End
-
-
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: Letter
-
-*PaperDimension Letter/Letter: "612 792 "
-
-*PaperDimension A4/A4: "595 842 "
-
-*PaperDimension 8_5x12/8.5 x 12 in (216 x 307 mm): "612 870 "
-
-*PaperDimension 210x307mm/210 x 307 mm: "595 870 "
-
-
-
-*OpenUI *InputSlot: PickOne
-
-*DefaultInputSlot: Cassette
-
-*InputSlot Cassette/Paper Tray: ""
-
-*?InputSlot: "save (Cassette) = flush restore"
-
-*CloseUI: *InputSlot
-
-*RequiresPageRegion All: True
-
-
-
-
-
-*% Font Information =========================
-
-*DefaultFont: Courier
-
-*Font ACaslon-Italic: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Regular: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-Semibold: Standard "(001.002)" Standard Disk
-
-*Font ACaslon-SemiboldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Bold: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Italic: Standard "(001.002)" Standard Disk
-
-*Font AGaramond-Regular: Standard "(001.002)" Standard Disk
-
-*Font Americana: Standard "(001.002)" Standard Disk
-
-*Font Americana-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Book: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-Demi: Standard "(001.002)" Standard Disk
-
-*Font AvantGarde-DemiOblique: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Bold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-ExtraBold: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Medium: Standard "(001.002)" Standard Disk
-
-*Font Barmeno-Regular: Standard "(001.002)" Standard Disk
-
-*Font Blackoak: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Demi: Standard "(001.002)" Standard Disk
-
-*Font Bookman-DemiItalic: Standard "(001.002)" Standard Disk
-
-*Font Bookman-Light: Standard "(001.002)" Standard Disk
-
-*Font Bookman-LightItalic: Standard "(001.002)" Standard Disk
-
-*Font Carta: Standard "(001.002)" Standard Disk
-
-*Font Courier: Standard "(001.002)" Standard Disk
-
-*Font Courier-Bold: Standard "(001.002)" Standard Disk
-
-*Font Courier-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Courier-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Formata-Italic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Medium: Standard "(001.002)" Standard Disk
-
-*Font Formata-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font Formata-Regular: Standard "(001.002)" Standard Disk
-
-*Font Helvetica: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-BoldObl: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Condensed-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Bold: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Narrow-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Helvetica-Oblique: Standard "(001.002)" Standard Disk
-
-*Font Kaufmann: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Black: Standard "(001.002)" Standard Disk
-
-*Font Lithos-Regular: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Italic: Standard "(001.002)" Standard Disk
-
-*Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Bold: Standard "(001.002)" Standard Disk
-
-*Font Palatino-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Italic: Standard "(001.002)" Standard Disk
-
-*Font Palatino-Roman: Standard "(001.002)" Standard Disk
-
-*Font Parisian: Standard "(001.002)" Standard Disk
-
-*Font ParkAvenue: Standard "(001.002)" Standard Disk
-
-*Font Poetica-SuppOrnaments: Standard "(001.002)" Standard Disk
-
-*Font Symbol: Standard "(001.002)" Standard Disk
-
-*Font Tekton: Standard "(001.002)" Standard Disk
-
-*Font Tekton-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-Bold: Standard "(001.002)" Standard Disk
-
-*Font Times-BoldItalic: Standard "(001.002)" Standard Disk
-
-*Font Times-Italic: Standard "(001.002)" Standard Disk
-
-*Font Times-Roman: Standard "(001.002)" Standard Disk
-
-*Font Trajan-Bold: Standard "(001.002)" Standard Disk
-
-*Font WoodtypeOrnaments-Two: Standard "(001.002)" Standard Disk
-
-*Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard Disk
-
-*Font ZapfDingbats: Standard "(001.002)" Standard Disk
-
-*?FontQuery: "
-
- save
-
- { count 1 gt
-
- { exch dup 127 string cvs (/) print print (:) print
-
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
-
- } { exit } ifelse
-
- } bind loop
-
- (*) = flush
-
- restore"
-
-*End
-
-*?FontList: "
-
-save
-
- (*) {cvn ==} 128 string /Font resourceforall
-
- (*) = flush
-
-restore"
-
-*End
-
-*% Printer Messages (verbatim from printer):
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-
-*Status: "idle"
-
-*Status: "busy"
-
-*Status: "waiting"
-
-*Status: "initializing"
-
-*Status: "holding"
-
-*Status: "PrinterError: requires service - \ServiceCodeNumber\"
-
-*Status: "PrinterError: paper tray needs attention"
-
-*Status: "PrinterError: cover is open"
-
-*Status: "PrinterError: print ribbon needs to be changed"
-
-*Status: "PrinterError: print ribbon is jammed"
-
-*Status: "PrinterError: paper is jammed"
-
-*Status: "PrinterError: requires 8.5 x 11 in, Paper"
-
-*Status: "PrinterError: requires A4, Paper"
-
-*Status: "PrinterError: requires 8.5 x 12 in, Paper"
-
-*Status: "PrinterError: requires 210 x 307 mm, Paper"
-
-*Status: "PrinterError: requires 8.5 x 14 in, Paper"
-
-*Status: "PrinterError: requires 210 x 358 mm, Paper"
-
-*Status: "PrinterError: requires 9.5 x 14 in, Paper"
-
-*Status: "PrinterError: requires 8.5 x 11 in, Transparency"
-
-*Status: "PrinterError: requires A4, Transparency"
-
-*Status: "PrinterError: requires 8.5 x 12 in, Transparency"
-
-*Status: "PrinterError: requires 210 x 307 mm, Transparency"
-
-*Status: "PrinterError: requires 8.5 x 14 in, Transparency"
-
-*Status: "PrinterError: requires 210 x 358 mm, Transparency"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Three-Color Ribbon/XtraLife Media/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Three-Color Ribbon/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Black Ribbon/XtraLife Media"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/XtraLife Media/CMY"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE Oversize Four-Color Ribbon/CMYK"
-
-*Status: "PrinterError: requires KODAK DIGITAL SCIENCE 5x7 Color Ribbon"
-
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*Source: "LocalTalk"
-
-*Source: "Parallel"
-
-*Source: "EtherTalk"
-
-*Source: "IPX"
-
-*Source: "TcpIp"
-
-*Source: "SCSIComm"
-
-
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "requires service - \ServiceCodeNumber\"
-
-*PrinterError: "paper tray needs attention"
-
-*PrinterError: "cover is open"
-
-*PrinterError: "print ribbon needs to be changed"
-
-*PrinterError: "print ribbon is jammed"
-
-*PrinterError: "paper is jammed"
-
-*PrinterError: "requires 8.5 x 11 in, Paper"
-
-*PrinterError: "requires A4, Paper"
-
-*PrinterError: "requires 8.5 x 12 in, Paper"
-
-*PrinterError: "requires 210 x 307 mm, Paper"
-
-*PrinterError: "requires 8.5 x 14 in, Paper"
-
-*PrinterError: "requires 210 x 358 mm, Paper"
-
-*PrinterError: "requires 9.5 x 14 in, Paper"
-
-*PrinterError: "requires 8.5 x 11 in, Transparency"
-
-*PrinterError: "requires A4, Transparency"
-
-*PrinterError: "requires 8.5 x 12 in, Transparency"
-
-*PrinterError: "requires 210 x 307 mm, Transparency"
-
-*PrinterError: "requires 8.5 x 14 in, Transparency"
-
-*PrinterError: "requires 210 x 358 mm, Transparency"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Three-Color Ribbon/XtraLife Media/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Three-Color Ribbon/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Black Ribbon/XtraLife Media"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Three-Color Ribbon/XtraLife Media/CMY"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE Oversize Four-Color Ribbon/CMYK"
-
-*PrinterError: "requires KODAK DIGITAL SCIENCE 5x7 Color Ribbon"
-
-
-
-*% end of PPD
-
-
-
-*% The byte count of this file should be exactly 022160 or 023295
-*% depending on the filesystem it resides in.
-*% end of PPD file for Fiery XJK 1000 8650
diff --git a/psprint_config/configuration/ppds/EP_08001.PS b/psprint_config/configuration/ppds/EP_08001.PS
deleted file mode 100644
index 9391bd02b2b9..000000000000
--- a/psprint_config/configuration/ppds/EP_08001.PS
+++ /dev/null
@@ -1,671 +0,0 @@
-*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"
-*FileVersion: "2.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_08001.PPD"
-*Product: "(Stylus COLOR 800)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusCOLOR800 v2015.802"
-*ShortNickName: "EPSON StylusCOLOR800 v2015.802"
-*NickName: "EPSON StylusCOLOR800 v2015.802"
-*Manufacturer: "Epson"
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 13 dict
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [612 792] (Letter) put
- dup [396 612] (Statement) put
- dup [612 1008] (Legal) put
- dup [522 756] (Executive) put
- dup [684 297] (Env10Rotated) put
- dup [459 323] (EnvC6Rotated) put
- dup [624 312] (EnvPRC5Rotated) put
- dup [420 595] (A5) put
- dup [297 420] (A6) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 603 288"
-*ImageableArea EnvC6Rotated/C6 Envelope: "9 40 450 314"
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 603 303"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension Letter: "612 792"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-*PaperDimension EnvC6Rotated/C6 Envelope: "459 323"
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-*PaperDimension A5: "420 595"
-*PaperDimension A6: "297 420"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-
-*MaxMediaWidth: "612"
-*MaxMediaHeight: "1008"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 612
-*ParamCustomPageSize Height: 2 points 284 1008
-*ParamCustomPageSize WidthOffset: 3 points 0 612
-*ParamCustomPageSize HeightOffset: 4 points 0 1008
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 50 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD2) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransD1) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperD2) 1]
- [(Paper_Fine_HighSpeed) (PaperD2) 3]
- [(Paper_SuperFine) (PaperD1) 9]
- [(FinePaper) (FineD1) 1]
- [(SuperFinePaper) (SuperFineD1) 1]
- [(SuperFinePaper1440) (SuperFineD2) 9]
- [(GlossyPaper) (GlossyPaperD1) 1]
- [(GlossyPaper1440) (GlossyPaperD2) 9]
- [(GlossyFilm) (GlossyFilmD1) 1]
- [(GlossyFilm1440) (GlossyFilmD2) 9]
- [(OHP) (TransD1) 1]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Gray: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-*% Last edited on June 5, 1997
-*% The byte count of this file should be exactly 027327 or 027998
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusCOLOR800 (Win95)
diff --git a/psprint_config/configuration/ppds/EP_15201.PS b/psprint_config/configuration/ppds/EP_15201.PS
deleted file mode 100644
index bcb9e7d5d016..000000000000
--- a/psprint_config/configuration/ppds/EP_15201.PS
+++ /dev/null
@@ -1,917 +0,0 @@
-*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"
-*FileVersion: "2.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_15201.PPD"
-*Product: "(Stylus COLOR 1520)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusCOLOR1520 v2015.802"
-*ShortNickName: "EPSON StylusCOLOR1520 v2015.802"
-*NickName: "EPSON StylusCOLOR1520 v2015.802"
-*Manufacturer: "Epson"
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A2: "
- 2 dict dup /PageSize [1191 1684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3Rotated/A3 Landscape: "
- 2 dict dup /PageSize [1191 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B3: "
- 2 dict dup /PageSize [1032 1460] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4Rotated/B4 Landscape: "
- 2 dict dup /PageSize [1032 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Ledger/Ledger Landscape: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LegalRotated/Legal Landscape: "
- 2 dict dup /PageSize [1008 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize AnsiC/US C-size: "
- 2 dict dup /PageSize [1224 1584] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC5Rotated/C5 Envelope: "
- 2 dict dup /PageSize [649 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 30 dict
- dup [1191 1684] (A2) put
- dup [932 1369] (A3.Extra) put
- dup [842 1191] (A3) put
- dup [1191 842] (A3Rotated) put
- dup [1032 1460] (B3) put
- dup [729 1032] (B4) put
- dup [1032 729] (B4Rotated) put
- dup [595 842] (A4) put
- dup [842 595] (A4Rotated) put
- dup [516 729] (B5) put
- dup [729 516] (B5Rotated) put
- dup [792 1224] (Tabloid) put
- dup [1224 792] (Ledger) put
- dup [612 792] (Letter) put
- dup [792 612] (LetterRotated) put
- dup [396 612] (Statement) put
- dup [612 396] (StatementRotated) put
- dup [612 1008] (Legal) put
- dup [1008 612] (LegalRotated) put
- dup [1224 1584] (AnsiC) put
- dup [684 297] (Env10Rotated) put
- dup [522 756] (Executive) put
- dup [756 522] (ExecutiveRotated) put
- dup [649 459] (EnvC5Rotated) put
- dup [624 312] (EnvPRC5Rotated) put
- dup [420 595] (A5) put
- dup [595 420] (A5Rotated) put
- dup [297 420] (A6) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A2: "
- 2 dict dup /PageSize [1191 1684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3Rotated/A3 Landscape: "
- 2 dict dup /PageSize [1191 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B3: "
- 2 dict dup /PageSize [1032 1460] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4Rotated/B4 Landscape: "
- 2 dict dup /PageSize [1032 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Ledger/Ledger Landscape: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LegalRotated/Legal Landscape: "
- 2 dict dup /PageSize [1008 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion AnsiC/US C-size: "
- 2 dict dup /PageSize [1224 1584] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC5Rotated/C5 Envelope: "
- 2 dict dup /PageSize [649 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A2: "9 40 979 1675"
-*ImageableArea A3.Extra/Super A3/B: "9 40 923 1360"
-*ImageableArea A3: "9 40 832 1182"
-*ImageableArea A3Rotated/A3 Landscape: "9 40 979 832"
-*ImageableArea B3: "9 40 979 1450"
-*ImageableArea B4: "9 40 719 1023"
-*ImageableArea B4Rotated/B4 Landscape: "9 40 979 719"
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea A4Rotated/A4 Landscape: "9 40 832 586"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea B5Rotated/B5 Landscape: "9 40 720 507"
-*ImageableArea Tabloid/Ledger: "9 40 783 1215"
-*ImageableArea Ledger/Ledger Landscape: "9 40 979 783"
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea LetterRotated/Letter Landscape: "9 40 782 603"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea StatementRotated/Half Letter Landscape: "9 40 603 387"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea LegalRotated/Legal Landscape: "9 40 979 603"
-*ImageableArea AnsiC/US C-size: "9 40 979 1575"
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 675 288"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea ExecutiveRotated/Executive Landscape: "9 40 747 513"
-*ImageableArea EnvC5Rotated/C5 Envelope: "9 40 640 450"
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 615 303"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A5Rotated/A5 Landscape: "9 40 586 411"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A2: "1191 1684"
-*PaperDimension A3.Extra/Super A3/B: "932 1369"
-*PaperDimension A3: "842 1191"
-*PaperDimension A3Rotated/A3 Landscape: "1191 842"
-*PaperDimension B3: "1032 1460"
-*PaperDimension B4: "729 1032"
-*PaperDimension B4Rotated/B4 Landscape: "1032 729"
-*PaperDimension A4: "595 842"
-*PaperDimension A4Rotated/A4 Landscape: "842 595"
-*PaperDimension B5: "516 729"
-*PaperDimension B5Rotated/B5 Landscape: "729 516"
-*PaperDimension Tabloid/Ledger: "792 1224"
-*PaperDimension Ledger/Ledger Landscape: "1224 792"
-*PaperDimension Letter: "612 792"
-*PaperDimension LetterRotated/Letter Landscape: "792 612"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension StatementRotated/Half Letter Landscape: "612 396"
-*PaperDimension Legal: "612 1008"
-*PaperDimension LegalRotated/Legal Landscape: "1008 612"
-*PaperDimension AnsiC/US C-size: "1224 1584"
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension ExecutiveRotated/Executive Landscape: "756 522"
-*PaperDimension EnvC5Rotated/C5 Envelope: "649 459"
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-*PaperDimension A5: "420 595"
-*PaperDimension A5Rotated/A5 Landscape: "595 420"
-*PaperDimension A6: "297 420"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-
-*MaxMediaWidth: "1224"
-*MaxMediaHeight: "3168"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 1224
-*ParamCustomPageSize Height: 2 points 284 3168
-*ParamCustomPageSize WidthOffset: 3 points 0 1224
-*ParamCustomPageSize HeightOffset: 4 points 0 3168
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end
- dup userdict exch /EPCustomPageSizeDict exch put
- setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 50 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD2) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransD1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm/Back light film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmD1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm1440/Back light film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmD2) put put setpagedevice"
-*End
-*EPMediaQualityMode CanvasCloth/Ink Jet Canvas Cloth-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (CanvasClothD1) put put setpagedevice"
-*End
-*EPMediaQualityMode CanvasCloth1440/Ink Jet Canvas Cloth-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (CanvasClothD2) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperD2) 1]
- [(Paper_Fine_HighSpeed) (PaperD2) 3]
- [(Paper_SuperFine) (PaperD1) 9]
- [(FinePaper) (FineD1) 1]
- [(SuperFinePaper) (SuperFineD1) 1]
- [(SuperFinePaper1440) (SuperFineD2) 9]
- [(GlossyPaper) (GlossyPaperD1) 1]
- [(GlossyPaper1440) (GlossyPaperD2) 9]
- [(GlossyFilm) (GlossyFilmD1) 1]
- [(GlossyFilm1440) (GlossyFilmD2) 9]
- [(OHP) (TransD1) 1]
- [(BackLightFilm) (BackLightFilmD1) 1]
- [(BackLightFilm1440) (BackLightFilmD2) 9]
- [(CanvasCloth) (CanvasClothD1) 1]
- [(CanvasCloth1440) (CanvasClothD2) 9]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Gray: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*OpenUI *EPPaperMode/Paper option: PickOne
-*OrderDependency: 10 AnySetup *EPPaperMode
-*DefaultEPPaperMode: False
-*EPPaperMode True/Print on roll paper: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Roll) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*EPPaperMode False/Print on single sheets: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Cut) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*?EPPaperMode: "
- save
- (Def) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec
- {(True)}{(False)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *EPPaperMode
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode CanvasCloth
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode CanvasCloth1440
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode CanvasCloth
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode CanvasCloth1440
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth1440 *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-*% Last edited on Aug 25, 1997
-*% The byte count of this file should be exactly 037333 or 038250
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusCOLOR1520 (Win95)
diff --git a/psprint_config/configuration/ppds/EP_30001.PS b/psprint_config/configuration/ppds/EP_30001.PS
deleted file mode 100644
index bbb90cd6edd2..000000000000
--- a/psprint_config/configuration/ppds/EP_30001.PS
+++ /dev/null
@@ -1,916 +0,0 @@
-*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"
-*FileVersion: "2.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_30001.PPD"
-*Product: "(Stylus COLOR 3000)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusCOLOR3000 v2015.802"
-*ShortNickName: "EPSON StylusCOLOR3000 v2015.802"
-*NickName: "EPSON StylusCOLOR3000 v2015.802"
-*Manufacturer: "Epson"
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A2: "
- 2 dict dup /PageSize [1191 1684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3Rotated/A3 Landscape: "
- 2 dict dup /PageSize [1191 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B3: "
- 2 dict dup /PageSize [1032 1460] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4Rotated/B4 Landscape: "
- 2 dict dup /PageSize [1032 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Ledger/Ledger Landscape: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LegalRotated/Legal Landscape: "
- 2 dict dup /PageSize [1008 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize AnsiC/US C-size: "
- 2 dict dup /PageSize [1224 1584] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC5Rotated/C5 Envelope: "
- 2 dict dup /PageSize [649 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 30 dict
- dup [1191 1684] (A2) put
- dup [932 1369] (A3.Extra) put
- dup [842 1191] (A3) put
- dup [1191 842] (A3Rotated) put
- dup [1032 1460] (B3) put
- dup [729 1032] (B4) put
- dup [1032 729] (B4Rotated) put
- dup [595 842] (A4) put
- dup [842 595] (A4Rotated) put
- dup [516 729] (B5) put
- dup [729 516] (B5Rotated) put
- dup [792 1224] (Tabloid) put
- dup [1224 792] (Ledger) put
- dup [612 792] (Letter) put
- dup [792 612] (LetterRotated) put
- dup [396 612] (Statement) put
- dup [612 396] (StatementRotated) put
- dup [612 1008] (Legal) put
- dup [1008 612] (LegalRotated) put
- dup [1224 1584] (AnsiC) put
- dup [684 297] (Env10Rotated) put
- dup [522 756] (Executive) put
- dup [756 522] (ExecutiveRotated) put
- dup [649 459] (EnvC5Rotated) put
- dup [624 312] (EnvPRC5Rotated) put
- dup [420 595] (A5) put
- dup [595 420] (A5Rotated) put
- dup [297 420] (A6) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A2: "
- 2 dict dup /PageSize [1191 1684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3Rotated/A3 Landscape: "
- 2 dict dup /PageSize [1191 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B3: "
- 2 dict dup /PageSize [1032 1460] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4Rotated/B4 Landscape: "
- 2 dict dup /PageSize [1032 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Ledger/Ledger Landscape: "
- 2 dict dup /PageSize [1224 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LegalRotated/Legal Landscape: "
- 2 dict dup /PageSize [1008 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion AnsiC/US C-size: "
- 2 dict dup /PageSize [1224 1584] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC5Rotated/C5 Envelope: "
- 2 dict dup /PageSize [649 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A2: "15 40 1176 1675"
-*ImageableArea A3.Extra/Super A3/B: "9 40 923 1360"
-*ImageableArea A3: "9 40 832 1182"
-*ImageableArea A3Rotated/A3 Landscape: "15 40 1176 832"
-*ImageableArea B3: "9 40 1023 1450"
-*ImageableArea B4: "9 40 719 1023"
-*ImageableArea B4Rotated/B4 Landscape: "9 40 1023 719"
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea A4Rotated/A4 Landscape: "9 40 832 586"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea B5Rotated/B5 Landscape: "9 40 720 507"
-*ImageableArea Tabloid/Ledger: "9 40 783 1215"
-*ImageableArea Ledger/Ledger Landscape: "15 40 1176 783"
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea LetterRotated/Letter Landscape: "9 40 782 603"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea StatementRotated/Half Letter Landscape: "9 40 603 387"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea LegalRotated/Legal Landscape: "9 40 999 603"
-*ImageableArea AnsiC/US C-size: "15 40 1176 1575"
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 675 288"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea ExecutiveRotated/Executive Landscape: "9 40 747 513"
-*ImageableArea EnvC5Rotated/C5 Envelope: "9 40 640 450"
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 615 303"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A5Rotated/A5 Landscape: "9 40 586 411"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A2: "1191 1684"
-*PaperDimension A3.Extra/Super A3/B: "932 1369"
-*PaperDimension A3: "842 1191"
-*PaperDimension A3Rotated/A3 Landscape: "1191 842"
-*PaperDimension B3: "1032 1460"
-*PaperDimension B4: "729 1032"
-*PaperDimension B4Rotated/B4 Landscape: "1032 729"
-*PaperDimension A4: "595 842"
-*PaperDimension A4Rotated/A4 Landscape: "842 595"
-*PaperDimension B5: "516 729"
-*PaperDimension B5Rotated/B5 Landscape: "729 516"
-*PaperDimension Tabloid/Ledger: "792 1224"
-*PaperDimension Ledger/Ledger Landscape: "1224 792"
-*PaperDimension Letter: "612 792"
-*PaperDimension LetterRotated/Letter Landscape: "792 612"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension StatementRotated/Half Letter Landscape: "612 396"
-*PaperDimension Legal: "612 1008"
-*PaperDimension LegalRotated/Legal Landscape: "1008 612"
-*PaperDimension AnsiC/US C-size: "1224 1584"
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension ExecutiveRotated/Executive Landscape: "756 522"
-*PaperDimension EnvC5Rotated/C5 Envelope: "649 459"
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-*PaperDimension A5: "420 595"
-*PaperDimension A5Rotated/A5 Landscape: "595 420"
-*PaperDimension A6: "297 420"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-
-*MaxMediaWidth: "1224"
-*MaxMediaHeight: "3168"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 1224
-*ParamCustomPageSize Height: 2 points 284 3168
-*ParamCustomPageSize WidthOffset: 3 points 0 1224
-*ParamCustomPageSize HeightOffset: 4 points 0 3168
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end
- dup userdict exch /EPCustomPageSizeDict exch put
- setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 50 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperD2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmD2) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransD1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm/Back light film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmD1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm1440/Back light film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmD2) put put setpagedevice"
-*End
-*EPMediaQualityMode CanvasCloth/Ink Jet Canvas Cloth-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (CanvasClothD1) put put setpagedevice"
-*End
-*EPMediaQualityMode CanvasCloth1440/Ink Jet Canvas Cloth-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (CanvasClothD2) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperD2) 1]
- [(Paper_Fine_HighSpeed) (PaperD2) 3]
- [(Paper_SuperFine) (PaperD1) 9]
- [(FinePaper) (FineD1) 1]
- [(SuperFinePaper) (SuperFineD1) 1]
- [(SuperFinePaper1440) (SuperFineD2) 9]
- [(GlossyPaper) (GlossyPaperD1) 1]
- [(GlossyPaper1440) (GlossyPaperD2) 9]
- [(GlossyFilm) (GlossyFilmD1) 1]
- [(GlossyFilm1440) (GlossyFilmD2) 9]
- [(OHP) (TransD1) 1]
- [(BackLightFilm) (BackLightFilmD1) 1]
- [(BackLightFilm1440) (BackLightFilmD2) 9]
- [(CanvasCloth) (CanvasClothD1) 1]
- [(CanvasCloth1440) (CanvasClothD2) 9]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Gray: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*OpenUI *EPPaperMode/Paper option: PickOne
-*OrderDependency: 10 AnySetup *EPPaperMode
-*DefaultEPPaperMode: False
-*EPPaperMode True/Print on roll paper: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Roll) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*EPPaperMode False/Print on single sheets: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Cut) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*?EPPaperMode: "
- save
- (Def) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec
- {(True)}{(False)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *EPPaperMode
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode CanvasCloth
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode CanvasCloth1440
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode CanvasCloth
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode CanvasCloth1440
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode CanvasCloth1440 *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-*% Last edited on Aug 25, 1997
-*% The byte count of this file should be exactly 037341 or 038257
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusCOLOR3000(Win95)
diff --git a/psprint_config/configuration/ppds/EP_50001.PS b/psprint_config/configuration/ppds/EP_50001.PS
deleted file mode 100644
index bd2f761966f7..000000000000
--- a/psprint_config/configuration/ppds/EP_50001.PS
+++ /dev/null
@@ -1,876 +0,0 @@
-*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"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_50001.PPD"
-*Product: "(Stylus Pro 5000)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusPro5000 v2015.802"
-*ShortNickName: "EPSON StylusPro5000 v2015.802"
-*NickName: "EPSON StylusPro5000 v2015.802"
-*Manufacturer: "Epson"
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Option cassette: Boolean
-*DefaultOption1: False
-*Option1 True/True: ""
-*Option1 False/False: ""
-*?Option1 : "
- (OptionCassette) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec
- {(True)}{(False)}ifelse
- = flush"
-*End
-*CloseUI: *Option1
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Lower
-*UIConstraints: *InputSlot Lower *Option1 False
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10/#10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC5/C5 Envelope: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC6/C6 Envelope: "
- 2 dict dup /PageSize [323 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvDL/DL Envelope: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 25 dict
- dup [932 1369] (A3.Extra) put
- dup [842 1191] (A3) put
- dup [729 1032] (B4) put
- dup [595 842] (A4) put
- dup [842 595] (A4Rotated) put
- dup [516 729] (B5) put
- dup [729 516] (B5Rotated) put
- dup [792 1224] (Tabloid) put
- dup [612 792] (Letter) put
- dup [792 612] (LetterRotated) put
- dup [396 612] (Statement) put
- dup [612 396] (StatementRotated) put
- dup [612 1008] (Legal) put
- dup [522 756] (Executive) put
- dup [756 522] (ExecutiveRotated) put
- dup [297 684] (Env10) put
- dup [459 649] (EnvC5) put
- dup [323 459] (EnvC6) put
- dup [312 624] (EnvDL) put
- dup [420 595] (A5) put
- dup [595 420] (A5Rotated) put
- dup [297 420] (A6) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- dup [288 432] (PhotoPaper) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A3.Extra/Super A3/B: "
- 2 dict dup /PageSize [932 1369] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4Rotated/A4 Landscape: "
- 2 dict dup /PageSize [842 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5Rotated/B5 Landscape: "
- 2 dict dup /PageSize [729 516] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Tabloid/Ledger: "
- 2 dict dup /PageSize [792 1224] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion LetterRotated/Letter Landscape: "
- 2 dict dup /PageSize [792 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion StatementRotated/Half Letter Landscape: "
- 2 dict dup /PageSize [612 396] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion ExecutiveRotated/Executive Landscape: "
- 2 dict dup /PageSize [756 522] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10/#10 Envelope: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC5/C5 Envelope: "
- 2 dict dup /PageSize [459 649] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC6/C6 Envelope: "
- 2 dict dup /PageSize [323 459] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvDL/DL Envelope: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5Rotated/A5 Landscape: "
- 2 dict dup /PageSize [595 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A3.Extra/Super A3/B: "9 40 923 1360"
-*ImageableArea A3: "9 40 832 1182"
-*ImageableArea B4: "9 40 719 1023"
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea A4Rotated/A4 Landscape: "9 40 832 586"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea B5Rotated/B5 Landscape: "9 40 720 507"
-*ImageableArea Tabloid/Ledger: "9 40 783 1215"
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea LetterRotated/Letter Landscape: "9 40 782 603"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea StatementRotated/Half Letter Landscape: "9 40 603 387"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea ExecutiveRotated/Executive Landscape: "9 40 747 513"
-*ImageableArea Env10/#10 Envelope: "9 40 288 675"
-*ImageableArea EnvC5/C5 Envelope: "9 40 450 640"
-*ImageableArea EnvC6/C6 Envelope: "9 40 314 450"
-*ImageableArea EnvDL/DL Envelope: "9 40 303 615"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A5Rotated/A5 Landscape: "9 40 586 411"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-*ImageableArea PhotoPaper/Photo Paper 4x6: "9 40 279 423"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A3.Extra/Super A3/B: "932 1369"
-*PaperDimension A3: "842 1191"
-*PaperDimension B4: "729 1032"
-*PaperDimension A4: "595 842"
-*PaperDimension A4Rotated/A4 Landscape: "842 595"
-*PaperDimension B5: "516 729"
-*PaperDimension B5Rotated/B5 Landscape: "729 516"
-*PaperDimension Tabloid/Ledger: "792 1224"
-*PaperDimension Letter: "612 792"
-*PaperDimension LetterRotated/Letter Landscape: "792 612"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension StatementRotated/Half Letter Landscape: "612 396"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension ExecutiveRotated/Executive Landscape: "756 522"
-*PaperDimension Env10/#10 Envelope: "297 684"
-*PaperDimension EnvC5/C5 Envelope: "459 649"
-*PaperDimension EnvC6/C6 Envelope: "323 459"
-*PaperDimension EnvDL/DL Envelope: "312 624"
-*PaperDimension A5: "420 595"
-*PaperDimension A5Rotated/A5 Landscape: "595 420"
-*PaperDimension A6: "297 420"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-*PaperDimension PhotoPaper/Photo Paper 4x6: "288 432"
-
-*MaxMediaWidth: "932"
-*MaxMediaHeight: "3168"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 932
-*ParamCustomPageSize Height: 2 points 284 3168
-*ParamCustomPageSize WidthOffset: 3 points 0 932
-*ParamCustomPageSize HeightOffset: 4 points 0 3168
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end
- dup userdict exch /EPCustomPageSizeDict exch put
- setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Standard cassette: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Upper) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-"
-*End
-*InputSlot Lower/Option cassette: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Lower) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-"
-*End
-*?InputSlot: "
- save
- (DefCassette) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec
- {(Upper)}{(Lower)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenUI *ManualFeed/ManualFeed: PickOne
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineF1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineF1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineF2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperF1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmF2) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransF1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm1440/Back light film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmF2) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperF2) 1]
- [(Paper_Fine_HighSpeed) (PaperF2) 3]
- [(Paper_SuperFine) (PaperF1) 9]
- [(FinePaper) (FineF1) 1]
- [(SuperFinePaper) (SuperFineF1) 1]
- [(SuperFinePaper1440) (SuperFineF2) 9]
- [(GlossyPaper) (GlossyPaperF1) 1]
- [(GlossyPaper1440) (GlossyPaperF2) 9]
- [(GlossyFilm1440) (GlossyFilmF2) 9]
- [(OHP) (TransF1) 1]
- [(BackLightFilm1440) (BackLightFilmF2) 9]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Gray: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*OpenUI *EPPaperMode/Paper option: PickOne
-*OrderDependency: 10 AnySetup *EPPaperMode
-*DefaultEPPaperMode: False
-*EPPaperMode True/Print on roll paper: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Roll) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*EPPaperMode False/Print on single sheets: "
- /CPSI /ProcSet resourcestatus
- {
- pop pop (Cut) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec pop
- }if
-
- userdict /EPCustomPageSizeDict known
- {
- userdict /EPCustomPageSizeDict get setpagedevice
- } if
-"
-*End
-*?EPPaperMode: "
- save
- (Def) 32 string /CPSI /ProcSet
- findresource /externalcommand get exec
- {(True)}{(False)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *EPPaperMode
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm1440
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm1440
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm1440 *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-*% Last edited on Aug 25, 1997(Win95)
-*% The byte count of this file should be exactly 034027 or 034903
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusPro5000
diff --git a/psprint_config/configuration/ppds/EP_82F21.PS b/psprint_config/configuration/ppds/EP_82F21.PS
deleted file mode 100644
index ae861eb5253a..000000000000
--- a/psprint_config/configuration/ppds/EP_82F21.PS
+++ /dev/null
@@ -1,952 +0,0 @@
-*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"
-*FileVersion: "1.2"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_82F21.PPD"
-*Product: "(EPSON LP-8200PS2)"
-*PSVersion: "(2015.107) 1"
-*ModelName: "EPSON LP-8200PS2 2 Font"
-*Manufacturer: "Epson"
-*ShortNickName: "EPSON LP-8200PS2 2 Font"
-*NickName: "EPSON LP-8200PS2 v2015.107"
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Option Cassette: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/None: ""
-*?Option1 : "
- currentpagedevice /InputAttributes get 2 get
- null eq {(False)}{(True)}ifelse
- = flush"
-*End
-*CloseUI: *Option1
-
-*OpenUI *Option2/HDD: Boolean
-*DefaultOption2: False
-*Option2 True/Connected: ""
-*Option2 False/None: ""
-*?Option2: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Type1 Coprocessor: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/None: ""
-*?Option3: "
- save
- (False) (*) {
- (Type1Coprocessor) eq {pop (True) exit}if
- } =string /HWOptions resourceforall
- = flush
- restore"
-*End
-*CloseUI: *Option3
-
-*OpenUI *Option4/Ethernet Option: Boolean
-*DefaultOption4: False
-*Option4 True/Installed: ""
-*Option4 False/None: ""
-*?Option4: "
- save
- /AdminUtils /ProcSet findresource begin EtherTalkOptionInstalled end
- {(True)}{(False)}ifelse
- = flush
- restore"
-*End
-*CloseUI: *Option4
-
-*OpenUI *InstalledMemory/Memory: PickOne
-*DefaultInstalledMemory: 8Meg
-*InstalledMemory 8Meg/Standard(8MB): ""
-*InstalledMemory 12Meg/12MB: ""
-*InstalledMemory 16Meg/16MB: ""
-*InstalledMemory 20Meg/20MB: ""
-*InstalledMemory 24Meg/24MB: ""
-*InstalledMemory 28Meg/28MB: ""
-*InstalledMemory 32Meg/32MB: ""
-*InstalledMemory 40Meg/40MB: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get 16#100000 div 8 sub 4 div cvi
- [(8Meg) (12Meg) (16Meg) (20Meg) (24Meg) (28Meg) (32Meg) () (40Meg)]
- exch get = flush
- restore
- "
-*End
-*CloseUI: *InstalledMemory
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *MediaType Thick
-*UIConstraints: *InputSlot Lower *MediaType Thick
-
-*UIConstraints: *InstalledMemory 8Meg *PageSize MaxPage
-*UIConstraints: *InstalledMemory 8Meg *PageRegion MaxPage
-
-*UIConstraints: *InputSlot Lower *Option1 False
-
-*UIConstraints: *MediaType Thick *InputSlot Upper
-*UIConstraints: *MediaType Thick *InputSlot Lower
-
-*UIConstraints: *PageSize MaxPage *InstalledMemory 8Meg
-*UIConstraints: *PageRegion MaxPage *InstalledMemory 8Meg
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP TBCP
-
-*FreeVM: "2920000"
-*VMOption 8Meg: "2920000"
-*VMOption 12Meg: "2820000"
-*VMOption 16Meg: "6880000"
-*VMOption 20Meg: "10850000"
-*VMOption 24Meg: "14900000"
-*VMOption 28Meg: "18930000"
-*VMOption 32Meg: "23000000"
-*VMOption 40Meg: "31110000"
-
-
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42 /FontType resourcestatus {pop pop (Type42)}{(None)}ifelse
- = flush
- restore
-"
-*End
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "10"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-*OpenUI *Resolution/Resolution: PickOne
-*OrderDependency: 20 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 600dpi/Fine: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 300dpi/Quick: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Job Patch File ===============
-*JobPatchFile 0: "
- 10 dict dup /EPSONdict exch def begin
- /ThickPaper false def
- /SetPaper {
- 3 dict
- dup /PageSize 5 -1 roll put
- dup /ImagingBBox 4 -1 roll put
- dup ThickPaper {/MediaWeight 110 put}{/MediaWeight 75 put}ifelse
- setpagedevice
- }bind def
- end
-
-"
-*End
-
-*% Halftone Information ===============
-*DefaultHalftoneType: 1
-*ScreenFreq: "85.0"
-*ScreenAngle: "45.0"
-*ResScreenFreq 300dpi: "60.0"
-*ResScreenAngle 300dpi: "45.0"
-*ResScreenFreq 600dpi: "85.0"
-*ResScreenAngle 600dpi: "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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/RIT: Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing:True
-*Smoothing True/ON: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/OFF: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save
- currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *Smoothing
-
-
-*OpenUI *EPHT/Halftone: Boolean
-*OrderDependency: 50 AnySetup *EPHT
-*DefaultEPHT:True
-*EPHT True/Brilliant Screens: "
- /AdminUtils /ProcSet findresource begin
- false setDisableABS end
- currentpagedevice setpagedevice
-"
-*End
-*EPHT False/Spot: "
- /AdminUtils /ProcSet findresource begin
- true setDisableABS end
- currentpagedevice setpagedevice
-"
-*End
-*?EPHT: "
- save
- /AdminUtils /ProcSet findresource begin disableABS end
- {(False)}{(True)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *EPHT
-
-
-*% Paper Handling ===================
-*LandscapeOrientation: Any
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize Letter: "
- EPSONdict begin [612 792] null SetPaper end"
-*End
-*PageSize Legal: "
- EPSONdict begin [612 1008] null SetPaper end"
-*End
-*PageSize Tabloid/B: "
- EPSONdict begin [792 1224] null SetPaper end"
-*End
-*PageSize A3: "
- EPSONdict begin [842 1191] null SetPaper end"
-*End
-*PageSize A4: "
- EPSONdict begin [595 842] null SetPaper end"
-*End
-*PageSize A5: "
- EPSONdict begin [420 595] null SetPaper end"
-*End
-*PageSize B4: "
- EPSONdict begin [729 1032] null SetPaper end"
-*End
-*PageSize B5: "
- EPSONdict begin [516 729] null SetPaper end"
-*End
-*PageSize Folio: "
- EPSONdict begin [595 935] null SetPaper end"
-*End
-*PageSize Executive: "
- EPSONdict begin [522 756] null SetPaper end"
-*End
-*PageSize Env10: "
- EPSONdict begin [297 684] null SetPaper end"
-*End
-*PageSize EnvDL: "
- EPSONdict begin [312 624] null SetPaper end"
-*End
-*PageSize EnvC5: "
- EPSONdict begin [459 649] null SetPaper end"
-*End
-*PageSize FanFoldGermanLegal/GOVLegal: "
- EPSONdict begin [612 936] null SetPaper end"
-*End
-*PageSize Postcard/Hagaki: "
- EPSONdict begin [284 419] null SetPaper end"
-*End
-*PageSize EnvMonarch/Monarch: "
- EPSONdict begin [279 540] null SetPaper end"
-*End
-*PageSize Statement: "
- EPSONdict begin [396 612] null SetPaper end"
-*End
-*PageSize GOVLetter: "
- EPSONdict begin [576 756] null SetPaper end"
-*End
-*PageSize A3L: "
- EPSONdict begin [842 1440] null SetPaper end"
-*End
-*PageSize MaxPage/Banner: "
- EPSONdict begin [842 2551] null SetPaper end"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 18 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [420 595] (A5) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [595 935] (Folio) put
- dup [522 756] (Executive) put
- dup [297 684] (Env10) put
- dup [312 624] (EnvDL) put
- dup [459 649] (EnvC5) put
- dup [612 936] (FanFoldGermanLegal) put
- dup [284 419] (Postcard) put
- dup [279 540] (EnvMonarch) put
- dup [396 612] (Statement) put
- dup [576 756] (GOVLetter) put
- dup [842 1440] (A3L) put
- dup [842 2551] (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 pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion Letter: "
- EPSONdict begin [612 792] null SetPaper end"
-*End
-*PageRegion Legal: "
- EPSONdict begin [612 1008] null SetPaper end"
-*End
-*PageRegion Tabloid/B: "
- EPSONdict begin [792 1224] null SetPaper end"
-*End
-*PageRegion A3: "
- EPSONdict begin [842 1191] null SetPaper end"
-*End
-*PageRegion A4: "
- EPSONdict begin [595 842] null SetPaper end"
-*End
-*PageRegion A5: "
- EPSONdict begin [420 595] null SetPaper end"
-*End
-*PageRegion B4: "
- EPSONdict begin [729 1032] null SetPaper end"
-*End
-*PageRegion B5: "
- EPSONdict begin [516 729] null SetPaper end"
-*End
-*PageRegion Folio: "
- EPSONdict begin [595 935] null SetPaper end"
-*End
-*PageRegion Executive: "
- EPSONdict begin [522 756] null SetPaper end"
-*End
-*PageRegion Env10: "
- EPSONdict begin [297 684] null SetPaper end"
-*End
-*PageRegion EnvDL: "
- EPSONdict begin [312 624] null SetPaper end"
-*End
-*PageRegion EnvC5: "
- EPSONdict begin [459 649] null SetPaper end"
-*End
-*PageRegion FanFoldGermanLegal/GOVLegal: "
- EPSONdict begin [612 936] null SetPaper end"
-*End
-*PageRegion Postcard/Hagaki: "
- EPSONdict begin [284 419] null SetPaper end"
-*End
-*PageRegion EnvMonarch/Monarch: "
- EPSONdict begin [279 540] null SetPaper end"
-*End
-*PageRegion Statement: "
- EPSONdict begin [396 612] null SetPaper end"
-*End
-*PageRegion GOVLetter: "
- EPSONdict begin [576 756] null SetPaper end"
-*End
-*PageRegion A3L: "
- EPSONdict begin [842 1440] null SetPaper end"
-*End
-*PageRegion MaxPage/Banner: "
- EPSONdict begin [842 2551] null SetPaper end"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea Letter: "3.66 3.60 607.5 786.96 "
-*ImageableArea Legal: "3.60 3.66 606.48 1002.54 "
-*ImageableArea Tabloid/B: "3.60 3.66 789.96 1218.06 "
-*ImageableArea A3: "3.60 3.66 836.88 1184.94 "
-*ImageableArea A4: "3.66 3.60 589.74 836.88 "
-*ImageableArea A5: "3.66 3.60 413.1 587.28 "
-*ImageableArea B4: "3.60 3.66 717.84 1026.06 "
-*ImageableArea B5: "3.66 3.60 508.14 721.68"
-*ImageableArea Folio: "3.60 3.66 587.28 927.18 "
-*ImageableArea Executive: "3.66 3.60 514.38 744.72"
-*ImageableArea Env10: "3.60 3.66 291.6 676.14 "
-*ImageableArea EnvDL: "3.60 3.66 303.12 614.22 "
-*ImageableArea EnvC5: "3.60 3.66 452.88 641.1 "
-*ImageableArea FanFoldGermanLegal/GOVLegal: "3.60 3.66 606.48 926.22 "
-*ImageableArea Postcard/Hagaki: "3.60 3.66 276.24 412.14 "
-*ImageableArea EnvMonarch/Monarch: "3.60 3.66 272.4 532.14 "
-*ImageableArea Statement: "3.66 3.60 388.14 606.48"
-*ImageableArea GOVLetter: "3.60 3.66 568.08 748.14 "
-*ImageableArea A3L: "3.60 3.66 836.88 1435.98 "
-*ImageableArea MaxPage/Banner: "3.60 3.66 836.88 2545.74 "
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Tabloid/B: "792 1224"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B4: "729 1032"
-*PaperDimension B5: "516 729"
-*PaperDimension Folio: "595 935"
-*PaperDimension Executive: "522 756"
-*PaperDimension Env10: "297 684"
-*PaperDimension EnvDL: "312 624"
-*PaperDimension EnvC5: "459 649"
-*PaperDimension FanFoldGermanLegal/GOVLegal: "612 936"
-*PaperDimension Postcard/Hagaki: "284 419"
-*PaperDimension EnvMonarch/Monarch: "279 540"
-*PaperDimension Statement: "396 612"
-*PaperDimension GOVLetter: "576 756"
-*PaperDimension A3L: "842 1440"
-*PaperDimension MaxPage/Banner: "842 2551"
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Standard
-*InputSlot Standard/Standard: "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Upper/Upper: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Lower: "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
- save
- 2 dict
- dup /0 (Standard) put
- dup /1 (Upper) put
- dup /2 (Lower) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-
-*OpenUI *TraySwitch/TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: True
-*TraySwitch True/Auto: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Manual: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*OpenUI *MediaType/PaperType: PickOne
-*OrderDependency: 20 AnySetup *MediaType
-*DefaultMediaType: Standard
-*MediaType Standard/Standard: "
- EPSONdict begin
- /ThickPaper false def
- end
-"
-*End
-*MediaType Thick/Thick: "
- EPSONdict begin
- /ThickPaper true def
- end
-"
-*End
-*?MediaType: "
- save
- 2 dict
- dup 75 (Standard) put
- dup 110 (Thick) put
- currentpagedevice /MediaWeight
- get get = flush
- restore
-"
-*End
-*CloseUI: *MediaType
-
-*OpenUI *EPPCheck/PaperSizeCheck: Boolean
-*OrderDependency: 10 AnySetup *EPPCheck
-*DefaultEPPCheck: True
-*EPPCheck True/Enable: "<</Policies <</PageSize 2>> >> setpagedevice"
-*EPPCheck False/Disable: "<</Policies <</PageSize 7>> >> setpagedevice"
-*?EPPCheck: "
-save
- currentpagedevice /Policies get /PageSize get 2 eq
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *EPPCheck
-
-
-
-*% Font Information =====================
-*DefaultFont: Courier
-*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 GothicBBB-Medium-78-EUC-H: EUC "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-EUC-V: EUC "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-H: JIS "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-RKSJ-H: RKSJ "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-RKSJ-V: RKSJ "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-V: JIS "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-83pv-RKSJ-H: RKSJ "(003.002)" 83pv Disk
-*Font GothicBBB-Medium-90pv-RKSJ-H: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90pv-RKSJ-V: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90ms-RKSJ-H: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90ms-RKSJ-V: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-Add-H: JIS "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-RKSJ-H: RKSJ "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-RKSJ-V: RKSJ "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-V: JIS "(003.002)" Add Disk
-*Font GothicBBB-Medium-EUC-H: EUC "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-EUC-V: EUC "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-Ext-H: JIS "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-H: RKSJ "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-V: RKSJ "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-V: JIS "(003.002)" Ext Disk
-*Font GothicBBB-Medium-H: JIS "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-NWP-H: JIS "(003.002)" NWP Disk
-*Font GothicBBB-Medium-NWP-V: JIS "(003.002)" NWP Disk
-*Font GothicBBB-Medium-RKSJ-H: RKSJ "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-RKSJ-V: RKSJ "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-V: JIS "(003.002)" JIS-83 Disk
-*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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font Ryumin-Light-78-EUC-H: EUC "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-EUC-V: EUC "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-H: JIS "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-RKSJ-H: RKSJ "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-RKSJ-V: RKSJ "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-V: JIS "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-83pv-RKSJ-H: RKSJ "(003.001)" 83pv Disk
-*Font Ryumin-Light-90pv-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90pv-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90ms-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90ms-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-Add-H: JIS "(003.001)" Add Disk
-*Font Ryumin-Light-Add-RKSJ-H: RKSJ "(003.001)" Add Disk
-*Font Ryumin-Light-Add-RKSJ-V: RKSJ "(003.001)" Add Disk
-*Font Ryumin-Light-Add-V: JIS "(003.001)" Add Disk
-*Font Ryumin-Light-EUC-H: EUC "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-EUC-V: EUC "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-Ext-H: JIS "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-H: RKSJ "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-V: RKSJ "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-V: JIS "(003.001)" Ext Disk
-*Font Ryumin-Light-H: JIS "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-NWP-H: JIS "(003.001)" NWP Disk
-*Font Ryumin-Light-NWP-V: JIS "(003.001)" NWP Disk
-*Font Ryumin-Light-RKSJ-H: RKSJ "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-RKSJ-V: RKSJ "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-V: JIS "(003.001)" JIS-83 Disk
-*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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "Tray change timeout"
-*Status: "waiting for a4 tray"
-*Status: "waiting for letter tray"
-*Status: "waiting for b5 tray"
-*Status: "waiting for executivepage tray"
-*Status: "waiting for statement tray"
-*Status: "waiting for b(ledger,tabloid) tray"
-*Status: "waiting for a3 tray"
-*Status: "waiting for b4 tray"
-*Status: "waiting for legal tray"
-*Status: "waiting for glg (legal13) tray"
-*Status: "waiting for monarch envelope tray"
-*Status: "waiting for com10 envelope tray"
-*Status: "waiting for dl envelope tray"
-*Status: "waiting for c5 envelope tray"
-*Status: "waiting for postcard tray"
-*Status: "waiting for glt tray"
-*Status: "waiting for folio tray"
-*Status: "waiting for a5 tray"
-*Status: "waiting for a3l tray"
-*Status: "waiting for banner tray"
-*Status: "waiting for thick a4 tray"
-*Status: "waiting for thick letter tray"
-*Status: "waiting for thick b5 tray"
-*Status: "waiting for thick executivepage tray"
-*Status: "waiting for thick statement tray"
-*Status: "waiting for thick b(ledger,tabloid) tray"
-*Status: "waiting for thick a3 tray"
-*Status: "waiting for thick b4 tray"
-*Status: "waiting for thick legal tray"
-*Status: "waiting for thick glg (legal13) tray"
-*Status: "waiting for thick monarch envelope tray"
-*Status: "waiting for thick com10 envelope tray"
-*Status: "waiting for thick dl envelope tray"
-*Status: "waiting for thick c5 envelope tray"
-*Status: "waiting for thick postcard tray"
-*Status: "waiting for thick glt tray"
-*Status: "waiting for thick folio tray"
-*Status: "waiting for thick a5 tray"
-*Status: "waiting for thick a3l tray"
-*Status: "waiting for thick banner tray"
-*Status: "Stopped waiting for a4 tray"
-*Status: "Stopped waiting for letter tray"
-*Status: "Stopped waiting for b5 tray"
-*Status: "Stopped waiting for executivepage tray"
-*Status: "Stopped waiting for statement tray"
-*Status: "Stopped waiting for b(ledger,tabloid) tray"
-*Status: "Stopped waiting for a3 tray"
-*Status: "Stopped waiting for b4 tray"
-*Status: "Stopped waiting for legal tray"
-*Status: "Stopped waiting for glg (legal13) tray"
-*Status: "Stopped waiting for monarch envelope tray"
-*Status: "Stopped waiting for com10 envelope tray"
-*Status: "Stopped waiting for dl envelope tray"
-*Status: "Stopped waiting for c5 envelope tray"
-*Status: "Stopped waiting for postcard tray"
-*Status: "Stopped waiting for glt tray"
-*Status: "Stopped waiting for folio tray"
-*Status: "Stopped waiting for a5 tray"
-*Status: "Stopped waiting for a3l tray"
-*Status: "Stopped waiting for banner tray"
-*Status: "Stopped waiting for thick a4 tray"
-*Status: "Stopped waiting for thick letter tray"
-*Status: "Stopped waiting for thick b5 tray"
-*Status: "Stopped waiting for thick executivepage tray"
-*Status: "Stopped waiting for thick statement tray"
-*Status: "Stopped waiting for thick b(ledger,tabloid) tray"
-*Status: "Stopped waiting for thick a3 tray"
-*Status: "Stopped waiting for thick b4 tray"
-*Status: "Stopped waiting for thick legal tray"
-*Status: "Stopped waiting for thick glg (legal13) tray"
-*Status: "Stopped waiting for thick monarch envelope tray"
-*Status: "Stopped waiting for thick com10 envelope tray"
-*Status: "Stopped waiting for thick dl envelope tray"
-*Status: "Stopped waiting for thick c5 envelope tray"
-*Status: "Stopped waiting for thick postcard tray"
-*Status: "Stopped waiting for thick glt tray"
-*Status: "Stopped waiting for thick folio tray"
-*Status: "Stopped waiting for thick a5 tray"
-*Status: "Stopped waiting for thick a3l tray"
-*Status: "Stopped waiting for thick banner tray"
-*Status: "a4 tray installed"
-*Status: "letter tray installed"
-*Status: "b5 tray installed"
-*Status: "executivepage installed"
-*Status: "statement tray installed"
-*Status: "b(ledger,tabloid) tray installed"
-*Status: "a3 tray installed"
-*Status: "b4 tray installed"
-*Status: "legal tray installed"
-*Status: "glg (legal13) tray installed"
-*Status: "monarch envelope tray installed"
-*Status: "com10 envelope tray installed"
-*Status: "dl envelope tray installed"
-*Status: "c5 envelope tray installed"
-*Status: "postcard tray installed"
-*Status: "glt tray installed"
-*Status: "folio tray installed"
-*Status: "a5 tray installed"
-*Status: "a3l tray installed"
-*Status: "banner tray installed"
-*Status: "PrinterError: DMA firmware failure: restart"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: toner low"
-*Status: "PrinterError: toner cartridge out"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: regular paper misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: standard cassette out/misinstalled"
-*Status: "PrinterError: optional cassette out/misinstalled"
-*Status: "PrinterError: out of paper: standard"
-*Status: "PrinterError: out of paper: optional"
-*Status: "PrinterError: out of paper: front"
-*Status: "PrinterError: paper size error: standard"
-*Status: "PrinterError: paper size error: optional"
-*Status: "PrinterError: paper size error: front"
-*Status: "PrinterError: engine NVRAM malfunction"
-*Status: "PrinterError: fuser malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: fan malfunction"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: EEROM error"
-*Status: "PrinterError: HDD read/write error"
-*Status: "PrinterError: ATC error"
-*Status: "PrinterError: warming up"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "LocalTalk"
-*Source: "SerialB"
-*Source: "Parallel"
-*Source: "ScsiComm"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "DMA firmware failure: restart"
-*PrinterError: "cover open"
-*PrinterError: "toner low"
-*PrinterError: "toner cartridge out"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "regular paper misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "standard cassette out/misinstalled"
-*PrinterError: "optional cassette out/misinstalled"
-*PrinterError: "out of paper: standard"
-*PrinterError: "out of paper: optional"
-*PrinterError: "out of paper: front"
-*PrinterError: "paper size error: standard"
-*PrinterError: "paper size error: optional"
-*PrinterError: "paper size error: front"
-*PrinterError: "engine NVRAM malfunction"
-*PrinterError: "fuser malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "fan malfunction"
-*PrinterError: "service call"
-*PrinterError: "EEROM error"
-*PrinterError: "HDD read/write error"
-*PrinterError: "ATC error"
-*PrinterError: "warming up"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 13
-*% Last Edit Date: Jun 3 1996
-*% The byte count of this file should be exactly 030891 or 031843
-*% depending on the filesystem it resides in.
-*% end of PPD file for LP-8200PS2
diff --git a/psprint_config/configuration/ppds/EP_82F51.PS b/psprint_config/configuration/ppds/EP_82F51.PS
deleted file mode 100644
index 83d772143406..000000000000
--- a/psprint_config/configuration/ppds/EP_82F51.PS
+++ /dev/null
@@ -1,1051 +0,0 @@
-*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"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_82F51.PPD"
-*Product: "(EPSON LP-8200PS2)"
-*PSVersion: "(2015.107) 1"
-*ModelName: "EPSON LP-8200PS2 5 Font"
-*Manufacturer: "Epson"
-*ShortNickName: "EPSON LP-8200PS2 5 Font"
-*NickName: "EPSON LP-8200PS2 v2015.107 5 font"
-*% === Options and Constraints =========
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Option Cassette: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/None: ""
-*?Option1 : "
- currentpagedevice /InputAttributes get 2 get
- null eq {(False)}{(True)}ifelse
- = flush"
-*End
-*CloseUI: *Option1
-
-*OpenUI *Option2/HDD: Boolean
-*DefaultOption2: False
-*Option2 True/Connected: ""
-*Option2 False/None: ""
-*?Option2: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-*CloseUI: *Option2
-
-*OpenUI *Option3/Type1 Coprocessor: Boolean
-*DefaultOption3: False
-*Option3 True/Installed: ""
-*Option3 False/None: ""
-*?Option3: "
- save
- (False) (*) {
- (Type1Coprocessor) eq {pop (True) exit}if
- } =string /HWOptions resourceforall
- = flush
- restore"
-*End
-*CloseUI: *Option3
-
-*OpenUI *Option4/Ethernet Option: Boolean
-*DefaultOption4: False
-*Option4 True/Installed: ""
-*Option4 False/None: ""
-*?Option4: "
- save
- /AdminUtils /ProcSet findresource begin EtherTalkOptionInstalled end
- {(True)}{(False)}ifelse
- = flush
- restore"
-*End
-*CloseUI: *Option4
-
-*OpenUI *InstalledMemory/Memory: PickOne
-*DefaultInstalledMemory: 8Meg
-*InstalledMemory 8Meg/Standard(8MB): ""
-*InstalledMemory 12Meg/12MB: ""
-*InstalledMemory 16Meg/16MB: ""
-*InstalledMemory 20Meg/20MB: ""
-*InstalledMemory 24Meg/24MB: ""
-*InstalledMemory 28Meg/28MB: ""
-*InstalledMemory 32Meg/32MB: ""
-*InstalledMemory 40Meg/40MB: ""
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get 16#100000 div 8 sub 4 div cvi
- [(8Meg) (12Meg) (16Meg) (20Meg) (24Meg) (28Meg) (32Meg) () (40Meg)]
- exch get = flush
- restore
- "
-*End
-*CloseUI: *InstalledMemory
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Lower
-
-*UIConstraints: *InputSlot Upper *MediaType Thick
-*UIConstraints: *InputSlot Lower *MediaType Thick
-
-*UIConstraints: *InstalledMemory 8Meg *PageSize MaxPage
-*UIConstraints: *InstalledMemory 8Meg *PageRegion MaxPage
-
-*UIConstraints: *InputSlot Lower *Option1 False
-
-*UIConstraints: *MediaType Thick *InputSlot Upper
-*UIConstraints: *MediaType Thick *InputSlot Lower
-
-*UIConstraints: *PageSize MaxPage *InstalledMemory 8Meg
-*UIConstraints: *PageRegion MaxPage *InstalledMemory 8Meg
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols: BCP TBCP
-
-*FreeVM: "2920000"
-*VMOption 8Meg: "2920000"
-*VMOption 12Meg: "2820000"
-*VMOption 16Meg: "6880000"
-*VMOption 20Meg: "10850000"
-*VMOption 24Meg: "14900000"
-*VMOption 28Meg: "18930000"
-*VMOption 32Meg: "23000000"
-*VMOption 40Meg: "31110000"
-
-
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42 /FontType resourcestatus {pop pop (Type42)}{(None)}ifelse
- = flush
- restore
-"
-*End
-*FileSystem: True
-*?FileSystem: "
- save false
- (%disk?%)
- { currentdevparams dup /Writeable known
- { /Writeable get {pop true} if } { pop } ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
- restore"
-*End
-
-*Throughput: "10"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-*OpenUI *Resolution/Resolution: PickOne
-*OrderDependency: 20 AnySetup *Resolution
-*DefaultResolution: 600dpi
-*Resolution 600dpi/Fine: "1 dict dup /HWResolution [600 600] put setpagedevice"
-*Resolution 300dpi/Quick: "1 dict dup /HWResolution [300 300] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Job Patch File ===============
-*JobPatchFile 0: "
- 10 dict dup /EPSONdict exch def begin
- /ThickPaper false def
- /SetPaper {
- 3 dict
- dup /PageSize 5 -1 roll put
- dup /ImagingBBox 4 -1 roll put
- dup ThickPaper {/MediaWeight 110 put}{/MediaWeight 75 put}ifelse
- setpagedevice
- }bind def
- end
-
-"
-*End
-
-*% Halftone Information ===============
-*DefaultHalftoneType: 1
-*ScreenFreq: "85.0"
-*ScreenAngle: "45.0"
-*ResScreenFreq 300dpi: "60.0"
-*ResScreenAngle 300dpi: "45.0"
-*ResScreenFreq 600dpi: "85.0"
-*ResScreenAngle 600dpi: "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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/RIT: Boolean
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing:True
-*Smoothing True/ON: "1 dict dup /PostRenderingEnhance true put setpagedevice"
-*Smoothing False/OFF: "1 dict dup /PostRenderingEnhance false put setpagedevice"
-*?Smoothing: "
- save
- currentpagedevice /PostRenderingEnhance get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *Smoothing
-
-
-*OpenUI *EPHT/Halftone: Boolean
-*OrderDependency: 50 AnySetup *EPHT
-*DefaultEPHT:True
-*EPHT True/Brilliant Screens: "
- /AdminUtils /ProcSet findresource begin
- false setDisableABS end
- currentpagedevice setpagedevice
-"
-*End
-*EPHT False/Spot: "
- /AdminUtils /ProcSet findresource begin
- true setDisableABS end
- currentpagedevice setpagedevice
-"
-*End
-*?EPHT: "
- save
- /AdminUtils /ProcSet findresource begin disableABS end
- {(False)}{(True)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *EPHT
-
-
-*% Paper Handling ===================
-*LandscapeOrientation: Any
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize Letter: "
- EPSONdict begin [612 792] null SetPaper end"
-*End
-*PageSize Legal: "
- EPSONdict begin [612 1008] null SetPaper end"
-*End
-*PageSize Tabloid/B: "
- EPSONdict begin [792 1224] null SetPaper end"
-*End
-*PageSize A3: "
- EPSONdict begin [842 1191] null SetPaper end"
-*End
-*PageSize A4: "
- EPSONdict begin [595 842] null SetPaper end"
-*End
-*PageSize A5: "
- EPSONdict begin [420 595] null SetPaper end"
-*End
-*PageSize B4: "
- EPSONdict begin [729 1032] null SetPaper end"
-*End
-*PageSize B5: "
- EPSONdict begin [516 729] null SetPaper end"
-*End
-*PageSize Folio: "
- EPSONdict begin [595 935] null SetPaper end"
-*End
-*PageSize Executive: "
- EPSONdict begin [522 756] null SetPaper end"
-*End
-*PageSize Env10: "
- EPSONdict begin [297 684] null SetPaper end"
-*End
-*PageSize EnvDL: "
- EPSONdict begin [312 624] null SetPaper end"
-*End
-*PageSize EnvC5: "
- EPSONdict begin [459 649] null SetPaper end"
-*End
-*PageSize FanFoldGermanLegal/GOVLegal: "
- EPSONdict begin [612 936] null SetPaper end"
-*End
-*PageSize Postcard/Hagaki: "
- EPSONdict begin [284 419] null SetPaper end"
-*End
-*PageSize EnvMonarch/Monarch: "
- EPSONdict begin [279 540] null SetPaper end"
-*End
-*PageSize Statement: "
- EPSONdict begin [396 612] null SetPaper end"
-*End
-*PageSize GOVLetter: "
- EPSONdict begin [576 756] null SetPaper end"
-*End
-*PageSize A3L: "
- EPSONdict begin [842 1440] null SetPaper end"
-*End
-*PageSize MaxPage/Banner: "
- EPSONdict begin [842 2551] null SetPaper end"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 18 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [792 1224] (Tabloid) put
- dup [842 1191] (A3) put
- dup [595 842] (A4) put
- dup [420 595] (A5) put
- dup [729 1032] (B4) put
- dup [516 729] (B5) put
- dup [595 935] (Folio) put
- dup [522 756] (Executive) put
- dup [297 684] (Env10) put
- dup [312 624] (EnvDL) put
- dup [459 649] (EnvC5) put
- dup [612 936] (FanFoldGermanLegal) put
- dup [284 419] (Postcard) put
- dup [279 540] (EnvMonarch) put
- dup [396 612] (Statement) put
- dup [576 756] (GOVLetter) put
- dup [842 1440] (A3L) put
- dup [842 2551] (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 pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion Letter: "
- EPSONdict begin [612 792] null SetPaper end"
-*End
-*PageRegion Legal: "
- EPSONdict begin [612 1008] null SetPaper end"
-*End
-*PageRegion Tabloid/B: "
- EPSONdict begin [792 1224] null SetPaper end"
-*End
-*PageRegion A3: "
- EPSONdict begin [842 1191] null SetPaper end"
-*End
-*PageRegion A4: "
- EPSONdict begin [595 842] null SetPaper end"
-*End
-*PageRegion A5: "
- EPSONdict begin [420 595] null SetPaper end"
-*End
-*PageRegion B4: "
- EPSONdict begin [729 1032] null SetPaper end"
-*End
-*PageRegion B5: "
- EPSONdict begin [516 729] null SetPaper end"
-*End
-*PageRegion Folio: "
- EPSONdict begin [595 935] null SetPaper end"
-*End
-*PageRegion Executive: "
- EPSONdict begin [522 756] null SetPaper end"
-*End
-*PageRegion Env10: "
- EPSONdict begin [297 684] null SetPaper end"
-*End
-*PageRegion EnvDL: "
- EPSONdict begin [312 624] null SetPaper end"
-*End
-*PageRegion EnvC5: "
- EPSONdict begin [459 649] null SetPaper end"
-*End
-*PageRegion FanFoldGermanLegal/GOVLegal: "
- EPSONdict begin [612 936] null SetPaper end"
-*End
-*PageRegion Postcard/Hagaki: "
- EPSONdict begin [284 419] null SetPaper end"
-*End
-*PageRegion EnvMonarch/Monarch: "
- EPSONdict begin [279 540] null SetPaper end"
-*End
-*PageRegion Statement: "
- EPSONdict begin [396 612] null SetPaper end"
-*End
-*PageRegion GOVLetter: "
- EPSONdict begin [576 756] null SetPaper end"
-*End
-*PageRegion A3L: "
- EPSONdict begin [842 1440] null SetPaper end"
-*End
-*PageRegion MaxPage/Banner: "
- EPSONdict begin [842 2551] null SetPaper end"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea Letter: "3.66 3.60 607.5 786.96 "
-*ImageableArea Legal: "3.60 3.66 606.48 1002.54 "
-*ImageableArea Tabloid/B: "3.60 3.66 789.96 1218.06 "
-*ImageableArea A3: "3.60 3.66 836.88 1184.94 "
-*ImageableArea A4: "3.66 3.60 589.74 836.88 "
-*ImageableArea A5: "3.66 3.60 413.1 587.28 "
-*ImageableArea B4: "3.60 3.66 717.84 1026.06 "
-*ImageableArea B5: "3.66 3.60 508.14 721.68"
-*ImageableArea Folio: "3.60 3.66 587.28 927.18 "
-*ImageableArea Executive: "3.66 3.60 514.38 744.72"
-*ImageableArea Env10: "3.60 3.66 291.6 676.14 "
-*ImageableArea EnvDL: "3.60 3.66 303.12 614.22 "
-*ImageableArea EnvC5: "3.60 3.66 452.88 641.1 "
-*ImageableArea FanFoldGermanLegal/GOVLegal: "3.60 3.66 606.48 926.22 "
-*ImageableArea Postcard/Hagaki: "3.60 3.66 276.24 412.14 "
-*ImageableArea EnvMonarch/Monarch: "3.60 3.66 272.4 532.14 "
-*ImageableArea Statement: "3.66 3.60 388.14 606.48"
-*ImageableArea GOVLetter: "3.60 3.66 568.08 748.14 "
-*ImageableArea A3L: "3.60 3.66 836.88 1435.98 "
-*ImageableArea MaxPage/Banner: "3.60 3.66 836.88 2545.74 "
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Tabloid/B: "792 1224"
-*PaperDimension A3: "842 1191"
-*PaperDimension A4: "595 842"
-*PaperDimension A5: "420 595"
-*PaperDimension B4: "729 1032"
-*PaperDimension B5: "516 729"
-*PaperDimension Folio: "595 935"
-*PaperDimension Executive: "522 756"
-*PaperDimension Env10: "297 684"
-*PaperDimension EnvDL: "312 624"
-*PaperDimension EnvC5: "459 649"
-*PaperDimension FanFoldGermanLegal/GOVLegal: "612 936"
-*PaperDimension Postcard/Hagaki: "284 419"
-*PaperDimension EnvMonarch/Monarch: "279 540"
-*PaperDimension Statement: "396 612"
-*PaperDimension GOVLetter: "576 756"
-*PaperDimension A3L: "842 1440"
-*PaperDimension MaxPage/Banner: "842 2551"
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Normal
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Standard
-*InputSlot Standard/Standard: "
- currentpagedevice /InputAttributes get 0 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Upper/Upper: "
- currentpagedevice /InputAttributes get 1 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [1] put
- put setpagedevice
- } ifelse"
-*End
-*InputSlot Lower/Lower: "
- currentpagedevice /InputAttributes get 2 get
- dup null eq
- { pop }
- { dup length 1 add dict copy
- dup /InputAttributes
- 1 dict dup /Priority [2] put
- put setpagedevice
- } ifelse"
-*End
-*?InputSlot: "
- save
- 2 dict
- dup /0 (Standard) put
- dup /1 (Upper) put
- dup /2 (Lower) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-
-*OpenUI *TraySwitch/TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: True
-*TraySwitch True/Auto: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False/Manual: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*OpenUI *MediaType/PaperType: PickOne
-*OrderDependency: 20 AnySetup *MediaType
-*DefaultMediaType: Standard
-*MediaType Standard/Standard: "
- EPSONdict begin
- /ThickPaper false def
- end
-"
-*End
-*MediaType Thick/Thick: "
- EPSONdict begin
- /ThickPaper true def
- end
-"
-*End
-*?MediaType: "
- save
- 2 dict
- dup 75 (Standard) put
- dup 110 (Thick) put
- currentpagedevice /MediaWeight
- get get = flush
- restore
-"
-*End
-*CloseUI: *MediaType
-
-*OpenUI *EPPCheck/PaperSizeCheck: Boolean
-*OrderDependency: 10 AnySetup *EPPCheck
-*DefaultEPPCheck: True
-*EPPCheck True/Enable: "<</Policies <</PageSize 2>> >> setpagedevice"
-*EPPCheck False/Disable: "<</Policies <</PageSize 7>> >> setpagedevice"
-*?EPPCheck: "
-save
- currentpagedevice /Policies get /PageSize get 2 eq
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *EPPCheck
-
-
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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 GothicBBB-Medium-78-EUC-H: EUC "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-EUC-V: EUC "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-H: JIS "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-RKSJ-H: RKSJ "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-RKSJ-V: RKSJ "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-78-V: JIS "(003.002)" JIS-78 Disk
-*Font GothicBBB-Medium-83pv-RKSJ-H: RKSJ "(003.002)" 83pv Disk
-*Font GothicBBB-Medium-90pv-RKSJ-H: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90pv-RKSJ-V: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90ms-RKSJ-H: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-90ms-RKSJ-V: RKSJ "(003.002)" Special Disk
-*Font GothicBBB-Medium-Add-H: JIS "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-RKSJ-H: RKSJ "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-RKSJ-V: RKSJ "(003.002)" Add Disk
-*Font GothicBBB-Medium-Add-V: JIS "(003.002)" Add Disk
-*Font GothicBBB-Medium-EUC-H: EUC "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-EUC-V: EUC "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-Ext-H: JIS "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-H: RKSJ "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-RKSJ-V: RKSJ "(003.002)" Ext Disk
-*Font GothicBBB-Medium-Ext-V: JIS "(003.002)" Ext Disk
-*Font GothicBBB-Medium-H: JIS "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-NWP-H: JIS "(003.002)" NWP Disk
-*Font GothicBBB-Medium-NWP-V: JIS "(003.002)" NWP Disk
-*Font GothicBBB-Medium-RKSJ-H: RKSJ "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-RKSJ-V: RKSJ "(003.002)" JIS-83 Disk
-*Font GothicBBB-Medium-V: JIS "(003.002)" JIS-83 Disk
-*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-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 Helvetica-Oblique: Standard "(001.006S)" Standard ROM
-*Font Jun101-Light-78-EUC-H: EUC "(003.001)" JIS-78 Disk
-*Font Jun101-Light-78-EUC-V: EUC "(003.001)" JIS-78 Disk
-*Font Jun101-Light-78-H: JIS "(003.001)" JIS-78 Disk
-*Font Jun101-Light-78-RKSJ-H: RKSJ "(003.001)" JIS-78 Disk
-*Font Jun101-Light-78-RKSJ-V: RKSJ "(003.001)" JIS-78 Disk
-*Font Jun101-Light-78-V: JIS "(003.001)" JIS-78 Disk
-*Font Jun101-Light-83pv-RKSJ-H: RKSJ "(003.001)" 83pv Disk
-*Font Jun101-Light-90pv-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Jun101-Light-90pv-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Jun101-Light-90ms-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Jun101-Light-90ms-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Jun101-Light-Add-H: JIS "(003.001)" Add Disk
-*Font Jun101-Light-Add-RKSJ-H: RKSJ "(003.001)" Add Disk
-*Font Jun101-Light-Add-RKSJ-V: RKSJ "(003.001)" Add Disk
-*Font Jun101-Light-Add-V: JIS "(003.001)" Add Disk
-*Font Jun101-Light-EUC-H: EUC "(003.001)" JIS-83 Disk
-*Font Jun101-Light-EUC-V: EUC "(003.001)" JIS-83 Disk
-*Font Jun101-Light-Ext-H: JIS "(003.001)" Ext Disk
-*Font Jun101-Light-Ext-RKSJ-H: RKSJ "(003.001)" Ext Disk
-*Font Jun101-Light-Ext-RKSJ-V: RKSJ "(003.001)" Ext Disk
-*Font Jun101-Light-Ext-V: JIS "(003.001)" Ext Disk
-*Font Jun101-Light-H: JIS "(003.001)" JIS-83 Disk
-*Font Jun101-Light-NWP-H: JIS "(003.001)" NWP Disk
-*Font Jun101-Light-NWP-V: JIS "(003.001)" NWP Disk
-*Font Jun101-Light-RKSJ-H: RKSJ "(003.001)" JIS-83 Disk
-*Font Jun101-Light-RKSJ-V: RKSJ "(003.001)" JIS-83 Disk
-*Font Jun101-Light-V: JIS "(003.001)" JIS-83 Disk
-*Font MidashiGo-MB31-78-EUC-H: EUC "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-78-EUC-V: EUC "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-78-H: JIS "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-78-RKSJ-H: RKSJ "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-78-RKSJ-V: RKSJ "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-78-V: JIS "(003.000)" JIS-78 Disk
-*Font MidashiGo-MB31-83pv-RKSJ-H: RKSJ "(003.000)" 83pv Disk
-*Font MidashiGo-MB31-90pv-RKSJ-H: RKSJ "(003.000)" Special Disk
-*Font MidashiGo-MB31-90pv-RKSJ-V: RKSJ "(003.000)" Special Disk
-*Font MidashiGo-MB31-90ms-RKSJ-H: RKSJ "(003.000)" Special Disk
-*Font MidashiGo-MB31-90ms-RKSJ-V: RKSJ "(003.000)" Special Disk
-*Font MidashiGo-MB31-Add-H: JIS "(003.000)" Add Disk
-*Font MidashiGo-MB31-Add-RKSJ-H: RKSJ "(003.000)" Add Disk
-*Font MidashiGo-MB31-Add-RKSJ-V: RKSJ "(003.000)" Add Disk
-*Font MidashiGo-MB31-Add-V: JIS "(003.000)" Add Disk
-*Font MidashiGo-MB31-EUC-H: EUC "(003.000)" JIS-83 Disk
-*Font MidashiGo-MB31-EUC-V: EUC "(003.000)" JIS-83 Disk
-*Font MidashiGo-MB31-Ext-H: JIS "(003.000)" Ext Disk
-*Font MidashiGo-MB31-Ext-RKSJ-H: RKSJ "(003.000)" Ext Disk
-*Font MidashiGo-MB31-Ext-RKSJ-V: RKSJ "(003.000)" Ext Disk
-*Font MidashiGo-MB31-Ext-V: JIS "(003.000)" Ext Disk
-*Font MidashiGo-MB31-H: JIS "(003.000)" JIS-83 Disk
-*Font MidashiGo-MB31-NWP-H: JIS "(003.000)" NWP Disk
-*Font MidashiGo-MB31-NWP-V: JIS "(003.000)" NWP Disk
-*Font MidashiGo-MB31-RKSJ-H: RKSJ "(003.000)" JIS-83 Disk
-*Font MidashiGo-MB31-RKSJ-V: RKSJ "(003.000)" JIS-83 Disk
-*Font MidashiGo-MB31-V: JIS "(003.000)" JIS-83 Disk
-*Font MidashiMin-MA31-78-EUC-H: EUC "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-78-EUC-V: EUC "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-78-H: JIS "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-78-RKSJ-H: RKSJ "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-78-RKSJ-V: RKSJ "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-78-V: JIS "(003.001)" JIS-78 Disk
-*Font MidashiMin-MA31-83pv-RKSJ-H: RKSJ "(003.001)" 83pv Disk
-*Font MidashiMin-MA31-90pv-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font MidashiMin-MA31-90pv-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font MidashiMin-MA31-90ms-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font MidashiMin-MA31-90ms-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font MidashiMin-MA31-Add-H: JIS "(003.001)" Add Disk
-*Font MidashiMin-MA31-Add-RKSJ-H: RKSJ "(003.001)" Add Disk
-*Font MidashiMin-MA31-Add-RKSJ-V: RKSJ "(003.001)" Add Disk
-*Font MidashiMin-MA31-Add-V: JIS "(003.001)" Add Disk
-*Font MidashiMin-MA31-EUC-H: EUC "(003.001)" JIS-83 Disk
-*Font MidashiMin-MA31-EUC-V: EUC "(003.001)" JIS-83 Disk
-*Font MidashiMin-MA31-Ext-H: JIS "(003.001)" Ext Disk
-*Font MidashiMin-MA31-Ext-RKSJ-H: RKSJ "(003.001)" Ext Disk
-*Font MidashiMin-MA31-Ext-RKSJ-V: RKSJ "(003.001)" Ext Disk
-*Font MidashiMin-MA31-Ext-V: JIS "(003.001)" Ext Disk
-*Font MidashiMin-MA31-H: JIS "(003.001)" JIS-83 Disk
-*Font MidashiMin-MA31-NWP-H: JIS "(003.001)" NWP Disk
-*Font MidashiMin-MA31-NWP-V: JIS "(003.001)" NWP Disk
-*Font MidashiMin-MA31-RKSJ-H: RKSJ "(003.001)" JIS-83 Disk
-*Font MidashiMin-MA31-RKSJ-V: RKSJ "(003.001)" JIS-83 Disk
-*Font MidashiMin-MA31-V: JIS "(003.001)" JIS-83 Disk
-*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 Ryumin-Light-78-EUC-H: EUC "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-EUC-V: EUC "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-H: JIS "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-RKSJ-H: RKSJ "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-RKSJ-V: RKSJ "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-78-V: JIS "(003.001)" JIS-78 Disk
-*Font Ryumin-Light-83pv-RKSJ-H: RKSJ "(003.001)" 83pv Disk
-*Font Ryumin-Light-90pv-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90pv-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90ms-RKSJ-H: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-90ms-RKSJ-V: RKSJ "(003.001)" Special Disk
-*Font Ryumin-Light-Add-H: JIS "(003.001)" Add Disk
-*Font Ryumin-Light-Add-RKSJ-H: RKSJ "(003.001)" Add Disk
-*Font Ryumin-Light-Add-RKSJ-V: RKSJ "(003.001)" Add Disk
-*Font Ryumin-Light-Add-V: JIS "(003.001)" Add Disk
-*Font Ryumin-Light-EUC-H: EUC "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-EUC-V: EUC "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-Ext-H: JIS "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-H: RKSJ "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-RKSJ-V: RKSJ "(003.001)" Ext Disk
-*Font Ryumin-Light-Ext-V: JIS "(003.001)" Ext Disk
-*Font Ryumin-Light-H: JIS "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-NWP-H: JIS "(003.001)" NWP Disk
-*Font Ryumin-Light-NWP-V: JIS "(003.001)" NWP Disk
-*Font Ryumin-Light-RKSJ-H: RKSJ "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-RKSJ-V: RKSJ "(003.001)" JIS-83 Disk
-*Font Ryumin-Light-V: JIS "(003.001)" JIS-83 Disk
-*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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "initializing"
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "Tray change timeout"
-*Status: "waiting for a4 tray"
-*Status: "waiting for letter tray"
-*Status: "waiting for b5 tray"
-*Status: "waiting for executivepage tray"
-*Status: "waiting for statement tray"
-*Status: "waiting for b(ledger,tabloid) tray"
-*Status: "waiting for a3 tray"
-*Status: "waiting for b4 tray"
-*Status: "waiting for legal tray"
-*Status: "waiting for glg (legal13) tray"
-*Status: "waiting for monarch envelope tray"
-*Status: "waiting for com10 envelope tray"
-*Status: "waiting for dl envelope tray"
-*Status: "waiting for c5 envelope tray"
-*Status: "waiting for postcard tray"
-*Status: "waiting for glt tray"
-*Status: "waiting for folio tray"
-*Status: "waiting for a5 tray"
-*Status: "waiting for a3l tray"
-*Status: "waiting for banner tray"
-*Status: "waiting for thick a4 tray"
-*Status: "waiting for thick letter tray"
-*Status: "waiting for thick b5 tray"
-*Status: "waiting for thick executivepage tray"
-*Status: "waiting for thick statement tray"
-*Status: "waiting for thick b(ledger,tabloid) tray"
-*Status: "waiting for thick a3 tray"
-*Status: "waiting for thick b4 tray"
-*Status: "waiting for thick legal tray"
-*Status: "waiting for thick glg (legal13) tray"
-*Status: "waiting for thick monarch envelope tray"
-*Status: "waiting for thick com10 envelope tray"
-*Status: "waiting for thick dl envelope tray"
-*Status: "waiting for thick c5 envelope tray"
-*Status: "waiting for thick postcard tray"
-*Status: "waiting for thick glt tray"
-*Status: "waiting for thick folio tray"
-*Status: "waiting for thick a5 tray"
-*Status: "waiting for thick a3l tray"
-*Status: "waiting for thick banner tray"
-*Status: "Stopped waiting for a4 tray"
-*Status: "Stopped waiting for letter tray"
-*Status: "Stopped waiting for b5 tray"
-*Status: "Stopped waiting for executivepage tray"
-*Status: "Stopped waiting for statement tray"
-*Status: "Stopped waiting for b(ledger,tabloid) tray"
-*Status: "Stopped waiting for a3 tray"
-*Status: "Stopped waiting for b4 tray"
-*Status: "Stopped waiting for legal tray"
-*Status: "Stopped waiting for glg (legal13) tray"
-*Status: "Stopped waiting for monarch envelope tray"
-*Status: "Stopped waiting for com10 envelope tray"
-*Status: "Stopped waiting for dl envelope tray"
-*Status: "Stopped waiting for c5 envelope tray"
-*Status: "Stopped waiting for postcard tray"
-*Status: "Stopped waiting for glt tray"
-*Status: "Stopped waiting for folio tray"
-*Status: "Stopped waiting for a5 tray"
-*Status: "Stopped waiting for a3l tray"
-*Status: "Stopped waiting for banner tray"
-*Status: "Stopped waiting for thick a4 tray"
-*Status: "Stopped waiting for thick letter tray"
-*Status: "Stopped waiting for thick b5 tray"
-*Status: "Stopped waiting for thick executivepage tray"
-*Status: "Stopped waiting for thick statement tray"
-*Status: "Stopped waiting for thick b(ledger,tabloid) tray"
-*Status: "Stopped waiting for thick a3 tray"
-*Status: "Stopped waiting for thick b4 tray"
-*Status: "Stopped waiting for thick legal tray"
-*Status: "Stopped waiting for thick glg (legal13) tray"
-*Status: "Stopped waiting for thick monarch envelope tray"
-*Status: "Stopped waiting for thick com10 envelope tray"
-*Status: "Stopped waiting for thick dl envelope tray"
-*Status: "Stopped waiting for thick c5 envelope tray"
-*Status: "Stopped waiting for thick postcard tray"
-*Status: "Stopped waiting for thick glt tray"
-*Status: "Stopped waiting for thick folio tray"
-*Status: "Stopped waiting for thick a5 tray"
-*Status: "Stopped waiting for thick a3l tray"
-*Status: "Stopped waiting for thick banner tray"
-*Status: "a4 tray installed"
-*Status: "letter tray installed"
-*Status: "b5 tray installed"
-*Status: "executivepage installed"
-*Status: "statement tray installed"
-*Status: "b(ledger,tabloid) tray installed"
-*Status: "a3 tray installed"
-*Status: "b4 tray installed"
-*Status: "legal tray installed"
-*Status: "glg (legal13) tray installed"
-*Status: "monarch envelope tray installed"
-*Status: "com10 envelope tray installed"
-*Status: "dl envelope tray installed"
-*Status: "c5 envelope tray installed"
-*Status: "postcard tray installed"
-*Status: "glt tray installed"
-*Status: "folio tray installed"
-*Status: "a5 tray installed"
-*Status: "a3l tray installed"
-*Status: "banner tray installed"
-*Status: "PrinterError: DMA firmware failure: restart"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: toner low"
-*Status: "PrinterError: toner cartridge out"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: regular paper misfeed"
-*Status: "PrinterError: paper exit misfeed"
-*Status: "PrinterError: standard cassette out/misinstalled"
-*Status: "PrinterError: optional cassette out/misinstalled"
-*Status: "PrinterError: out of paper: standard"
-*Status: "PrinterError: out of paper: optional"
-*Status: "PrinterError: out of paper: front"
-*Status: "PrinterError: paper size error: standard"
-*Status: "PrinterError: paper size error: optional"
-*Status: "PrinterError: paper size error: front"
-*Status: "PrinterError: engine NVRAM malfunction"
-*Status: "PrinterError: fuser malfunction"
-*Status: "PrinterError: scanner motor malfunction"
-*Status: "PrinterError: fan malfunction"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: EEROM error"
-*Status: "PrinterError: HDD read/write error"
-*Status: "PrinterError: ATC error"
-*Status: "PrinterError: warming up"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "LocalTalk"
-*Source: "SerialB"
-*Source: "Parallel"
-*Source: "ScsiComm"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "DMA firmware failure: restart"
-*PrinterError: "cover open"
-*PrinterError: "toner low"
-*PrinterError: "toner cartridge out"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "regular paper misfeed"
-*PrinterError: "paper exit misfeed"
-*PrinterError: "standard cassette out/misinstalled"
-*PrinterError: "optional cassette out/misinstalled"
-*PrinterError: "out of paper: standard"
-*PrinterError: "out of paper: optional"
-*PrinterError: "out of paper: front"
-*PrinterError: "paper size error: standard"
-*PrinterError: "paper size error: optional"
-*PrinterError: "paper size error: front"
-*PrinterError: "engine NVRAM malfunction"
-*PrinterError: "fuser malfunction"
-*PrinterError: "scanner motor malfunction"
-*PrinterError: "fan malfunction"
-*PrinterError: "service call"
-*PrinterError: "EEROM error"
-*PrinterError: "HDD read/write error"
-*PrinterError: "ATC error"
-*PrinterError: "warming up"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For 85 lpi / 600 dpi (5,5,2,6,6,2,20/3,0) =====================
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "84.8528"
-*ColorSepScreenFreq ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "94.8683"
-*ColorSepScreenFreq ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "30.0"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*% For 71 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq CustomColor.71lpi.600dpi/71 lpi / 600 dpi: "70.7107"
-*ColorSepScreenFreq ProcessCyan.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessMagenta.71lpi.600dpi/71 lpi / 600 dpi: "63.2456"
-*ColorSepScreenFreq ProcessYellow.71lpi.600dpi/71 lpi / 600 dpi: "66.6667"
-
-*% Produced by "bldppd42.ps" version 4.0 edit 13
-*% Last Edit Date: Jun 3 1996
-*% The byte count of this file should be exactly 036629 or 037680
-*% depending on the filesystem it resides in.
-*% end of PPD file for LP-8200PS2
diff --git a/psprint_config/configuration/ppds/EP_P0701.PS b/psprint_config/configuration/ppds/EP_P0701.PS
deleted file mode 100644
index 1665ccd4c6da..000000000000
--- a/psprint_config/configuration/ppds/EP_P0701.PS
+++ /dev/null
@@ -1,1356 +0,0 @@
-*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
-
-
-*% All Rights Reserved.
-
-
-
-*FormatVersion: "4.3"
-
-*FileVersion: "1.0"
-
-*LanguageEncoding: ISOLatin1
-
-*LanguageVersion: English
-
-*PCFileName: "EP_P0701.PPD"
-
-*Product: "(Stylus Photo 700)"
-
-*PSVersion: "(2015.802) 0"
-
-*ModelName: "EPSON StylusPhoto700 v2015.802"
-
-*ShortNickName: "EPSON StylusPhoto700 v2015.802"
-
-*NickName: "EPSON StylusPhoto700 v2015.802"
-
-*Manufacturer: "Epson"
-
-
-
-*% === Product Information ===========================
-
-
-
-*% ==== Device Capabilities ===============
-
-*ColorDevice: True
-
-*DefaultColorSpace: CMYK
-
-*FreeVM: "300000"
-
-*LanguageLevel: "2"
-
-*TTRasterizer: Type42
-
-*FileSystem: True
-
-*?FileSystem: "
-
-save
-
- false (%os%)
-
- { currentdevparams dup /Writeable known
-
- {/Writeable get {pop true} if} {pop} ifelse
-
- } 10 string /IODevice resourceforall
-
- {(True)}{(False)} ifelse = flush
-
-restore
-
-"
-
-*End
-
-*Throughput: "1"
-
-*Password: "0"
-
-*ExitServer: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot modify initial VM.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if"
-
-*End
-
-
-
-*Reset: "
-
- count 0 eq
-
- { false } { true exch startjob } ifelse
-
- not { (WARNING: Cannot reset printer.) =
-
- (Missing or invalid password.) =
-
- (Please contact the author of this software.) = flush quit
-
- } if
-
- systemdict /quit get exec
-
- (WARNING : Printer Reset Failed.) = flush
-
-"
-
-*End
-
-
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-
-*DefaultResolution: 720x720dpi
-
-*OrderDependency: 5 AnySetup *Resolution
-
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-
-*?Resolution: "
-
- save
-
- currentpagedevice /HWResolution get dup
-
- 0 get ( ) cvs print
-
- (x) print
-
- 1 get ( ) cvs print
-
- (dpi)
-
- = flush
-
- restore
-
-"
-
-*End
-
-*CloseUI: *Resolution
-
-
-
-*% Halftone Information ===============
-
-*ContoneOnly: True
-
-*ScreenFreq: "200.0"
-
-*ScreenAngle: "45.0"
-
-
-
-*DefaultTransfer: Null
-
-*Transfer Null: "{ }"
-
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-
-
-*% Paper Handling ===================
-
-
-
-*LandscapeOrientation: Any
-
-
-
-*% PageSize is used to select the input slot by page size.
-
-*OpenUI *PageSize: PickOne
-
-*OrderDependency: 30 AnySetup *PageSize
-
-*DefaultPageSize: A4
-
-*PageSize Letter: "
-
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize Legal: "
-
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize Executive/Executive: "
-
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize Statement/Half Letter: "
-
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize A4: "
-
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize B5: "
-
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize A5: "
-
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize A6: "
-
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize Env10Rotated/#10 Envelope: "
-
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize EnvC6Rotated/C6 Envelope: "
-
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize EnvPRC5Rotated/DL Envelope: "
-
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize 5x8/Index card 5x8: "
-
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize 8x10/Index card 8x10: "
-
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageSize PhotoPaper/Photo Paper 4x6: "
-
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-
-
-*?PageSize: "
-
- save
-
- currentpagedevice /PageSize get aload pop
-
- (Unknown)
-
- 14 dict
-
- dup [612 792] (Letter) put
-
- dup [612 1008] (Legal) put
-
- dup [522 756] (Executive) put
-
- dup [396 612] (Statement) put
-
- dup [595 842] (A4) put
-
- dup [516 729] (B5) put
-
- dup [420 595] (A5) put
-
- dup [297 420] (A6) put
-
- dup [684 297] (Env10Rotated) put
-
- dup [459 323] (EnvC6Rotated) put
-
- dup [624 312] (EnvPRC5Rotated) put
-
- dup [360 576] (5x8) put
-
- dup [576 720] (8x10) put
-
- dup [288 432] (PhotoPaper) put
-
- { exch aload pop 4 index sub abs 5 le exch
-
- 5 index sub abs 5 le and
-
- {exch pop exit} {pop} ifelse
-
- } bind forall
-
- = flush pop pop
-
-restore
-
-"
-
-*End
-
-*CloseUI: *PageSize
-
-
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-
-*% is used when using manual feed, or there is only one input slot.
-
-*OpenUI *PageRegion: PickOne
-
-*OrderDependency: 40 AnySetup *PageRegion
-
-*DefaultPageRegion: A4
-
-*PageRegion Letter: "
-
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion Legal: "
-
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion Executive/Executive: "
-
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion Statement/Half Letter: "
-
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion A4: "
-
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion B5: "
-
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion A5: "
-
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion A6: "
-
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion Env10Rotated/#10 Envelope: "
-
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion EnvC6Rotated/C6 Envelope: "
-
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion EnvPRC5Rotated/DL Envelope: "
-
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion 5x8/Index card 5x8: "
-
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion 8x10/Index card 8x10: "
-
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*PageRegion PhotoPaper/Photo Paper 4x6: "
-
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-
-*End
-
-*CloseUI: *PageRegion
-
-
-
-*% The following entries provide information about specific paper keywords.
-
-*DefaultImageableArea: Letter
-
-*ImageableArea Letter: "9 40 603 783"
-
-*ImageableArea Legal: "9 40 603 999"
-
-*ImageableArea Executive/Executive: "9 40 513 747"
-
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-
-*ImageableArea A4: "9 40 586 832"
-
-*ImageableArea B5: "9 40 507 720"
-
-*ImageableArea A5: "9 40 411 586"
-
-*ImageableArea A6: "9 40 288 411"
-
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 603 288"
-
-*ImageableArea EnvC6Rotated/C6 Envelope: "9 40 450 314"
-
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 603 303"
-
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-
-*ImageableArea PhotoPaper/Photo Paper 4x6: "9 40 279 423"
-
-
-
-*?ImageableArea: "
-
- save
-
- /cvp { ( ) cvs print ( ) print } bind def
-
- /upperright {10000 mul floor 10000 div} bind def
-
- /lowerleft {10000 mul ceiling 10000 div} bind def
-
- newpath clippath pathbbox
-
- 4 -2 roll exch 2 {lowerleft cvp} repeat
-
- exch 2 {upperright cvp} repeat flush
-
- restore
-
-"
-
-*End
-
-
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: A4
-
-*PaperDimension Letter: "612 792"
-
-*PaperDimension Legal: "612 1008"
-
-*PaperDimension Executive/Executive: "522 756"
-
-*PaperDimension Statement/Half Letter: "396 612"
-
-*PaperDimension A4: "595 842"
-
-*PaperDimension B5: "516 729"
-
-*PaperDimension A5: "420 595"
-
-*PaperDimension A6: "297 420"
-
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-
-*PaperDimension EnvC6Rotated/C6 Envelope: "459 323"
-
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-
-*PaperDimension 5x8/Index card 5x8: "360 576"
-
-*PaperDimension 8x10/Index card 8x10: "576 720"
-
-*PaperDimension PhotoPaper/Photo Paper 4x6: "288 432"
-
-
-
-*MaxMediaWidth: "684"
-
-*MaxMediaHeight: "1008"
-
-*HWMargins: 0 0 0 0
-
-*ParamCustomPageSize Width: 1 points 284 684
-
-*ParamCustomPageSize Height: 2 points 284 1008
-
-*ParamCustomPageSize WidthOffset: 3 points 0 684
-
-*ParamCustomPageSize HeightOffset: 4 points 0 1008
-
-*ParamCustomPageSize Orientation: 5 int 0 3
-
-*LeadingEdge PreferLong: ""
-
-*DefaultLeadingEdge: PreferLong
-
-*CustomPageSize True: "
-
- 4 dict begin
-
- /Orientation exch def
-
- 2 array astore /Margins exch def
-
- 2 array astore /PageSize exch def
-
- /ImagingBBox null def
-
- currentdict
-
- end setpagedevice
-
-"
-
-*End
-
-*VariablePaperSize: True
-
-
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-
-*RequiresPageRegion All: True
-
-*OpenUI *InputSlot: PickOne
-
-*OrderDependency: 50 AnySetup *InputSlot
-
-*DefaultInputSlot: Cassette
-
-*InputSlot Cassette: ""
-
-*CloseUI: *InputSlot
-
-
-
-*DefaultOutputOrder: Normal
-
-
-
-*OpenGroup: MachJet
-
-
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-
-*DefaultEPMediaQualityMode: SuperFinePaper
-
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
-
- 3 dict dup /HWResolution [360 360] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (PaperF2) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
-
- 3 dict dup /HWResolution [360 360] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (PaperF2) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
-
- 3 dict dup /HWResolution [360 360] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (PaperF1) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
-
- 3 dict dup /HWResolution [720 360] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (FineF1) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (SuperFineF1) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (SuperFineF2) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (GlossyPaperF1) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (GlossyPaperF2) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film-720dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (GlossyFilmF1) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
-
- 3 dict dup /HWResolution [720 720] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (GlossyFilmF2) put put setpagedevice"
-
-*End
-
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
-
- 3 dict dup /HWResolution [360 360] put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
-
- dup /PostRenderingEnhanceDetails currentpagedevice
-
- /PostRenderingEnhanceDetails get dup
-
- /MediaType (TransF1) put put setpagedevice"
-
-*End
-
-*?EPMediaQualityMode: "
-
- save
-
- currentpagedevice /PostRenderingEnhanceDetails get dup
-
- /MediaType get exch /EpsonEnhance get
-
- (Unknown)
-
- [[(Paper_Fine) (PaperF2) 1]
-
- [(Paper_Fine_HighSpeed) (PaperF2) 3]
-
- [(Paper_SuperFine) (PaperF1) 9]
-
- [(FinePaper) (FineF1) 1]
-
- [(SuperFinePaper) (SuperFineF1) 1]
-
- [(SuperFinePaper1440) (SuperFineF2) 9]
-
- [(GlossyPaper) (GlossyPaperF1) 1]
-
- [(GlossyPaper1440) (GlossyPaperF2) 9]
-
- [(GlossyFilm) (GlossyFilmF1) 1]
-
- [(GlossyFilm1440) (GlossyFilmF2) 9]
-
- [(OHP) (TransF1) 1]]
-
- {aload pop 4 index eq
-
- {4 index eq {exch pop exit} {pop}ifelse}
-
- {pop pop}ifelse
-
- }forall
-
- = flush pop pop
-
-restore
-
-"
-
-*End
-
-*CloseUI: *EPMediaQualityMode
-
-
-
-*OpenUI *ColorModel/Ink: PickOne
-
-*OrderDependency: 20 AnySetup *ColorModel
-
-*DefaultColorModel: CMYK
-
-*ColorModel Gray/Grayscale: "
-
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-
-*End
-
-*ColorModel CMYK: "
-
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-
-*End
-
-*?ColorModel: "
-
- save
-
- currentpagedevice /ProcessColorModel get
-
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
-
- = flush
-
-restore
-
-"
-
-*End
-
-*CloseUI: *ColorModel
-
-
-
-*CloseGroup: MachJet
-
-
-
-*% Font Information =====================
-
-
-
-*DefaultFont: Courier
-
-*Font Courier: Standard "(002.004S)" Standard Disk
-
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-
-*Font Symbol: Special "(001.007S)" Special Disk
-
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-
-*?FontQuery: "
-
-save 4 dict begin /sv exch def
-
-/str (fonts/ ) def
-
-/st2 128 string def
-
-{
-
- count 0 gt {
-
- dup st2 cvs (/) print print (:) print
-
- dup FontDirectory exch known {pop (Yes)}{
-
- str exch st2 cvs dup length /len exch def
-
- 6 exch putinterval str 0 len 6 add getinterval mark exch
-
- { } st2 filenameforall counttomark 0 gt {
-
- cleartomark (Yes)}{cleartomark (No)}ifelse
-
- }ifelse = flush
-
- }{ exit } ifelse
-
-} bind loop
-
-(*) = flush
-
-sv end restore
-
-"
-
-*End
-
-
-
-*?FontList: "
-
-save 2 dict begin /sv exch def
-
-/str 128 string def
-
-FontDirectory { pop == } bind forall flush
-
-/filenameforall where {
-
- pop save (fonts/*) {
-
- dup length 6 sub 6 exch getinterval cvn ==
-
- } bind str filenameforall flush restore
-
-} if
-
-(*) = flush
-
-sv end restore
-
-"
-
-*End
-
-
-
-*% Printer Messages (verbatim from printer):
-
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-
-*Message: "\FontName\ not found, using Courier"
-
-
-
-*% Status (format: %%[ status: <one of these> ]%% )
-
-*Status: "initializing"
-
-*Status: "idle"
-
-*Status: "holding"
-
-*Status: "busy"
-
-*Status: "waiting"
-
-*Status: "printing"
-
-*Status: "PrinterError: timeout, clearing printer"
-
-*Status: "PrinterError: warming up"
-
-*Status: "PrinterError: service call"
-
-*Status: "PrinterError: out of paper"
-
-*Status: "PrinterError: paper entry misfeed"
-
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-
-*Source: "%program link%"
-
-
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "timeout, clearing printer"
-
-*PrinterError: "warming up"
-
-*PrinterError: "service call"
-
-*PrinterError: "out of paper"
-
-*PrinterError: "paper entry misfeed"
-
-*PrinterError: "offline"/Printer offline, press printer select button
-
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-
-
-*% Color Separation Information =====================
-
-
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-
-
-*% Set constraints for mediatype with resolution(720x720)========================
-
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-
-
-*% Set constraints for mediatype with resolution(720x360)========================
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-
-
-
-*% Set constraints for mediatype with resolution(360x360)========================
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-
-
-
-*% Set constraints for resolution with mediatype========================
-
-
-
-*% for 720x720 media========================
-
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-
-
-
-*% for 720x360 media========================
-
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-
-
-*% for 360x360 media========================
-
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-
-
-
-
-*% Last edited on Sept 26, 1997
-
-*% The byte count of this file should be exactly 028422 or 029778
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusPhoto700
-
diff --git a/psprint_config/configuration/ppds/EP_P1201.PS b/psprint_config/configuration/ppds/EP_P1201.PS
deleted file mode 100644
index 0f09cc34e17d..000000000000
--- a/psprint_config/configuration/ppds/EP_P1201.PS
+++ /dev/null
@@ -1,713 +0,0 @@
-*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"
-*FileVersion: "1.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_P1201.PPD"
-*Product: "(Stylus Photo 1200)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusPhoto1200 v2015.802"
-*ShortNickName: "EPSON StylusPhoto1200 v2015.802"
-*NickName: "EPSON StylusPhoto1200 v2015.802"
-*Manufacturer: "Epson"
-*% === Options and Constraints =========
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi/1440x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 16 dict
- dup [842 1191] (A3) put
- dup [729 1032] (B4) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [612 792] (Letter) put
- dup [396 612] (Statement) put
- dup [612 1008] (Legal) put
- dup [522 756] (Executive) put
- dup [684 297] (Env10Rotated) put
- dup [459 323] (EnvC6Rotated) put
- dup [624 312] (EnvPRC5Rotated) put
- dup [420 595] (A5) put
- dup [297 420] (A6) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- dup [288 432] (PhotoPaper) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion A3: "
- 2 dict dup /PageSize [842 1191] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B4: "
- 2 dict dup /PageSize [729 1032] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: A4
-*ImageableArea A3: "9 40 832 1182"
-*ImageableArea B4: "9 40 719 1023"
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 675 288"
-*ImageableArea EnvC6Rotated/C6 Envelope: "9 40 450 314"
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 615 303"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-*ImageableArea PhotoPaper/Photo Paper 4x6: "9 40 279 423"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension A3: "842 1191"
-*PaperDimension B4: "729 1032"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension Letter: "612 792"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-*PaperDimension EnvC6Rotated/C6 Envelope: "459 323"
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-*PaperDimension A5: "420 595"
-*PaperDimension A6: "297 420"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-*PaperDimension PhotoPaper/Photo Paper 4x6: "288 432"
-
-*MaxMediaWidth: "842"
-*MaxMediaHeight: "3168"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 842
-*ParamCustomPageSize Height: 2 points 284 3168
-*ParamCustomPageSize WidthOffset: 3 points 0 842
-*ParamCustomPageSize HeightOffset: 4 points 0 3168
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end
- dup userdict exch /EPCustomPageSizeDict exch put
- setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 50 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperF1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineF1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineF1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper1440/PQ Ink Jet Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineF2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperF1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper1440/PQ Glossy Paper-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperF2) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmF1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm1440/PQ Glossy Film-1440dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmF2) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransF1) put put setpagedevice"
-*End
-*EPMediaQualityMode BackLightFilm/Back light film: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (BackLightFilmF1) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperF2) 1]
- [(Paper_Fine_HighSpeed) (PaperF2) 3]
- [(Paper_SuperFine) (PaperF1) 9]
- [(FinePaper) (FineF1) 1]
- [(SuperFinePaper) (SuperFineF1) 1]
- [(SuperFinePaper1440) (SuperFineF2) 9]
- [(GlossyPaper) (GlossyPaperF1) 1]
- [(GlossyPaper1440) (GlossyPaperF2) 9]
- [(GlossyFilm) (GlossyFilmF1) 1]
- [(GlossyFilm1440) (GlossyFilmF2) 9]
- [(OHP) (TransF1) 1]
- [(BackLightFilm) (BackLightFilmF1) 1]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Grayscale: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode BackLightFilm
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm1440
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode BackLightFilm
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm1440 *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode BackLightFilm *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-
-*% Last edited on Sept 26, 1997
-*% The byte count of this file should be exactly 029105 or 029818
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusPhoto1200
diff --git a/psprint_config/configuration/ppds/EP_STPH1.PS b/psprint_config/configuration/ppds/EP_STPH1.PS
deleted file mode 100644
index f2dbed803f14..000000000000
--- a/psprint_config/configuration/ppds/EP_STPH1.PS
+++ /dev/null
@@ -1,640 +0,0 @@
-*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"
-*FileVersion: "2.0"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "EP_STPH1.PPD"
-*Product: "(Stylus Photo)"
-*PSVersion: "(2015.802) 0"
-*ModelName: "EPSON StylusPhoto v2015.802"
-*ShortNickName: "EPSON StylusPhoto v2015.802"
-*NickName: "EPSON StylusPhoto v2015.802"
-*Manufacturer: "Epson"
-
-*% === Product Information ===========================
-
-*% ==== Device Capabilities ===============
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*FreeVM: "300000"
-*LanguageLevel: "2"
-*TTRasterizer: Type42
-*FileSystem: True
-*?FileSystem: "
-save
- false (%os%)
- { currentdevparams dup /Writeable known
- {/Writeable get {pop true} if} {pop} ifelse
- } 10 string /IODevice resourceforall
- {(True)}{(False)} ifelse = flush
-restore
-"
-*End
-*Throughput: "1"
-*Password: "0"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not { (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*OpenUI *Resolution/Choose Resolution: PickOne
-*DefaultResolution: 720x720dpi
-*OrderDependency: 5 AnySetup *Resolution
-*Resolution 720x720dpi/720x720dpi: "1 dict dup /HWResolution [720 720] put setpagedevice"
-*Resolution 720x360dpi/720x360dpi: "1 dict dup /HWResolution [720 360] put setpagedevice"
-*Resolution 360x360dpi/360x360dpi: "1 dict dup /HWResolution [360 360] put setpagedevice"
-*?Resolution: "
- save
- currentpagedevice /HWResolution get dup
- 0 get ( ) cvs print
- (x) print
- 1 get ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-*CloseUI: *Resolution
-
-*% Halftone Information ===============
-*ContoneOnly: True
-*ScreenFreq: "200.0"
-*ScreenAngle: "45.0"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-
-*LandscapeOrientation: Any
-
-*% PageSize is used to select the input slot by page size.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: A4
-*PageSize Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- (Unknown)
- 14 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [522 756] (Executive) put
- dup [396 612] (Statement) put
- dup [595 842] (A4) put
- dup [516 729] (B5) put
- dup [420 595] (A5) put
- dup [297 420] (A6) put
- dup [684 297] (Env10Rotated) put
- dup [459 323] (EnvC6Rotated) put
- dup [624 312] (EnvPRC5Rotated) put
- dup [360 576] (5x8) put
- dup [576 720] (8x10) put
- dup [288 432] (PhotoPaper) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% PageRegion is used to select page size, but without selecting the input slot. This
-*% is used when using manual feed, or there is only one input slot.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: A4
-*PageRegion Letter: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Statement/Half Letter: "
- 2 dict dup /PageSize [396 612] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion B5: "
- 2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A5: "
- 2 dict dup /PageSize [420 595] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A6: "
- 2 dict dup /PageSize [297 420] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Env10Rotated/#10 Envelope: "
- 2 dict dup /PageSize [684 297] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvC6Rotated/C6 Envelope: "
- 2 dict dup /PageSize [459 323] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion EnvPRC5Rotated/DL Envelope: "
- 2 dict dup /PageSize [624 312] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 5x8/Index card 5x8: "
- 2 dict dup /PageSize [360 576] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion 8x10/Index card 8x10: "
- 2 dict dup /PageSize [576 720] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion PhotoPaper/Photo Paper 4x6: "
- 2 dict dup /PageSize [288 432] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter: "9 40 603 783"
-*ImageableArea Legal: "9 40 603 999"
-*ImageableArea Executive/Executive: "9 40 513 747"
-*ImageableArea Statement/Half Letter: "9 40 387 603"
-*ImageableArea A4: "9 40 586 832"
-*ImageableArea B5: "9 40 507 720"
-*ImageableArea A5: "9 40 411 586"
-*ImageableArea A6: "9 40 288 411"
-*ImageableArea Env10Rotated/#10 Envelope: "9 40 603 288"
-*ImageableArea EnvC6Rotated/C6 Envelope: "9 40 450 314"
-*ImageableArea EnvPRC5Rotated/DL Envelope: "9 40 603 303"
-*ImageableArea 5x8/Index card 5x8: "9 40 351 567"
-*ImageableArea 8x10/Index card 8x10: "9 40 567 711"
-*ImageableArea PhotoPaper/Photo Paper 4x6: "9 40 279 423"
-
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: A4
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive/Executive: "522 756"
-*PaperDimension Statement/Half Letter: "396 612"
-*PaperDimension A4: "595 842"
-*PaperDimension B5: "516 729"
-*PaperDimension A5: "420 595"
-*PaperDimension A6: "297 420"
-*PaperDimension Env10Rotated/#10 Envelope: "684 297"
-*PaperDimension EnvC6Rotated/C6 Envelope: "459 323"
-*PaperDimension EnvPRC5Rotated/DL Envelope: "624 312"
-*PaperDimension 5x8/Index card 5x8: "360 576"
-*PaperDimension 8x10/Index card 8x10: "576 720"
-*PaperDimension PhotoPaper/Photo Paper 4x6: "288 432"
-
-*MaxMediaWidth: "684"
-*MaxMediaHeight: "1008"
-*HWMargins: 0 0 0 0
-*ParamCustomPageSize Width: 1 points 284 684
-*ParamCustomPageSize Height: 2 points 284 1008
-*ParamCustomPageSize WidthOffset: 3 points 0 684
-*ParamCustomPageSize HeightOffset: 4 points 0 1008
-*ParamCustomPageSize Orientation: 5 int 0 3
-*LeadingEdge PreferLong: ""
-*DefaultLeadingEdge: PreferLong
-*CustomPageSize True: "
- 4 dict begin
- /Orientation exch def
- 2 array astore /Margins exch def
- 2 array astore /PageSize exch def
- /ImagingBBox null def
- currentdict
- end setpagedevice
-"
-*End
-*VariablePaperSize: True
-
-*% RequiresPageRegion is used because the input slot cannot sense the page size.
-*RequiresPageRegion All: True
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 50 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette: ""
-*CloseUI: *InputSlot
-
-*DefaultOutputOrder: Normal
-
-*OpenGroup: MachJet
-
-*OpenUI *EPMediaQualityMode/Media(Quality): PickOne
-*OrderDependency: 10 AnySetup *EPMediaQualityMode
-*DefaultEPMediaQualityMode: SuperFinePaper
-*EPMediaQualityMode Paper_Fine/Plain Paper-360dpi:"
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperE2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_Fine_HighSpeed/Plain Paper Draft-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 3 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperE2) put put setpagedevice"
-*End
-*EPMediaQualityMode Paper_SuperFine/Plain Paper-720dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 9 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (PaperE1) put put setpagedevice"
-*End
-*EPMediaQualityMode FinePaper/Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (FineE1) put put setpagedevice"
-*End
-*EPMediaQualityMode SuperFinePaper/PQ Ink Jet Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (SuperFineE1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyPaper/PQ Glossy Paper-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyPaperE1) put put setpagedevice"
-*End
-*EPMediaQualityMode GlossyFilm/PQ Glossy Film-720dpi: "
- 3 dict dup /HWResolution [720 720] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (GlossyFilmE1) put put setpagedevice"
-*End
-*EPMediaQualityMode OHP/Ink Jet Transparencies-360dpi: "
- 3 dict dup /HWResolution [360 360] put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup /EpsonEnhance 1 put put
- dup /PostRenderingEnhanceDetails currentpagedevice
- /PostRenderingEnhanceDetails get dup
- /MediaType (TransE1) put put setpagedevice"
-*End
-*?EPMediaQualityMode: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get dup
- /MediaType get exch /EpsonEnhance get
- (Unknown)
- [[(Paper_Fine) (PaperE2) 1]
- [(Paper_Fine_HighSpeed) (PaperE2) 3]
- [(Paper_SuperFine) (PaperE1) 9]
- [(FinePaper) (FineE1) 1]
- [(SuperFinePaper) (SuperFineE1) 1]
- [(GlossyPaper) (GlossyPaperE1) 1]
- [(GlossyFilm) (GlossyFilmE1) 1]
- [(OHP) (TransE1) 1]]
- {aload pop 4 index eq
- {4 index eq {exch pop exit} {pop}ifelse}
- {pop pop}ifelse
- }forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *EPMediaQualityMode
-
-*OpenUI *ColorModel/Ink: PickOne
-*OrderDependency: 20 AnySetup *ColorModel
-*DefaultColorModel: CMYK
-*ColorModel Gray/Gray: "
- 1 dict dup /ProcessColorModel /DeviceGray put setpagedevice"
-*End
-*ColorModel CMYK: "
- 1 dict dup /ProcessColorModel /DeviceCMYK put setpagedevice"
-*End
-*?ColorModel: "
- save
- currentpagedevice /ProcessColorModel get
- /DeviceGray eq {(Gray)}{(CMYK)}ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *ColorModel
-
-*CloseGroup: MachJet
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font Courier: Standard "(002.004S)" Standard Disk
-*Font Courier-Bold: Standard "(002.004S)" Standard Disk
-*Font Courier-BoldOblique: Standard "(002.004S)" Standard Disk
-*Font Courier-Oblique: Standard "(002.004S)" Standard Disk
-*Font Helvetica: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Narrow-Bold: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-BoldOblique: Standard "(001.007S)" Standard Disk
-*Font Helvetica-Narrow-Oblique: Standard "(001.006S)" Standard Disk
-*Font Helvetica-Oblique: Standard "(001.006S)" Standard Disk
-*Font Symbol: Special "(001.007S)" Special Disk
-*Font Times-Bold: Standard "(001.007S)" Standard Disk
-*Font Times-BoldItalic: Standard "(001.009S)" Standard Disk
-*Font Times-Italic: Standard "(001.007S)" Standard Disk
-*Font Times-Roman: Standard "(001.007S)" Standard Disk
-*?FontQuery: "
-save 4 dict begin /sv exch def
-/str (fonts/ ) def
-/st2 128 string def
-{
- count 0 gt {
- dup st2 cvs (/) print print (:) print
- dup FontDirectory exch known {pop (Yes)}{
- str exch st2 cvs dup length /len exch def
- 6 exch putinterval str 0 len 6 add getinterval mark exch
- { } st2 filenameforall counttomark 0 gt {
- cleartomark (Yes)}{cleartomark (No)}ifelse
- }ifelse = flush
- }{ exit } ifelse
-} bind loop
-(*) = flush
-sv end restore
-"
-*End
-
-*?FontList: "
-save 2 dict begin /sv exch def
-/str 128 string def
-FontDirectory { pop == } bind forall flush
-/filenameforall where {
- pop save (fonts/*) {
- dup length 6 sub 6 exch getinterval cvn ==
- } bind str filenameforall flush restore
-} if
-(*) = flush
-sv end restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ]%% )
-*Status: "initializing"
-*Status: "idle"
-*Status: "holding"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "PrinterError: timeout, clearing printer"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: service call"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: paper entry misfeed"
-*Status: "PrinterError: offline"/Printer offline, press printer select button
-*Status: "PrinterError: no ink cartridge"/Insert ink cartridge
-*Status: "PrinterError: no color ink cartridge"/Insert color ink cartridge
-*Status: "PrinterError: no black ink cartridge"/Insert black ink cartridge
-*Status: "PrinterError: clear output tray"/Remove page from output tray, then press printer select button
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "%program link%"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "timeout, clearing printer"
-*PrinterError: "warming up"
-*PrinterError: "service call"
-*PrinterError: "out of paper"
-*PrinterError: "paper entry misfeed"
-*PrinterError: "offline"/Printer offline, press printer select button
-*PrinterError: "no ink cartridge"/Insert ink cartridge
-*PrinterError: "no color ink cartridge"/Insert color ink cartridge
-*PrinterError: "no black ink cartridge"/Insert black ink cartridge
-*PrinterError: "clear output tray"/Remove page from output tray, then press printer select button
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi
-
-*% For 60 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.360x360dpi/60 lpi / 360x360 dpi: "60"
-
-*% For 72 lpi / 360x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.360x360dpi/72 lpi / 360x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.360x360dpi/72 lpi / 360x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.360x360dpi/72 lpi / 360x360 dpi: "50.0"
-
-*% For 72 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x360dpi/72 lpi / 720x360 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x360dpi/72 lpi / 720x360 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x360dpi/72 lpi / 720x360 dpi: "50.0"
-
-*% For 65 lpi / 720x360 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq CustomColor.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessCyan.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessMagenta.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-*ColorSepScreenFreq ProcessYellow.65lpi.720x360dpi/65 lpi / 720x360 dpi: "65"
-
-*% For 90 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq CustomColor.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessCyan.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessMagenta.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-*ColorSepScreenFreq ProcessYellow.90lpi.720x720dpi/90 lpi / 720x720 dpi: "90"
-
-*% For 72 lpi / 720x720 dpi=====================================================
-
-*ColorSepScreenAngle ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq CustomColor.72lpi.720x720dpi/72 lpi / 720x720 dpi: "72.033"
-*ColorSepScreenFreq ProcessCyan.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.72lpi.720x720dpi/72 lpi / 720x720 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.72lpi.720x720dpi/72 lpi / 720x720 dpi: "50.0"
-
-*% Set constraints for mediatype with resolution(720x720)========================
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode FinePaper
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode OHP
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x720dpi *EPMediaQualityMode Paper_SuperFine
-
-*% Set constraints for mediatype with resolution(720x360)========================
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_Fine_HighSpeed
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode Paper_SuperFine
-*UIConstraints: *Resolution 720x360dpi *EPMediaQualityMode OHP
-
-*% Set constraints for mediatype with resolution(360x360)========================
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode SuperFinePaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyPaper
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode GlossyFilm
-*UIConstraints: *Resolution 360x360dpi *EPMediaQualityMode FinePaper
-
-*% Set constraints for resolution with mediatype========================
-
-*% for 720x720 media========================
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode SuperFinePaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyPaper *Resolution 360x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode GlossyFilm *Resolution 360x360dpi
-
-*% for 720x360 media========================
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode FinePaper *Resolution 360x360dpi
-
-*% for 360x360 media========================
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_Fine_HighSpeed *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode Paper_SuperFine *Resolution 720x360dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x720dpi
-*UIConstraints: *EPMediaQualityMode OHP *Resolution 720x360dpi
-
-*% Last edited on June 5, 1997
-*% The byte count of this file should be exactly 025581 or 026221
-*% depending on the filesystem it resides in.
-*% end of PPD file for StylusPhoto(Win95)
diff --git a/psprint_config/configuration/ppds/GENERIC.PS b/psprint_config/configuration/ppds/GENERIC.PS
deleted file mode 100644
index e13569f19d55..000000000000
--- a/psprint_config/configuration/ppds/GENERIC.PS
+++ /dev/null
@@ -1,2 +0,0 @@
-*Driver: POSTSCRIPT
-*Include: "./SGENPRT.PS"
diff --git a/psprint_config/configuration/ppds/HP1200C1.PS b/psprint_config/configuration/ppds/HP1200C1.PS
deleted file mode 100644
index 6f5837149b93..000000000000
--- a/psprint_config/configuration/ppds/HP1200C1.PS
+++ /dev/null
@@ -1,585 +0,0 @@
-*PPD-Adobe: "4.1"
-*% 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.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "HP1200C1.PPD"
-*Product: "(HP DeskJet 1200C)"
-*PSVersion: "(2014.102) 1"
-*ModelName: "HP DeskJet 1200C/PS"
-*NickName: "HP DeskJet 1200C/PS"
-
-*% ==============Constraints =================
-
-*UIConstraints: *PageSize Legal *MediaType Special
-*UIConstraints: *PageSize Legal *MediaType Glossy
-*UIConstraints: *PageSize Legal *MediaType Transparency
-
-*UIConstraints: *PageSize Comm10 *MediaType Special
-*UIConstraints: *PageSize Comm10 *MediaType Glossy
-*UIConstraints: *PageSize Comm10 *MediaType Transparency
-
-*UIConstraints: *PageSize DL *MediaType Special
-*UIConstraints: *PageSize DL *MediaType Glossy
-*UIConstraints: *PageSize DL *MediaType Transparency
-
-*UIConstraints: *PageSize C5 *MediaType Special
-*UIConstraints: *PageSize C5 *MediaType Glossy
-*UIConstraints: *PageSize C5 *MediaType Transparency
-
-*UIConstraints: *MediaType Glossy *OutputMode Fast
-*UIConstraints: *MediaType Glossy *OutputMode Normal
-
-*UIConstraints: *MediaType Transparency *OutputMode Fast
-*UIConstraints: *MediaType Transparency *OutputMode Normal
-
-*UIConstraints: *PageSize Comm10 *InputSlot Cassette
-*UIConstraints: *PageRegion Comm10 *InputSlot Cassette
-
-*UIConstraints: *PageSize DL *InputSlot Cassette
-*UIConstraints: *PageRegion DL *InputSlot Cassette
-
-*UIConstraints: *PageSize C5 *InputSlot Cassette
-*UIConstraints: *PageRegion C5 *InputSlot Cassette
-
-*% =========== Device Capabilities ===============
-
-*LanguageLevel: "2"
-*Protocols: TBCP PJL
-*FreeVM: "2124600"
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "1"
-
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if "
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush "
-*End
-
-*DefaultResolution: 300dpi
-
-*% =============Halftone Information ===============
-
-*ScreenFreq: "60.0"
-*ScreenAngle: "0.0"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*%===================Print Quality====================
-
-*OpenUI *OutputMode/Print Quality: PickOne
-*OrderDependency: 10 AnySetup *OutputMode
-*DefaultOutputMode: Normal
-*OutputMode Fast/Fast: "
- 1 dict dup /HWResolution [300 300] put setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /PrintQuality 1 put
- dup /Type 11 put
- put
- setpagedevice"
-*End
-
-*OutputMode Normal/Normal: "
- 1 dict dup /HWResolution [300 300] put setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /PrintQuality 2 put
- dup /Type 11 put
- put
- setpagedevice"
-*End
-
-*OutputMode HighQuality/High Quality: "
- 1 dict dup /HWResolution [300 300] put setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict
- dup /PrintQuality 3 put
- dup /Type 11 put
- put
- setpagedevice"
-*End
-
-*?OutputMode: "
- save
- 4 dict
- dup 0 (Unknown) put
- dup 1 (Fast) put
- dup 2 (Normal) put
- dup 3 (HighQuality) put
- currentpagedevice /PostRenderingEnhanceDetails get
- /PrintQuality get get = flush
- restore "
-*End
-
-*CloseUI: *OutputMode
-
-*%===================Color/Gray Printing====================
-
-*OpenUI *ColorModel/Print Color as Gray: PickOne
-*OrderDependency: 30 AnySetup *ColorModel
-*DefaultColorModel: DeviceCMYK
-*ColorModel DeviceCMYK/No: "
- 1 dict dup /ProcessColorModel /DeviceCMYK
- put setpagedevice"
-*End
-
-*ColorModel DeviceGray/Yes: "
- 1 dict dup /ProcessColorModel /DeviceGray
- put setpagedevice"
-*End
-
-*?ColorModel: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get
- /ColorModel get get = flush
- restore "
-*End
-
-*CloseUI: *ColorModel
-
-*%=============== Dither Block ================
-
-*OpenUI *AppHalftoning/Application Halftoning: Boolean
-*OrderDependency: 80 AnySetup *AppHalftoning
-*DefaultAppHalftoning: True
-*AppHalftoning True/Allow: ""
-*AppHalftoning False/Disallow: "
- /setscreen { pop pop pop } def
- /setcolorscreen { pop pop pop pop pop pop pop pop pop pop pop pop } def"
-*End
-
-*CloseUI: *AppHalftoning
-
-*% ==============Paper Handling ===================
-
-*LandscapeOrientation: Plus90
-
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-
-*%===============Page Size======================
-
-*OpenUI *PageSize/Media Size: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter 8 1/2 x 11 in: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [612 792] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageSize Legal/Legal 8 1/2 x 14 in: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [612 1008] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageSize A4/A4 210 x 297 mm: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [595 842] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageSize Comm10/Env Comm10 4 1/8 x 9 1/2 in: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [297 684] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageSize DL/Env DL 110 x 220 mm: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [312 624] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageSize C5/Env C5 162 x 229 mm: "
- currentpagedevice /InputAttributes get 0 get
- dup length dict copy
- dup /PageSize [459 649] put
- 1 dict dup begin exch 0 exch def end
- 3 dict
- dup begin exch /InputAttributes exch def end
- dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*?PageSize: "
- save currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if (Unknown)
- 6 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [297 684] (Comm10) put
- dup [312 624] (DL) put
- dup [459 649] (C5) put
- { exch aload pop 4 index sub abs 5 le exch 5 index sub abs 5 le and
- { exch pop exit } { pop } ifelse
- } bind forall = flush pop pop
- restore"
-*End
-
-*CloseUI: *PageSize
-
-*%====================Page Region===================
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter 8 1/2 x 11 in: "
- 2 dict dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageRegion Legal/Legal 8 1/2 x 14 in: "
- 2 dict dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageRegion A4/A4 210 x 297 mm: "
- 2 dict dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageRegion Comm10/Env Comm10 4 1/8 x 9 1/2: "
- 2 dict dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageRegion DL/Env DL 110 x 220 mm: "
- 2 dict dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*PageRegion C5/Env C5 162 x 229 mm: "
- 2 dict dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-
-*CloseUI: *PageRegion
-
-*%===================Imageable Area=====================
-
-*% The following entries provide information about specific paper keywords.
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter 8 1/2 x 11 in: "14 12 598 780"
-*ImageableArea Legal/Legal 8 1/2 x 14 in: "14 12 598 996"
-*ImageableArea A4/A4 210 x 297 mm: "14 13 581 830"
-*ImageableArea Comm10/Env Comm10 4 1/8 x 9 1/2 in: "18 18 278 665"
-*ImageableArea DL/Env DL 110 x 220 mm: "18 19 294 605"
-*ImageableArea C5/Env C5 162 x 229 mm: "18 19 440 630"
-*?ImageableArea: "
- save /cvp { cvi ( ) cvs print ( ) print } bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {ceiling cvp} repeat
- exch 2 {floor cvp} repeat flush
- restore "
-*End
-
-*%====================Default Paper Dimension=================
-
-*% These provide the physical dimensions of the paper (by keyword)
-
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter 8 1/2 x 11: "612 792"
-*PaperDimension Legal/Legal 8 1/2 x 14 in: "612 1008"
-*PaperDimension A4/A4 210 x 297 mm: "595 842"
-*PaperDimension Comm10/Env Comm10 4 1/8 x 9 1/2 in: "297 684"
-*PaperDimension DL/Env DL 110 x 220 mm: "312 624"
-*PaperDimension C5/Env C5 162 x 229 mm: "459 649"
-*RequiresPageRegion All: True
-
-*%=================Media Type============================
-
-*OpenUI *MediaType/Media Type: PickOne
-*OrderDependency: 50 AnySetup *MediaType
-*DefaultMediaType: Plain
-*MediaType Plain/Plain Paper: "
- /DefaultColorRendering
- /PlainColorRendering
- /ColorRendering findresource
- /ColorRendering defineresource pop
- currentpagedevice /InputAttributes get 0 get
- /MediaType (Plain) put
- 1 dict dup /MediaType (Plain) put setpagedevice"
-*End
-
-*MediaType Special/HP Special Paper: "
- /DefaultColorRendering
- /SpecialColorRendering
- /ColorRendering findresource
- /ColorRendering defineresource pop
- currentpagedevice /InputAttributes get 0 get
- /MediaType (Special) put
- 1 dict dup /MediaType (Special) put setpagedevice"
-*End
-
-*MediaType Glossy/HP Glossy Paper: "
- /DefaultColorRendering
- /GlossyColorRendering
- /ColorRendering findresource
- /ColorRendering defineresource pop
- currentpagedevice /InputAttributes get 0 get
- /MediaType (Glossy) put
- 1 dict dup /MediaType (Glossy) put setpagedevice"
-*End
-
-*MediaType Transparency/HP Transparency: "
- /DefaultColorRendering
- /TransparencyColorRendering
- /ColorRendering findresource
- /ColorRendering defineresource pop
- currentpagedevice /InputAttributes get 0 get
- /MediaType (Transparency) put
- 1 dict dup /MediaType (Transparency) put setpagedevice"
-*End
-
-*?MediaType: "
- save
- currentpagedevice /MediaType get
- dup null eq {pop (Unknown)} if = flush
- restore "
-*End
-
-*CloseUI: *MediaType
-
-*%==================Input Slot====================
-
-*OpenUI *InputSlot/Media Source: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Cassette
-*InputSlot Cassette/Paper Tray: ""
-*CloseUI: *InputSlot
-
-*%=================Manual Feed====================
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True/True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False/False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore"
-*End
-
-*CloseUI: *ManualFeed
-
-*%===============Output Order and Bin=================
-
-*DefaultOutputBin: OnlyOne
-*DefaultOutputOrder: Reverse
-
-*% =================Font Information ==================
-
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore "
-*End
-
-*?FontList: "
- save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
- restore "
-*End
-
-*%==================Printer Error Messages===============
-
-*% 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: "PrinterError: Out Of Paper"
-*Status: "PrinterError: Cover Open"
-*Status: "PrinterError: Feed Manual"
-*Status: "PrinterError: Paper Jam"
-*Status: "PrinterError: Miscellaneous Error"
-*Status: "PrinterError: Fatal Error"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%%)
-
-*Source: "Serial"
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "OptionalIO"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-
-*PrinterError: "Out Of Paper"
-*PrinterError: "Cover Open"
-*PrinterError: "Feed Manual"
-*PrinterError: "Paper Jam"
-*PrinterError: "Miscellaneous Error"
-*PrinterError: "Fatal Error"
-
-*%============Color Separation Information ==============
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*%================For 60 lpi / 300 dpi ==================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*%================For 53 lpi / 300 dpi =====================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% Produced by "bldppd42.ps" version 4.1 edit 2
-*% Last Edit Date: Aug 4 1995
-*% End of PPD file for DeskJet 1200C
-*% The byte count of this file should be exactly 017602 or 018187
-*% depending on the filesystem it resides in.
-*% end of PPD file for HP DeskJet 1200C
diff --git a/psprint_config/configuration/ppds/HP2500C1.PS b/psprint_config/configuration/ppds/HP2500C1.PS
deleted file mode 100644
index c73eb4073148..000000000000
--- a/psprint_config/configuration/ppds/HP2500C1.PS
+++ /dev/null
@@ -1,1099 +0,0 @@
-*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"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "HP2500C1.PPD"
-*Product: "(HP DesignJet 2500CP)"
-*PSVersion: "(2016.104) 1"
-*ModelName: "HP DesignJet 2500CP"
-*ShortNickName: "HP DesignJet 2500CP"
-*NickName: "HP DesignJet 2500CP v2016.104"
-*Manufacturer: "HP"
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-*Protocols:PJL TBCP
-
-*FreeVM: "7428480"
-
-*VMOption standard: "7428480"
-*VMOption 8MB: "15077208"
-*VMOption 16MB: "23542144"
-*VMOption 32MB: "39721344"
-*VMOption 48MB: "54532480"
-
-*FCacheSize standard: 1464138
-*FCacheSize 8MB: 2276368
-*FCacheSize 16MB: 3089431
-*FCacheSize 32MB: 4714724
-*FCacheSize 48MB: 31700084
-
-*OpenGroup: InstallableOptions
-*OpenUI *InstalledMemory/Installed Memory: PickOne
-*DefaultInstalledMemory: standard
-*InstalledMemory standard/Standard: " "
-*InstalledMemory 8MB/24 MB Total Memory: " "
-*InstalledMemory 16MB/32 MB Total Memory: " "
-*InstalledMemory 32MB/48 MB Total Memory: " "
-*InstalledMemory 48MB/64 MB Total Memory: " "
-*?InstalledMemory: "
- save
- currentsystemparams /RamSize get
- 524288 div ceiling cvi 2 div
- /size exch def
- size 60 ge
- {(48MB)}
- {
- size 44 ge
- {(32MB)}
- {
- size 28 ge
- {(16MB)}
- {
- size 20 ge
- {(8MB)}
- {
- size 12 ge
- {(standard)}
- {(Unknown)} ifelse
- } ifelse
- } ifelse
- } ifelse
- } ifelse
- = flush
- restore
-"
-*End
-
-*CloseUI: *InstalledMemory
-*CloseGroup: InstallableOptions
-
-*ColorDevice: True
-*DefaultColorSpace: CMYK
-*VariablePaperSize: True
-*TTRasterizer: Type42
-*?TTRasterizer: "
- save
- 42 /FontType resourcestatus
- { pop pop (Type42)} {pop pop (None)} ifelse = flush
- restore"
-*End
-*Throughput: "1"
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 600dpi
-
-*% PJL Information ===============
-*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
-*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT<0A>"
-*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
-
-*% Halftone Information ===============
-*ScreenFreq: "60.0"
-*ScreenAngle: "0.0"
-*DefaultScreenProc: Dot
-*ScreenProc Dot: "
-{abs exch abs 2 copy add 1 gt {1 sub dup mul exch
-1 sub dup mul add 1 sub } {dup mul exch dup mul
-add 1 exch sub } ifelse }
-"
-*End
-*ScreenProc Line: "{ pop }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1
-exch sub }"
-*End
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*DefaultHalftoneType: 100
-
-
-*%=============== Print Color as Gray ================
-
-*OpenUI *HPColorAsGray/Print Color as Gray: PickOne
-*OrderDependency: 5.0 AnySetup *HPColorAsGray
-*DefaultHPColorAsGray: No
-*HPColorAsGray Yes/Yes: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
-*HPColorAsGray No/No: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
-*?HPColorAsGray: "
-save
-currentpagedevice /ProcessColorModel get /DeviceGray eq
-{(Yes)}{(No)} ifelse
-= flush
-restore "
-*End
-*CloseUI: *HPColorAsGray
-
-
-*%=============== Auto-scaling Control ================
-
-*OpenUI *HPAutoScaling/Scale to: PickOne
-*OrderDependency: 20.0 AnySetup *HPAutoScaling
-*DefaultHPAutoScaling: Off
-
-*HPAutoScaling Off/No Change:" "
-
-*HPAutoScaling Letter/US Letter: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [612 792 ] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling LetterFullBleed/Full Bleed US Letter: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [777 1009 ] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling Tabloid/Tabloid: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [792 1224] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling TabloidFullBleed/Full Bleed Tabloid: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [957 1441] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling AnsiC/ANSI C: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1224 1584] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling AnsiD/ANSI D: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1584 2448] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling AnsiE/ANSI E: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2448 3168] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling ARCHA/ARCH A: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [648 864] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling ARCHB/ARCH B: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [864 1296] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling ARCHC/ARCH C: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1296 1728] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling ARCHD/ARCH D: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 2592] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling ARCHE/ARCH E: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 3456] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A4/ISO A4: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [595 842] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A4FullBleed/Full Bleed ISO A4: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [760 1059] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A3/ISO A3: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [842 1191] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A3FullBleed/Full Bleed ISO A3: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1007 1408] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A2/ISO A2: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1191 1684] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A1/ISO A1: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1684 2384] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling A0/ISO A0: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2384 3370] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling OVERSIZEA2/Oversize A2: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1377 1772] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling OVERSIZEA1/Oversize A1: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1788 2551] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling OVERSIZEA0/Oversize A0: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2567 3529] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling B4/JIS B4: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [729 1032] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling B3/JIS B3: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1032 1460] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling B2/JIS B2: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1460 2064] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling B1/JIS B1: "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2064 2920] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x48/24" x 48": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 3456] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x60/24" x 60": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 4320] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x72/24" x 72": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 5184] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x84/24" x 84": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 6048] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x96/24" x 96": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 6912] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P24x108/24" x 108": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [1728 7776] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P36x60/36" x 60": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 4320] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P36x72/36" x 72": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 5184] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P36x84/36" x 84": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 6048] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P36x96/36" x 96": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 6912] exch exec
-<<>> setpagedevice"
-*End
-
-*HPAutoScaling P36x108/36" x 108": "
-/HPDict /ProcSet findresource /SetAutoScale get true exch exec /HPDict /ProcSet findresource /SetDestinationPageSize get [2592 7776] exch exec
-<<>> setpagedevice"
-*End
-
-*CloseUI: *HPAutoScaling
-
-
-*%=============== Print Quality ================
-
-*OpenUI *OutputMode/Print Quality: PickOne
-*OrderDependency: 50.0 AnySetup *OutputMode
-*DefaultOutputMode: Best
-
-*OutputMode Best/Best - 600 dpi: "
-<< /HWResolution [600 600]
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- << /PrintQuality 3
- /Type 11 >>
->> setpagedevice
-"
-*End
-
-*OutputMode Normal/Normal: "
-<< /HWResolution [300 300]
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- << /PrintQuality 2
- /Type 11 >>
->> setpagedevice
-"
-*End
-
-*OutputMode Fast/Fast: "
-<< /HWResolution [300 300]
- /PostRenderingEnhance true
- /PostRenderingEnhanceDetails
- << /PrintQuality 1
- /Type 11 >>
->> setpagedevice
-"
-*End
-
-*?OutputMode: "
- save
- 3 dict
- dup 1 (Fast) put
- dup 2 (Normal) put
- dup 3 (Best) put
- currentpagedevice /PostRenderingEnhanceDetails get
- /PrintQuality get get = flush
- restore"
-*End
-*CloseUI: *OutputMode
-
-
-*% Mirror Print ======================
-*OpenUI *MirrorPrint/Mirror Print: Boolean
-*OrderDependency: 50.0 AnySetup *MirrorPrint
-*DefaultMirrorPrint: False
-*MirrorPrint True: "<</MirrorPrint true>>setpagedevice"
-*MirrorPrint False: "<</MirrorPrint false>>setpagedevice"
-*?MirrorPrint: "
-save
- currentpagedevice /MirrorPrint get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *MirrorPrint
-
-
-*%=============== Transverse ================
-
-*OpenUI *HPTransverse/Rotate: Boolean
-*OrderDependency: 50.0 AnySetup *HPTransverse
-*DefaultHPTransverse: False
-*HPTransverse True: "<< /Orientation 1 >> setpagedevice"
-*HPTransverse False: "<< /Orientation 0 >> setpagedevice"
-*?HPTransverse: "
-save
-currentpagedevice /Orientation get 0 eq
-{ (False) }
-{
- currentpagedevice /Orientation get 1 eq
- { (True) }
- { (Unknown) } ifelse
-} ifelse = flush
-restore
-"
-*End
-*CloseUI: *HPTransverse
-
-
-*%=============== HP Color Management ================
-
-*OpenUI *HPColorMan/Color management: PickOne
-*OrderDependency: 60.0 AnySetup *HPColorMan
-*DefaultHPColorMan: EuroScale
-
-*HPColorMan EuroScale/EuroScale:"
- globaldict /ColorSmartColorMatching known {
- /EuroOffset ColorSmartColorMatching
- <<>> setpagedevice
- } if
-"
-*End
-
-*HPColorMan SWOP/SWOP:"
- globaldict /ColorSmartColorMatching known {
- /SWOP ColorSmartColorMatching
- <<>> setpagedevice
- } if
-"
-*End
-
-*HPColorMan Toyo/Toyo:"
- globaldict /ColorSmartColorMatching known {
- /JapanOffset ColorSmartColorMatching
- <<>> setpagedevice
- } if
-"
-*End
-
-*HPColorMan ColorSmart/ColorSmart Vivid Business Graphics:"
- globaldict /ColorSmartColorMatching known {
- true ColorSmartColorMatching
- <<>> setpagedevice
- } if
-"
-*End
-
-*HPColorMan None/No Color Adjustment - Expert users only:"
- globaldict /ColorSmartColorMatching known {false ColorSmartColorMatching
- <<>> setpagedevice} if
-"
-*End
-
-*?HPColorMan: "
-save
-
-userdict /ColorSmartOn known
-{
- userdict /ColorSmartOn get
- {(ColorSmart)}
- {
- userdict /ColorEmulationMode known
- {
- userdict /ColorEmulationMode get
- dup 0 eq
- {(None)}
- {
- dup 1 eq
- {(SWOP)}
- {
- dup 2 eq
- {(EuroScale)}
- {
- dup 3 eq
- {(Toyo)}
- {(Unknown)} ifelse
- } ifelse
- } ifelse
- } ifelse exch pop
- }
- {(None)} ifelse
- } ifelse
-}
-{
- userdict /ColorEmulationMode known
- {
- userdict /ColorEmulationMode get
- dup 0 eq
- {(None)}
- {
- dup 1 eq
- {(SWOP)}
- {
- dup 2 eq
- {(EuroScale)}
- {
- dup 3 eq
- {(Toyo)}
- {(Unknown)} ifelse
- } ifelse
- } ifelse
- } ifelse exch pop
- }
- {(None)} ifelse
-} ifelse
-
-= flush
-restore
-"
-*End
-
-*CloseUI: *HPColorMan
-
-
-*%=============== Brightness Control ================
-
-*OpenUI *HPBrightness/Lightness: PickOne
-*OrderDependency: 70.0 AnySetup *HPBrightness
-*DefaultHPBrightness: leveleven
-
-*HPBrightness levelm25/- 25% Lighter:" 25
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelm20/- 20%:" 20
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelm15/- 15%:" 15
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelm10/- 10%:" 10
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelm5/- 5%:" 5
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness leveleven/0% No Change:" "
-
-*HPBrightness levelp5/+ 5%:" -5
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelp10/+ 10%:" -10
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelp15/+ 15%:" -15
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelp20/+ 20%:" -20
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*HPBrightness levelp25/+ 25% Darker:" -25
- dup dup 50 lt exch -50 gt and
- { 0.01 mul 0.5 add ln 0.5 ln exch div }
- { pop 1 } ifelse 1 exch div { 0 exp } dup
- 0 4 -1 roll put settransfer"
-*End
-
-*?HPBrightness: "
-save
-11 dict
- dup 0.415038 (levelm25) put
- dup 0.514573 (levelm20) put
- dup 0.621488 (levelm15) put
- dup 0.736966 (levelm10) put
- dup 0.862496 (levelm5) put
- dup 1.0 (leveleven) put
- dup 1.152 (levelp5) put
- dup 1.32193 (levelp10) put
- dup 1.51457 (levelp15) put
- dup 1.73697 (levelp20) put
- dup 2.0 (levelp25) put
-
-dup
-
-currenttransfer dup length 0 eq
- {pop pop pop (Unknown)}
- {0 get dup 1 lt
- {1000000 mul round 1000000 div}
- {100000 mul round 100000 div} ifelse
- dup
- 3 1 roll
- known
- { get }
- { pop pop (Unknown)} ifelse
- } ifelse
-= flush
-restore
-"
-*End
-*CloseUI: *HPBrightness
-
-
-*%=============== Allow Application Halftoning ================
-
-*OpenUI *HPAppHalftoning/Application Halftoning: Boolean
-*OrderDependency: 80.0 AnySetup *HPAppHalftoning
-*DefaultHPAppHalftoning: False
-*HPAppHalftoning True/Allow: ""
-*HPAppHalftoning False/Disallow: "
- userdict /setscreen { pop pop pop } put
- userdict /setcolorscreen { pop pop pop pop pop pop pop pop pop pop pop pop } put
- userdict /sethalftone{pop} put
- <<>> setpagedevice"
-*End
-*?HPAppHalftoning: "
-save
-2 dict begin
- /AllSamePop {
- dup 0 get exch true exch
- { 2 index ne {pop false exit} if } forall
- exch dup /pop eq exch /pop load eq or and
- } def
- /Lenchk { dup type /arraytype eq
- {dup length 3 -1 roll eq {true}{pop false}ifelse}
- {pop pop false}
- ifelse
- } def
- 3 /setscreen load Lenchk {AllSamePop}{false}ifelse
- 12 /setcolorscreen load Lenchk {AllSamePop}{false}ifelse
- 1 /sethalftone load Lenchk {AllSamePop}{false}ifelse
-end
-and and not
-{(True)} {(False)} ifelse
-= flush
-restore "
-*End
-*CloseUI: *HPAppHalftoning
-
-
-*% Paper Handling ===================
-
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30.0 AnySetup *PageSize
-*DefaultPageSize: Unknown
-*PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageSize LetterFullBleed/Full Bleed US Letter: "<</PageSize[777 1009]/ImagingBBox null>>setpagedevice"
-*PageSize Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageSize TabloidFullBleed/Full Bleed Tabloid: "<</PageSize[957 1441]/ImagingBBox null>>setpagedevice"
-*PageSize AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
-*PageSize AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
-*PageSize AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
-*PageSize ARCHA/ARCH A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
-*PageSize ARCHB/ARCH B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
-*PageSize ARCHC/ARCH C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
-*PageSize ARCHD/ARCH D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
-*PageSize ARCHE/ARCH E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
-*PageSize A4/ISO A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageSize A4FullBleed/Full Bleed ISO A4: "<</PageSize[760 1059]/ImagingBBox null>>setpagedevice"
-*PageSize A3/ISO A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageSize A3FullBleed/Full Bleed ISO A3: "<</PageSize[1007 1408]/ImagingBBox null>>setpagedevice"
-*PageSize A2/ISO A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
-*PageSize A1/ISO A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
-*PageSize A0/ISO A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
-*PageSize OVERSIZEA2/Oversize A2: "<</PageSize[1377 1772]/ImagingBBox null>>setpagedevice"
-*PageSize OVERSIZEA1/Oversize A1: "<</PageSize[1788 2551]/ImagingBBox null>>setpagedevice"
-*PageSize OVERSIZEA0/Oversize A0: "<</PageSize[2567 3529]/ImagingBBox null>>setpagedevice"
-*PageSize B4/JIS B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
-*PageSize B3/JIS B3: "<</PageSize[1032 1460]/ImagingBBox null>>setpagedevice"
-*PageSize B2/JIS B2: "<</PageSize[1460 2064]/ImagingBBox null>>setpagedevice"
-*PageSize B1/JIS B1: "<</PageSize[2064 2920]/ImagingBBox null>>setpagedevice"
-*PageSize P24x48/24" x 48": "<</PageSize[1728 3456]/ImagingBBox null>>setpagedevice"
-*PageSize P24x60/24" x 60": "<</PageSize[1728 4320]/ImagingBBox null>>setpagedevice"
-*PageSize P24x72/24" x 72": "<</PageSize[1728 5184]/ImagingBBox null>>setpagedevice"
-*PageSize P24x84/24" x 84": "<</PageSize[1728 6048]/ImagingBBox null>>setpagedevice"
-*PageSize P24x96/24" x 96": "<</PageSize[1728 6912]/ImagingBBox null>>setpagedevice"
-*PageSize P24x108/24" x 108": "<</PageSize[1728 7776]/ImagingBBox null>>setpagedevice"
-*PageSize P36x60/36" x 60": "<</PageSize[2592 4320]/ImagingBBox null>>setpagedevice"
-*PageSize P36x72/36" x 72": "<</PageSize[2592 5184]/ImagingBBox null>>setpagedevice"
-*PageSize P36x84/36" x 84": "<</PageSize[2592 6048]/ImagingBBox null>>setpagedevice"
-*PageSize P36x96/36" x 96": "<</PageSize[2592 6912]/ImagingBBox null>>setpagedevice"
-*PageSize P36x108/36" x 108": "<</PageSize[2592 7776]/ImagingBBox null>>setpagedevice"
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 33 dict
- dup [612 792] (Letter) put
- dup [777 1009] (LetterFullBleed) put
- dup [792 1224] (Tabloid) put
- dup [957 1441] (TabloidFullBleed) put
- dup [1224 1584] (AnsiC) put
- dup [1584 2448] (AnsiD) put
- dup [2448 3168] (AnsiE) put
- dup [648 864] (ARCHA) put
- dup [864 1296] (ARCHB) put
- dup [1296 1728] (ARCHC) put
- dup [1728 2592] (ARCHD) put
- dup [2592 3456] (ARCHE) put
- dup [595 842] (A4) put
- dup [760 1059] (A4FullBleed) put
- dup [842 1191] (A3) put
- dup [1007 1408] (A3FullBleed) put
- dup [1191 1684] (A2) put
- dup [1684 2384] (A1) put
- dup [2384 3370] (A0) put
- dup [1377 1772] (OVERSIZEA2) put
- dup [1788 2551] (OVERSIZEA1) put
- dup [2567 3529] (OVERSIZEA0) put
- dup [729 1032] (B4) put
- dup [1032 1460] (B3) put
- dup [1460 2064] (B2) put
- dup [2064 2920] (B1) put
- dup [1728 3456] (P24x48) put
- dup [1728 4320] (P24x60) put
- dup [1728 5184] (P24x72) put
- dup [1728 6048] (P24x84) put
- dup [1728 6912] (P24x96) put
- dup [1728 7776] (P24x108) put
- dup [2592 4320] (P36x60) put
- dup [2592 5184] (P36x72) put
- dup [2592 6048] (P36x84) put
- dup [2592 6912] (P36x96) put
- dup [2592 7776] (P36x108) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40.0 AnySetup *PageRegion
-*DefaultPageRegion: Unknown
-*PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
-*PageRegion LetterFullBleed/Full Bleed US Letter: "<</PageSize[777 1009]/ImagingBBox null>>setpagedevice"
-*PageRegion Tabloid/Tabloid: "<</PageSize[792 1224]/ImagingBBox null>>setpagedevice"
-*PageRegion TabloidFullBleed/Full Bleed Tabloid: "<</PageSize[957 1441]/ImagingBBox null>>setpagedevice"
-*PageRegion AnsiC/ANSI C: "<</PageSize[1224 1584]/ImagingBBox null>>setpagedevice"
-*PageRegion AnsiD/ANSI D: "<</PageSize[1584 2448]/ImagingBBox null>>setpagedevice"
-*PageRegion AnsiE/ANSI E: "<</PageSize[2448 3168]/ImagingBBox null>>setpagedevice"
-*PageRegion ARCHA/ARCH A: "<</PageSize[648 864]/ImagingBBox null>>setpagedevice"
-*PageRegion ARCHB/ARCH B: "<</PageSize[864 1296]/ImagingBBox null>>setpagedevice"
-*PageRegion ARCHC/ARCH C: "<</PageSize[1296 1728]/ImagingBBox null>>setpagedevice"
-*PageRegion ARCHD/ARCH D: "<</PageSize[1728 2592]/ImagingBBox null>>setpagedevice"
-*PageRegion ARCHE/ARCH E: "<</PageSize[2592 3456]/ImagingBBox null>>setpagedevice"
-*PageRegion A4/ISO A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
-*PageRegion A4FullBleed/Full Bleed ISO A4: "<</PageSize[760 1059]/ImagingBBox null>>setpagedevice"
-*PageRegion A3/ISO A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
-*PageRegion A3FullBleed/Full Bleed ISO A3: "<</PageSize[1007 1408]/ImagingBBox null>>setpagedevice"
-*PageRegion A2/ISO A2: "<</PageSize[1191 1684]/ImagingBBox null>>setpagedevice"
-*PageRegion A1/ISO A1: "<</PageSize[1684 2384]/ImagingBBox null>>setpagedevice"
-*PageRegion A0/ISO A0: "<</PageSize[2384 3370]/ImagingBBox null>>setpagedevice"
-*PageRegion OVERSIZEA2/Oversize A2: "<</PageSize[1377 1772]/ImagingBBox null>>setpagedevice"
-*PageRegion OVERSIZEA1/Oversize A1: "<</PageSize[1788 2551]/ImagingBBox null>>setpagedevice"
-*PageRegion OVERSIZEA0/Oversize A0: "<</PageSize[2567 3529]/ImagingBBox null>>setpagedevice"
-*PageRegion B4/JIS B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
-*PageRegion B3/JIS B3: "<</PageSize[1032 1460]/ImagingBBox null>>setpagedevice"
-*PageRegion B2/JIS B2: "<</PageSize[1460 2064]/ImagingBBox null>>setpagedevice"
-*PageRegion B1/JIS B1: "<</PageSize[2064 2920]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x48/24" x 48": "<</PageSize[1728 3456]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x60/24" x 60": "<</PageSize[1728 4320]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x72/24" x 72": "<</PageSize[1728 5184]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x84/24" x 84": "<</PageSize[1728 6048]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x96/24" x 96": "<</PageSize[1728 6912]/ImagingBBox null>>setpagedevice"
-*PageRegion P24x108/24" x 108": "<</PageSize[1728 7776]/ImagingBBox null>>setpagedevice"
-*PageRegion P36x60/36" x 60": "<</PageSize[2592 4320]/ImagingBBox null>>setpagedevice"
-*PageRegion P36x72/36" x 72": "<</PageSize[2592 5184]/ImagingBBox null>>setpagedevice"
-*PageRegion P36x84/36" x 84": "<</PageSize[2592 6048]/ImagingBBox null>>setpagedevice"
-*PageRegion P36x96/36" x 96": "<</PageSize[2592 6912]/ImagingBBox null>>setpagedevice"
-*PageRegion P36x108/36" x 108": "<</PageSize[2592 7776]/ImagingBBox null>>setpagedevice"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Unknown
-*ImageableArea Letter/US Letter: "51 77 561 715"
-*ImageableArea LetterFullBleed/Full Bleed US Letter: "51 77 726 932"
-*ImageableArea Tabloid/Tabloid: "51 77 741 1147"
-*ImageableArea TabloidFullBleed/Full Bleed Tabloid: "51 77 906 1364"
-*ImageableArea AnsiC/ANSI C: "51 77 1173 1507"
-*ImageableArea AnsiD/ANSI D: "51 77 1533 2371"
-*ImageableArea AnsiE/ANSI E: "51 77 2397 3091"
-*ImageableArea ARCHA/ARCH A: "51 77 597 787"
-*ImageableArea ARCHB/ARCH B: "51 77 813 1219"
-*ImageableArea ARCHC/ARCH C: "51 77 1245 1651"
-*ImageableArea ARCHD/ARCH D: "51 77 1677 2515"
-*ImageableArea ARCHE/ARCH E: "51 77 2541 3379"
-*ImageableArea A4/ISO A4: "51 77 544 765"
-*ImageableArea A4FullBleed/Full Bleed ISO A4: "51 77 709 982"
-*ImageableArea A3/ISO A3: "51 77 791 1114"
-*ImageableArea A3FullBleed/Full Bleed ISO A3: "51 77 956 1331"
-*ImageableArea A2/ISO A2: "51 77 1140 1607"
-*ImageableArea A1/ISO A1: "51 77 1633 2307"
-*ImageableArea A0/ISO A0: "51 77 2333 3293"
-*ImageableArea OVERSIZEA2/Oversize A2: "51 77 1326 1695"
-*ImageableArea OVERSIZEA1/Oversize A1: "51 77 1737 2474"
-*ImageableArea OVERSIZEA0/Oversize A0: "51 77 2516 3452"
-*ImageableArea B4/JIS B4: "51 77 678 955"
-*ImageableArea B3/JIS B3: "51 77 981 1383"
-*ImageableArea B2/JIS B2: "51 77 1409 1987"
-*ImageableArea B1/JIS B1: "51 77 2013 2843"
-*ImageableArea P24x48/24" x 48": "51 77 1677 3379"
-*ImageableArea P24x60/24" x 60": "51 77 1677 4243"
-*ImageableArea P24x72/24" x 72": "51 77 1677 5107"
-*ImageableArea P24x84/24" x 84": "51 77 1677 5971"
-*ImageableArea P24x96/24" x 96": "51 77 1677 6835"
-*ImageableArea P24x108/24" x 108": "51 77 1677 7699"
-*ImageableArea P36x60/36" x 60": "51 77 2541 4243"
-*ImageableArea P36x72/36" x 72": "51 77 2541 5107"
-*ImageableArea P36x84/36" x 84": "51 77 2541 5971"
-*ImageableArea P36x96/36" x 96": "51 77 2541 6835"
-*ImageableArea P36x108/36" x 108": "51 77 2541 7699"
-*?ImageableArea: "
-save
-/cvp {cvi ( ) cvs
-print ( ) print} bind def
-newpath clippath pathbbox
-4 -2 roll exch 2 {ceiling cvp} repeat
-exch 2 {floor cvp} repeat flush
-restore"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension:Unknown
-*PaperDimension Letter/US Letter: "612 792"
-*PaperDimension LetterFullBleed/Full Bleed US Letter: "777 1009"
-*PaperDimension Tabloid/Tabloid: "792 1224"
-*PaperDimension TabloidFullBleed/Full Bleed Tabloid: "957 1441"
-*PaperDimension AnsiC/ANSI C: "1224 1584"
-*PaperDimension AnsiD/ANSI D: "1584 2448"
-*PaperDimension AnsiE/ANSI E: "2448 3168"
-*PaperDimension ARCHA/ARCH A: "648 864"
-*PaperDimension ARCHB/ARCH B: "864 1296"
-*PaperDimension ARCHC/ARCH C: "1296 1728"
-*PaperDimension ARCHD/ARCH D: "1728 2592"
-*PaperDimension ARCHE/ARCH E: "2592 3456"
-*PaperDimension A4/ISO A4: "595 842"
-*PaperDimension A4FullBleed/Full Bleed ISO A4: "760 1059"
-*PaperDimension A3/ISO A3: "842 1191"
-*PaperDimension A3FullBleed/Full Bleed ISO A3: "1007 1408"
-*PaperDimension A2/ISO A2: "1191 1684"
-*PaperDimension A1/ISO A1: "1684 2384"
-*PaperDimension A0/ISO A0: "2384 3370"
-*PaperDimension OVERSIZEA2/Oversize A2: "1377 1772"
-*PaperDimension OVERSIZEA1/Oversize A1: "1788 2551"
-*PaperDimension OVERSIZEA0/Oversize A0: "2567 3529"
-*PaperDimension B4/JIS B4: "729 1032"
-*PaperDimension B3/JIS B3: "1032 1460"
-*PaperDimension B2/JIS B2: "1460 2064"
-*PaperDimension B1/JIS B1: "2064 2920"
-*PaperDimension P24x48/24" x 48": "1728 3456"
-*PaperDimension P24x60/24" x 60": "1728 4320"
-*PaperDimension P24x72/24" x 72": "1728 5184"
-*PaperDimension P24x84/24" x 84": "1728 6048"
-*PaperDimension P24x96/24" x 96": "1728 6912"
-*PaperDimension P24x108/24" x 108": "1728 7776"
-*PaperDimension P36x60/36" x 60": "2592 4320"
-*PaperDimension P36x72/36" x 72": "2592 5184"
-*PaperDimension P36x84/36" x 84": "2592 6048"
-*PaperDimension P36x96/36" x 96": "2592 6912"
-*PaperDimension P36x108/36" x 108": "2592 7776"
-
-*RequiresPageRegion All: True
-
-*OpenUI *InputSlot: PickOne
-*DefaultInputSlot: OnlyOne
-*InputSlot OnlyOne/Only One: ""
-*?InputSlot: "save (OnlyOne) = flush restore "
-*CloseUI: *InputSlot
-
-*% Custom Page Sizes ===================
-*MaxMediaWidth: "2642"
-*MaxMediaHeight: "9288"
-*HWMargins: 51 77 51 77
-*ParamCustomPageSize Width: 1 points 200 2642
-*ParamCustomPageSize Height: 2 points 200 9288
-*ParamCustomPageSize WidthOffset: 3 points 0 2642
-*ParamCustomPageSize HeightOffset: 4 points 0 9288
-*ParamCustomPageSize Orientation: 5 int 0 3
-*NonUIOrderDependency: 30.0 AnySetup *CustomPageSize
-*CustomPageSize True: "
-pop pop pop % discard orientation & offsets
-2 dict begin
-/PageSize [
-4 -2 roll
-] def
-/ImagingBBox null def
-currentdict end setpagedevice
-"
-*End
-
-*% Font Information =====================
-
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-Demi: Standard "(001.004S)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.004S)" Standard ROM
-*Font Bookman-Light: Standard "(001.004S)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.004S)" 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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "intializing"
-*Status: "printing test page"
-*Status: "PrinterError: needs attention"
-*Status: "PrinterError: cover open"
-*Status: "PrinterError: warming up"
-*Status: "PrinterError: resetting printer"
-*Status: "PrinterError: output bin full"
-*Status: "PrinterError: Paper Jam"
-*Status: "PrinterError: no toner cartridge"
-*Status: "PrinterError: manual feed"
-*Status: "PrinterError: out of paper"
-*Status: "PrinterError: page protect needed"
-*Status: "PrinterError: out of memory"
-*Status: "PrinterError: off line"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Parallel"
-*Source: "OptionalIO"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "needs attention"
-*PrinterError: "cover open"
-*PrinterError: "warming up"
-*PrinterError: "resetting printer"
-*PrinterError: "output bin full"
-*PrinterError: "Paper Jam"
-*PrinterError: "no toner cartridge"
-*PrinterError: "manual feed"
-*PrinterError: "out of paper"
-*PrinterError: "page protect needed"
-*PrinterError: "out of memory"
-*PrinterError: "off line"
-
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi
-
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.600dpi/60 lpi / 600 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.600dpi/60 lpi / 600 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.600dpi/60 lpi / 600 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.600dpi/60 lpi / 600 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.600dpi/60 lpi / 600 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.600dpi/60 lpi / 600 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.600dpi/60 lpi / 600 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.600dpi/60 lpi / 600 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.600dpi/60 lpi / 600 dpi: "60"
-
-*% For 53 lpi / 600 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.600dpi/53 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.600dpi/53 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.600dpi/53 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.600dpi/53 lpi / 600 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.600dpi/53 lpi / 600 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.600dpi/53 lpi / 600 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.600dpi/53 lpi / 600 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.600dpi/53 lpi / 600 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.600dpi/53 lpi / 600 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.600dpi/53 lpi / 600 dpi: "50.0"
-
-
-*% Last Edit Date: May 9 1997
-*% End of PPD file for Canguro
-*% The byte count of this file should be exactly 038692 or 039791
-*% depending on the filesystem it resides in.
-*% end of PPD file for HP DesignJet 2500CP
diff --git a/psprint_config/configuration/ppds/HP3SI52_.PS b/psprint_config/configuration/ppds/HP3SI52_.PS
deleted file mode 100644
index a1f3097693b4..000000000000
--- a/psprint_config/configuration/ppds/HP3SI52_.PS
+++ /dev/null
@@ -1,435 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "2.6"
-*PCFileName: "HP3SI523.PPD"
-*LanguageVersion: English
-*Product: "(HP LaserJet IIISi)"
-*Product: "(Hewlett-Packard LaserJet IIISi)"
-*PSVersion: "(52.3) 400"
-*PSVersion: "(52.3) 300"
-*PSVersion: "(52.3) 215"
-*ModelName: "HP LaserJet IIISi PostScript"
-*ShortNickName: "HP LaserJet IIISi v52.3"
-*NickName: "HP LaserJet IIISi PostScript v52.3"
-
-*% ==== Options and Constraints =====
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Optional Envelope Feeder: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Envelope
-*UIConstraints: *PageSize Comm10 *Duplex
-*UIConstraints: *PageSize Monarch *Duplex
-*UIConstraints: *PageSize DL *Duplex
-*UIConstraints: *PageSize C5 *Duplex
-*UIConstraints: *Duplex *PageSize Comm10
-*UIConstraints: *Duplex *PageSize Monarch
-*UIConstraints: *Duplex *PageSize DL
-*UIConstraints: *Duplex *PageSize C5
-*UIConstraints: *PageRegion Comm10 *Duplex
-*UIConstraints: *PageRegion Monarch *Duplex
-*UIConstraints: *PageRegion DL *Duplex
-*UIConstraints: *PageRegion C5 *Duplex
-*UIConstraints: *Duplex *PageRegion Comm10
-*UIConstraints: *Duplex *PageRegion Monarch
-*UIConstraints: *Duplex *PageRegion DL
-*UIConstraints: *Duplex *PageRegion C5
-
-*% General Information and Defaults ===============
-*FreeVM: "2408404"
-*LanguageLevel: "1"
-*Protocols: PJL
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*FileSystem: False
-*Throughput: "17"
-*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: 300dpi
-*?Resolution: "
-save
- initgraphics
- 0 0 moveto currentpoint matrix defaultmatrix transform
- 0 72 lineto currentpoint matrix defaultmatrix transform
- 3 -1 roll sub dup mul
- 3 1 roll exch sub dup mul
- add sqrt round cvi
- ( ) cvs print (dpi) = flush
-restore
-"
-*End
-
-*OpenUI *Smoothing/RET: PickOne
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: Medium
-*Smoothing None/Off: "0 statusdict /setdoret get exec"
-*Smoothing Light: "1 statusdict /setdoret get exec"
-*Smoothing Medium: "2 statusdict /setdoret get exec"
-*Smoothing Dark: "3 statusdict /setdoret get exec"
-*?Smoothing: "
-save
- [(None)(Light)(Medium)(Dark)(Unknown)] statusdict /doret get exec
- dup 3 gt{pop 4}if get = flush
-restore
-"
-*End
-*CloseUI: *Smoothing
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*% Paper Handling ===================
-*% Use these entries to set paper size most of the time, unless there is
-*% specific reason to use PageRegion.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter: "statusdict /lettertray get exec"
-*PageSize Legal: "statusdict /legaltray get exec"
-*PageSize Executive: "statusdict /executivetray get exec"
-*PageSize A4: "statusdict /a4tray get exec"
-*PageSize Comm10/Comm #10 Envelope: "statusdict /com10envelopetray get exec"
-*PageSize Monarch/Monarch Envelope: "statusdict /monarcenvelopetray get exec"
-*PageSize DL/DL Envelope: "statusdict /dlenvelopetray get exec"
-*?PageSize: "
-save
-7 dict
- dup /lettertray (Letter) put
- dup /legaltray (Legal) put
- dup /executivetray (Executive) put
- dup /a4tray (A4) put
- dup /com10envelopetray (Comm10) put
- dup /monarcenvelopetray (Monarch) put
- dup /dlenvelopetray (DL Envelope) put
- statusdict /papersize get exec
- 3 1 roll {get} stopped {(Unknown)}if
- exch not { print (.Transverse) }if
- = flush
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*% These entries will set up the frame buffer. Usually used with manual feed.
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter: "letter"
-*PageRegion Legal: "legal"
-*PageRegion Executive: "executivepage"
-*PageRegion A4: "a4"
-*PageRegion Comm10/Comm #10 Envelope: "com10envelope"
-*PageRegion Monarch/Monarch Envelope: "monarcenvelope"
-*PageRegion DL/DL Envelope: "dlenvelope"
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter: "18 19 593 774 "
-*ImageableArea Legal: "18 19 593 990 "
-*ImageableArea Executive: "18 19 501 738"
-*ImageableArea A4: "18 19 578 824 "
-*ImageableArea Comm10/Comm #10 Envelope: "18 19 278 666"
-*ImageableArea Monarch/Monarch Envelope: "18 19 263 522"
-*ImageableArea DL/DL Envelope: "18 19 294 605"
-*?ImageableArea: "
-save
- /cvp {( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension Executive: "522 756"
-*PaperDimension A4: "595 842"
-*PaperDimension Comm10/Comm #10 Envelope: "297 684"
-*PaperDimension Monarch/Monarch Envelope: "279 540"
-*PaperDimension DL/DL Envelope: "312 624"
-
-*LandscapeOrientation: Plus90
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Upper Tray: "0 statusdict /setpapertray get exec"
-*InputSlot Lower/Lower Tray: "1 statusdict /setpapertray get exec"
-*InputSlot Envelope/Envelope Feeder: "2 statusdict /setpapertray get exec"
-*?InputSlot: "
-save
- [ (Upper) (Lower) (Envelope) ] statusdict /papertray get exec
- {get exec} stopped { pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "statusdict /manualfeed true put"
-*ManualFeed False: "statusdict /manualfeed false put"
-*?ManualFeed: "
-save
- statusdict /manualfeed get {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *OutputOrder: PickOne
-*OrderDependency: 50 AnySetup *OutputOrder
-*DefaultOutputOrder: Normal
-*OutputOrder Normal: "0 statusdict /setoutputtray get exec"
-*OutputOrder Reverse: "1 statusdict /setoutputtray get exec"
-*?OutputOrder: "
-save
- [ (Normal) (Reverse) ] statusdict /outputtray get exec
- {get exec} stopped {pop pop (Unknown)} if = flush
-restore
-"
-*End
-*CloseUI: *OutputOrder
-
-*OpenUI *Duplex: PickOne
-*OrderDependency: 50 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex DuplexTumble: "
- true statusdict /setduplexmode get exec true statusdict /settumble get exec"
-*End
-*Duplex DuplexNoTumble: "
- true statusdict /setduplexmode get exec false statusdict /settumble get exec"
-*End
-*Duplex None: "
- false statusdict /setduplexmode get exec false statusdict /settumble get exec"
-*End
-*?Duplex: "
-save
- statusdict /duplexmode get exec
- {statusdict /tumble get exec {(DuplexTumble)}{(DuplexNoTumble)}ifelse}
- {(None)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *Duplex
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: False
-*TraySwitch True: "true statusdict /settrayswitch get exec"
-*TraySwitch False: "false statusdict /settrayswitch get exec"
-*?TraySwitch: "
-save
- statusdict /trayswitch get exec {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.002)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.002)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.003)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.003)" Standard ROM
-*Font Bookman-Demi: Standard "(001.001)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
-*Font Bookman-Light: Standard "(001.001)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
-*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.008)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.005)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.006)" Standard ROM
-*Font Palatino-Bold: Standard "(001.005)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.005)" Standard ROM
-*Font Palatino-Italic: Standard "(001.005)" Standard ROM
-*Font Palatino-Roman: Standard "(001.005)" Standard ROM
-*Font Symbol: Special "(001.003)" Special 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.003)" Standard ROM
-*Font ZapfDingbats: Special "(001.002)" Special ROM
-*?FontQuery: "
-save
- /str 100 string dup 0 (fonts/) putinterval def
- {
- count 1 gt
- {
- exch dup str 6 94 getinterval cvs
- (/) print print (:) print
- FontDirectory exch known
- {(Yes)}{(No)} ifelse =
- }
- {exit} ifelse
- }bind loop
- (*) = flush
-restore
-"
-*End
-
-*?FontList: "
-save
- FontDirectory { pop == } bind forall flush
- (*) = flush
-restore
-"
-*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: "warming up"
-*Status: "PrinterError: Out Of Paper"
-*Status: "PrinterError: Cover Open"
-*Status: "PrinterError: Feed Manual"
-*Status: "PrinterError: Paper Jam"
-*Status: "PrinterError: Miscellaneous Error"
-*Status: "PrinterError: Fatal Error"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "serial9"
-*Source: "serial25"
-*Source: "AppleTalk"
-*Source: "Centronics"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*PrinterError: "Out Of Paper"
-*PrinterError: "Cover Open"
-*PrinterError: "Feed Manual"
-*PrinterError: "Paper Jam"
-*PrinterError: "Miscellaneous Error"
-*PrinterError: "Fatal Error"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-*% For "Hewlett-Packard LaserJet IIISi" version 52.3
-*% Produced by "BuildPPD.ps" version 3.0 edit 58
-*% Converted to meet 4.0 specification
-*% Last Edit Date: Jun 16 1994
-*% The byte count of this file should be exactly 014531 or 014966
-*% depending on the filesystem it resides in.
-*% end of PPD file for HP LaserJet IIISi
diff --git a/psprint_config/configuration/ppds/HP3SIL21.PS b/psprint_config/configuration/ppds/HP3SIL21.PS
deleted file mode 100644
index 760e5fca5d9f..000000000000
--- a/psprint_config/configuration/ppds/HP3SIL21.PS
+++ /dev/null
@@ -1,588 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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.1"
-*FileVersion: "1.2"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*PCFileName: "HP3SIL21.PPD"
-*Product: "(HP LaserJet IIISi)"
-*PSVersion: "(2012.021) 2"
-*ModelName: "HP LaserJet IIISi Postscript 2"
-*ShortNickName: "HP LaserJet IIISi Postscript 2"
-*NickName: "HP LaserJet IIISi Postscript 2 v2012.021"
-
-*% === Options and Constraints =========
-
-*OpenGroup: InstallableOptions/Options Installed
-*OpenUI *Option1/Optional Envelope Feeder: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Memory Configuration: PickOne
-*DefaultOption2: None
-*Option2 None/Standard 2 MB RAM: ""
-*Option2 3Meg/3 MB Total RAM: ""
-*Option2 4Meg/4 MB Total RAM: ""
-*Option2 5Meg/5 MB Total RAM: ""
-*Option2 6Meg/6 MB Total RAM: ""
-*Option2 7Meg/7 MB Total RAM: ""
-*Option2 9Meg/9 MB Total RAM: ""
-*Option2 10Meg/10 MB Total RAM: ""
-*Option2 11Meg/11 MB Total RAM: ""
-*Option2 13Meg/13 MB Total RAM: ""
-*Option2 14Meg/14 MB Total RAM: ""
-*Option2 17Meg/17 MB Total RAM: ""
-*CloseUI: *Option2
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot Envelope
-*UIConstraints: *Option2 None *Duplex
-*UIConstraints: *Option2 3Meg *Duplex
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageSize Letter
-*UIConstraints: *InputSlot Envelope *PageSize Legal
-*UIConstraints: *InputSlot Envelope *PageSize Executive
-*UIConstraints: *InputSlot Envelope *PageSize A4
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion Executive *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *InputSlot Envelope *PageRegion Letter
-*UIConstraints: *InputSlot Envelope *PageRegion Legal
-*UIConstraints: *InputSlot Envelope *PageRegion Executive
-*UIConstraints: *InputSlot Envelope *PageRegion A4
-
-*UIConstraints: *PageSize Comm10 *Duplex
-*UIConstraints: *PageSize Monarch *Duplex
-*UIConstraints: *PageSize DL *Duplex
-*UIConstraints: *Duplex *PageSize Comm10
-*UIConstraints: *Duplex *PageSize Monarch
-*UIConstraints: *Duplex *PageSize DL
-*UIConstraints: *PageRegion Comm10 *Duplex
-*UIConstraints: *PageRegion Monarch *Duplex
-*UIConstraints: *PageRegion DL *Duplex
-*UIConstraints: *Duplex *PageRegion Comm10
-*UIConstraints: *Duplex *PageRegion Monarch
-*UIConstraints: *Duplex *PageRegion DL
-
-
-*% ==== Device Capabilities ===============
-*LanguageLevel: "2"
-
-*FreeVM: "272283"
-*VMOption None/Standard: "272283"
-*VMOption 3Meg/3 MB Total RAM: "1320834"
-*VMOption 4Meg/4 MB Total RAM: "2378002"
-*VMOption 5Meg/5 MB Total RAM: "2214162"
-*VMOption 6Meg/6 MB Total RAM: "3262738"
-*VMOption 7Meg/7 MB Total RAM: "4303122"
-*VMOption 9Meg/9 MB Total RAM: "6391690"
-*VMOption 10Meg/10 MB Total RAM: "7435532"
-*VMOption 11Meg/11 MB Total RAM: "848108"
-*VMOption 13Meg/13 MB Total RAM: "10594578"
-*VMOption 14Meg/14 MB Total RAM: "11643154"
-*VMOption 17Meg/17 MB Total RAM: "14780298"
-
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*VariablePaperSize: False
-*Throughput: "17"
-
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*DefaultResolution: 300dpi
-*?Resolution: "
- save
- currentpagedevice /HWResolution get
- 0 get
- ( ) cvs print
- (dpi)
- = flush
- restore
-"
-*End
-
-*% Halftone Information ===============
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*OpenUI *Smoothing/Resolution Enhancement: PickOne
-*OrderDependency: 50 AnySetup *Smoothing
-*DefaultSmoothing: Medium
-*Smoothing None/Off: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict dup /REValue 0 put dup /Type 8 put put
- setpagedevice"
-*End
-*Smoothing Light: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict dup /REValue 1 put dup /Type 8 put put
- setpagedevice"
-*End
-*Smoothing Medium: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict dup /REValue 2 put dup /Type 8 put put
- setpagedevice"
-*End
-*Smoothing Dark: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PostRenderingEnhance true put
- dup /PostRenderingEnhanceDetails
- 2 dict dup /REValue 3 put dup /Type 8 put put
- setpagedevice"
-*End
-*?Smoothing: "
- save
- currentpagedevice /PostRenderingEnhanceDetails get /REValue get
- [(None) (Light) (Medium) (Dark)] exch get print
- restore
-"
-*End
-*CloseUI: *Smoothing
-
-*% Paper Handling ===================
-
-*% Code in this section both selects a tray and sets up a frame buffer.
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter 8 1/2 x 11 in: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Legal/Legal 8 1/2 x 14 in: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize A4/A4 210 x 297 mm: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Executive/Executive 7 1/4 x 10 1/2 in: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Comm10/Env Comm10 4 1/8 x 9 1/2 in: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize Monarch/Env Monarch 3 7/8 x 7 1/2 in : "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageSize DL/Env DL 110 x 220 mm: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 7 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [522 756] (Executive) put
- dup [297 684] (Comm10) put
- dup [279 540] (Monarch) put
- dup [312 624] (DL) put
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter 8 1/2 x 11 in: "
- 2 dict dup /PageSize [612 792] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Legal/Legal 8 1/2 x 14 in: "
- 2 dict dup /PageSize [612 1008] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion A4/A4 210 x 297 mm: "
- 2 dict dup /PageSize [595 842] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Executive/Executive 7 1/4 x 10 1/2 in: "
- 2 dict dup /PageSize [522 756] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Comm10/Env Comm10 4 1/8 x 9 1/2 in: "
- 2 dict dup /PageSize [297 684] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion Monarch/Env Monarch 3 7/8 x 7 1/2 in: "
- 2 dict dup /PageSize [279 540] put dup /ImagingBBox null put setpagedevice"
-*End
-*PageRegion DL/Env DL 110 x 220 mm: "
- 2 dict dup /PageSize [312 624] put dup /ImagingBBox null put setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*% The following entries provide information about specific paper keywords.
-*DefaultImageableArea: Letter
-*ImageableArea Letter/Letter 8 1/2 x 11 in: "18.0 18.1201 594.0 774.12 "
-*ImageableArea Legal/Legal 8 1/2 x 14 in: "18.0 18.12 594.0 990.12 "
-*ImageableArea A4/A4 210 x 297 mm: "18.0 18.12 578.64 824.52 "
-*ImageableArea Executive/Executive 7 1/4 x 10 1/2 in: "18.0 18.1201 501.84 738.12 "
-*ImageableArea Comm10/Env Comm10 4 1/8 x 9 1/2 in: "18.0001 18.1201 279.12 666.12 "
-*ImageableArea Monarch/Env Monarch 3 7/8 x 7 1/2 in: "18.0 18.1201 263.76 522.12 "
-*ImageableArea DL/Env DL 110 x 220 mm: "18.0 18.12 294.48 605.64 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*% These provide the physical dimensions of the paper (by keyword)
-*DefaultPaperDimension: Letter
-*PaperDimension Letter/Letter 8 1/2 x 11 in: "612 792"
-*PaperDimension Legal/Legal 8 1/2 x 14 in: "612 1008"
-*PaperDimension A4/A4 210 x 297 mm: "595 842"
-*PaperDimension Executive/Executive 7 1/4 x 10 1/2 in: "522 756"
-*PaperDimension Comm10/Env Comm10 4 1/8 x 9 1/2 in: "297 684"
-*PaperDimension Monarch/Env Monarch 3 7/8 x 7 1/2 in: "279 540"
-*PaperDimension DL/Env DL 110 x 220 mm: "312 624"
-
-*RequiresPageRegion Envelope: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Upper
-*InputSlot Upper/Upper Tray: "
-1 dict dup /TraySwitch false put setpagedevice
- currentpagedevice /InputAttributes get
- 0 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [0] put
- put setpagedevice
- } ifelse
- "
-*End
-*InputSlot Lower/Lower Tray: "
- 1 dict dup /TraySwitch false put setpagedevice
- currentpagedevice /InputAttributes get
- 1 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [1] put
- put setpagedevice
- } ifelse
- "
-*End
-*InputSlot Envelope/Envelope Feeder: "
- 1 dict dup /TraySwitch false put setpagedevice
- currentpagedevice /InputAttributes get
- 2 get dup
- null eq {pop}
- { dup
- /InputAttributes
- 1 dict dup /Priority [2] put
- put setpagedevice
- } ifelse
- "
-*End
-*?InputSlot: "
-save
- 3 dict
- dup /0 (Upper) put
- dup /1 (Lower) put
- dup /2 (Envelope) put
- currentpagedevice /InputAttributes get
- dup /Priority known
- { /Priority get 0 get ( ) cvs cvn get }
- {
- dup length 1 eq
- { {pop} forall ( ) cvs cvn get }
- { pop pop (Unknown) } ifelse
- } ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*Landscape Orientation: Plus90
-
-*OpenUI *OutputBin: PickOne
-*OrderDependency: 50 AnySetup *OutputBin
-*DefaultOutputBin: Upper
-*OutputBin Upper: "1 dict dup /OutputFaceUp false put setpagedevice"
-*OutputBin Rear: "1 dict dup /OutputFaceUp true put setpagedevice"
-*?OutputBin:"
-save
- currentpagedevice /OutputFaceUp get
-{(Rear)}{(Upper)}ifelse = flush
-restore
-"
-*End
-*CloseUI *OutputBin
-
-*OpenUI *OutputOrder: PickOne
-*OrderDependency: 50 AnySetup *OutputOrder
-*DefaultOutputOrder: Normal
-*OutputOrder Normal: "1 dict dup /OutputFaceUp false put setpagedevice"
-*OutputOrder Reverse: "1 dict dup /OutputFaceUp true put setpagedevice"
-*?OutputOrder: "
-save
- currentpagedevice /OutputFaceUp get
-{(Reverse)}{(Normal)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *OutputOrder
-
-*OpenUI *ManualFeed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "1 dict dup /ManualFeed true put setpagedevice"
-*ManualFeed False: "1 dict dup /ManualFeed false put setpagedevice"
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*OpenUI *Duplex: PickOne
-*OrderDependency: 50 AnySetup *Duplex
-*DefaultDuplex: None
-*Duplex None: "1 dict dup /Duplex false put setpagedevice
- 1 dict dup /Tumble false put setpagedevice"
-*End
-*Duplex DuplexNoTumble/Long Edge Binding: "1 dict dup /Duplex true put setpagedevice
- 1 dict dup /Tumble false put setpagedevice"
-*End
-*Duplex DuplexTumble/Short Edge Binding: "1 dict dup /Duplex true put setpagedevice
- 1 dict dup /Tumble true put setpagedevice"
-*End
-*?Duplex: "save
- currentpagedevice /Duplex get
- { currentpagedevice /Tumble get
- {(DuplexTumble)}{(DuplexNoTumble)}ifelse
- }
- { (None)}
- ifelse = flush
-restore
-"
-*End
-*CloseUI: *Duplex
-
-*OpenUI *TraySwitch: Boolean
-*OrderDependency: 50 AnySetup *TraySwitch
-*DefaultTraySwitch: True
-*TraySwitch True: "1 dict dup /TraySwitch true put setpagedevice"
-*TraySwitch False: "1 dict dup /TraySwitch false put setpagedevice"
-*?TraySwitch: "
-save
- currentpagedevice /TraySwitch get
- {(True)}{(False)}ifelse = flush
-restore
-"
-*End
-*CloseUI: *TraySwitch
-
-*% Font Information =====================
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006S)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007S)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007S)" Standard ROM
-*Font Bookman-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-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 Helvetica-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
-
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*% Printer Messages (verbatim from printer):
-*Message: "%%[ exitserver: permanent state may be changed ]%%"
-*Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
-*Message: "\FontName\ not found, using Courier"
-
-*% Status (format: %%[ status: <one of these> ] %%)
-*Status: "idle"
-*Status: "busy"
-*Status: "waiting"
-*Status: "printing"
-*Status: "warming up"
-
-*% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
-*Source: "Serial"
-*Source: "LocalTalk"
-*Source: "Parallel"
-*Source: "EtherTalk"
-
-*% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
-*Printer Error: "Cover Open"
-*Printer Error: "Paper Jam"
-*Printer Error: "Out Of Paper"
-*Printer Error: "Printing Test Page"
-*Printer Error: "Service Call"
-*Printer Error: "Printing Suspended"
-
-*%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
-
-*% Color Separation Information =====================
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/ 60 lpi / 300 dpi
-*InkName: ProcessBlack/Process Black
-*InkName: CustomColor/Custom Color
-*InkName: ProcessCyan/Process Cyan
-*InkName: ProcessMagenta/Process Magenta
-*InkName: ProcessYellow/Process Yellow
-
-*% For 60 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*% For 53 lpi / 300 dpi ===============================
-
-*ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
-*ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
-
-*ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
-*ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
-*ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
-
-
-*% Produced by "bldppd42.ps" version 4.0 edit 11
-*% Last Edit Date: May 9 1994
-*% The byte count of this file should be exactly 019171 or 019759
-*% depending on the filesystem it resides in.
-*% end of PPD file for HP LaserJet IIISi
-
diff --git a/psprint_config/configuration/ppds/HP4M3_V1.PS b/psprint_config/configuration/ppds/HP4M3_V1.PS
deleted file mode 100644
index ea68bd82f515..000000000000
--- a/psprint_config/configuration/ppds/HP4M3_V1.PS
+++ /dev/null
@@ -1,540 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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
-
-*% ===================================
-*% PPD Version for Windows 3.1 only
-*% ===================================
-
-*FormatVersion: "4.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Protocols: PJL TBCP
-*PCFileName: "HP4M3_V1.PPD"
-*Product: "(LaserJet 4)"
-*PSVersion: "(2011.110) 1"
-*ModelName: "HP LaserJet 4"
-*NickName: "HP LaserJet 4/4M PS 300 dpi"
-*LanguageLevel: "2"
-*FreeVM: "4285488"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*DefaultResolution: 300dpi
-
-*Throughput: "8"
-
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Optional Lower Tray: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Optional Envelope Feeder: Boolean
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*CloseUI: *Option2
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot LargeCapacity
-*UIConstraints: *Option2 False *InputSlot Envelope
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *PageRegion Executive *InputSlot Envelope
-*UIConstraints: *PageSize Comm10 *InputSlot Lower
-*UIConstraints: *PageSize Comm10 *InputSlot LargeCapacity
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot LargeCapacity
-*UIConstraints: *PageSize DL *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot LargeCapacity
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot LargeCapacity
-*UIConstraints: *PageSize B5 *InputSlot Lower
-*UIConstraints: *PageSize B5 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion Comm10 *InputSlot Lower
-*UIConstraints: *PageRegion Comm10 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot LargeCapacity
-*UIConstraints: *PageRegion DL *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot LargeCapacity
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion B5 *InputSlot Lower
-*UIConstraints: *PageRegion B5 *InputSlot LargeCapacity
-
-*LandscapeOrientation: Plus90
-
-*JCLBegin: "<1B>%-12345X@PJL JOB<0A>@PJL SET RESOLUTION=300<0A>"
-*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT <0A>"
-*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
-
-*JCLOpenUI *JCLPageProtect/Legal Frame Size: PickOne
-*DefaultJCLPageProtect: PrinterDefault
-*OrderDependency: 10 JCLSetup *JCLPageProtect
-*JCLPageProtect PrinterDefault/Printer Default: ""
-*JCLPageProtect Legal/Full Legal: "@PJL SET PAGEPROTECT = LEGAL<0A>"
-*JCLPageProtect Ltr/Reduced Legal: "@PJL SET PAGEPROTECT = OFF<0A>"
-*JCLCloseUI: *JCLPageProtect
-
-*JCLOpenUI *JCLRET/Resolution Enhancement: PickOne
-*DefaultJCLRET: PrinterDefault
-*OrderDependency: 10 JCLSetup *JCLRET
-*JCLRET PrinterDefault/Printer Default: ""
-*JCLRET OFF/Off: "@PJL SET RET = OFF<0A>"
-*JCLRET LIGHT/Light: "@PJL SET RET = LIGHT<0A>"
-*JCLRET MEDIUM/Medium: "@PJL SET RET = MEDIUM<0A>"
-*JCLRET DARK/Dark: "@PJL SET RET = DARK<0A>"
-*JCLCloseUI: *JCLRET
-
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter 8 1/2 x 11 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Legal/Legal 8 1/2 x 14 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize A4/A4 210 x 297 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Executive/Executive 7 1/4 x 10 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [522 756] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Comm10/Com-10 Env 4 1/8 x 9 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Monarch/Monarch Env 3 7/8 x 7 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [279 540] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize DL/DL Env 110 x 220 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize C5/C5 Env 162 x 229 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize B5/B5 Env 176 x 250 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [499 708] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [522 756] (Executive) put
- dup [297 684] (Comm10) put
- dup [279 540] (Monarch) put
- dup [312 624] (DL) put
- dup [499 708] (B5) put
- dup [459 649] (C5) put
-
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter 8 1/2 x 11 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Legal/Legal 8 1/2 x 14 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion A4/A4 210 x 297 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Executive/Executive 7 1/4 x 10 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [522 756] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Comm10/Com-10 Env 4 1/8 x 9 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Monarch/Monarch Env 3 7/8 x 7 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [279 540] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion DL/DL Env 110 x 220 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion C5/C5 Env 162 x 229 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion B5/B5 Env 176 x 250 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [499 708] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter : "14.16 12.12 597.84 780.12"
-*ImageableArea Legal/US Legal : "14.16 12.12 597.84 996.12"
-*ImageableArea A4/A4 : "13.44 12.0 581.76 829.68"
-*ImageableArea Executive/Executive : "15.12 12.12 506.64 744.12"
-*ImageableArea Comm10/Env Comm10 : "13.92 12.12 282.72 672.12"
-*ImageableArea Monarch/Env Monarch : "12.72 12.12 266.16 528.12"
-*ImageableArea DL/Env DL : "13.68 12.12 297.84 611.64"
-*ImageableArea C5/Env C5 : "14.4 12.12 444.48 637.08"
-*ImageableArea B5/Env ISO B5 : "15.12 12.12 483.6 696.6 "
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension Executive: "522 756"
-*PaperDimension Comm10: "297 684"
-*PaperDimension Monarch: "279 540"
-*PaperDimension DL: "312 624"
-*PaperDimension C5: "459 649"
-*PaperDimension B5: "499 708"
-
-*RequiresPageRegion All: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Lower
-*InputSlot Upper/Multipurpose Tray: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (MP CASSETTE) put
- setpagedevice"
-*End
-*InputSlot Lower/Paper Cassette: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (UPPER CASSETTE) put
- setpagedevice"
-*End
-*InputSlot LargeCapacity/Lower Cassette: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (LOWER CASSETTE) put
- setpagedevice"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (ENVELOPE FEEDER) put
- setpagedevice"
-*End
-*?InputSlot: "
-save
- 4 dict
- dup (MP CASSETTE) cvn (Upper) put
- dup (UPPER CASSETTE) cvn (Lower) put
- dup (LOWER CASSETTE) cvn (LargeCapacity) put
- dup (ENVELOPE FEEDER) cvn (Envelope) put
- currentpagedevice /MediaType get
- dup null eq
- { pop pop (Unknown) }
- { cvn get }
- ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /ManualFeed true put
- setpagedevice"
-*End
-*ManualFeed False: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /ManualFeed false put
- setpagedevice"
-*End
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*ScreenFreq: "60.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
-
-*ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
-*ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
-*ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
-*ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
-
-*ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
-*ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
-
-*ColorSepScreenProc ProcessYellow.85lpi.600dpi/85 lpi / 600 dpi: "
-{1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch
-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
-
-*DefaultFont: Courier
-*Font AvantGarde-Book: Standard "(001.006)" Standard ROM
-*Font AvantGarde-BookOblique: Standard "(001.006)" Standard ROM
-*Font AvantGarde-Demi: Standard "(001.007)" Standard ROM
-*Font AvantGarde-DemiOblique: Standard "(001.007)" Standard ROM
-*Font Bookman-Demi: Standard "(001.003)" Standard ROM
-*Font Bookman-DemiItalic: Standard "(001.003)" Standard ROM
-*Font Bookman-Light: Standard "(001.003)" Standard ROM
-*Font Bookman-LightItalic: Standard "(001.003)" Standard ROM
-*Font Courier: Standard "(002.004)" Standard ROM
-*Font Courier-Bold: Standard "(002.004)" Standard ROM
-*Font Courier-BoldOblique: Standard "(002.004)" Standard ROM
-*Font Courier-Oblique: Standard "(002.004)" 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.009)" Standard ROM
-*Font NewCenturySchlbk-BoldItalic: Standard "(001.007)" Standard ROM
-*Font NewCenturySchlbk-Italic: Standard "(001.006)" Standard ROM
-*Font NewCenturySchlbk-Roman: Standard "(001.007)" Standard ROM
-*Font Palatino-Bold: Standard "(001.005)" Standard ROM
-*Font Palatino-BoldItalic: Standard "(001.005)" Standard ROM
-*Font Palatino-Italic: Standard "(001.005)" Standard ROM
-*Font Palatino-Roman: Standard "(001.005)" Standard ROM
-*Font Symbol: Special "(001.007)" Special 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.007)" Standard ROM
-*Font ZapfDingbats: Special "(001.004)" Special ROM
-*?FontQuery: "
- save
- { count 1 gt
- { exch dup 127 string cvs (/) print print (:) print
- /Font resourcestatus {pop pop (Yes)} {(No)} ifelse =
- } { exit } ifelse
- } bind loop
- (*) = flush
- restore
-"
-*End
-
-*?FontList: "
-save
- (*) {cvn ==} 128 string /Font resourceforall
- (*) = flush
-restore
-"
-*End
-
-*Password: "()"
-*ExitServer: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot modify initial VM.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
-"
-*End
-*Reset: "
- count 0 eq
- { false } { true exch startjob } ifelse
- not {
- (WARNING: Cannot reset printer.) =
- (Missing or invalid password.) =
- (Please contact the author of this software.) = flush quit
- } if
- systemdict /quit get exec
- (WARNING : Printer Reset Failed.) = flush
-"
-*End
-
-*% =============================================
-*% For "HP LaserJet 4/4M" version 2011.110 (300 dpi)
-*% =============================================
-
-*% The byte count of this file should be exactly 016575 or 017115
-*% depending on the filesystem it resides in.
-*% end of PPD file for LaserJet 4
diff --git a/psprint_config/configuration/ppds/HP4M6_V1.PS b/psprint_config/configuration/ppds/HP4M6_V1.PS
deleted file mode 100644
index 8212464510ce..000000000000
--- a/psprint_config/configuration/ppds/HP4M6_V1.PS
+++ /dev/null
@@ -1,540 +0,0 @@
-*PPD-Adobe: "4.1"
-*% Adobe Systems PostScript(R) Printer Description File
-*% Copyright 1987-1994 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
-
-*% ===================================
-*% PPD Version for Windows 3.1 only
-*% ===================================
-
-*FormatVersion: "4.1"
-*FileVersion: "1.1"
-*LanguageEncoding: ISOLatin1
-*LanguageVersion: English
-*Protocols: PJL TBCP
-*PCFileName: "HP4M6_V1.PPD"
-*Product: "(LaserJet 4)"
-*PSVersion: "(2011.110) 1"
-*ModelName: "HP LaserJet 4"
-*NickName: "HP LaserJet 4/4M PS 600 dpi"
-*LanguageLevel: "2"
-*FreeVM: "709584"
-*ColorDevice: False
-*DefaultColorSpace: Gray
-*FileSystem: False
-*DefaultResolution: 600dpi
-
-*Throughput: "8"
-
-*OpenGroup: InstallableOptions/Options Installed
-
-*OpenUI *Option1/Optional Lower Tray: Boolean
-*DefaultOption1: False
-*Option1 True/Installed: ""
-*Option1 False/Not Installed: ""
-*CloseUI: *Option1
-
-*OpenUI *Option2/Optional Envelope Feeder: Boolean
-*DefaultOption2: False
-*Option2 True/Installed: ""
-*Option2 False/Not Installed: ""
-*CloseUI: *Option2
-
-*CloseGroup: InstallableOptions
-
-*UIConstraints: *Option1 False *InputSlot LargeCapacity
-*UIConstraints: *Option2 False *InputSlot Envelope
-
-*UIConstraints: *PageSize Letter *InputSlot Envelope
-*UIConstraints: *PageSize Legal *InputSlot Envelope
-*UIConstraints: *PageSize A4 *InputSlot Envelope
-*UIConstraints: *PageSize Executive *InputSlot Envelope
-*UIConstraints: *PageRegion Letter *InputSlot Envelope
-*UIConstraints: *PageRegion Legal *InputSlot Envelope
-*UIConstraints: *PageRegion A4 *InputSlot Envelope
-*UIConstraints: *PageRegion Executive *InputSlot Envelope
-*UIConstraints: *PageSize Comm10 *InputSlot Lower
-*UIConstraints: *PageSize Comm10 *InputSlot LargeCapacity
-*UIConstraints: *PageSize Monarch *InputSlot Lower
-*UIConstraints: *PageSize Monarch *InputSlot LargeCapacity
-*UIConstraints: *PageSize DL *InputSlot Lower
-*UIConstraints: *PageSize DL *InputSlot LargeCapacity
-*UIConstraints: *PageSize C5 *InputSlot Lower
-*UIConstraints: *PageSize C5 *InputSlot LargeCapacity
-*UIConstraints: *PageSize B5 *InputSlot Lower
-*UIConstraints: *PageSize B5 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion Comm10 *InputSlot Lower
-*UIConstraints: *PageRegion Comm10 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion Monarch *InputSlot Lower
-*UIConstraints: *PageRegion Monarch *InputSlot LargeCapacity
-*UIConstraints: *PageRegion DL *InputSlot Lower
-*UIConstraints: *PageRegion DL *InputSlot LargeCapacity
-*UIConstraints: *PageRegion C5 *InputSlot Lower
-*UIConstraints: *PageRegion C5 *InputSlot LargeCapacity
-*UIConstraints: *PageRegion B5 *InputSlot Lower
-*UIConstraints: *PageRegion B5 *InputSlot LargeCapacity
-
-*LandscapeOrientation: Plus90
-
-*JCLBegin: "<1B>%-12345X@PJL JOB<0A>@PJL SET RESOLUTION=600<0A>"
-*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT <0A>"
-*JCLEnd: "<1B>%-12345X@PJL EOJ<0A><1B>%-12345X"
-
-*JCLOpenUI *JCLPageProtect/Legal Frame Size: PickOne
-*DefaultJCLPageProtect: PrinterDefault
-*OrderDependency: 10 JCLSetup *JCLPageProtect
-*JCLPageProtect PrinterDefault/Printer Default: ""
-*JCLPageProtect Legal/Full Legal: "@PJL SET PAGEPROTECT = LEGAL<0A>"
-*JCLPageProtect Ltr/Reduced Legal: "@PJL SET PAGEPROTECT = OFF<0A>"
-*JCLCloseUI: *JCLPageProtect
-
-*JCLOpenUI *JCLRET/Resolution Enhancement: PickOne
-*DefaultJCLRET: PrinterDefault
-*OrderDependency: 10 JCLSetup *JCLRET
-*JCLRET PrinterDefault/Printer Default: ""
-*JCLRET OFF/Off: "@PJL SET RET = OFF<0A>"
-*JCLRET LIGHT/Light: "@PJL SET RET = LIGHT<0A>"
-*JCLRET MEDIUM/Medium: "@PJL SET RET = MEDIUM<0A>"
-*JCLRET DARK/Dark: "@PJL SET RET = DARK<0A>"
-*JCLCloseUI: *JCLRET
-
-*OpenUI *PageSize: PickOne
-*OrderDependency: 30 AnySetup *PageSize
-*DefaultPageSize: Letter
-*PageSize Letter/Letter 8 1/2 x 11 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Legal/Legal 8 1/2 x 14 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize A4/A4 210 x 297 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Executive/Executive 7 1/4 x 10 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [522 756] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Comm10/Com-10 Env 4 1/8 x 9 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize Monarch/Monarch Env 3 7/8 x 7 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [279 540] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize DL/DL Env 110 x 220 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize C5/C5 Env 162 x 229 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageSize B5/B5 Env 176 x 250 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [499 708] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*?PageSize: "
- save
- currentpagedevice /PageSize get aload pop
- 2 copy gt {exch} if
- (Unknown)
- 9 dict
- dup [612 792] (Letter) put
- dup [612 1008] (Legal) put
- dup [595 842] (A4) put
- dup [522 756] (Executive) put
- dup [297 684] (Comm10) put
- dup [279 540] (Monarch) put
- dup [312 624] (DL) put
- dup [499 708] (B5) put
- dup [459 649] (C5) put
-
- { exch aload pop 4 index sub abs 5 le exch
- 5 index sub abs 5 le and
- {exch pop exit} {pop} ifelse
- } bind forall
- = flush pop pop
-restore
-"
-*End
-*CloseUI: *PageSize
-
-*OpenUI *PageRegion: PickOne
-*OrderDependency: 40 AnySetup *PageRegion
-*DefaultPageRegion: Letter
-*PageRegion Letter/Letter 8 1/2 x 11 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 792] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Legal/Legal 8 1/2 x 14 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [612 1008] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion A4/A4 210 x 297 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [595 842] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Executive/Executive 7 1/4 x 10 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [522 756] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Comm10/Com-10 Env 4 1/8 x 9 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [297 684] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion Monarch/Monarch Env 3 7/8 x 7 1/2 in: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [279 540] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion DL/DL Env 110 x 220 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [312 624] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion C5/C5 Env 162 x 229 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [459 649] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*PageRegion B5/B5 Env 176 x 250 mm: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 2 dict
- dup /PageSize [499 708] put
- dup /ImagingBBox null put
- setpagedevice"
-*End
-*CloseUI: *PageRegion
-
-*DefaultImageableArea: Letter
-*ImageableArea Letter/US Letter : "12.24 12.06 599.76 780.06"
-*ImageableArea Legal/US Legal : "12.24 12.06 599.76 996.06"
-*ImageableArea A4/A4 : "13.44 12.06 581.76 829.74"
-*ImageableArea Executive/Executive : "13.32 12.06 508.68 744.06"
-*ImageableArea Comm10/Env Comm10 : "12.12 12.06 284.76 672.06"
-*ImageableArea Monarch/Env Monarch : "12.72 12.06 266.16 528.06"
-*ImageableArea DL/Env DL : "13.8 12.06 297.96 611.58"
-*ImageableArea C5/Env C5 : "12.6 12.06 446.52 637.02"
-*ImageableArea B5/Env ISO B5 : "13.2 12.06 485.52 696.54"
-*?ImageableArea: "
- save
- /cvp { ( ) cvs print ( ) print } bind def
- /upperright {10000 mul floor 10000 div} bind def
- /lowerleft {10000 mul ceiling 10000 div} bind def
- newpath clippath pathbbox
- 4 -2 roll exch 2 {lowerleft cvp} repeat
- exch 2 {upperright cvp} repeat flush
- restore
-"
-*End
-
-*DefaultPaperDimension: Letter
-*PaperDimension Letter: "612 792"
-*PaperDimension Legal: "612 1008"
-*PaperDimension A4: "595 842"
-*PaperDimension Executive: "522 756"
-*PaperDimension Comm10: "297 684"
-*PaperDimension Monarch: "279 540"
-*PaperDimension DL: "312 624"
-*PaperDimension C5: "459 649"
-*PaperDimension B5: "499 708"
-
-*RequiresPageRegion All: True
-
-*OpenUI *InputSlot: PickOne
-*OrderDependency: 20 AnySetup *InputSlot
-*DefaultInputSlot: Lower
-*InputSlot Upper/Multipurpose Tray: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (MP CASSETTE) put
- setpagedevice"
-*End
-*InputSlot Lower/Paper Cassette: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (UPPER CASSETTE) put
- setpagedevice"
-*End
-*InputSlot LargeCapacity/Lower Cassette: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (LOWER CASSETTE) put
- setpagedevice"
-*End
-*InputSlot Envelope/Envelope Feeder: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /MediaType (ENVELOPE FEEDER) put
- setpagedevice"
-*End
-*?InputSlot: "
-save
- 4 dict
- dup (MP CASSETTE) cvn (Upper) put
- dup (UPPER CASSETTE) cvn (Lower) put
- dup (LOWER CASSETTE) cvn (LargeCapacity) put
- dup (ENVELOPE FEEDER) cvn (Envelope) put
- currentpagedevice /MediaType get
- dup null eq
- { pop pop (Unknown) }
- { cvn get }
- ifelse
- = flush
-restore
-"
-*End
-*CloseUI: *InputSlot
-
-*OpenUI *ManualFeed/Manual Feed: Boolean
-*OrderDependency: 20 AnySetup *ManualFeed
-*DefaultManualFeed: False
-*ManualFeed True: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /ManualFeed true put
- setpagedevice"
-*End
-*ManualFeed False: "
- 1 dict
- dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
- setpagedevice
- 1 dict
- dup /ManualFeed false put
- setpagedevice"
-*End
-*?ManualFeed: "
- save
- currentpagedevice /ManualFeed get
- {(True)}{(False)}ifelse = flush
- restore
-"
-*End
-*CloseUI: *ManualFeed
-
-*ScreenFreq: "85.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 }"
-*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
-
-*DefaultTransfer: Null
-*Transfer Null: "{ }"
-*Transfer Null.Inverse: "{ 1 exch sub }"
-
-*DefaultColorSep: ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi
-
-*ColorSepScreenAngle ProcessBlack.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle CustomColor.85lpi.600dpi/85 lpi / 600 dpi: "45.0"
-*ColorSepScreenAngle ProcessCyan.85lpi.600dpi/85 lpi / 600 dpi: "71.5651"
-*ColorSepScreenAngle ProcessMagenta.85lpi.600dpi/85 lpi / 600 dpi: "18.4349"