-
Notifications
You must be signed in to change notification settings - Fork 1
/
business.ps
9681 lines (9667 loc) · 347 KB
/
business.ps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0
%%Creator: dvi2ps
%%Title: business.dvi
%%Pages: 1
%%BoundingBox: 0 0 595 842
%%Orientation: Portrait
%%EndComments
%%BeginFile: /usr/lib/dvi2ps/headers/dvi2.ps
%
/TeXDict 300 dict def
TeXDict begin
/inch {72 mul} bind def
/largepaperarray [
/letter /legal /11x17
/b4 /b5 /a5 /a4 /a3
] def
/smallpaperarray [
/note dup where {
pop
}{
pop /lettersmall dup where {
pop
}{
pop /letter
} ifelse
} ifelse
/legal /11x17
/b4 /b5 /a5
/a4small dup where {
pop
}{
pop /note dup where {
pop
}{
pop /a4
} ifelse
} ifelse
/a3
] def
/setpaper {
papertray {
dup where {
exch get exec
}{
pop
} ifelse
}{
pop
} ifelse
} bind def
/trayarray [
/lettertray /legaltray /11x17tray
/b4tray /b5tray /a5tray /a4tray /a3tray
] def
/settray {
dup statusdict exch known manualfeed not and {
mark exch statusdict begin load
{
exec
} stopped {
$error /newerror get {
$error /errorname get /rangecheck eq {
(Tray not found, using default tray.\n) print flush
TeXDict /papertray false put
}{
handleerror
} ifelse
$error /newerror false put
} if
} if
end cleartomark
}{
pop
} ifelse
} bind def
/papertray true def
/widtharray [
8.5 inch 8.5 inch 11 inch
10.12 inch 7.17 inch
5.83 inch 8.27 inch 11.69 inch
] def
/heightarray [
11 inch 14 inch 17 inch
14.33 inch 10.12 inch
8.27 inch 11.69 inch 16.54 inch
] def
/xoffset 0 def
/yoffset 0 def
/leftm 72 def
/topm 72 def
/landscape false def
/manualfeed false def
/sizesetup {
dup widtharray exch get /paperwidth exch def
heightarray exch get /paperheight exch def
} bind def
/pagesetup {
dup sizesetup
dup trayarray exch get settray
large {largepaperarray}{smallpaperarray} ifelse
exch get setpaper
} bind def
/@lettersize {0 sizesetup} def
/@legalsize {1 sizesetup} def
/@tabloidsize {2 sizesetup} def
/@b4size {3 sizesetup} def
/@b5size {4 sizesetup} def
/@a5size {5 sizesetup} def
/@a4size {6 sizesetup} def
/@a3size {7 sizesetup} def
/@letter {0 pagesetup} def
/@legal {1 pagesetup} def
/@tabloid {2 pagesetup} def
/@b4 {3 pagesetup} def
/@b5 {4 pagesetup} def
/@a5 {5 pagesetup} def
/@a4 {6 pagesetup} def
/@a3 {7 pagesetup} def
/@landscape {/landscape true def} bind def
/@manualfeed {
/manualfeed true def
statusdict /manualfeed known {
statusdict /manualfeed true put
statusdict /manualfeedtimeout 120 put
} if
} bind def
/@large {/large true def} bind def
/@small {/large false def} bind def
/@envelope {
/xoffset 4.28 inch def
/yoffset 1.5 inch def
@letter
} bind def
/COPIES {
/#copies exch def
} bind def
/NF {
/newname exch def
/fsize exch def
/corr exch def
newname 7 dict def
newname load begin
/FontType 3 def
/FontMatrix [corr 0 0 corr neg 0 0] def
/FontBBox [0 0 1 1] def
/BitMaps fsize array def
/BuildChar /CharBuilder load def
/Encoding 256 array def
0 1 255 {Encoding exch /.notdef put} for
end
newname newname load definefont pop
} bind def
/ch-image {ch-data 0 get} bind def
/ch-width {ch-data 1 get} bind def
/ch-height {ch-data 2 get} bind def
/ch-xoff {ch-data 3 get} bind def
/ch-yoff {ch-data 4 get} bind def
/ch-tfmw {ch-data 5 get} bind def
/CharBuilder {
/ch-code exch def
/font-dict exch def
/ch-data font-dict /BitMaps get ch-code get def
ch-data null eq not {
ch-tfmw 0
ch-xoff neg ch-yoff neg ch-width ch-xoff sub ch-height ch-yoff sub
setcachedevice
ch-width ch-height true [1 0 0 1 ch-xoff ch-yoff]
{ch-image} imagemask
} if
} bind def
/NF2 {
/newname exch def
/fsize exch def
/corr exch def
newname 7 dict def
newname load begin
/FontType 3 def
/FontMatrix [corr 0 0 corr neg 0 0] def
/FontBBox [0 0 1 1] def
/BitMaps fsize array def
/BuildChar /CharBuilder2 load def
/Encoding 256 array def
0 1 255 {Encoding exch /.notdef put} for
end
newname newname load definefont pop
} bind def
/CharBuilder2 {
/ch-code exch def
/font-dict exch def
/ch-data font-dict /BitMaps get ch-code get def
ch-data null eq not {
ch-tfmw 0
ch-xoff neg ch-yoff neg ch-width ch-xoff sub ch-height ch-yoff sub
setcachedevice
ch-xoff neg ch-yoff neg translate
ch-image exec
} if
} bind def
/BFT {
/bf-v exch def
/bf-h exch def
findfont [bf-h 0 0 bf-v 0 0] makefont def
} bind def
/BFE /BFT load def
/BFF {
/bf-v exch def
/bf-h exch def
/savecurfont currentfont def
findfont dup setfont
3 -1 roll
/bf-stand exch def
[
bf-stand stringwidth pop
dup bf-h exch div
exch bf-v exch div 0 0 3 -1 roll
0 0
] makefont def
savecurfont setfont
} bind def
/SF /setfont load def
/s3 3 string def
/D {
/ch-code exch def
/ch-data exch def
currentfont /BitMaps get ch-code ch-data put
currentfont /Encoding get ch-code
dup s3 cvs cvn
put
} bind def
/BP {
userdict /bop-hook known { bop-hook } if
/SaveImage save def
xoffset yoffset translate
leftm topm
landscape {
exch translate
90 rotate
}{
paperheight exch sub translate
} ifelse
72 Resolution div dup neg scale
0 0 moveto
} def
/EP {
SaveImage restore
userdict /eop-hook known { eop-hook } if
showpage
} def
/START {
userdict /start-hook known { start-hook } if
/DVImag exch def
/magscale true def
/Resolution exch def
} def
/l /lineto load def
/p /moveto load def
/r {
0 rmoveto
} bind def
/s /show load def
/c /curveto load def
/rs {
90 rotate show -90 rotate
} bind def
/ru {
/dy exch neg def
/dx exch def
/x currentpoint /y exch def def
newpath x y moveto
dx 0 rlineto
0 dy rlineto
dx neg 0 rlineto
closepath fill
x y moveto
} bind def
end
%%EndFile
%%BeginFile: /usr/lib/dvi2ps/headers/special.ps
%!
TeXDict begin
/TeXscale { 65781.76 div } def
/DocumentInitState [ matrix currentmatrix currentlinewidth currentlinecap
currentlinejoin currentdash currentgray currentmiterlimit ] cvx def
/startTexFig {
/SavedState save def
userdict maxlength dict begin
currentpoint transform
DocumentInitState setmiterlimit setgray setdash setlinejoin setlinecap
setlinewidth setmatrix
itransform moveto
magscale { DVImag dup scale } if
/ury exch TeXscale def
/urx exch TeXscale def
/lly exch TeXscale def
/llx exch TeXscale def
/y exch TeXscale def
/x exch TeXscale def
currentpoint /cy exch def /cx exch def
/sx x urx llx sub div def
/sy y ury lly sub div def
sx sy scale
cx sx div llx sub
cy sy div ury sub translate
/DefFigCTM matrix currentmatrix def
/initmatrix {
DefFigCTM setmatrix
} def
/defaultmatrix {
DefFigCTM exch copy
} def
/initgraphics {
DocumentInitState setmiterlimit setgray setdash
setlinejoin setlinecap setlinewidth setmatrix
DefFigCTM setmatrix
} def
/showpage {} def
/erasepage {} def
/copypage {} def
} def
/clipFig {
currentpoint 6 2 roll
newpath 4 copy
4 2 roll moveto
6 -1 roll exch lineto
exch lineto
exch lineto
closepath clip
newpath
moveto
} def
/doclip { llx lly urx ury clipFig } def
/endTexFig {
end SavedState restore
} def
/SDict 200 dict def
SDict begin
/@SpecialDefaults {
/hsi paperwidth 72 div def
/vsi paperheight 72 div def
/hof 0 def
/vof 0 def
/hsc 1 def
/vsc 1 def
/rotat 0 def
/CLIP false def
/BBOX false def
/EPSF false def
/ECL false def
} bind def
/@ecl {/ECL true def} bind def
/@clip {/CLIP true def} bind def
/@hsize {/hsi exch def @clip} bind def
/@vsize {/vsi exch def @clip} bind def
/@hoffset {/hof exch def} bind def
/@voffset {/vof exch def} bind def
/@scaleunit 100 def
/@hscale {@scaleunit div /hsc exch def} bind def
/@vscale {@scaleunit div /vsc exch def} bind def
/@rotation {/rotat exch def} bind def
/@angle /@rotation load def
/@rwi {10 div /hsi exch def} bind def
/@rhi {10 div /vsi exch def} bind def
/@llx {/llx exch def /BBOX true def /hsi 0 def /vsi 0 def} bind def
/@lly {/lly exch def} bind def
/@urx {/urx exch def} bind def
/@ury {/ury exch def} bind def
/@bbox {{@clip}if @ury @urx @lly @llx} bind def
/@setclipper {
CLIP {
newpath 0 0 moveto hsi 0 rlineto 0 vsi rlineto hsi neg 0 rlineto
closepath clip
} if
} bind def
end
/@beginspecial {
SDict begin
/SpecialSave save def
/dict_count countdictstack def
/op_count count 1 sub def
currentpoint transform initgraphics itransform translate
magscale { DVImag dup scale } if
landscape {90 rotate} if
@SpecialDefaults
@MacSetUp
} def
/@setspecial {
hof vof translate
BBOX {
rotat rotate
hsi 0 eq {
vsi 0 eq {
hsc vsc
}{
vsi ury lly sub div dup
}ifelse
}{
vsi 0 eq {
hsi urx llx sub div dup
}{
hsi urx llx sub div vsi ury lly sub div
} ifelse
} ifelse
scale
llx neg ECL{ury}{lly}ifelse neg translate
CLIP {
newpath
llx lly moveto
urx lly lineto
urx ury lineto
llx ury lineto
closepath clip
} if
newpath
}{
@setclipper hsc vsc scale rotat rotate
} ifelse
/CTM matrix currentmatrix def
/letter {} def /note {} def /legal {} def /11x17 {} def
/b4 {} def /b5 {} def /a5 {} def /a4 {} def /a4small {} def /a3 {} def
/showpage {} def /copypage {} def /erasepage {} def
/initmatrix {CTM setmatrix} bind def
/defaultmatrix {CTM exch copy} bind def
CLIP {
/*initclip /initclip load def
/initclip {
TeXDict begin
*initclip
matrix currentmatrix CTM setmatrix newpath
BBOX {
llx lly moveto urx lly lineto urx ury lineto llx ury lineto
}{
0 0 moveto hsi 0 rlineto 0 vsi rlineto hsi neg 0 rlineto
} ifelse
closepath clip setmatrix newpath
end
} bind def
} if
/initgraphics {
initmatrix newpath initclip
1 setlinewidth 0 setlinecap 0 setlinejoin
[] 0 setdash 0 setgray 10 setmiterlimit
} bind def
/languagelevel where {
pop languagelevel 1 ne { false setstrokeadjust false setoverprint } if
} if
} def
/@endspecial {
count op_count sub {pop} repeat
countdictstack dict_count sub {end} repeat
SpecialSave restore
end
} def
/@defspecial {
SDict begin
} def
/@fedspecial {
end
} def
/@MacSetUp {
userdict /md known {
userdict /md get type /dicttype eq {
md /txpose known {
md /txpose {pxs pys neg scale} put
} if
md /cp known {
md /cp {pop pop pm restore} put
} if
} if
} if
} bind def
/@push {
gsave
currentpoint translate
dup scale
newpath
} bind def
/@pop {
grestore
} bind def
/@ar {
matrix currentmatrix
7 -2 roll moveto
currentpoint translate
newpath
5 -2 roll scale
0 0 1 6 -2 roll arc
setmatrix
} bind def
/@RGB /setrgbcolor load def
/@HSB /sethsbcolor load def
/@CMYK /setcmykcolor dup where {
pop load
}{
pop {
1 sub 4 1 roll
3 { 3 index add neg dup 0 lt {pop 0} if 3 1 roll } repeat
setrgbcolor pop
} bind
} ifelse def
/normalscale {
Resolution 72 div Resolution 72 div neg scale
magscale { DVImag dup scale } if
0 setgray
} def
end
%%EndFile
%%BeginFile: /usr/lib/dvi2ps/fontsk/psfonts.ps
%%BeginProcSet: psfonts 1 0
TeXDict begin
/DF {definefont pop} bind def
/CopyFont {
1 index maxlength add dict begin
{
1 index /FID ne
2 index /UniqueID ne and {
def
}{
pop pop
} ifelse
} forall
currentdict
end
} bind def
/doObliqueSlant {
[1 0 4 -1 roll dup sin exch cos div 1 0 0] exch
dup type /nametype eq { findfont } if
exch makefont
} bind def
/ObliqueSlant { doObliqueSlant DF } def
/doSlantFont {
[1 0 4 -1 roll 1 0 0] exch
dup type /nametype eq { findfont } if
exch makefont
} def
/SlantFont { doSlantFont DF } def
/doExtendFont {
[exch 0 0 1 0 0] exch
dup type /nametype eq { findfont } if
exch makefont
} def
/ExtendFont { doExtendFont DF } def
/doTeX1Encode {
dup type /nametype eq { findfont } if
1 CopyFont
begin
/Encoding TeXBase1Encoding def
currentdict
end
} bind def
/TeX1Encode { doTeX1Encode DF } def
/doTeXnANSIEncode {
dup type /nametype eq { findfont } if
1 CopyFont
begin
/Encoding TeXnANSIEncoding def
currentdict
end
} bind def
/TeXnANSIEncode { doTeXnANSIEncode DF } def
end % TeXDict
%%EndProcSet
%%EndFile
%%EndProlog
%%BeginSetup
%%Feature: *ManualFeed False
%%Feature: *Resolution 600
TeXDict begin
%%PaperSize: A4
@large
@a4
%%BeginFile: /usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc
% File 8r.enc TeX Base 1 Encoding Revision 2.0 2002-10-30
%
% @@psencodingfile@{
% author = "S. Rahtz, P. MacKay, Alan Jeffrey, B. Horn, K. Berry,
% W. Schmidt, P. Lehman",
% version = "2.0",
% date = "27nov06",
% filename = "8r.enc",
% email = "tex-fonts@@tug.org",
% docstring = "This is the encoding vector for Type1 and TrueType
% fonts to be used with TeX. This file is part of the
% PSNFSS bundle, version 9"
% @}
%
% The idea is to have all the characters normally included in Type 1 fonts
% available for typesetting. This is effectively the characters in Adobe
% Standard encoding, ISO Latin 1, Windows ANSI including the euro symbol,
% MacRoman, and some extra characters from Lucida.
%
% Character code assignments were made as follows:
%
% (1) the Windows ANSI characters are almost all in their Windows ANSI
% positions, because some Windows users cannot easily reencode the
% fonts, and it makes no difference on other systems. The only Windows
% ANSI characters not available are those that make no sense for
% typesetting -- rubout (127 decimal), nobreakspace (160), softhyphen
% (173). quotesingle and grave are moved just because it's such an
% irritation not having them in TeX positions.
%
% (2) Remaining characters are assigned arbitrarily to the lower part
% of the range, avoiding 0, 10 and 13 in case we meet dumb software.
%
% (3) Y&Y Lucida Bright includes some extra text characters; in the
% hopes that other PostScript fonts, perhaps created for public
% consumption, will include them, they are included starting at 0x12.
% These are /dotlessj /ff /ffi /ffl.
%
% (4) hyphen appears twice for compatibility with both ASCII and Windows.
%
% (5) /Euro was assigned to 128, as in Windows ANSI
%
% (6) Missing characters from MacRoman encoding incorporated as follows:
%
% PostScript MacRoman TeXBase1
% -------------- -------------- --------------
% /notequal 173 0x16
% /infinity 176 0x17
% /lessequal 178 0x18
% /greaterequal 179 0x19
% /partialdiff 182 0x1A
% /summation 183 0x1B
% /product 184 0x1C
% /pi 185 0x1D
% /integral 186 0x81
% /Omega 189 0x8D
% /radical 195 0x8E
% /approxequal 197 0x8F
% /Delta 198 0x9D
% /lozenge 215 0x9E
%
/TeXBase1Encoding [
% 0x00
/.notdef /dotaccent /fi /fl
/fraction /hungarumlaut /Lslash /lslash
/ogonek /ring /.notdef /breve
/minus /.notdef /Zcaron /zcaron
% 0x10
/caron /dotlessi /dotlessj /ff
/ffi /ffl /notequal /infinity
/lessequal /greaterequal /partialdiff /summation
/product /pi /grave /quotesingle
% 0x20
/space /exclam /quotedbl /numbersign
/dollar /percent /ampersand /quoteright
/parenleft /parenright /asterisk /plus
/comma /hyphen /period /slash
% 0x30
/zero /one /two /three
/four /five /six /seven
/eight /nine /colon /semicolon
/less /equal /greater /question
% 0x40
/at /A /B /C
/D /E /F /G
/H /I /J /K
/L /M /N /O
% 0x50
/P /Q /R /S
/T /U /V /W
/X /Y /Z /bracketleft
/backslash /bracketright /asciicircum /underscore
% 0x60
/quoteleft /a /b /c
/d /e /f /g
/h /i /j /k
/l /m /n /o
% 0x70
/p /q /r /s
/t /u /v /w
/x /y /z /braceleft
/bar /braceright /asciitilde /.notdef
% 0x80
/Euro /integral /quotesinglbase /florin
/quotedblbase /ellipsis /dagger /daggerdbl
/circumflex /perthousand /Scaron /guilsinglleft
/OE /Omega /radical /approxequal
% 0x90
/.notdef /.notdef /.notdef /quotedblleft
/quotedblright /bullet /endash /emdash
/tilde /trademark /scaron /guilsinglright
/oe /Delta /lozenge /Ydieresis
% 0xA0
/.notdef /exclamdown /cent /sterling
/currency /yen /brokenbar /section
/dieresis /copyright /ordfeminine /guillemotleft
/logicalnot /hyphen /registered /macron
% 0xB0
/degree /plusminus /twosuperior /threesuperior
/acute /mu /paragraph /periodcentered
/cedilla /onesuperior /ordmasculine /guillemotright
/onequarter /onehalf /threequarters /questiondown
% 0xC0
/Agrave /Aacute /Acircumflex /Atilde
/Adieresis /Aring /AE /Ccedilla
/Egrave /Eacute /Ecircumflex /Edieresis
/Igrave /Iacute /Icircumflex /Idieresis
% 0xD0
/Eth /Ntilde /Ograve /Oacute
/Ocircumflex /Otilde /Odieresis /multiply
/Oslash /Ugrave /Uacute /Ucircumflex
/Udieresis /Yacute /Thorn /germandbls
% 0xE0
/agrave /aacute /acircumflex /atilde
/adieresis /aring /ae /ccedilla
/egrave /eacute /ecircumflex /edieresis
/igrave /iacute /icircumflex /idieresis
% 0xF0
/eth /ntilde /ograve /oacute
/ocircumflex /otilde /odieresis /divide
/oslash /ugrave /uacute /ucircumflex
/udieresis /yacute /thorn /ydieresis
] def
%%EndFile
/bf0 /Times-Roman TeX1Encode
/f0 /bf0 66.416 -66.416 BFT
/f1 /bf0 53.133 -53.133 BFT
/f2 /bf0 99.624 -99.624 BFT
600 1.000 START
%%EndSetup
%%Page: 1 1
BP
f2 SF
556 4986 p (T)s
-4 r (ux)s
24 r (Linux)s
f0 SF
558 5057 p (O)s
f1 SF
3 r (FFI)s
3 r (C)s
3 r (I)s
4 r (A)s
3 r (L)s
f0 SF
20 r (M)s
f1 SF
3 r (A)s
3 r (S)s
4 r (C)s
3 r (O)s
1 r (T)s
f0 SF
558 5128 p (D)s
f1 SF
3 r (E)s
3 r (PA)s
2 r (RT)s
3 r (M)s
4 r (E)s
3 r (N)s
3 r (T)s
20 r (O)s
3 r (F)s
f0 SF
20 r (F)s
f1 SF
3 r (U)s
4 r (N)s
f0 SF
3 r (,)s
20 r (S)s
f1 SF
3 r (U)s
4 r (P)s
3 r (P)s
3 r (O)s
3 r (RT)s
558 5199 p (A)s
3 r (N)s
3 r (D)s
f0 SF
20 r (M)s
f1 SF
3 r (A)s
4 r (R)s
3 r (K)s
3 r (E)s
4 r (T)s
3 r (I)s
3 r (N)s
3 r (G)s
f0 SF
556 5341 p (The)s
17 r (Linux)s
16 r (Foundation)s
556 5412 p (660)s
17 r (Y)s
-7 r (ork)s
16 r (Street,)s
16 r (Suite)s
17 r (102)s
556 5483 p (San)s
17 r (Francisco)s
556 5553 p (CA)s
17 r (94110)s
887 5719 p (linkedin.com/in/T)s
-3 r (uxLinux)s
887 5790 p (github)s
-2 r (.com/T)s
-3 r (ux.Linux)s
887 5860 p (kernel.or)s
-1 r (g)s
-152 5506 p @beginspecial
14.000000 @llx
14.000000 @lly
263.000000 @urx
263.000000 @ury
747.000000 @rwi
@setspecial
%%BeginDocument: QR.eps
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner
%%Title: tux.eps
%%CreationDate: Fri Aug 23 11:45:02 2013
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%Pages: 1
%%BoundingBox: 14 14 263 263
%%EndComments
%%BeginProlog
% Use own dictionary to avoid conflicts
10 dict begin
%%EndProlog
%%Page: 1 1
% Translate for offset
14.173228346456694 14.173228346456694 translate
% Translate to begin of first scanline
0 248 translate
248 -248 scale
% Image geometry
248 248 8
% Transformation matrix
[ 248 0 0 248 0 0 ]
% Strings to hold RGB-samples per scanline
/rstr 248 string def
/gstr 248 string def
/bstr 248 string def
{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop}
{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop}
{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop}
true 3
%%BeginData: 31643 ASCII Bytes
colorimage
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
JcCT,J,~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>\P:q>^6jdJr/*l2Sj*q>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jg&LjJnc/+Znc/+Zq>][Zl2UPZg&LjJq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jq>]sbiW%j:nc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/Cbq>^6jnc/Cbnc/Cbnc/Cbq>^6jq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>
q>^6jq>][Zq>^6jnc/+Zq>]CRnc/Cbl2UPZq>][Zq>^6jq>Ys~>