-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectReport.ps
More file actions
2941 lines (2917 loc) · 144 KB
/
ProjectReport.ps
File metadata and controls
2941 lines (2917 loc) · 144 KB
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
%%Creator: BaKoMa dvips 5.78, based on dvips 5.78 from www.radicaleye.com
%%Title: ProjectReport.DVX
%%CreationDate: Sun May 24 00:48:40 2015
%%Pages: 7
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentFonts: CMBX12 CMR12 CMBXTI10 CMBX8 CMCSC10 CMTI10 CMR10 CMTT10
%%+ CMR8 CMSSBX10 CMTI8 CMMI10 CMBX10
%%EndComments
%DVIPSCommandLine: "C:\BaKoMa TeX\bin\WIN32\dvips.exe" -K0 -hpdfmark -M
%+ -D300 -O0in,0in -y1000 -T595bp,842bp -hPDF.PRO -oProjectReport.ps
%+ ProjectReport.DVX
%DVIPSParameters: dpi=300
%DVIPSSource: TeX output 2015.05.23:1714
%%BeginProcSet: pdfmark
%% to load with PDF jobs so that they can be processed with a normal
%% PS system
systemdict /pdfmark known not
{userdict /pdfmark systemdict /cleartomark get put} if
% this is how you get landscape A4 pages, for reference
%<< /PageSize [842 596] >> setpagedevice
% V 4.70: Fix few incompatibilities with Adobe Distiller.
/!pdfmark /pdfmark load def
/!pdfmarkviewdict << /FitH 1 /FitBH 1 /FitV /FitBV >> def
/pdfmark {
dup /OUT eq {
counttomark -1 1 {
%dup index /Dest eq {dup -1 roll cvn exch 1 sub 1 roll} {pop} ifelse
dup index /Dest eq {dup -1 roll dup type /stringtype eq {cvn} if exch 1 sub 1 roll} {pop} ifelse
} for
} if
dup /DOCVIEW eq {
counttomark -1 1 {
dup index /View eq {
dup -1 roll
dup type /arraytype ne { [ exch
!pdfmarkviewdict 1 index known
{!pdfmarkviewdict 1 index get {0}repeat} if
] } if % cvn
exch 1 sub 1 roll
} {pop} ifelse
} for
} if
!pdfmark
} bind def
%%EndProcSet
%%BeginProcSet: PDF.PRO
%!
/PDF 128 dict begin /Init{}bind def /findpageresource{Resources 1 index
known{Resources exch get exch 2 copy known{get true}{
(WARNING: Resource )print ==( is undefined.\n)print pop false}ifelse}{
(WARNING: )print ==( resources are not available.\n)print pop false}
ifelse}bind def /NewQDict{16 dict dup /Next null put dup /InText false
put dup /ColorBuf 7 array put dup /TextMatrix matrix put dup
/TextLineMatrix matrix put dup /TextSaveMatrix matrix put}bind def
/BeginPage{userdict begin /PDFPageSave save def /PDFPageNo exch def end
NewQDict begin /qLevel 0 def /CharBuf 1 string def 0 g 0 G /CharSpacing
0 def /WordSpacing 0 def /FontSize 1 def 0 Tr 0 TL 0 Ts 100 Tz
/tmpMatrix matrix def}bind def /EndPage{qLevel{end}repeat end userdict
/PDFPageSave get restore showpage}def /BX{}def /EX{}def /q{gsave Next
null eq{/Next NewQDict store}if ExtGSParams{dup load Next begin def end}
forall qLevel Next begin /qLevel exch 1 add def /InText false def}bind
def /ExtGSParams[/StrokeColor /CharSpacing /WordSpacing /HScaling
/Leading /RenderingMode /TextRise]def /Q{qLevel 0 gt{end grestore}if}
bind def /cm{matrix astore concat}bind def /w /setlinewidth load def /J
/setlinecap load def /j /setlinejoin load def /M /setmiterlimit load def
/d /setdash load def /ri{/findcolorrendering where{/findcolorrendering
get exec{/ColorRendering findresource setcolorrendering}{dup
/DefaultColorRendering eq{pop}{/ColorRendering findresource
setcolorrendering}ifelse}ifelse}{
(WARNING: ignored findcolorrenderig of )print ==(\n)print}ifelse}bind
def /i /setflat load def /gs{/ExtGState findpageresource{ExtGStateKeys
exch{3 copy pop known{3 copy pop get exec pop}{pop pop}ifelse}forall pop
}if}bind def /ifload{dup where{exch get}{pop pop}ifelse}bind def
/ExtGStateKeys[/LW /setlinewidth load /LC /setlinecap load /LJ
/setlinejoin load /ML /setmiterlimit load /D{aload pop setdash}/RI /ri
load /FL /setflat load /SM /setsmoothness ifload /SA /setstrokeadjust
ifload /ca{[exch /ca exch /SetTransparency pdfmark}bind /CA{[exch /CA
exch /SetTransparency pdfmark}bind /OP /setoverprint load /HT /pop load
counttomark 2 idiv dup dict begin{def}repeat cleartomark currentdict end
def /m /moveto load def /l /lineto load def /c /curveto load def /v{
currentpoint 6 2 roll curveto}bind def /y{2 copy curveto}bind def /h
/closepath load def /re{4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
neg 0 rlineto closepath}bind def /S{gsave StrokeColor cvx exec stroke
grestore newpath}bind def /s{h S}def /f /fill load def /F{f}def /f*
/eofill load def /B{gsave fill grestore S}bind def /B*{gsave eofill
grestore S}bind def /b{h gsave fill grestore S}bind def /b*{h gsave
eofill grestore S}bind def /n /newpath load def /sh{/Shading
findpageresource{/shfill where{pop PrepareShading shfill}{pop}ifelse}if}
bind def /PrepareShading{begin ShadingType 4 ge{currentdict /DataSource
known not{stream dup type /filetype ne{currentdict /Filter known{
resolvestream /ReusableStreamDecode filter}if}if /DataSource exch def}
if}if currentdict end begin currentdict /Function known{Function /stream
known{Function begin currentdict /DataSource known not{stream dup type
/filetype ne{currentdict /Filter known{resolvestream
/ReusableStreamDecode filter}if}if /DataSource exch def}if end}if}if
currentdict end}bind def /Wdict 4 dict dup begin /n{end clip newpath}
bind def /S{gsave //S exec grestore n}bind def /f{gsave fill grestore n}
bind def /f*{gsave eofilll grestore n}bind def end readonly def /W{
//Wdict begin}bind def /W*dict 4 dict dup begin Wdict{def}forall /n{end
eoclip newpath}bind def end readonly def /W*{//W*dict begin}bind def
/SingularCS 4 dict begin /DeviceGray 1 def /DeviceRGB 3 def /DeviceCMYK
4 def /Pattern 0 def currentdict end def /CSCompsDict 12 dict begin
/DeviceGray{pop 1}def /DeviceRGB{pop 3}def /DeviceCMYK{pop 4}def
/CIEBasedA{pop 1}def /CIEBasedABC{pop 3}def /ICCBased{1 get /N get}def
/Separation{pop 1}def /DeviceN{2 get length}def /Indexed{pop 1}def
currentdict end def /CSComponents{dup type dup /arraytype eq exch
/packedarraytype eq or{dup 0 get}{dup}ifelse CSCompsDict exch get exec}
bind def /CSLabInit 3 dict begin /DecodeABC[{16 add 116 div}bind{500 div
}bind{200 div}bind]def /MatrixABC[1 1 1 1 0 0 0 0 -1]def /DecodeLMN[{
dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841 div mul}ifelse
0.9505 mul}bind{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841
div mul}ifelse}bind{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108
841 div mul}ifelse 1.0890 mul}bind]def currentdict end def /CSHandle 12
dict begin /DeviceGray{pop /DeviceGray}def /DeviceRGB{pop /DeviceRGB}
def /DeviceCMYK{pop /DeviceCMYK}def /CalGray{1 get 6 dict begin dup
/Gamma known{dup /Gamma get[exch /exp cvx]cvx /DecodeA exch def}if dup
/BlackPoint known{dup /BlackPoint get /BlackPoint exch def}if dup
/WhitePoint get dup /WhitePoint exch def /MatrixA exch def pop[
/CIEBasedA currentdict end]}bind def /CalRGB{1 get 6 dict begin dup
/Gamma known{dup /Gamma get[exch{[exch /exp cvx]cvx}forall]/DecodeABC
exch def}if dup /Matrix known{dup /Matrix get /MatrixABC exch def}if dup
/BlackPoint known{dup /BlackPoint get /BlackPoint exch def}if dup
/WhitePoint get /WhitePoint exch def pop[/CIEBasedABC currentdict end]}
bind def /Lab{1 get 6 dict begin dup /Range known{dup /Range get[0 100
null null null null]dup 2 4 -1 roll putinterval}{[0 100 -100 100 -100
100]}ifelse /RangeABC exch def CSLabInit{def}forall dup /BlackPoint
known{dup /BlackPoint get /BlackPoint exch def}if dup /WhitePoint get
/WhitePoint exch def pop[/CIEBasedABC currentdict end]}bind def /CalCMYK
{pop /DeviceCMYK}def /ICCBased{1 get /N get{/DeviceGray /ICCBased
/DeviceRGB /DeviceCMYK}exch 1 sub get}bind def /Indexed{dup 1 get type
/nametype ne 1 index 3 get type /stringtype ne or{[exch /Indexed exch
dup 1 get ConvertCS exch dup 2 get exch 3 get dup type /dicttype eq{
begin stream currentdict /Filter known{2 index CSComponents 2 index 1
add mul string exch save 3 1 roll resolvestream exch readstring pop exch
restore}if end}if]}if}bind def /Pattern{dup type /arraytype eq{dup
length 2 ge{1 get[exch /Pattern exch ConvertCS]}if}if}bind def
/Separation{[exch aload pop exch ConvertCS exch[exch /execfunction cvx]
cvx]}bind def /DeviceN{/DeviceN /ColorSpaceFamily resourcestatus{pop pop
dup 3 get /FunctionType known{dup 3 /FunctionType get}{0}ifelse 4 eq{[
exch aload pop counttomark 4 sub{pop}repeat exch ConvertCS exch[exch
/execfunction cvx]cvx]}{
(WARNING: Unsupported function, DeviceN is replaced by DeviceGray/RGB/CMYK.\n)
print 1 get dup type /arraytype eq{length 1 sub}{pop 0}ifelse dup 4 ge{
pop 3}if{/DeviceGray /DeviceGray /DeviceRGB /DeviceCMYK}exch get}ifelse}
{(WARNING: Unsupported DeviceN is replaced by DeviceGray/RGB/CMYK\n)
print 1 get dup type /arraytype eq{length 1 sub}{pop 0}ifelse dup 4 ge{
pop 3}if{/DeviceGray /DeviceGray /DeviceRGB /DeviceCMYK}exch get}ifelse}
bind def currentdict end def /ConvertCS{CSHandle 1 index dup type
/arraytype eq{0 get}if 2 copy known{get exec}{
(ERROR: Unsupported ColorSpace )print ==(\n)print pop}ifelse}bind def
/cs{dup type /nametype eq{SingularCS 1 index known{true}{/ColorSpace
findpageresource}ifelse}{true}ifelse{ConvertCS setcolorspace}if}bind def
/sc /setcolor load def /closemark(])cvn def /scn{currentcolorspace 0 get
/Pattern eq{/Pattern findpageresource{InText{tmpMatrix currentmatrix pop
TextSaveMatrix setmatrix}if begin PatternType 1 eq{XStep 0 lt{/XStep
XStep neg def}if YStep 0 lt{/YStep YStep neg def}if currentdict
/PaintProc known not{stream currentdict /Length known{Length()
/SubFileDecode filter}if resolvestream[exch /begin cvx exch /q cvx exch{
dup token{dup[cvx eq{cvx exec}if dup closemark eq{exch /f exch userdict
begin def end exec userdict /f get exch}if exch}{pop exit}ifelse}loop /Q
cvx /end cvx]cvx /PaintProc exch def}if}{PatternType 2 eq{/Shading
Shading PrepareShading def}if}ifelse currentdict end dup /Matrix known{
dup /Matrix get}{{1 0 0 1 0 0}cvlit}ifelse makepattern setcolor InText{
tmpMatrix setmatrix}if}if}{setcolor}ifelse}bind def /CS{gsave cs[
currentcolorspace /setcolorspace cvx 1 index 0 get /Pattern eq{1 index
length 1 gt{1 index 1 get cs currentcolor}if /Pattern}{currentcolor}
ifelse /setcolor cvx counttomark ColorBuf exch 0 exch getinterval astore
/StrokeColor exch def cleartomark grestore}bind def /SC{/StrokeColor
StrokeColor ColorBuf copy def StrokeColor 1 get /setcolorspace cvx eq{
StrokeColor 2 StrokeColor length 3 sub getinterval}{StrokeColor 0
StrokeColor length 1 sub getinterval}ifelse astore pop}bind def /SCN{
/StrokeColor StrokeColor ColorBuf copy def StrokeColor 1 get
/setcolorspace cvx eq{StrokeColor 0 get 0 get /Pattern eq{/scn cvx
StrokeColor 2 StrokeColor length 2 sub getinterval astore pop}{SC}
ifelse}{SC}ifelse}bind def /G{ColorBuf 0 1 getinterval astore pop
ColorBuf 1 /setgray load put /StrokeColor ColorBuf 0 2 getinterval def}
bind def /g /setgray load def /RG{ColorBuf 0 3 getinterval astore pop
ColorBuf 3 /setrgbcolor load put /StrokeColor ColorBuf 0 4 getinterval
def}bind def /rg /setrgbcolor load def /K{ColorBuf 0 4 getinterval
astore pop ColorBuf 4 /setcmykcolor load put /StrokeColor ColorBuf 0 5
getinterval def}bind def /k /setcmykcolor load def /Tc{/CharSpacing exch
def updateTj}bind def /Tw{/WordSpacing exch def updateTj}bind def /Tz{
/HScaling exch 100 div def updateCTM}bind def /TL{/Leading exch def}
bind def /Tf{exch /Font findpageresource{exch dup /FontSize exch def dup
1 ne{scalefont}{pop}ifelse setfont}{pop}ifelse}bind def /Tr{
/RenderingMode exch def updateTj}bind def /Ts{/TextRise exch def
updateCP}bind def /BT{TextSaveMatrix currentmatrix pop TextMatrix
identmatrix pop TextLineMatrix identmatrix pop /InText true def updateTj
0 0 moveto updateCTM startLine}def /InText false def /updateCTM{InText{
TextSaveMatrix setmatrix TextMatrix concat HScaling 1 ne{HScaling 1
scale}if currentpoint pop TextRise moveto}if}bind def /updateCP{InText{
currentpoint pop TextRise moveto}if}bind def /startLine{0 TextRise
moveto}bind def /ET{RenderingMode 4 ge{clip newpath}if TextSaveMatrix
setmatrix /InText false def}bind def /Td /rmoveto load def /TD{dup neg
TL Td}bind def /Tm{TextMatrix astore TextSaveMatrix setmatrix concat 0 0
moveto}def /T*{0 Leading neg Td}bind def /Td{TextLineMatrix transform
TextLineMatrix 4 2 getinterval astore pop TextLineMatrix TextMatrix copy
pop updateCTM startLine}bind def /TD{dup neg TL Td}bind def /Tm{
TextLineMatrix astore TextMatrix copy pop updateCTM startLine}bind def
/T*{0 Leading neg Td}bind def /Tj{gsave 1 0 0 setrgbcolor show
currentpoint grestore moveto}bind def /'{T* Tj}bind def /"{3 -1 roll Tw
exch Tc '}bind def /TJ{{dup type /stringtype eq{Tj}{-1000 div 0 rmoveto}
ifelse}forall}def /TJ{{dup type /stringtype eq{Tj}{-1000 div FontSize
mul 0 rmoveto}ifelse}forall}def /updateTj{RenderingMode 0 eq{
CharSpacing 0 eq{WordSpacing 0 eq{/Tj /show load def}{/Tj{WordSpacing 0
32 4 -1 roll widthshow}def}ifelse}{WordSpacing 0 eq{/Tj{CharSpacing 0 3
-1 roll ashow}def}{/Tj{WordSpacing 0 32 CharSpacing 0 6 -1 roll
awidthshow}def}ifelse}ifelse}{CharSpacing 0 eq{WordSpacing 0 eq{/Tj
/xshow load def}{/Tj{( ){search{xshow dup xshow WordSpacing 0 rmoveto}{
xshow}fielse}loop}def}ifelse}{WordSpacing 0 eq{/Tj /xashow load def}{
/Tj{( ){search{xashow dup xshow WordSpacing 0 rmoveto}{xashow}fielse}
loop}def}ifelse}ifelse}ifelse}bind def /xshow{(xshow)pstack pop
currentpoint 3 -1 roll RenderingMode 1 and 0 eq{dup gsave show grestore}
if RenderingMode 3 and dup 1 eq exch 2 eq or{gsave currentpoint newpath
moveto dup false charpath TextSaveMatrix setmatrix S grestore}if
RenderingMode 4 ge{dup false charpath}if 3 1 roll moveto stringwidth
rmoveto}bind def /xashow{(xashow)pstack pop{CharBuf exch 0 exch put
CharBuf xshow CharSpacing 0 rmoveto}forall CharSpacing neg 0 rmoveto}
bind def /MakeEncoding{exch dup length array copy exch 0 exch{dup type
/integertype eq{exch pop}{3 copy put pop 1 add}ifelse}forall pop}bind
def /MakeFont{3 -1 roll findfont 3 1 roll exch dup type /nametype eq{
/Encoding findresource}if exch dup length 0 gt{1 index null eq{exch pop
1 index /Encoding get exch}if MakeEncoding}{pop}ifelse dup null ne{exch
dup length dict begin{1 index /FID ne{def}{pop pop}ifelse}forall
/Encoding exch def currentdict null end}if pop /LastFont exch definefont
def}bind def /SaveStacks{count array astore[exch /clear cvx exch /aload
cvx /pop cvx countdictstack array dictstack{countdictstack{currentdict
userdict eq{exit}if end}repeat}dup exec exch /exec cvx exch
countdictstack 1 index length 1 index sub getinterval{begin}/forall cvx]
cvx /RestoreStacks exch def}bind def /d0 /setcharwidth load def /d1
/setcachedevice load def /MakeT3Font{begin currentdict /Name knownget
not{currentdict /BaseFont knownget not{/Unknown}if}if 10 dict begin
/FontName exch def /FontType 3 def /FontMatrix FontMatrix def /FontBBox
FontBBox def /Encoding Encoding begin currentdict /BaseEncoding known{
BaseEncoding}{StandardEncoding}ifelse Differences MakeEncoding end def
/CharProcs CharProcs def /Resources Resources def /BuildChar{1 index
/Encoding get exch get 1 index /BuildGlyph get exec}def /BuildGlyph{
exch begin CharProcs exch 2 copy known not{pop/.notdef}if get begin save
[stream resolvestream cvx exec cleartomark restore end end}def
currentdict end end dup /FontName get exch definefont pop}bind def
/MakeT0Font{begin 10 dict begin /FontName BaseFont def /FontType 0 def
/FontMatrix{1 0 0 1 0 0}cvlit def Encoding dup type /nametype eq{/CMap
findresource}if /CMap exch def /FDepVector DescendantFonts def /Encoding
[0 1 FDepVector length 1 sub{}for]def /FMapType 9 def currentdict end
end dup /FontName get exch definefont pop}bind def /MP{pop}bind def /DP{
pop pop}bind def /BMC{pop}bind def /BDC{pop pop}bind def /EMC{}def
/ImageBuf 128 string def /Do**{1 index /Subtype 2 copy known{get}{pop
pop /Image}ifelse /Image eq{exch dup length 5 add save exch dict begin
/ImSave exch def{def}forall /Source exch def /ImageType 1 def
currentdict /Mask known{Mask type /arraytype eq{/ImageType 4 def
/MaskColor Mask def}if}if /ImageMatrix[Width 0 0 Height neg 0 Height]
def currentdict /ImageMask known{ImageMask}{false}ifelse{currentdict
/Decode known{/Decode Decode 0 2 getinterval def}{/Decode[0 1]def}
ifelse currentdict /BitsPerComponent known not{/BitsPerComponent 1 def}
if}{ColorSpace cs currentdict /Decode known not{currentcolorspace dup 0
get /Indexed eq{pop[0 1 BitsPerComponent bitshift 1 sub]}{CSComponents[
exch{0 1}repeat]}ifelse /Decode exch def}if}ifelse /DataSource Source
resolvestream def currentdict{dup /ImageMask known{dup /ImageMask get}{
false}ifelse{imagemask}{image}ifelse}stopped{handleerror{pstack pop pop}
forall q 1 0 0 RG 0 w 0 0 m 0 1 l 1 1 l 1 0 l s Q}if ImSave end restore}
{1 index /Subtype get /Form eq{exch begin userdict /PDFormSave save put
userdict /FormLevel qLevel put currentdict /Matrix known{Matrix concat}
if currentdict /BBox known{BBox 0 get BBox 1 get moveto BBox 0 get BBox
3 get lineto BBox 2 get BBox 3 get lineto BBox 2 get BBox 1 get lineto
clip newpath}if currentdict /Length known{Length()/SubFileDecode filter}
if resolvestream cvx q exec Q qLevel userdict /FormLevel get sub{Q}
repeat userdict /PDFormSave get restore end}{pop /Subtype get
(ERROR: Unsupported XObject Subtype )print ==(\n)print}ifelse}ifelse}
bind def /Do*{userdict begin /PDFImageSubFile null def end begin
currentdict currentfile currentdict /Filter known{Filter dup type
/arraytype eq{0 get}if dup /ASCIIHexDecode eq exch /AHx eq or{0(EI)
/SubFileDecode filter dup userdict begin /PDFImageSubFile exch def end}
if}if end Do** userdict /PDFImageSubFile get null ne{userdict
/PDFImageSubFile get dup flushfile closefile}if}bind def /Do{/XObject
findpageresource{userdict begin /PDFImageSubFile null def end begin
currentdict stream currentdict /Length known{Length()/SubFileDecode
filter dup userdict begin /PDFImageSubFile exch def end}if end Do**
userdict /PDFImageSubFile get null ne{userdict /PDFImageSubFile get dup
flushfile closefile}if}if}bind def /SkipBytes{{dup ImageBuf length gt{
currentfile ImageBuf readstring pop pop ImageBuf length sub}{ImageBuf
exch 0 exch getinterval currentfile exch readstring pop pop exit}ifelse}
loop}bind def /BI{[}bind def /X{}bind def /EI{}bind def
/ImageAbbreviation 10 dict begin /BPC /BitsPerComponent def /CS
/ColorSpace def /D /Decode def /DP /DecodeParms def /F /Filter def /H
/Height def /IM /ImageMask def /Intent /Intent def /I /Interpolate def
/W /Width def currentdict end def /CSAbbreviation 4 dict begin /G
/DeviceGray def /RGB /DeviceRGB def /CMYK /DeviceCMYK def /I /Indexed
def currentdict end def /ID{counttomark 2 idiv dup 1 add dict begin
/Name /InLine def{ImageAbbreviation 2 index known{exch ImageAbbreviation
exch get exch}if def}repeat cleartomark currentdict /ColorSpace known{
ColorSpace dup type /arraytype eq{[exch{CSAbbreviation 1 index known{
CSAbbreviation exch get}if}forall]}{CSAbbreviation 1 index known{
CSAbbreviation exch get}{/ColorSpace findpageresource not{/DeviceGray}
if}ifelse}ifelse /ColorSpace exch def}if currentdict end Do*}bind def
/FilterAbbreviation 7 dict begin /AHx /ASCIIHexDecode def /A85
/ASCII85Decode def /LZW /LZWDecode def /Fl /FlateDecode def /RL
/RunLengthDecode def /CCF /CCITTFaxDecode def /DCT /DCTDecode def
currentdict end def /xfilter{//FilterAbbreviation 1 index known{
//FilterAbbreviation exch get}if filter}bind def /resolvestream{
currentdict /Filter known{Filter length 0 gt}{false}ifelse{currentdict
/DecodeParms known{Filter type /arraytype eq{DecodeParms type /arraytype
ne{/DecodeParms[Filter length 1 sub{null}repeat DecodeParms]def}if 0 1
Filter length 1 sub{DecodeParms 1 index get exch Filter exch get 1 index
null eq{exch pop}if xfilter}for}{DecodeParms Filter xfilter}ifelse}{
Filter dup type /arraytype eq{{xfilter}forall}{xfilter}ifelse}ifelse}if}
bind def /execfunction{begin FHandler FunctionType get exec end}bind def
/ApplayDomain{0 2 Domain length 1 sub{Domain length 2 idiv 1 add -1 roll
1 index Domain exch get 2 copy lt{exch}if pop exch Domain exch 1 add get
2 copy gt{exch}if pop}for}bind def /ApplayRange{}bind def /FHandler[{
ApplayDomain Domain length 2 eq BitsPerSample 8 eq and{
(WARNING: DRAFT Emulation of Function Type 0 of one argument.\n)print
currentdict /Filter known dup{pop Filter length 0 gt}if{Range length 2
idiv Size 0 get mul string save exch stream resolvestream exch
readstring pop exch restore /stream exch def /Filter{}cvlit def}if
Domain 0 get Domain 1 get 1 index sub 3 1 roll sub exch div currentdict
/Encode known{Encode 0 get Encode 1 get}{0 Size 0 get 1 sub}ifelse 1
index sub 3 -1 roll mul add stream exch cvi Range length 2 idiv exch 1
index mul exch getinterval{}forall Range length 2 idiv{Range length 2
idiv -1 roll 255 div currentdict /Decode known{Decode 0 get Decode 1 get
}{Range 0 get Range 1 get}ifelse 1 index sub 3 -1 roll mul add}repeat}{
(ERROR: Unsupported Function Type 0 of several arguments.\n)print pstack
Domain length 2 idiv Range length 2 idiv 2 copy gt{sub{pop}repeat}{2
copy lt{exch sub{dup}repeat}{pop pop}ifelse}ifelse}ifelse ApplayRange}
bind{ApplayDomain ApplayRange}bind{ApplayDomain N exp 0 1 C0 length 1
sub{dup C0 exch get exch C1 exch get 1 index sub 2 index mul add exch}
for pop ApplayRange}bind{ApplayDomain Bounds length 0 1 Bounds length 1
sub{2 index 2 copy exch Bounds exch get lt{pop exch pop exit}{pop pop}
ifelse}for dup 0 le{exch Domain 0 get Bounds 0 get}{dup Bounds length ge
{exch Bounds dup length 1 sub get Domain 1 get}{exch 1 index dup 1 sub
Bounds exch get exch Bounds exch get}ifelse}ifelse 1 index sub 3 1 roll
sub exch div 1 index 2 mul dup Encode exch get exch Encode exch 1 add
get 1 index sub 3 -1 roll mul add exch Functions exch get execfunction
ApplayRange}bind{ApplayDomain currentdict /Proc known not{stream
resolvestream dup token{/Proc exch def}if closefile}if Proc ApplayRange}
bind]def /stream{false{dup begin currentfile currentdict /Length known{
Length()/SubFileDecode filter /stream 1 index def}if resolvestream[exch
/begin cvx exch /q cvx exch{dup token{exch}{pop exit}ifelse}loop /Q cvx
/end cvx]cvx /PaintProc exch def /Filter{}cvlit def end}{dup begin
Length 1 16 bitshift lt{/stream currentfile Length string readstring pop
def}{currentfile currentdict /Length known{Length()/SubFileDecode filter
}if resolvestream /ReusableStreamDecode filter /stream exch def /Filter{
}cvlit def}ifelse end}ifelse}bind def /endstream{}bind def currentdict
end /ProcSet defineresource pop
%%EndProcSet
%%BeginProcSet: tex.pro
%!
/TeXDict 300 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N
/X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72
mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1}
ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale
isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div
hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul
TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if}
forall round exch round exch]setmatrix}N /@landscape{/isls true N}B
/@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B
/FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{
/nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N
string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N
end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{
/sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0]
N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup
length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{
128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub
get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data
dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N
/rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup
/base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx
0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff
setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff
.1 sub]{ch-image}imagemask restore}B /D{/cc X dup type /stringtype ne{]}
if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup
length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{
cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin
0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul
add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore userdict
/eop-hook known{eop-hook}if showpage}N /@start{userdict /start-hook
known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X
/IE 256 array N 2 string 0 1 255{IE S dup 360 add 36 4 index cvrs cvn
put}for pop 65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N
/RMat[1 0 0 -1 0 0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley
X /rulex X V}B /V{}B /RV statusdict begin /product where{pop false[
(Display)(NeXT)(LaserWriter 16/600)]{dup length product length le{dup
length product exch 0 exch getinterval eq{pop true exit}if}{pop}ifelse}
forall}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false
RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1
false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform
round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg
rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail
{dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M}
B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{
4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{
p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p
a}B /bos{/SS save N}B /eos{SS restore}B end
%%EndProcSet
%%BeginProcSet: texps.pro
%!
TeXDict begin /rf{findfont dup length 1 add dict begin{1 index /FID ne 2
index /UniqueID ne and{def}{pop pop}ifelse}forall[1 index 0 6 -1 roll
exec 0 exch 5 -1 roll VResolution Resolution div mul neg 0 0]/Metrics
exch def dict begin Encoding{exch dup type /integertype ne{pop pop 1 sub
dup 0 le{pop}{[}ifelse}{FontMatrix 0 get div Metrics 0 get div def}
ifelse}forall Metrics /Metrics currentdict end def[2 index currentdict
end definefont 3 -1 roll makefont /setfont cvx]cvx def}def /ObliqueSlant
{dup sin S cos div neg}B /SlantFont{4 index mul add}def /ExtendFont{3 -1
roll mul exch}def /ReEncodeFont{/Encoding exch def}def end
%%EndProcSet
%%BeginProcSet: special.pro
%!
TeXDict begin /SDict 200 dict N SDict begin /@SpecialDefaults{/hs 612 N
/vs 792 N /ho 0 N /vo 0 N /hsc 1 N /vsc 1 N /ang 0 N /CLIP 0 N /rwiSeen
false N /rhiSeen false N /letter{}N /note{}N /a4{}N /legal{}N}B
/@scaleunit 100 N /@hscale{@scaleunit div /hsc X}B /@vscale{@scaleunit
div /vsc X}B /@hsize{/hs X /CLIP 1 N}B /@vsize{/vs X /CLIP 1 N}B /@clip{
/CLIP 2 N}B /@hoffset{/ho X}B /@voffset{/vo X}B /@angle{/ang X}B /@rwi{
10 div /rwi X /rwiSeen true N}B /@rhi{10 div /rhi X /rhiSeen true N}B
/@llx{/llx X}B /@lly{/lly X}B /@urx{/urx X}B /@ury{/ury X}B /magscale
true def end /@MacSetUp{userdict /md known{userdict /md get type
/dicttype eq{userdict begin md length 10 add md maxlength ge{/md md dup
length 20 add dict copy def}if end md begin /letter{}N /note{}N /legal{}
N /od{txpose 1 0 mtx defaultmatrix dtransform S atan/pa X newpath
clippath mark{transform{itransform moveto}}{transform{itransform lineto}
}{6 -2 roll transform 6 -2 roll transform 6 -2 roll transform{
itransform 6 2 roll itransform 6 2 roll itransform 6 2 roll curveto}}{{
closepath}}pathforall newpath counttomark array astore /gc xdf pop ct 39
0 put 10 fz 0 fs 2 F/|______Courier fnt invertflag{PaintBlack}if}N
/txpose{pxs pys scale ppr aload pop por{noflips{pop S neg S TR pop 1 -1
scale}if xflip yflip and{pop S neg S TR 180 rotate 1 -1 scale ppr 3 get
ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg TR}if xflip yflip
not and{pop S neg S TR pop 180 rotate ppr 3 get ppr 1 get neg sub neg 0
TR}if yflip xflip not and{ppr 1 get neg ppr 0 get neg TR}if}{noflips{TR
pop pop 270 rotate 1 -1 scale}if xflip yflip and{TR pop pop 90 rotate 1
-1 scale ppr 3 get ppr 1 get neg sub neg ppr 2 get ppr 0 get neg sub neg
TR}if xflip yflip not and{TR pop pop 90 rotate ppr 3 get ppr 1 get neg
sub neg 0 TR}if yflip xflip not and{TR pop pop 270 rotate ppr 2 get ppr
0 get neg sub neg 0 S TR}if}ifelse scaleby96{ppr aload pop 4 -1 roll add
2 div 3 1 roll add 2 div 2 copy TR .96 dup scale neg S neg S TR}if}N /cp
{pop pop showpage pm restore}N end}if}if}N /normalscale{Resolution 72
div VResolution 72 div neg scale magscale{DVImag dup scale}if 0 setgray}
N /psfts{S 65781.76 div N}N /startTexFig{/psf$SavedState save N userdict
maxlength dict begin /magscale true def normalscale currentpoint TR
/psf$ury psfts /psf$urx psfts /psf$lly psfts /psf$llx psfts /psf$y psfts
/psf$x psfts currentpoint /psf$cy X /psf$cx X /psf$sx psf$x psf$urx
psf$llx sub div N /psf$sy psf$y psf$ury psf$lly sub div N psf$sx psf$sy
scale psf$cx psf$sx div psf$llx sub psf$cy psf$sy div psf$ury sub TR
/showpage{}N /erasepage{}N /copypage{}N /p 3 def @MacSetUp}N /doclip{
psf$llx psf$lly psf$urx psf$ury currentpoint 6 2 roll newpath 4 copy 4 2
roll moveto 6 -1 roll S lineto S lineto S lineto closepath clip newpath
moveto}N /endTexFig{end psf$SavedState restore}N /@beginspecial{SDict
begin /SpecialSave save N gsave normalscale currentpoint TR
@SpecialDefaults count /ocount X /dcount countdictstack N}N /@setspecial
{CLIP 1 eq{newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto
closepath clip}if ho vo TR hsc vsc scale ang rotate rwiSeen{rwi urx llx
sub div rhiSeen{rhi ury lly sub div}{dup}ifelse scale llx neg lly neg TR
}{rhiSeen{rhi ury lly sub div dup scale llx neg lly neg TR}if}ifelse
CLIP 2 eq{newpath llx lly moveto urx lly lineto urx ury lineto llx ury
lineto closepath clip}if /showpage{}N /erasepage{}N /copypage{}N newpath
}N /@endspecial{count ocount sub{pop}repeat countdictstack dcount sub{
end}repeat grestore SpecialSave restore end}N /@defspecial{SDict begin}
N /@fedspecial{end}B /li{lineto}B /rl{rlineto}B /rc{rcurveto}B /np{
/SaveX currentpoint /SaveY X N 1 setlinecap newpath}N /st{stroke SaveX
SaveY moveto}N /fil{fill SaveX SaveY moveto}N /ellipse{/endangle X
/startangle X /yrad X /xrad X /savematrix matrix currentmatrix N TR xrad
yrad scale 0 0 1 startangle endangle arc savematrix setmatrix}N end
%%EndProcSet
TeXDict begin @defspecial
/DefaultFontEncoding /OT1 def
/DocumentFonts << /encodingdefault /OT1 /familydefault (cmr) /rmdefault
(cmr) /sfdefault (cmss) /ttdefault (cmtt) /seriesdefault (m) /bfdefault
(bx) /mddefault (m) /shapedefault (n) /itdefault (it) /sldefault
(sl) /scdefault (sc) /updefault (n) >> def
/PackageOptions << /fontenc (OT1) /papersize (614.295pt,794.96999pt)
/graphics (dvips.def)>> def
@fedspecial end
%%BeginFont: CMBX10
%!FontType1-1.0: (attend)
11 dict begin
/FontInfo 7 dict dup begin
/version (1.00B) def
/Notice (Copyright \(C\) 1997 American Mathematical Society. All Rights Reserved) def
/FullName (CMBX10) def
/FamilyName (Computer Modern) def
/Weight (Bold) def
/ItalicAngle 0 def
/isFixedPitch false def
end def
/FontName /CMBX10 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {-301 -250 1164 946} def
/PaintType 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 65 /A put
dup 67 /C put
dup 68 /D put
dup 69 /E put
dup 72 /H put
dup 73 /I put
dup 77 /M put
dup 78 /N put
dup 79 /O put
dup 82 /R put
dup 83 /S put
dup 84 /T put
dup 85 /U put
readonly def
/UniqueID 5000768 def
currentdict end
systemdict begin
dup /Private 16 dict dup begin
/ND {noaccess def} def
/NP {noaccess put} def
/RD {string currentfile exch readstring pop} def
/UniqueID 5000768 def
/BlueValues [-11 0 686 697 444 453 655 676] def
/OtherBlues [-201 -194] def
/BlueScale 0.04379 def
/StdHW [47] def
/StdVW [114] def
/StemSnapH [40 47] def
/StemSnapV [114 142] def
/ForceBold true def
/OtherSubrs [{} {} {} {systemdict /internaldict known not {pop 3} {1183615869
systemdict /internaldict get exec dup /startlock known {/startlock get
exec} {dup /strtlck known {/strtlck get exec} {pop 3} ifelse} ifelse}
ifelse}] def
/MinFeature {16 16} def
/password 5839 def
/Subrs 23 array
0 1 22 {1 index exch <214DBF04E1> put} for
dup 4<30C651613E263094EEC982CB>NP
dup 21<3EF601BF1201CC5BED4BEFFA76C7FD6CF3C8085DBEFC700CA184F134F92E>NP
dup 22<653DCB7C5F4A2F56A654AA2E740A6B4F0A8664>NP
ND
2 index /CharStrings 14 dict dup begin
/A <7DCABB5A9C6A4F19BA818004345290CC3580DB71FBD7BF52E98DFF0CA7EA97D5DE27
8E572914DDAD23E2875FF199D2AC3701D10CDD2CB92EA24159A717EF00F92577F00497A3
EE28F1709F2C264714B3FE35FD65B634C733E4C25F066A4204B6FE5DB07B48198EED5C73
A7D76EE8BCBABFE742E8957E61EFE01F24558A485C46ED75DE978C77307CF5624FDA4E>ND
/C <529B8CA43623371BDE9EB892DA341BA83AEF93BA73BFF9C7EC19DFC85954329A3EDB
1F5DFD03A7081AE5B04B2E5CF56F95786E995C9004D6A0871A0CBCE206B5BF04DC68AC8D
AFBAE61CC9BD503F4224283EB92D50EF18F285DC6CA1914C229F7B981717555F0ED6C1D7
82D937C519470BBFB655A62940696B27E1103B8BF4970D1804853F68ACF996B7F6924B15
BD187F708DFE99D9CAB1BCBD6F0D>ND
/D <30DF273A6AEF4F90BFC9B7BBF5F317D2C2187A3EEA54F6B7B674F7B26C1BE81B24CC
D2C4E8D522B58E02CA565D7D82AAD425365AC65629851D2FE287E3D7453787B3F8C0AF78
6FB83A264611FF1D9DDCA5E969A4E298C10A654A7362AA37C5D17EC75C3F502730CCB5C0
FAA7D914684D8D>ND
/E <30DE1B8F5B1AEE34CF61CF4523C99D4EAB76942F7099B9F788A2C52C3C1B858296BB
BE0B0E4AA13D3A0CB69915C6752A292E3D410FDCACE9F2D3C70A549A4EF4BA580E12803B
FF62AA401D0EB016B770BA23B768E3F1CA137609B1F343956D52CF2C15860E4AB9FD28AE
E810879D6603114B27C14F62EC>ND
/H <7F3217D69ECD3CAA04776ADB11BBFC08E866F0AEC57C301F239CEC65ABA6FFFE1AFF
EC296DB09EDCC3FD4F21CA6A373F02FEF1283266AFCC01CA73DD6AC75C8C544338B71280
FD52B2A43E4E4C4385C0387B0ADBCDD57BE01CF538543C1F6000D25C0912FCD6883977E1
4415B850EB0E7C5D14B2F96D0F9678808C78111E0D6ED1285A04A0C5D9D847071491D40C
C5BA797E568D696DC4E8DB>ND
/I <7E13ADA1BC287B96E3E2E77FA9E2EC893CFA68EDCA4610C0707AFD984FF31CD50A39
74824F9C7533A1A17F490C232BD4DFDC8B94895B2D5736D0C39A13A0C91038DAADE6EEBB
8FEBF8BF2F0A7A08F7B579A1074A>ND
/M <3EDC1F3C6DBE949AACF7C27B820AB6F57FC9E9705EBE71D78D8F1EB2553F83A7DFF7
385F5E95B8FE2C0A96CE7C20CB74A725F01988AF09201FC2CC4ACA9CF3ACC1B5F847C7DB
C2671E0B28B45F5AF4E146701E2CF309B708469EACFD9153FF9121D2C0216CC4A9B70A08
6AA224482954FD35B006EBDACF983521A8A462124BF8D59EEC3530ECF4AFCEB65B3DEBB8
21F64B3BEC28B4BF71DF6E89ED9FC1388909D4C3BD6EBC6E2F724F582832F9D5C018F4C5
692D499F431EAE62>ND
/N <7E1556BEC01183287F33616CB91DB31672A29306D7C59E7BB71235B350A163EF1BC8
078B28DD01BA51AC261E38119029946C07A3756C206FD201B06ADA4A6A6BD4E8E2A52452
C27C252B3642AB2A8BD15833693EF4EEA79EEB8165B8768684A870E2710D379D76AF3626
DEA4B3FAD16D53CC4C1145EF5A78F48D3BC63DE4DADDEEE5D4B21C740CC1CDE6BF02A06D
003B6DE5AA2B693A5F54716323D08D454629615CDF57BAE41A1372C1749D45DF>ND
/O <791FE7B693C0C1C8C5D2E4FF3BA6B08792AD26218B090B5B5C1E35A4CA8C1AE1522B
CA40D801A8C16E3BB907CA8F4E728415536D511F18E8D3B3555789B040D984DAC32B3801
571C3B713A32AEA058B5253F90055D19DDC05213C9AEACD6D41FA0DB745E1F02C3077D7A
057D10DD4F9853714BE4BAE6763F99718D47B2A0E425BF8C24B3ECB701>ND
/R <58EDE3ACE4FB9EDA689C6557D5A303F94A3E51807D0CCD82E02BA49E016EEE6E6FE7
3063B022E3EEF77795CF38FA527396A33EC94B3B7D718B84556AD07037F28A9BC99F5554
533F6A576BC5729BA9D8C15AF3AD12CAFE7D55A8464B2E5DDA6FAB52BF4A444C1FB756B1
2BEA611B2B2F5B96241FB5B2AD41E8C95431766EF18B918710FFFD46A2DF6CD2C3913323
1FA949B09C8A7EFCEAAF5A07022C52BF3D235FD5E4BD6ECB0A960ACAABDB9B2BF1E068CD
CB84778AE835DEE74F7A55CFC6F56CB1BF25B281844330>ND
/S <48C72FA3447C0134382DF00A4C01343B62641BB7DD6A7C98AB82C81A352BCA4B7862
5CEB0F00FFD0A4D1691E93C1332679C8CCF830208C196DB5CE99035E206D6590D737F9B1
A97E5B432F01E5C605A610098F3FC12F53066AD00C6F7AFD9B0BFFC41D9E8274B9EE2ECE
F87534745488E473AF903B812353ECC876040B1E37945F5BB49DE8AFDD2EA00AB9192FC8
FFDB63929E5B7DF3713EEBB874A4E4FBB79C731427A6060622C924ACAC73AEA8F533DF2F
4986718790D6362669163C7E24B58E63A4794BD1972E>ND
/T <1AFE3F207C3DA60F8BB27E6DEA3F9FC15941E545A5EB009148CFC6EBEEDBF55EED1A
C5F9EFEEB2C9750FD588EAEF25D1A40CEDA15BD97E86B3F2E0D864976B289B9C18504E72
0A6D5561689522A449957EED8653B52CC980BD880227852EF2E41FB46B>ND
/U <226245C86B5C5C1294E074C8ECCD84C2038B520AE3F9241E44BC739EFE879C068CE4
2DEEEEB1ED0A3E96012A142A101944F10DA5254E026A49C0C8C632CE2F1347787626FBEA
E09F828BADD92E9D3D5A5F6FAB95040135C824F2CFC7982075A727FA13DD126BB9C99FDA
F76AE9F56F40B759484F3D1938DDBC0BCF82DEAEB9A1524A43DD499334610A284ABC00C9
E37733142C615339834E>ND
/.notdef <74418BC0F45B67DCE179BA3B1B3587>ND
end
end
readonly put
put
/CMBX10 exch definefont pop end
%%EndFont
%%BeginFont: CMMI10
%!FontType1-1.0: (attend)
11 dict begin
/FontInfo 7 dict dup begin
/version (1.100) def
/Notice (Copyright \(C\) 1997 American Mathematical Society. All Rights Reserved) def
/FullName (CMMI10) def
/FamilyName (Computer Modern) def
/Weight (Medium) def
/ItalicAngle -14.04 def
/isFixedPitch false def
end def
/FontName /CMMI10 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {-32 -250 1048 750} def
/PaintType 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 97 /a put
dup 101 /e put
dup 105 /i put
dup 110 /n put
dup 111 /o put
dup 113 /q put
dup 116 /t put
dup 117 /u put
readonly def
/UniqueID 5087385 def
currentdict end
systemdict begin
dup /Private 15 dict dup begin
/ND {noaccess def} def
/NP {noaccess put} def
/RD {string currentfile exch readstring pop} def
/UniqueID 5087385 def
/BlueValues [-22 0 683 705 431 442 453 466] def
/OtherBlues [-205 -194] def
/BlueScale 0.04379 def
/StdHW [31] def
/StdVW [72] def
/StemSnapH [25 31] def
/ForceBold false def
/OtherSubrs [{} {} {} {systemdict /internaldict known not {pop 3} {1183615869
systemdict /internaldict get exec dup /startlock known {/startlock get
exec} {dup /strtlck known {/strtlck get exec} {pop 3} ifelse} ifelse}
ifelse}] def
/MinFeature {16 16} def
/password 5839 def
/Subrs 0 array
ND
2 index /CharStrings 9 dict dup begin
/a <78BBDD0701C1B6FE330628EDC24814C029C159078F1EF72C681FCE4B08D5ECB20F4D
0F8665BE19CA0A169696C6773F040F6BD853885BDDBF60578696C42E491E75485C6E33D9
BAE4F6316E3C315DA745004F436B02BB2DDD21601067CC97E3BF14C1D134CD277020356C
34843774BA285CEFC74773A4A7AEEBABADEA75185CAE4D8DFDD066E226E5AE2D6D23ADEF
320A6F8541417F8CB41944DC9399F3AA64E4C2A0FD2C1740EE09502BA482AB7451580406
8FF0C810B134E34425912AFEA36898D0BA>ND
/e <63C933B69212EA2591ECDD8657B9077F872AD4F74E25DFA5782F23FC899C24D268FB
FED4A200C39096F9B872A23BDC20B95549556A974C915B43512DC8F7AEB08F4592B06794
AD845BC562A003A005AC5E699B5208AD20D4A317C6FF8B750E943714C968CCBE2935C3F3
55E002BC8FFAB590D55E850DE0107F050FC41CA1CF09A5A28829>ND
/i <7554F591217E0844F018EF2D1C4B3968327D7CBD04FBED4FB96C7906D9E19BF0EE4A
D41D60BFFF12333A1668DFD539DB1629EA90535F361FAC3A9EDD6DAB1C06ACD56D30CD28
4B98ED57CF5B66F7E130BA87D4D5EA1F7B986B2297F9FCD873AA12F1AA8EFFDB86E25B96
3609CBC296E29C32BFDB5E2A4593BD3D096920E600FC0484671DC492943F7FD0634C7AF5
AEF8C49D9D3D70AE075C1B6A1F6DD588ECDA2D5759562EE1A9F259DEB17E955BA21425>ND
/n <7CBC9CE0194ECFFDE9ACA70133FBF5E2644C3A29ADC05F48EC955DE7FFB779F70262
2D16312E56FC96A90B2EC0E247B7F158E5616C1F23253B84B385A2A789A047FE7C5564B3
267D8C1B54C02D9E8471145C796B87735B64B0BF87AB853C6D61B2A2932B4F628749B790
6A2AD3F65E430C23E170E9EB064602D8BD668B270D46A98CA34FD2F9B8D72A73B0B34D51
8F4D512B825B524B8B31CAC38DECD7C4400B53931C26D45607884717ABEAEB32E6F15575
D31CDBB3F989FDB59287DF311181E37C7B2AF0A1420998ECB242ED3003921D537C711BC9
04965A205C88F9D4>ND
/o <30D8C25E006952B9FB2E819BC46D2F80C13B43B7D3B56A048F6471C954D146007144
80C19BBCE20DCD65853A17694DB096EC98B3F2395E655AF5120DADE83C1EA183768D889A
5060B7406C20ED1095F14E8FEED5F05F0053F3CB36EF90926181C4DB1DC62F869194904D
BD64>ND
/q <363AFEA7F7B7C415E013BFDACECC85D2E69B87C696E6FAF75A9A3852C9047313B36A
8C0ED324A87BA81627FE9FB6873443232B2C6AC5CD6B9A0D8AFC67DB50A9FD4EA1C6FE44
2892299EF79E49645173D4C6E5C97957149CFE1DEFD4BA3F052A32C8B8A791F765D13D9F
16ECAF589E8F3B29750357447EA6C96A2D4A017F1BBB1465EAFF60A87E89014238838835
267B0895F0961C6AAD12A05BF18D0A40168078A883EDC4B7EA371FBC671E74AD717BA592
909F416A>ND
/t <29DE7368B3468309520ECE137137AC58926E80EC0B2130C78E4AF03110DA49E7C4FB
EEE8C7D2A336D961BBAB1A69CEADB931EC21C08807C7A506814219B53BD8D913983936C2
E06EA126CA22496C912AB0E40A5BD0A0FC68305ABB46F55D46A7C5FFE86C88127FFE6039
C5213298074730893F41767B5AF2DFA0D3EC5BCD2A4691EBDD8F6AE23DEC55>ND
/u <5A1FBCB0864CF57F76E40721B4AF7A643129DC180A0F777D96DDB08A5B1F85771415
BEDB8D6E78E0D9D8818079A0CEA0E16547E3FBC4486ABEB864A5A03E90C88B0310C5395F
29CAB038B9BAD6D34B293660A0B3C523B5D4E79A3FDF37C4D3D300BBD59DE9D7F135CEAE
F93293AC22B8AECB8D166EB6634AD7B192372CA962D9CC47288A009113F3367655ECEA22
50AC20DE742FEA259E043D011C7CA73700C94C615BC57CEA5A39CFE2DD401053DF204EAE
DAC8072A5B9C1D777670FAABCFEE37601CF24C268E6D05AD3A790B421381B42D06DDBEE1
>ND
/.notdef <75434994A57C6F09925E1E26>ND
end
end
readonly put
put
/CMMI10 exch definefont pop end
%%EndFont
%%BeginFont: CMTI8
%!FontType1-1.0: (attend)
11 dict begin
/FontInfo 7 dict dup begin
/version (1.0) def
/Notice (Copyright \(C\) 1997 American Mathematical Society. All Rights Reserved) def
/FullName (CMTI8) def
/FamilyName (Computer Modern) def
/Weight (Medium) def
/ItalicAngle -14.04 def
/isFixedPitch false def
end def
/FontName /CMTI8 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {-35 -250 1190 750} def
/PaintType 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 98 /b put
dup 101 /e put
dup 102 /f put
dup 111 /o put
dup 114 /r put
readonly def
/UniqueID 5000826 def
currentdict end
systemdict begin
dup /Private 15 dict dup begin
/ND {noaccess def} def
/NP {noaccess put} def
/RD {string currentfile exch readstring pop} def
/UniqueID 5000826 def
/BlueValues [-21 0 683 704 431 441 665 666] def
/OtherBlues [-204 -194] def
/BlueScale 0.04379 def
/StdHW [33] def
/StdVW [73] def
/StemSnapH [28 33] def
/ForceBold false def
/OtherSubrs [{} {} {} {systemdict /internaldict known not {pop 3} {1183615869
systemdict /internaldict get exec dup /startlock known {/startlock get
exec} {dup /strtlck known {/strtlck get exec} {pop 3} ifelse} ifelse}
ifelse}] def
/MinFeature {16 16} def
/password 5839 def
/Subrs 0 array
ND
2 index /CharStrings 6 dict dup begin
/b <62A76D99C230F860EE5A6C13C40356EE05CAEF6A2DF4B7D588A68B5DD64E83302686
F3356D898248CF48059FBD7D927EDDE9F5A3FCD069FC63AEE3CEB6B03E48D764CA341E5D
DEB9ED1C2E40CDDA284107FDE9058C5E4C0FF0616C2B77BDF8E2F7DE57E794C34CAF55BA
C7765259A6ECB8083AFC08E0B0CE7FD48533D0C711CB66C01FD4B64FC5D16889FE9B1157
C543134B084D7BF092EC34ED750CF30742E7FCAD3E017F0EB490A9>ND
/e <529B8CA40A69E02B530145AA871850B14D45155C17A45A521E0994BB7B66864B5C4B
ACC4FD6EB58D9127562C28987BAA2550237B6E6233A9F11D0A5D4F324C044A2534BDF601
7FB18AA062BE316B74A694C213D3F19C98BC9FEC241C096CAA96A1A727E643CC73C3C11F
A3E32D98A381FAC2A6931359FA8CAC9C18B2DB>ND
/f <30DF273AAA54EE75ABF63ACBCF8CF427EBE752F1C7ECAFD94E01F2D86FCDD38F27F2
E1D808A65905EB5A743FAAE14D8247E05B2AAB2B9CF474B6E992E5FCF286DB1D64D6E2EC
496B74C2F5C05B16ACC7E5EB436B5A28F98707A07B7D298577397E6D4BEBA09807168D6D
0709FD89524216D1A61E7FC55A72A421697C3154FFC0927B5E48D5AEF93C4C59A2519296
B4C2F7E4A6516CEF228DB5F03CD41D9BDFC69CA50DB4CA3F7F9669F71A5C1C6A33F93752
62DFCFDC1449A4>ND
/o <3EDC1F3C296B5D118C79C1E78434885374D5F290D3C670635A6D68287868668B05C9
A1CD7E5CDDADE9ED9E08704D40DC227727237B94EA1D2ACEB0A6A8BE86E8446D4A91EBB0
6C1AF2A0B140E8D98BE8634FDF5ABA779A197747E183AC05C0974D9D191033AF56B75880
69240F>ND
/r <44C8890931FC516A041A943ACCA0499B34C18EB51C4A6E91A9FB37B31B7D60418619
27A4EB7CA04A8F16D44B006E5C9122A1B8B07E69ACDFAFA90FCB120EDACED6B000E6C18A
A268A150CB3ADB656D777C7A87DD2513B9CB8A9102EDB0F7CFF2AF9D2F68BB70A64338B7
426C42354A5C813363BFE07D5923CB347657D151E917C531656B34E2CDC58781C69606DF
CA59C1335B17426693>ND
/.notdef <62B0AF09821B25A3C8E2C7FEB891A1>ND
end
end
readonly put
put
/CMTI8 exch definefont pop end
%%EndFont
%%BeginFont: CMCSC10
%!FontType1-1.0: (attend)
11 dict begin
/FontInfo 7 dict dup begin
/version (1.0) def
/Notice (Copyright \(C\) 1997 American Mathematical Society. All Rights Reserved) def
/FullName (CMCSC10) def
/FamilyName (Computer Modern) def
/Weight (Medium) def
/ItalicAngle 0 def
/isFixedPitch false def
end def
/FontName /CMCSC10 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {14 -250 1077 750} def
/PaintType 0 def
/Encoding 256 array
0 1 255 {1 index exch /.notdef put} for
dup 33 /exclam put
dup 35 /numbersign put
dup 44 /comma put
dup 46 /period put
dup 49 /one put
dup 66 /B put
dup 67 /C put
dup 68 /D put
dup 69 /E put
dup 70 /F put
dup 73 /I put
dup 77 /M put
dup 80 /P put
dup 82 /R put
dup 83 /S put
dup 84 /T put
dup 86 /V put
dup 88 /X 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 121 /y put
readonly def
/UniqueID 5000772 def
currentdict end
systemdict begin
dup /Private 15 dict dup begin
/ND {noaccess def} def
/NP {noaccess put} def
/RD {string currentfile exch readstring pop} def
/UniqueID 5000772 def
/BlueValues [-22 0 683 705 514 528 666 677] def
/BlueScale 0.04379 def
/StdHW [31] def
/StdVW [72] def
/StemSnapH [25 31] def
/StemSnapV [72 89] def
/ForceBold false def
/OtherSubrs [{} {} {} {systemdict /internaldict known not {pop 3} {1183615869
systemdict /internaldict get exec dup /startlock known {/startlock get
exec} {dup /strtlck known {/strtlck get exec} {pop 3} ifelse} ifelse}
ifelse}] def
/MinFeature {16 16} def
/password 5839 def
/Subrs 6 array
0 1 5 {1 index exch <214DBF075E> put} for
dup 4<30CDBCEA28C7DDF6E9A94AF248E2D9B3E70EF5E316D87E>NP
dup 5<30BDDA385E5EEF6B42286CBF7C0217E3F1B4517A4EAE7E>NP
ND
2 index /CharStrings 42 dict dup begin
/B <7510532F6885A96C9C8048FD2AAF4C04F84AD9CA64E16092364D2945222A556C0B41
C438B854F43E621D570D8C6CBBC33BA0CC162B2B95C44A163F6E7B5D7BCC30527454373F
6D01EC0D6EC4F9070E68B51ABE654ED99E4F9F8CCF9580D376D6061410A67768116762F1
30AC2905494D110424B9CFBA3FBF424ABBD4A2942F455A725DF978D6FA882D91ACA00795
>ND
/C <7CA02379D7D1A9071AB174FC6C48BD5F972F6D2078F28C0D4FD7687D9780D14E051C
023D4EB2DCD060FD75A6FDF29DB258986175A2B5A02870BF8C9D439497ACC40E58B19B3D
126A608D3796A8C98BC04B294BEFCEB7F61E446742247D3A0D93A5EA020F960D6D52EE74
A62C4811E6A06452F4B6CF89ED194446B68D052764A0C1820CB0B17FB68717E15E>ND
/D <7F2E4A58A63820130429FE39F8784DB131B1B630278666BCB852ADC5369717950E43
E2E024F4397E1EC857A3AE7F4DC097B92B7717FB14AFB8640A4257AB425ECD37D81BCA03
E0D0604530061428251E78269C6E09F4FDEE16240D2FD1BD335091DF925BF319D92AA626
C013AFCE1BB8CBC8A57F6AB6C026FEB76E1C70>ND
/E <1A8C721780ED6AFB3CE34794ABD47C901A6BCCAB8768BC6EE56C367AC85B2E7AEF5F
9866E2F170506100CB6FC55CBC1DC17EF3E29F70DE685564A43EEFC8C2B6A2B3CECAA0E6
B09131746D20EBF409E8ED2CE4D04666567A96C8D73FEE4B9913F9A9F257F51D320DB029
73FB6B3446EA3273EDAD1E6B28C7513DE82B5A39F7AAA26E33A44EC36D>ND
/F <62BFC41EF3E5529096D136DE19ED28B6D0C3B2F3E1EAC105B416B3D530E3042BBC8B
ECBD4D3F59649BC79459D5757191FA16253264055931D2D6AAE86E1CEDC8249F7282EAAE
A3328BBB792AF1E902C5D2F4EAD91931C064027B7C25D611B59FC0B43ECDD911FAD8B5A9
D99AAA07D1505314981BCA68711351C18A62154CBA2A0EFC9DCE>ND
/I <30E43D6B723AA34597C81172D44AF309FEAB6C830F2A361B7934376E00A2BBA0A5BA
8A2B9FF5FD9491B4401E65E45265EC909BAD06F3593404932E0E8592DFE3814FCCAC6494
7419E3CD2046C3404D4C6726CCF5914B092A086AC30C4A8ECE322354C0>ND
/M <74005F423773327CDEEA779FAFECD3588A89AF5A0195C0E731AC9FD4CBCE3E7B4EE0
82D80E531C0E716E3AA3003A6181C95157CB909101444EB870841AD464C1C662B7E194E3
95EB32CB67395C925B54C3CD24350A56D524D845A85B9EFAE2188BA9A9678992B6DF5582
B96915BE2B0F6AF97FEFD471C050B0885E1D88CAB55A608D06CDC30E396B59A18F20A8B8
D0266C8497C1635972139879AE3A05A1F77B577505D658A9456392C05A5C0B40965BD016
AFFE>ND
/P <363AF034DC2B5FC366CAD86E9293A27EA67A88A5C3BD611FA1EADE861B905436520E
B3C3C251FABA3897AFD8BD927B452DAE02D08F6951576705E1C8E61F2958B35B0C5748C1
FEA3DE7139031A3C2A2517BD4B4DF10EC92A917D48DDEE976D9F26DDC2FC6FE7ACA461FD
FF98BF494B8DDD664490F416DEB7740C2065D40EC04864475C>ND
/R <7510547792FB03346EDBBCB9764A506DA2FF15C340A7EF7AAA39EE8E5CE49B9697DA
E8B678953D936DC4964A53A52DA9165A11782827F4247655B6E3EDC41A8E2BCD701175A9
B6C94B03593ED3DF432A855C24498604B038A6669BC7B0240CC54E68AC45613CFA1BF452
CDD0CB7AF873A003558F411E0B02FC82FC6FACB2583F4F717A9C6544A9F65C4AEE2E1B84
33D663442BC6A2E403336FC896836999F16E4C5AD26F9F135F5ACC1C8356E4C2350BF821
8BD1A20D5E621284662FFE520FD8367EAF14223CBE6A825F3653ACCEC5F9DE12E04A1CDA
9B05B78F21D6>ND
/S <602456F0BD5C8EC91DE6F0CCB3B14C44E4866AF084C4A848D7C15209F55697293157
397D09EC863B2570E7E38DCEB5CCF8F16A13D8EF69F5117E75A0FEC570D7A0C9DB0EF838
078042C4CEE041121ADACA359BE19AFB2379A33504940191D24E2FC789DCD6324731446A
5716B9F4BAC8B3557E62F70DA8316AB682FE5C477A6881C3A0D207B16454864B97AA3ACD
90EA827D967D745ED9E7EEAAD64823C4FADE94D0C1665D533C10336067B678B7D3D7CD17
24AE788C3522EC5F419AE02FAD8DA502C412B8D4285350A07B>ND
/T <30E932494DB34788F55676E40C95F44568A4AA5CD15307677719FF19CE1D507700F8
B846D55D2EE854F78D223FF77D6AA0D9B73450DACA11D7580956BBF8DD8A56B1260CE5E3
680D6A85DB3ADA2A5312289E00CAA18052FDFDDBD810C07F844CD46C8FBA1E954764A069
99D3056A83B2F95EC372D7BEB27829274F9CF3B179>ND
/V <77ED0DF1E4DC6AA3B88810F84674F373EF51787EBB95147029FE2BC29E4C7BFBF81A
0623335A0D4FE35C3D4F3A46EB3DCB5174C8B1978C3674ED4E9C7ED237B26D8078C27DAA
26BA396AB754615C14D141640AE3599C7C866C5210BABC6A6C5133FBA7C68E968C6BCFD2
A3451E5B2338BA2A4039CC11F2DC81DA51D873CC2FD5A22A5B46B4>ND
/X <7554F587CB72852CE59DB45D2F94398F0DA2273A1495FBBEA656C979180BFFFD2308
77CEB1234CF009061785599E4A03BBFD4946DBE387EAEE12CC43510E9B8B0E6314ED86B9
CBA9E571529635F0D05792721BF0190403F4DFF2C4228092E945580BE5E3B604AC62689D
DCD9E8C8693A94E2106DCB30840B7B34D67BF3557BAA23532B76205D7302EDA8C7B1DC71
00B885DD3BCC8B313FC91F7E3BE8F1E2B5A1E36ECF108C03867A115161748C701BF3CC11
6FCC45C05276607C3F22ABEB15EE783EC99D4FC513EBEC88C9E392ACB28D72E835FA46A0
DFF331E9A48597>ND
/a <62A76D9998A1D05271D0ED2FFE55389C7747EFA41FE364D44474CEACEC62AC1B4492
F4590AF1AC2A5150CC61B245B3670AB55A3867C50D16C3AFC9A185A6310336A3DCE0BC77
60277EC7535776B7F31A221BEE5ABDBE93D5C177344C0F1135F815B650AB5CFCE5D0E216
96539E63B95F1A8A56E51C082136B0CFDBDF76C3ECCEA685C2D555CF36AE8A0966348538
EBA72728>ND
/b <7DCABB5A914EC0B5EE8CBF1A1B60A74DAA7F679D52461DE86C5799DF0F2C11F14870
91B2A79BE27825EACAFC5183D23D8FCCFE9D27A38CB387D1224F5E6FD11A4B1041C50505
04F6530BE571FFAE90E4A6625CEDE9D4217F097E13A82D132ED2DC85CDD408224AC4161A
30CD70A33EFD58882A486F0EC4A7B7AE4491544500B7>ND
/c <30E3E0FA8CDB2D86BDA7DACCF96EB8188954F85F3A4BB945B15FFDAC1556C43EAFCC
10AB0705405468781296D217F8D6BFC0B34EF3047FC8999512568EDFCC095FA8D6A2DEB7
16FA4BF13F0B4B665DA19287D090913C538544E2E3CCD324BBA515EDA07C7976E299A0DC
9B283483D872B9D397D63D609636CD54DCA64E26671550F798A08F94>ND
/d <529B8CA4450A1A33493BE844B0FCC4401713BB58A8A59419D503EB23055D5D6271BB
35E1643F83A3C48F11ED919DC462B1103D4A80364BA19303B75E1B36E958C88BEE07A579
91E6805D8E1C8DABDA12B640F0240376F1246F490C44132398BA756ED5472D3F963B7761
747463FB88B32158AE73>ND
/e <30DF273A6EB5F493F7CE301DD6BDEDE23FE3D5B0D246ED1B92F47E2D5FCF72D95496
122EB2BAAD73730BB0B4AF07C694B27FC9A1B5A970166315F3F3E27160EFF9B603BAD2E5
E77BBADCADB5DA82CACC3780863F56E9CA12ECC1D8D7D888923366434E2520BE8590CE53
A6B0B2888BBEF025D1CC2E079B008D374AA4923178D1C513>ND
/f <30DE1B8F5FE000AAEF31EC025781C0F227A1F7253A6D69ABB4D769AF600C51920625
1BDF0D6F52C9352E4902E45376EE9EEE281B821521FAA574C8EA312753F941570206B5CE
623C8D5A83C433BDD817DC1279FE716CE1C8C59DBE7610DF0DABD915638A9B8DD36DBB7B
78B739DF85CFDFCEAD39209406E57CFD9BEFED>ND
/g <75511881210AA87B70BDCB43056E6234492ABE982BF30AF2E9075D6E0BF89009C6FD
53B80DBA734B2E4BE8226DCB6E6FAF27A94C9F44736A29DDC593D916027FBF416AFDD58E
441B0A16E39A388B5D64FB588CD19589DA46F648D2F00B0589F63FE2914C8EE45E302599
BABFE09D3BAE989B68B9F27C4BFDC8C71A7B925BF0164BE1A5BC82518B1B1ACBC15C1C45
95CE782BEDE566206B424264ED44F6173EB74668393883FB8E616852F79F2C3336064164
8377DA>ND
/h <78BBD1DBDE86C18651212770A991D8AB561AE2B49C633CF27A72DD27AD9770BB3912
D7A7287E84BFFD1660010148B1EAC3548EF4F6C9F0A12D3A8896FAC85C09BFD4771D4D23
7B862386F9AB35976E1DE3CC37720FF04EF0CD82AE8A9EBA717DA2E7B6C0AF656E1CA828
594513BE747161AF8CEE63767F12C1FF752CBE4447B9E5EB84BCF87908F53B5EBFFDBCEE
DC6487FA8B0267CB53350132D4A74505C9A0110886041D920FC076EAF5AF>ND
/i <7F3217D69EC81CD5C489D06B37628CFEEA75106C09AD7880B6852399B18198D87725
FEFCA2C021EA98B84004899966F12F52683F45FE7E35B281A00B856C587037029583754B
0B928E58D1E8F2572AA700FCB3F614D64533F66B>ND
/j <7E13ADA1A97A2463016BD172B117C6A028F15F8282A6C3CB500B729DD2953CB2D547
22504244C7C3229DB62E15CA99DBCC500D73F3BEEE48AFCA71BAFF134C1B27E776811CA7
81959AD9A4CE1779C0C92179A4ACB8C11419731677B81B2334D007088F333E3F25D05667
8305595988E0978CF66DBCDE61>ND
/k <74419D55A554ABB494BBFD6A29B943B7B5CCDA4802BE42AB8FC43EF680E0D2DA3715
11A48EC5BFDCF54AA5927AEB0B599CB744A0CC99C9E1C702A6500CCFFC3D2D4E9ADDDFA9
309C7095543EF6BE7656B9E4C142C877BB8CB43A3EF46C382EEBF63088A86237938684A4
28C98AC13041BB65E3235A95D2F81347166A01857C895B85E9F8FFE8320432E39A66A875
31027ED4C568CB13B71988886B2366F7B5E85AE9092A1B1BBF5981363F43FB9D87A53D59
FFBE82C11178CF0A74>ND
/l <751065A2F5312E2CD049364FF1C1C35DA341D2A2EB2F9E52AA07F5D07BDCB6E3F7C0