-
Notifications
You must be signed in to change notification settings - Fork 0
/
wealthgapstudentaid.eps
6361 lines (6361 loc) · 293 KB
/
wealthgapstudentaid.eps
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-2.0 EPSF-2.0
%% This is a Stata generated postscript file
%%BoundingBox: 0 0 612 792
%%HiResBoundingBox: 0.000 0.000 612.000 792.000
%%DocumentNeededResources: font Tahoma
/xratio 0.024750 def
/yratio 0.024750 def
/Sbgfill {
/y1 exch def
/x1 exch def
/y0 exch def
/x0 exch def
x0 y0 moveto
x0 y1 lineto x1 y1 lineto x1 y0 lineto x0 y0 lineto
fill
} def
/Spt {
yratio mul
/yp exch def
xratio mul
/xp exch def
Slrgb setrgbcolor
xp yp .5 0 360 arc fill
} def
/Sln {
yratio mul
/y1p exch def
xratio mul
/x1p exch def
yratio mul
/y0p exch def
xratio mul
/x0p exch def
Slw setlinewidth
Slrgb setrgbcolor
x0p y0p M x1p y1p lineto S
} def
/Scrv {
yratio mul
/y3p exch def
xratio mul
/x3p exch def
yratio mul
/y2p exch def
xratio mul
/x2p exch def
yratio mul
/y1p exch def
xratio mul
/x1p exch def
Slw setlinewidth
Slrgb setrgbcolor
x1p y1p x2p y2p x3p y3p curveto
S
} def
/Stxtl {
/sp exch def
yratio mul
/sizep exch def
dup
/anglep exch def
0 exch sub
/angle2p exch def
yratio mul
/y0p exch def
xratio mul
/x0p exch def
Strgb setrgbcolor
x0p y0p M anglep rotate sizep fntsize sp show stroke angle2p rotate
} def
/Stxtc {
/sp exch def
yratio mul
/sizep exch def
dup
/anglep exch def
0 exch sub
/angle2p exch def
yratio mul
/y0p exch def
xratio mul
/x0p exch def
Strgb setrgbcolor
x0p y0p M anglep rotate sizep fntsize sp stringwidth exch -2 div exch rm sp show stroke angle2p rotate
} def
/Stxtr {
/sp exch def
yratio mul
/sizep exch def
dup
/anglep exch def
0 exch sub
/angle2p exch def
yratio mul
/y0p exch def
xratio mul
/x0p exch def
Strgb setrgbcolor
x0p y0p M anglep rotate sizep fntsize sp stringwidth 1 index -1 mul exch rm pop sp show stroke angle2p rotate
} def
/Srect {
/sfill exch def
/sstroke exch def
yratio mul
/y1 exch def
xratio mul
/x1 exch def
yratio mul
/y0 exch def
xratio mul
/x0 exch def
newpath x0 y0 moveto x0 y1 lineto x1 y1 lineto x1 y0 lineto x0 y0 lineto closepath
sfill Sfill
sstroke Sstroke
} def
/Sellipse {
/sfill exch def
/sstroke exch def
yratio mul
/yrad exch def
xratio mul
/xrad exch def
yratio mul
/y exch def
xratio mul
/x exch def
/savematrix matrix currentmatrix def
x y translate
xrad yrad scale
0 0 1 0 360 arc
savematrix setmatrix
sfill Sfill
sstroke Sstroke
} def
/Stri {
/sfill exch def
/sstroke exch def
xratio mul
/r exch def
yratio mul
/y0 exch def
xratio mul
/x0 exch def
/xcen x0 def
y0 r add
/ytop exch def
r 2 div
y0 exch sub
/ybot exch def
r 3 sqrt 2 div mul dup
xcen exch sub
/xleft exch def
xcen add
/xright exch def
newpath xcen ytop moveto xright ybot lineto xleft ybot lineto xcen ytop lineto closepath
sfill Sfill
sstroke Sstroke
} def
/Soldtri {
/sfill exch def
xratio mul
/r exch def
yratio mul
/y0 exch def
xratio mul
/x0 exch def
x0 r sub
/x1 exch def
y0 r sub
/y1 exch def
x0 r add
/x2 exch def
y0 r sub
/y2 exch def
/x3 x0 def
y0 r add
/y3 exch def
newpath x1 y1 moveto x2 y2 lineto x3 y3 lineto x1 y1 lineto closepath
sfill 1 eq {
Ssrgb setrgbcolor
gsave
fill
grestore
} if
Slw setlinewidth
Slrgb setrgbcolor
S
} def
/Sdia {
/sfill exch def
/sstroke exch def
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
x r sub
/x0 exch def
/y0 y def
/x1 x def
y r sub
/y1 exch def
x r add
/x2 exch def
/y2 y def
/x3 x def
y r add
/y3 exch def
newpath x0 y0 moveto x1 y1 lineto x2 y2 lineto x3 y3 lineto closepath
sfill Sfill
sstroke Sstroke
} def
/Scc {
/sfill exch def
/sstroke exch def
xratio mul
/r0 exch def
yratio mul
/y0 exch def
xratio mul
/x0 exch def
x0 y0 r0 0 360 arc closepath
sfill Sfill
sstroke Sstroke
} def
/Spie {
/sfill exch def
/salign exch def
/a1 exch def
/a0 exch def
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
/Pie {
x y moveto x y r a0 a1 arc closepath
} def
newpath Pie
sfill Sfill
Slrgb setrgbcolor
salign 0 eq {
gsave
Slw 2 mul setlinewidth
clip
S
grestore
} if
salign 1 eq {
Slw setlinewidth
S
} if
salign 2 eq {
gsave
Slw 2 mul setlinewidth
strokepath
pathbbox
/ury exch def
/urx exch def
/lly exch def
/llx exch def
newpath llx lly moveto llx ury lineto urx ury lineto urx lly lineto closepath
Pie
eoclip
newpath Pie
S
grestore
} if
newpath
} def
/Splu {
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
x r sub
/x0 exch def
x r add
/x1 exch def
x0 y M x1 y L
y r sub
/y0 exch def
y r add
/y1 exch def
x y0 M x y1 L
} def
/Scro {
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
x r sub
/x0 exch def
y r sub
/y0 exch def
x r add
/x1 exch def
y r add
/y1 exch def
x0 y0 M x1 y1 L
x r add
/x0 exch def
y r sub
/y0 exch def
x r sub
/x1 exch def
y r add
/y1 exch def
x0 y0 M x1 y1 L
} def
/Sm {
yratio mul
/y exch def
xratio mul
/x exch def
x y M
} def
/Sl {
yratio mul
/y exch def
xratio mul
/x exch def
x y L
} def
/SPl {
yratio mul
/y exch def
xratio mul
/x exch def
x y PL
} def
/Sarr {
/sfill exch def
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
y r add
/ytop exch def
y r sub
/ybot exch def
gsave
Slrgb setrgbcolor
sfill 0 eq {
r 2 mul 3 div dup
x exch sub
/xleft exch def
x add
/xright exch def
newpath xleft y moveto x ytop lineto xright y lineto x ytop moveto x ybot lineto
Lcs
1 setlinejoin
} {
r 2 div dup
x exch sub
/xleft exch def
x add
/xright exch def
newpath xleft y moveto x ytop lineto xright y lineto x ytop closepath moveto x ybot lineto
gsave
fill
grestore
} ifelse
Slw setlinewidth
S
grestore
} def
/Spipe {
xratio mul
/r exch def
yratio mul
/y exch def
xratio mul
/x exch def
y r sub
/y0 exch def
y r add
/y1 exch def
x y0 M x y1 L
} def
/Sv {
xratio mul
/r exch def
yratio mul
/y0 exch def
xratio mul
/x0 exch def
/xcen x0 def
y0 r add
/ytop exch def
r 2 div
y0 exch sub
/ybot exch def
r 3 sqrt 2 div mul dup
xcen exch sub
/xleft exch def
xcen add
/xright exch def
newpath xleft ytop moveto xcen ybot lineto xright ytop lineto
Slw setlinewidth
Slrgb setrgbcolor
S
} def
/Lcs {
currentlinecap
1 setlinecap
} def
/Lcr {
setlinecap
} def
/Sbp {
newpath
} def
/Sep {
/sfill exch def
closepath
/salign exch def
Lcs
salign 0 eq {
sfill Sfill
gsave
Slw 2 mul setlinewidth
clip
Slrgb setrgbcolor
S
grestore
} if
salign 1 eq {
sfill Sfill
Slw setlinewidth
Slrgb setrgbcolor
S
} if
salign 2 eq {
gsave
Slw 2 mul setlinewidth
Slrgb setrgbcolor
S
grestore
sfill Sfill
} if
newpath
Lcr
} def
/Sbpa {
newpath
} def
/Sepa {
Slw setlinewidth
Slrgb setrgbcolor
currentlinejoin
1 setlinejoin
S
setlinejoin
newpath
} def
/Stransrot {
/anglep exch def
yratio mul
/y exch def
xratio mul
/x exch def
x y translate
anglep rotate
x neg y neg translate
} def
/cp {currentpoint} def
/M {moveto} def
/rm {rmoveto} def
/S {
Slw 0.000 eq {
newpath
} if
Slw 0.000 ne {
stroke
} if
} def
/L {Slw setlinewidth Slrgb setrgbcolor lineto Lcs S Lcr} def
/PL {Slw setlinewidth Slrgb setrgbcolor lineto} def
/MF-Helvetica {
/newfontname exch def
/fontname exch def
/fontdict fontname findfont def
/newfont fontdict maxlength dict def
fontdict {
exch dup /FID eq {pop pop} {exch newfont 3 1 roll put} ifelse
} forall
newfont /FontName newfontname put
newfont /Encoding ISOLatin1Encoding put
newfontname newfont definefont pop
} def
/Helvetica /Helvetica-0 MF-Helvetica
/Slw 0.120 def
0.980 0.941 0.902 setrgbcolor
0 0 612.000 792.000 Sbgfill
/Sfill {
/sfill exch def
sfill 1 eq {
Ssrgb setrgbcolor
gsave
fill
grestore
} if
} def
/Sstroke {
/sstroke exch def
sstroke 1 eq {
Slw setlinewidth
Slrgb setrgbcolor
S
} if
newpath
} def
/Slrgb {1.000 1.000 1.000} def
/Strgb {1.000 1.000 1.000} def
/Ssrgb {1.000 1.000 1.000} def
/Ssrgb {0.980 0.941 0.902} def
/Slw 1.224 def
/Slrgb {0.980 0.941 0.902} def
0 0 24727 32000 0 1 Srect
25 25 24702 31975 1 0 Srect
/Slw 0.816 def
544 14706 24183 28868 0 1 Srect
560 14722 24167 28852 1 0 Srect
742 14904 12364 27899 0 1 Srect
758 14920 12348 27883 1 0 Srect
/Slw 0.694 def
3892 21634 6553 26373 0 1 Srect
3906 21648 6539 26359 1 0 Srect
/Slrgb {0.608 0.608 0.608} def
/Strgb {0.000 0.000 0.000} def
3892 21634 3892 26373 Sln
4394 21634 4394 26373 Sln
4897 21634 4897 26373 Sln
5399 21634 5399 26373 Sln
5901 21634 5901 26373 Sln
/Slw 0.000 def
/Slrgb {0.000 0.000 0.000} def
/Slw 0.694 def
/Slrgb {0.608 0.608 0.608} def
/Slrgb {0.980 0.941 0.902} def
9505 21634 12166 26373 0 1 Srect
9519 21648 12152 26359 1 0 Srect
/Slrgb {0.608 0.608 0.608} def
9505 21634 9505 26373 Sln
10007 21634 10007 26373 Sln
10510 21634 10510 26373 Sln
11012 21634 11012 26373 Sln
11514 21634 11514 26373 Sln
/Slw 0.000 def
/Slrgb {0.000 0.000 0.000} def
/Slw 0.694 def
/Slrgb {0.608 0.608 0.608} def
/Slrgb {0.980 0.941 0.902} def
3892 16338 6553 21077 0 1 Srect
3906 16352 6539 21063 1 0 Srect
/Slrgb {0.608 0.608 0.608} def
3892 16338 3892 21077 Sln
4394 16338 4394 21077 Sln
4897 16338 4897 21077 Sln
5399 16338 5399 21077 Sln
5901 16338 5901 21077 Sln
/Slw 0.000 def
/Slrgb {0.000 0.000 0.000} def
/Slw 0.694 def
/Slrgb {0.608 0.608 0.608} def
/Slrgb {0.980 0.941 0.902} def
9505 16338 12166 21077 0 1 Srect
9519 16352 12152 21063 1 0 Srect
/Slrgb {0.608 0.608 0.608} def
9505 16338 9505 21077 Sln
10007 16338 10007 21077 Sln
10510 16338 10510 21077 Sln
11012 16338 11012 21077 Sln
11514 16338 11514 21077 Sln
/Slw 0.000 def
/Slrgb {0.000 0.000 0.000} def
/Slw 0.694 def
/Slrgb {0.608 0.608 0.608} def
/Ssrgb {1.000 0.753 0.796} def
/Slrgb {1.000 0.753 0.796} def
3892 22239 6062 22808 0 1 Srect
3906 22253 6048 22794 1 0 Srect
/Ssrgb {0.396 0.263 0.129} def
/Slrgb {0.396 0.263 0.129} def
3892 22979 6002 23548 0 1 Srect
3906 22993 5988 23534 1 0 Srect
/Ssrgb {1.000 0.843 0.000} def
/Slrgb {1.000 0.843 0.000} def
3892 23719 5982 24288 0 1 Srect
3906 23733 5968 24274 1 0 Srect
/Ssrgb {0.000 0.502 0.000} def
/Slrgb {0.000 0.502 0.000} def
3892 24459 6022 25028 0 1 Srect
3906 24473 6008 25014 1 0 Srect
/Ssrgb {0.863 0.078 0.235} def
/Slrgb {0.863 0.078 0.235} def
3892 25199 6002 25769 0 1 Srect
3906 25213 5988 25755 1 0 Srect
/Ssrgb {1.000 0.753 0.796} def
/Slrgb {1.000 0.753 0.796} def
9505 22239 11112 22808 0 1 Srect
9519 22253 11098 22794 1 0 Srect
/Ssrgb {0.396 0.263 0.129} def
/Slrgb {0.396 0.263 0.129} def
9505 22979 11293 23548 0 1 Srect
9519 22993 11279 23534 1 0 Srect
/Ssrgb {1.000 0.843 0.000} def
/Slrgb {1.000 0.843 0.000} def
9505 23719 11253 24288 0 1 Srect
9519 23733 11239 24274 1 0 Srect
/Ssrgb {0.000 0.502 0.000} def
/Slrgb {0.000 0.502 0.000} def
9505 24459 11253 25028 0 1 Srect
9519 24473 11239 25014 1 0 Srect
/Ssrgb {0.863 0.078 0.235} def
/Slrgb {0.863 0.078 0.235} def
9505 25199 10891 25769 0 1 Srect
9519 25213 10877 25755 1 0 Srect
/Ssrgb {1.000 0.753 0.796} def
/Slrgb {1.000 0.753 0.796} def
3892 16943 4877 17512 0 1 Srect
3906 16957 4863 17498 1 0 Srect
/Ssrgb {0.396 0.263 0.129} def
/Slrgb {0.396 0.263 0.129} def
3892 17683 4997 18252 0 1 Srect
3906 17697 4983 18238 1 0 Srect
/Ssrgb {1.000 0.843 0.000} def
/Slrgb {1.000 0.843 0.000} def
3892 18423 5198 18992 0 1 Srect
3906 18437 5184 18978 1 0 Srect
/Ssrgb {0.000 0.502 0.000} def
/Slrgb {0.000 0.502 0.000} def
3892 19163 5238 19732 0 1 Srect
3906 19177 5224 19718 1 0 Srect
/Ssrgb {0.863 0.078 0.235} def
/Slrgb {0.863 0.078 0.235} def
3892 19903 5680 20472 0 1 Srect
3906 19917 5666 20458 1 0 Srect
/Ssrgb {1.000 0.753 0.796} def
/Slrgb {1.000 0.753 0.796} def
9505 16943 10449 17512 0 1 Srect
9519 16957 10435 17498 1 0 Srect
/Ssrgb {0.396 0.263 0.129} def
/Slrgb {0.396 0.263 0.129} def
9505 17683 10449 18252 0 1 Srect
9519 17697 10435 18238 1 0 Srect
/Ssrgb {1.000 0.843 0.000} def
/Slrgb {1.000 0.843 0.000} def
9505 18423 10168 18992 0 1 Srect
9519 18437 10154 18978 1 0 Srect
/Ssrgb {0.000 0.502 0.000} def
/Slrgb {0.000 0.502 0.000} def
9505 19163 10711 19732 0 1 Srect
9519 19177 10697 19718 1 0 Srect
/Ssrgb {0.863 0.078 0.235} def
/Slrgb {0.863 0.078 0.235} def
9505 19903 10007 20472 0 1 Srect
9519 19917 9993 20458 1 0 Srect
/Slrgb {0.608 0.608 0.608} def
3892 16338 3892 16144 Sln
%!PS-AdobeFont-1.0: Tahoma © 2018 Microsoft Corporation. All rights reserved.
%%CreationDate: Sat Nov 21 10:33:19 2020
% Converted by ttf2pt1 3.4.4/ttf
% Args: -e -G a -l plane+0 ttf2pt1.ttf ttf2pt1
%%EndComments
12 dict begin
/FontInfo 9 dict dup begin
/version (Version 7.00) readonly def
/Notice (© 2018 Microsoft Corporation. All rights reserved.) readonly def
/FullName (Tahoma) readonly def
/FamilyName (Tahoma) readonly def
/Weight (Regular) readonly def
/ItalicAngle 0.000000 def
/isFixedPitch false def
/UnderlinePosition -83 def
/UnderlineThickness 63 def
end readonly def
/FontName /Tahoma-0 def
/PaintType 0 def
/StrokeWidth 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {-44 -207 950 1000} readonly def
/Encoding 256 array
dup 0 /.notdef put
dup 1 /.notdef put
dup 2 /.notdef put
dup 3 /.notdef put
dup 4 /.notdef put
dup 5 /.notdef put
dup 6 /.notdef put
dup 7 /.notdef put
dup 8 /.notdef put
dup 9 /.notdef put
dup 10 /.notdef put
dup 11 /.notdef put
dup 12 /.notdef put
dup 13 /.notdef put
dup 14 /.notdef put
dup 15 /.notdef put
dup 16 /.notdef put
dup 17 /.notdef put
dup 18 /.notdef put
dup 19 /.notdef put
dup 20 /.notdef put
dup 21 /.notdef put
dup 22 /.notdef put
dup 23 /.notdef put
dup 24 /.notdef put
dup 25 /.notdef put
dup 26 /.notdef put
dup 27 /.notdef put
dup 28 /.notdef put
dup 29 /.notdef put
dup 30 /.notdef put
dup 31 /.notdef put
dup 32 /nbspace put
dup 33 /exclam put
dup 34 /quotedbl put
dup 35 /numbersign put
dup 36 /dollar put
dup 37 /percent put
dup 38 /ampersand put
dup 39 /quotesingle put
dup 40 /parenleft put
dup 41 /parenright put
dup 42 /asterisk put
dup 43 /plus put
dup 44 /comma put
dup 45 /sfthyphen put
dup 46 /period put
dup 47 /slash put
dup 48 /zero put
dup 49 /one put
dup 50 /two put
dup 51 /three put
dup 52 /four put
dup 53 /five put
dup 54 /six put
dup 55 /seven put
dup 56 /eight put
dup 57 /nine put
dup 58 /colon put
dup 59 /semicolon put
dup 60 /less put
dup 61 /equal put
dup 62 /greater put
dup 63 /question put
dup 64 /at put
dup 65 /A put
dup 66 /B put
dup 67 /C put
dup 68 /D put
dup 69 /E put
dup 70 /F put
dup 71 /G put
dup 72 /H put
dup 73 /I put
dup 74 /J put
dup 75 /K put
dup 76 /L put
dup 77 /M put
dup 78 /N put
dup 79 /O put
dup 80 /P put
dup 81 /Q put
dup 82 /R put
dup 83 /S put
dup 84 /T put
dup 85 /U put
dup 86 /V put
dup 87 /W put
dup 88 /X put
dup 89 /Y put
dup 90 /Z put
dup 91 /bracketleft put
dup 92 /backslash put
dup 93 /bracketright put
dup 94 /asciicircum put
dup 95 /underscore put
dup 96 /grave put
dup 97 /a put
dup 98 /b put
dup 99 /c put
dup 100 /d put
dup 101 /e put
dup 102 /f put
dup 103 /g put
dup 104 /h put
dup 105 /i put
dup 106 /j put
dup 107 /k put
dup 108 /l put
dup 109 /m put
dup 110 /n put
dup 111 /o put
dup 112 /p put
dup 113 /q put
dup 114 /r put
dup 115 /s put
dup 116 /t put
dup 117 /u put
dup 118 /v put
dup 119 /w put
dup 120 /x put
dup 121 /y put
dup 122 /z put
dup 123 /braceleft put
dup 124 /bar put
dup 125 /braceright put
dup 126 /asciitilde put
dup 127 /.notdef put
dup 128 /.notdef put
dup 129 /.notdef put
dup 130 /.notdef put
dup 131 /.notdef put
dup 132 /.notdef put
dup 133 /.notdef put
dup 134 /.notdef put
dup 135 /.notdef put
dup 136 /.notdef put
dup 137 /.notdef put
dup 138 /.notdef put
dup 139 /.notdef put
dup 140 /.notdef put
dup 141 /.notdef put
dup 142 /.notdef put
dup 143 /.notdef put
dup 144 /.notdef put
dup 145 /.notdef put
dup 146 /.notdef put
dup 147 /.notdef put
dup 148 /.notdef put
dup 149 /.notdef put
dup 150 /.notdef put
dup 151 /.notdef put
dup 152 /.notdef put
dup 153 /.notdef put
dup 154 /.notdef put
dup 155 /.notdef put
dup 156 /.notdef put
dup 157 /.notdef put
dup 158 /.notdef put
dup 159 /.notdef put
dup 160 /nbspace put
dup 161 /exclamdown put
dup 162 /cent put
dup 163 /sterling put
dup 164 /currency put
dup 165 /yen put
dup 166 /brokenbar put
dup 167 /section put
dup 168 /dieresis put
dup 169 /copyright put
dup 170 /ordfeminine put
dup 171 /guillemotleft put
dup 172 /logicalnot put
dup 173 /sfthyphen put
dup 174 /registered put
dup 175 /macron put
dup 176 /degree put
dup 177 /plusminus put
dup 178 /twosuperior put
dup 179 /threesuperior put
dup 180 /acute put
dup 181 /mu put
dup 182 /paragraph put
dup 183 /periodcentered put
dup 184 /cedilla put
dup 185 /onesuperior put
dup 186 /ordmasculine put
dup 187 /guillemotright put
dup 188 /onequarter put
dup 189 /onehalf put
dup 190 /threequarters put
dup 191 /questiondown put
dup 192 /Agrave put
dup 193 /Aacute put
dup 194 /Acircumflex put
dup 195 /Atilde put
dup 196 /Adieresis put
dup 197 /Aring put
dup 198 /AE put
dup 199 /Ccedilla put
dup 200 /Egrave put
dup 201 /Eacute put
dup 202 /Ecircumflex put
dup 203 /Edieresis put
dup 204 /Igrave put
dup 205 /Iacute put
dup 206 /Icircumflex put
dup 207 /Idieresis put
dup 208 /Eth put
dup 209 /Ntilde put
dup 210 /Ograve put
dup 211 /Oacute put
dup 212 /Ocircumflex put
dup 213 /Otilde put
dup 214 /Odieresis put
dup 215 /multiply put
dup 216 /Oslash put
dup 217 /Ugrave put
dup 218 /Uacute put
dup 219 /Ucircumflex put
dup 220 /Udieresis put
dup 221 /Yacute put
dup 222 /Thorn put
dup 223 /germandbls put
dup 224 /agrave put
dup 225 /aacute put
dup 226 /acircumflex put
dup 227 /atilde put
dup 228 /adieresis put
dup 229 /aring put
dup 230 /ae put
dup 231 /ccedilla put
dup 232 /egrave put
dup 233 /eacute put
dup 234 /ecircumflex put
dup 235 /edieresis put
dup 236 /igrave put
dup 237 /iacute put
dup 238 /icircumflex put
dup 239 /idieresis put
dup 240 /eth put
dup 241 /ntilde put
dup 242 /ograve put
dup 243 /oacute put
dup 244 /ocircumflex put
dup 245 /otilde put
dup 246 /odieresis put
dup 247 /divide put
dup 248 /oslash put
dup 249 /ugrave put
dup 250 /uacute put
dup 251 /ucircumflex put
dup 252 /udieresis put
dup 253 /yacute put
dup 254 /thorn put
dup 255 /ydieresis put
readonly def
currentdict end
currentfile eexec
D9D66F633B846A989B9974B0179FC6CC445BC1325EB8F274DD24A5D21C056364
13EFC099729365596A8A52075A624087116520034680FDBD3E86220CBF46C2E8
2BA32413E26C0AE960BB760BE98B2E1348D6A21CDB5429260899F7FF77617B00
E876499AFB997425D58673778E90672CE2F26C816F6EF6C1F6F0724D575749C5
5AE9D8CD0337709436E75CF2354AFBA7974814727450620BF79E10457E31E899
430F90AC9865F70FE6B6777C3B647DBF5479B987AFBD6DBAEA380CEC42950CA1
9398EFFA5484638A95096750A7FC55921A0465AB4D6773290B125D44976D0F7D
2C3D54F20DAD34DAB19D95A78278593688E277FB4DDD673E106D4A2813C99D7E
B2DDAC0CDA31DC7420052AADF634C756FA057CD548612253F8A9F68442129E3F
3FD57A02C47B41D68D100536968CAB5883DCC5608FEBA0801F23965D83C46497
7F2384DF125610688EA112FE4B534EA430F63424B85C1577479601E835875A17
8DBA4FE1F9A59B51D3401057F0F2782D559A388A355CC94CB66522D2EBD85D67
5C6BC512ABD77FFBF8BFC4BAF0E284A5A0BE335EBD2DA32974D6C835B9C3F9E4
BEE87B957DFC0FFEE5A92DBDEB1BE5D3E4EE36DEBE30C9A8A6C87AE6CCD1A59C
6C9E2844A8E6090A47C3BAA80761E6D0CB312C908FB93A5747EDA57889E68A17
CC1BC10458CA6C4315B342D520DE3B1371305AB9DE7D21C6E888F5FCDB35D70E
0CB0ACAEA8DAA878269BE3A902AB2800530F414B89537F10E7D93374FD9E8FCE
2E4AF1F3B7463B759218FAF36BF07045D6D708A8D06470E36EC88A7F3F05EFA9
0864CA6022753346CA29C674A2D9E604EFB7E04434D4D8B7646F3F0B2956BD26
8608F819160257627ABE75639369D65083205AE586628193327A9D3AD3DED4F1
EB882124E09A4C0D6B71E487A12A92C43565A4E19B293BF29C73EB3A286B7F5A
F25B3FE53F0288488F25FE1FF1804905C8B4D3363ECBB7CDE475BB659257CF8A
A061153A631D123BFFB13E149F63CBAF2F30EAEF5776153D44ED68415B0C58AD
8C979449BDD74166B19FFF3F81E4ADDB48494B72F588301CE3A8AB8445DC7B15
A9A8C7666AF73508E9704D6EF2E24BFFC2FD7C22A20F2DCE431A289C1403465C
CD2F694BE2349868E7722D53794324DE7C57B19E4CA0974EB87F3A6547DE2CBD
86B06FCACE35EC578CD6A97910BAA4B9435F8323C515B56D37269B7F3338B7DE
CC1CBA00EA2F3BF2C0297F26F5E4F6116356FA590BCC13496C41DD9C0A4EFF3C
CADCE1AB83A2EFD737A46FDF835DDE25BCAD0AC3CB19AB4DFFF369F45E039E08
120DA5FEFF30194C0CBE1BF5662FC87C2F3C1FCC6B5C7B7D12DE631FE3BF612D
5A79D22020F251DB7C6925868B5FAE18F14A4663B4199511D85A59AE0A02B741
EB4AD89289FA3EDC1900885669B17C27CC63FE888D6CB2F103AF3E0FB752E6F7
8B77CBC76229B15B0FA72FA7A271EB63AFA894C3604EA86518AD9668CA0A90B8
BEAE37ED17FFA2F1F9A03CCD801B9AFAD7718C6208F2EE5D2622D889ADA6438F
FD5293A41C8F961A514F6FD6A91678CA480A8ED6384B82171775837DE67F1F28
C829213942EA553AAD6E4BC600DBFDCE694761352B105E3AFC22422A93DBE20D
BDDC684BDD89CE2A169BBA8D108C4CDD8D301A5AE9486B84330642379B7901F0
957757BA0098C6EBB1AD2C0D944FBA2ECB70A7565FF6BAEA70F754B62E50C325
DF473C604626545F92B97D17BD5E5EE7E648920DF308FF9CA73F84C536A4AFAC
6A910A6BA1B790DA590B0EE369F8B5967016D0A71D8AC155B67C8626FF338128
8E84073D251125385AF1647ABD243C192189FE20EA3941916B708E475DB36DCC
13A89DC81249B33ADF3DF606E42467780702A10AF25ADE33B587ACC7E6F20F25
08EF0815E4F076F03E72802CEBC7DDC571FCB38B006A79ABFAD66AEB9F10ECBC
AF729035318B5BAE543C44CB379F82878CFD111E32142FFBEA2E4538C910CD02
117212CF672C66FA0833F48F98F2BCE47E0B9CBF4A06738666214BD0783F93DD
D5D12456C755F3AD9E725A327C985AA631AA151879B18162AEF9447255A99CCE
4EC014CFBF47C2C5D05BCAED08C441FF305ABE69C4F5E84C0C31E7D7CAF7A1FE
06A5A5A2D454290D87FE14099F26B4DAF2B0560033510A548D553D4A6EDB248F