aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/doc/src/iiop.ps
diff options
context:
space:
mode:
Diffstat (limited to 'lib/orber/doc/src/iiop.ps')
-rw-r--r--lib/orber/doc/src/iiop.ps819
1 files changed, 819 insertions, 0 deletions
diff --git a/lib/orber/doc/src/iiop.ps b/lib/orber/doc/src/iiop.ps
new file mode 100644
index 0000000000..a77c09eda3
--- /dev/null
+++ b/lib/orber/doc/src/iiop.ps
@@ -0,0 +1,819 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (ImageMagick)
+%%Title: (./iiop.tmp.eps)
+%%CreationDate: (Tue Jun 12 17:52:35 2001)
+%%BoundingBox: 0 29 377 291
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 1
+%%Pages: 0
+%%EndComments
+
+%%BeginDefaults
+%%PageOrientation: Portrait
+%%EndDefaults
+
+%%BeginProlog
+%
+% Display a color image. The image is displayed in color on
+% Postscript viewers or printers that support color, otherwise
+% it is displayed as grayscale.
+%
+/buffer 512 string def
+/byte 1 string def
+/color_packet 3 string def
+/pixels 768 string def
+
+/DirectClassPacket
+{
+ %
+ % Get a DirectClass packet.
+ %
+ % Parameters:
+ % red.
+ % green.
+ % blue.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile color_packet readhexstring pop pop
+ compression 0 gt
+ {
+ /number_pixels 3 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add 3 mul def
+ } ifelse
+ 0 3 number_pixels 1 sub
+ {
+ pixels exch color_packet putinterval
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/DirectClassImage
+{
+ %
+ % Display a DirectClass image.
+ %
+ systemdict /colorimage known
+ {
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { DirectClassPacket } false 3 colorimage
+ }
+ {
+ %
+ % No colorimage operator; convert to grayscale.
+ %
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { GrayDirectClassPacket } image
+ } ifelse
+} bind def
+
+/GrayDirectClassPacket
+{
+ %
+ % Get a DirectClass packet; convert to grayscale.
+ %
+ % Parameters:
+ % red
+ % green
+ % blue
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile color_packet readhexstring pop pop
+ color_packet 0 get 0.299 mul
+ color_packet 1 get 0.587 mul add
+ color_packet 2 get 0.114 mul add
+ cvi
+ /gray_packet exch def
+ compression 0 gt
+ {
+ /number_pixels 1 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add def
+ } ifelse
+ 0 1 number_pixels 1 sub
+ {
+ pixels exch gray_packet put
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/GrayPseudoClassPacket
+{
+ %
+ % Get a PseudoClass packet; convert to grayscale.
+ %
+ % Parameters:
+ % index: index into the colormap.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile byte readhexstring pop 0 get
+ /offset exch 3 mul def
+ /color_packet colormap offset 3 getinterval def
+ color_packet 0 get 0.299 mul
+ color_packet 1 get 0.587 mul add
+ color_packet 2 get 0.114 mul add
+ cvi
+ /gray_packet exch def
+ compression 0 gt
+ {
+ /number_pixels 1 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add def
+ } ifelse
+ 0 1 number_pixels 1 sub
+ {
+ pixels exch gray_packet put
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassPacket
+{
+ %
+ % Get a PseudoClass packet.
+ %
+ % Parameters:
+ % index: index into the colormap.
+ % length: number of pixels minus one of this color (optional).
+ %
+ currentfile byte readhexstring pop 0 get
+ /offset exch 3 mul def
+ /color_packet colormap offset 3 getinterval def
+ compression 0 gt
+ {
+ /number_pixels 3 def
+ }
+ {
+ currentfile byte readhexstring pop 0 get
+ /number_pixels exch 1 add 3 mul def
+ } ifelse
+ 0 3 number_pixels 1 sub
+ {
+ pixels exch color_packet putinterval
+ } for
+ pixels 0 number_pixels getinterval
+} bind def
+
+/PseudoClassImage
+{
+ %
+ % Display a PseudoClass image.
+ %
+ % Parameters:
+ % class: 0-PseudoClass or 1-Grayscale.
+ %
+ currentfile buffer readline pop
+ token pop /class exch def pop
+ class 0 gt
+ {
+ currentfile buffer readline pop
+ token pop /depth exch def pop
+ /grays columns 8 add depth sub depth mul 8 idiv string def
+ columns rows depth
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { currentfile grays readhexstring pop } image
+ }
+ {
+ %
+ % Parameters:
+ % colors: number of colors in the colormap.
+ % colormap: red, green, blue color packets.
+ %
+ currentfile buffer readline pop
+ token pop /colors exch def pop
+ /colors colors 3 mul def
+ /colormap colors string def
+ currentfile colormap readhexstring pop pop
+ systemdict /colorimage known
+ {
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { PseudoClassPacket } false 3 colorimage
+ }
+ {
+ %
+ % No colorimage operator; convert to grayscale.
+ %
+ columns rows 8
+ [
+ columns 0 0
+ rows neg 0 rows
+ ]
+ { GrayPseudoClassPacket } image
+ } ifelse
+ } ifelse
+} bind def
+
+/DisplayImage
+{
+ %
+ % Display a DirectClass or PseudoClass image.
+ %
+ % Parameters:
+ % x & y translation.
+ % x & y scale.
+ % label pointsize.
+ % image label.
+ % image columns & rows.
+ % class: 0-DirectClass or 1-PseudoClass.
+ % compression: 0-RunlengthEncodedCompression or 1-NoCompression.
+ % hex color packets.
+ %
+ gsave
+ currentfile buffer readline pop
+ token pop /x exch def
+ token pop /y exch def pop
+ x y translate
+ currentfile buffer readline pop
+ token pop /x exch def
+ token pop /y exch def pop
+ currentfile buffer readline pop
+ token pop /pointsize exch def pop
+ /Helvetica findfont pointsize scalefont setfont
+ x y scale
+ currentfile buffer readline pop
+ token pop /columns exch def
+ token pop /rows exch def pop
+ currentfile buffer readline pop
+ token pop /class exch def pop
+ currentfile buffer readline pop
+ token pop /compression exch def pop
+ class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
+ grestore
+} bind def
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 29 377 291
+userdict begin
+%%BeginData:
+DisplayImage
+0 29
+377.000000 262.000000
+12
+461 321
+1
+0
+0
+8
+ffffff
+000000
+009000
+00b0b0
+0000ff
+900090
+000000
+000000
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff007c0101001e0101000e01000008010000ff00900100002e0101
+0009010000ff008e0100002f0100000a010000ff008b0103000301020002010100000102
+000001010004010300010102000001010000010200060100000301010000010200010100
+00ff008a0100000101010001010100010101000201010001010100000101000201010000
+01010002010000020101000101000006010000040100000001000003010000ff00890101
+000101010001010000030100000101000000010000000101000101000002010100020100
+0002010000010100000001000000010100050101000401010004010000ff002e0101001e
+0101000e010000080100001d010000020100000101010003010000010101000101010001
+0100000201000002010000030100000101010001010000060100000601000004010000ff
+002f0100002e010100090100001b01010002010000010100000301010001010000020100
+000201000001010100020100000301000001010000020100000601000005010100040100
+00ff002e0100002f0100000a0100001b0100000201010001010000030100000201000002
+010000020100000101000002010100020101000101000002010000060100000501010003
+010100ff002b010300030102000201010000010200000101000401030001010200000101
+0000010200060100000201010002010000020100001b0100000101030000010100010101
+000101000002010000020100000001000000010000010102000001000000010000000101
+00020102000501000004010000000100000001000001010000ff002b0100000101010001
+010100010101000201010001010100000101000201010000010100020100000201010001
+010000060100000301010001010000020100001c01010000010100020102000301000002
+010000020101000201010001010100010101000001000002010100060100000201010002
+01000001010100ff002a0101000101010001010000030100000101000000010000000101
+000101000002010100020100000201000001010000000100000001010005010100040100
+0001010000020100005101000009010000ff002b01000002010000010101000301000001
+010100010101000101000002010000020100000301000001010100010100000601000005
+01000001010000020100005101000008010000ff002b0101000201000001010000030101
+000101000002010000020100000101010002010000030100000101000002010000060100
+00050100000001000003010000ff00880100000201010001010000030100000201000002
+010000020100000101000002010100020101000101000002010000060100000501020002
+010100ff0088010000010103000001010001010100010100000201000002010000000100
+000001000001010200000100000001000000010100020102000501000006010000030100
+00ff008a0101000001010002010200030100000201000002010100020101000101010001
+0101000001000002010100060100000601000002010100ff00bf01000004010000030100
+00ff00c00100000301000003010000ff00c4010100ff00ff00ff00b9015500ff00760100
+0053010000ff007601000053010000ff007601000053010000ff007601000053010000ed
+05060005050500050501006d01000053010000ed05060005050500050501015400180100
+0053010000ed05010016050100530100001801000053010000ff00060501005301000018
+01000053010000ff0006050100530100001801000053010000f60504000a050100530100
+001801000053010000f5050100020501000a010000530100001801000053010000f40501
+000405010009010000530100001801000053010000f30501000605010008010000530100
+001801000053010000ed0501000305010006050100080100005301000018010000530100
+00ed050100030501000605010008010000530100001801000053010000ed050100030501
+000605010008010000530100001801000053010000ed0501000305010006050100070501
+00530100001801000053010000ed05010004050100040501000805010053010000180100
+0053010000ed050100050501000205010009050100530100001801000053010000f60504
+000a050100530100001801000053010000ff0006050100530100001801000053010000ff
+0006050100530100001801000053010000ff0007010000530100001801000053010000ff
+0007010000530100001801000053010000ff0007010000530100001801000053010000ed
+0501001701000023040b00230100001801000053010000ed050100170100001f0403000b
+0403001f0100001801000053010000ed050100030506000c0100001d040100130401001d
+0100001801000053010000ed0501000405010002050200090501001a0402000103000002
+03000002030000020300000203000002030000000402001a0100001801000053010000ed
+050100040501000305010009050100190400001d040000190100001801000023040b0023
+010000ed050100040501000305010009050100170401001f04010017010000180100001f
+0403000b0403001f010000f4050100020502000905010016040000230400001601000018
+0100001d040100130401001d010000f40506000a05010014040100040300000603000006
+0300000603000006030004010014010000180100001a0402000103000002030000020300
+00020300000203000002030000000402001a010000f4050100000501000c050100130400
+00290400001301000018010000190400001d04000019010000f4050100010501000c0100
+00120400002b0400001201000018010000170401001f04010017010000f4050100020501
+000b010000110400002d0400001101000018010000160400002304000016010000f40501
+00020502000a010000100400000103000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000004000010010000180100
+00140401000403000006030000060300000603000006030004010014010000ed05010003
+05030002050200090100000f040000310400000f01000018010000130400002904000013
+010000ed050100170100000e040000330400000e01000018010000120400002b04000012
+010000ed050100170100000e040000330400000e01000018010000110400002d04000011
+010000ed050100160501000d040000040300000603000006030000060300000603000006
+0300000603000400000d0100001801000010040000010300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000000400
+0010010000ed050100160501000c040000370400000c010000180100000f040000310400
+000f010000ed050100160501000c040000370400000c010000180100000e040000330400
+000e010000ff00060501000b040000390400000b010000180100000e040000330400000e
+010000ff00060501000b0400000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000010400
+000b010000180100000d0400000403000006030000060300000603000006030000060300
+000603000400000d010000f30507000a0501000a0400003b0400000a010000180100000c
+040000370400000c010000f4050100020502000a0100000a0400003b0400000a01000018
+0100000c040000370400000c010000f4050100030501000a0100000a0400003b0400000a
+010000180100000b040000390400000b010000f4050100030501000a0100000904000000
+030000060300000603000006030000060300000603000006030000060300000304000009
+010000180100000b04000002030000020300000203000002030000020300000203000002
+03000002030000020300000203000002030000020300000203000002030000010400000b
+010000ed05010004050100020501000b0100000904000010040200060400001504020008
+04000009010000180100000a0400003b0400000a010000ed050100040506000b01000009
+040000110401001e0400000904000009010000180100000a0400003b0400000a010000ed
+05010004050100020502000a010000090400001104000019040000040400000904000009
+010000180100000a0400003b0400000a010000ed05010004050100030501000905010008
+040000010300000203000002030000000402000203000404000104020000030000010402
+000103000000040200000403000103000000040000000300000203000002030000000400
+000801000018010000090400000003000006030000060300000603000006030000060300
+0006030000060300000304000009010000ed050100040501000305010009050100080400
+000904010001040100020400000204000002040000030400000104000001040100010400
+0001040100030400000b0400000801000018010000090400003d04000009010000ed0501
+000405010002050200090501000804000009040000030400000104000003040000020400
+0002040000010401000104000005040000040400000b0400000801000018010000090400
+003d04000009010000f30506000b05010008040000080401000304000001040000030400
+0002040000010404000104010005040000040400000b0400000801000018010000090400
+003d04000009010000ff0006050100080400000103000005040003000002040100010400
+000204010001030004000001040200000300000104000003030000010400000304010005
+030000040400000801000018010000080400000103000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+03000002030000020300000004000008010000ff00060501000804000008040000030400
+00020400000204000002040000020400000504000005040100030400000c040000080100
+0018010000080400003f04000008010000ff000701000008040000080401000104010001
+040000020400000304000002040100010400000104010001040000010400000004000002
+0400000c0400000801000018010000080400001104020006040000170400000904000008
+010000ff0007010000080400000904020003040300040400000304020003040200020401
+00010403000b040000080100001801000008040000120401001e04010009040000080100
+00ff00070100000804000001030000020300000203000002030000020300000203000002
+040000020300000203000002030000020300000203000002030000020300000203000002
+030000000400000801000018010000080400000103000006030000060300040000050300
+00060300000603000002040000020300040200030300000404000008010000ed05010017
+0100000804000018040000250400000801000018010000080400000b0402000304040001
+040200030402000304020000040300010402000a04000008010000ed0501001701000008
+040000160402002504000008010000180100000804000009040100010401000204000002
+04000002040000030400000104000001040100010400000104010001040100000400000a
+04000008010000ed05010017010000080400003f04000008010000180100000804000009
+040000030400000104000003040000020400000204000001040100010400000504000001
+040100010400000a04000008010000ed0501001605010009040000000300000603000006
+030000060300000603000006030000060300000603000003040000090100001801000008
+040000010300000203000001040100020300040000010400000203000400000103000400
+000104040001040100020300000104000300040100000300000004000000030000020300
+00020300000004000008010000ed05010016050100090400003d04000009010000180100
+000804000008040000030401000104000002040100020400000104020003040000060400
+00000406000904000008010000ed05010016050100090400003d04000009010000180100
+000804000008040000030400000204000002040000020400000204000005040000050401
+00040400000b04000008010000ff0006050100090400003d040000090100001801000008
+040000080401000104010001040000020400000304000002040100010400000104010001
+0400000104000000040000030400000b04000008010000ff00060501000a040003000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+03000002030000020300000203000002030000020400000a010000180100000904000000
+030000060402000304030004040000030402030000020402000003000000040100030401
+000503000003040000080506000505050005050100ed0501000a0400003b0400000a0100
+0018010000090400001804000023040000080506000505050005050100ee010000070401
+00000400003b0400000a0100001801000009040000170400002404000008050100160501
+00ee0100000504010003040000390400000b010000180100000904000015040200240400
+000901000016050100ee0100000204020005040000060300000603000006030000060300
+00060300000603000006030000010400000b010000180100000a04000300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000203000002030000020400000a01000016050100d40501001701000000
+04010009040000370400000c010000180100000a0400003b0400000a01000016050100d4
+05010016040001000400000b040000370400000c010000180100000a0400003b04000000
+04000008010000ed05010013040200000100000d040000350400000d010000180100000b
+040000390400000204010006010000ed05010011040100020501000e0400030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020400000e010000180100000b0400000603000006030000060300
+0006030000060300000603000006030000010400000404010004010000ed0501000e0402
+00040501000e040000330400000e010000180100000c0400003704000007040100010501
+00ed0501000c040100070501000f040000310400000f010000180100000c040000370400
+00090401050100f904020009050100100400002f04000010010000180100000d04000035
+0400000c050100f70401000c050100110400000003000006030000060300000603000006
+030000060300000304000011010000180100000d02000400030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020400000d050104010014050100db0402000e050100120400002b040000120100
+00180100000c02000000040000330400000d0501000104010012050100d8040200120100
+00130400002904000013010000180100000f040000310400000e05010003040100100501
+00d60401001501000014040100250401001401000018010000100400002f040000100100
+000504000504000a050100d3040200170100001604000300000203000002030000020300
+000203000002030000020300000203000002030000020400001601000018010000110400
+000003000006030000060300000603000006030000060300000304000011010000050501
+0401000005010009050100d10401000005010017010000170401001f0401001701000018
+010000120400002b040000120100000405010002040105010008050100ce040200020501
+0017010000190400001d04000019010000180100000a0200000704000029040000130100
+0003050100050400050100d604010005050100170100001a040200170402001a01000018
+0100000a02000008040100250401001401000003050100060501040000d2040200070501
+00160501001d0401000303000006030000060401001d0100001801000016040003000002
+030000020300000203000002030000020300000203000002030000020300000204000016
+010000030501000605010000040100cd0402000a050100160501001f0403000b0403001f
+01000018010000170401001f04010016050100030501000605010002040100c90401000d
+0501001605010023040b002301000018010000190400001d040000180501000305010006
+05010004040100c404020028050100530100001801000009020000050200000804020017
+04020019050100040501000405010007040100c00401002b050100530100001801000009
+020000040200000c0401000303000006030000060401001c050100050501000205010009
+0501040000bb0402002d050100530100001801000008020000150403000b0403001e0501
+00060504000a05010000040100b70401001a050500050505000401000053010000180100
+0023040b00220501001605010002040100b20402001c0505000505050004015500180100
+000e020000430100001605010004040100ad040200a50100005301000016050100060401
+00a9040100a80100000702000004020000440100001605010008040100a4040200aa0100
+00070200004a01000023040100a0040100ad010000070200001a040b0023010000250401
+001c0473000a040200af01000006020000170403000b0403001f010000270401001a0400
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000004000008040100b20100001d040100130401001c050100030506001e
+040100180400007104000005040200b40100000e0200000a040200010300000203000002
+030000020300000203000002030000000402001905010004050100020502001e04010016
+0400007104000002040200b70100000e020000090400001d040000180501000405010003
+05010020040100140400007104000000040100ba0100000e020000070401001f04010016
+050100040501000305010009050100160401001204000003030000060300000603000006
+030000060300000603000006030000060300000603000006030000060300000603000006
+0300000603000004040100bc010000050200000f04000023040000150501000405010002
+05020009050100180401001004000071040000bd010000050200000d0401000403000006
+030000060300000603000006030004010013050100040506000a0501001a0401000e0400
+0071040000bd0100001002000001040000290400001301000004050100000501000c0501
+001c0401000c04000071040000bd0100001102000400002b040000120100000405010001
+0501000b0501001e0401000a040003000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+00020300000203000002030000020300000203000000040000bd010000110400002d0400
+001101000004050100020501000a0501002004010008040000710400004e015a00130100
+001004000001030000020300000203000002030000020300000203000002030000020300
+0002030000020300000203000002030000000400001001000004050100020502002e0401
+0006040000710400004e01000058010000130100000402000009040000310400000f0100
+0003050300020502002f04010004040000710400004e0100005801000013010000040200
+0008040000330400000e0100003f04010002040000030300000603000006030000060300
+000603000006030000060300000603000006030000060300000603000006030000060300
+0006030000040400004e01000058010000130100000402000008040000330400000d0501
+0041040100000400007104000035050500050505000505010058010000130100000d0400
+000403000006030000060300000603000006030000060300000603000400000c05010043
+0401007104000035050500050505000505010058010000130100000c040000370400000b
+05010044040000710400004d05010058010000130100000c040000370400000b05010016
+0501002b0400030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+00020300000203000002030000000400004d05010058010000130100000b040000390400
+000a050100160501002b040000710400004d05010029040b0022010000130100000b0400
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000010400000a050100160501002b0400
+00710400003405010016050100250403000b0403001e0100001301000003020000050400
+003b0400000a010000030507000a0501002b040000710400003405010017010000230401
+00130401001c0100001301000003020000050400003b0400000a01000004050100020502
+00090501002b040000030300000603000006030000060300000603000006030000060300
+000603000006030000060300000603000006030000060300000603000004040000340501
+001701000020040200010300000203000002030000020300000203000002030000000402
+0019010000130100000a0400003b0400000a0100000405010003050100090501002b0400
+007104000034050100170100001f0400001d040000180100001301000009040000000300
+000603000006030000060300000603000006030000060300000603000003040000090100
+000405010003050100370400007104000034050100170100001d0401001f040100160100
+001301000009040000100402000604000014040400070400000901000004050100020501
+00380400007104000034050100170100001c040000230400001501000013010000090400
+00110401001c0400000b0400000901000004050600380400030000020300000203000002
+030000020300000203000002030000020300000203000001040500000405030000020300
+040500000300000203000408000103000002030000020300000203000002030000020300
+0002030000020300000203000002030000000400004e0100001a04010004030000060300
+000603000006030000060300040100130100001301000003020000040400001104000019
+040000010400000c04000008050100040501000205020037040000240401000404010005
+040100030401000604010003040100260400004d05010019040000290400001201000013
+010000030200000304000001030000020300000203000000040200020300040400010402
+000003000001040200010300000004020000040300010401000103000002030000020300
+000004000007050100040501000305010037040000240401000404010004040000060401
+000504010004040100250400004d050100180400002b0400001101000013010000030200
+000304000009040100010401000204000002040000020400000304000001040000010401
+000104000001040100040400000a04000007050100040501000305010037040000240401
+000404010003040100070401000404010004040100250400004d050100170400002d0400
+001001000013010000030200000304000009040000030400000104000003040000020400
+000204000001040100010400000504000005040100090400000705010004050100020502
+00090501002b040000030300000603000006030000060300000603000401000404010003
+040000000300000604010004040100040401030000060300000603000006030000060300
+00040400004d050100160400000103000002030000020300000203000002030000020300
+00020300000203000002030000020300000203000002030000000400000f010000130100
+000804000008040100030400000104000003040000020400000104040001040100050400
+0005040100090408050104030506040b0501042c00240401000404010002040100090401
+000304010004040100250400004d05010015040000310400000e01000013010000080400
+000103000005040003000002040100010400000204010001030004000001040200000300
+000104000003030000010400000303000000040000040300000404000007050100160501
+002b04000024040100040401000204010009040100030401000304010026040000340501
+001605010014040000330400000d01000013010000080400000804000003040000020400
+000204000002040000020400000504000005040100050400000a04000008010000160501
+002b04000024040100040401000204010009040100030405002804000034050100170100
+0014040000330400000d0100001301000008040000080401000104010001040000020400
+0003040000020401000104000001040100010400000104000000040000030400000b0400
+0008010000160501002b0400030000020300000203000002030000020300000203000002
+030000020300000203000002030004010000030000020401000103000401000003000002
+030000020300040100000300000104010002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000004000034050100170100
+00130400000403000006030000060300000603000006030000060300000603000400000c
+010000130100000302000003040000090402000304030004040000030402000304020002
+040100000403000c04000008010000160501002b04000024040100040401000204010009
+040100030401002c04000034050100060504000b01000012040000370400000b01000013
+010000030200000304000001030000020300000203000002030000020300000203000002
+040000020300000203000002030000020300000203000002030000020300000203000002
+03000000040000080100004404000024040100040401000304010008040000040401002c
+0400003405010005050100020501000a01000012040000370400000b0100001301000003
+020000030400001804000025040000080100004404000024040100040401000304010007
+040100040401002c0400003405010004050100040501000901000011040000390400000a
+010000130100000302000003040000160402002504000008010000440400000303000006
+030000060300000603000006030004010004040100040401000604000005040100060300
+0006030000060300000603000006030000040400003a0501000605010008010000110400
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000010400000a01000013010000080400
+003f040000070501004404000024040100040401000504010003040100060401002c0400
+003a0501000605010007050100100400003b040000090100001301000009040000000300
+000603000006030000060300000603000006030000060300000603000003040000080501
+0044040000220405000004050004040500050405002a0400003a05010006050100070501
+00100400003b0400000901000013010000090400003d0400000805010044040000710400
+003a0501000605010007050100100400003b0400000901000013010000090400003d0400
+0008050100160501002b0400030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+03000002030000020300000203000002030000000400003a05010006050100070501000f
+040000000300000603000006030000060300000603000006030000060300000603000003
+040000080100001301000003020000040400003d04000008050100160501002b04000071
+0400003b05010004050100080501000f0400003d04000008010000130100000302000005
+040003000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000204000009050100160501
+002b04000071040000340501000505010002050100090501000f0400003d040000080100
+001301000003020000050400003b0400000a010000160501002b04000071040000340501
+00060504000b0100000f0400000f04020006040000130403000a04000008010000130100
+0003020000050400003b0400000a010000160501002b0400000303000006030000060300
+000603000006030000060300000603000006030000060300000603000006030000060300
+0006030000060300000404000034050100170100000e0400000103000002030000020300
+000203000002040100010300000203000002030000020300000203000002030000020300
+0400000103000401000003000002030000020300000004000007010000130100000b0400
+00390400000b01000016050100290402007104000034050100170100000e040000110400
+0019040000050400000a04000007010000130100000b0400000603000006030000060300
+0006030000060300000603000006030000010400000b0100004004010001040000710400
+0034050100170100000e0400000a04020003040400010402000304020003040200000403
+00040400000a04000007010000130100000c040000370400000c0100003e040100030400
+007104000034050100170100000e04000008040100010401000204000002040000020400
+000304000001040000010401000104000001040100040401000a04000007010000130100
+000402000006040000370400000c0100003d040000050400030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+03000002030000020300000203000002030000020300000203000002030000000400004e
+0100000e0400000103000005040003000002040000010400030000020400000204000002
+040000010401000104000003030000000400000404010005030000040400000701000013
+0100000402000007040000350400000c0501003b04010006040000710400004d0501000e
+040000070401000304000001040000030400000204000001040400010401000504000004
+0400000c0400000701000013010000040200000804000300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+00020400000d0501003904010008040000710400004d0501000e04000007040000030401
+00010400000204010002040000010402000304000006040000030400000d040000070100
+00130100000402000008040000330400000d050100370401000a040000710400003a0506
+000b0501000e040000070400000304000002040000020400000204000002040000050400
+0005040100020400000e04000007010000130100000f040000310400000e050100160501
+001c0401000c040000030300000603000006030000060300000603000006030000060300
+0006030000060300000603000006030000060300000603000006030000040400003b0501
+0002050200090501000e0400000103000002030000000401030000000401030000000400
+000003000000040000000300000104000300000104010001040003000000040103000000
+040000000300040000000400030004000001030004000001030000020300000203000000
+0400000701000013010000100400002f0400000f050100160501001b0400000e04000071
+0400003b05010003050100090501000e0400000804020003040300040400000304020003
+04020002040100000405000b040000070100001301000011040000000300000603000006
+030000060300000603000006030000030400001005010016050100190401000f04000071
+04350501040405010403050104090501040f001804000025040000070100001301000005
+0200000b0400002b04000012010000160501001704010011040000710400003405010004
+050100020502000a0100000e04000017040000260400000701000013010000050200000c
+040000290400001301000016050100150401001304000300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000000040000340501
+00040506000b0100000f0400000003000006030000060300000204020000030000060300
+00060300000603000006030000030400000801000013010000050200000d040100250401
+0014010000160501001404000015040000710400003405010004050100000501000d0100
+000f0400003d0400000801000013010000050200000f0400030000020300000203000002
+030000020300000203000002030000020300000203000002040000160100002b04010016
+040000710400003405010004050100010501000c0100000f0400003d0400000801000013
+0100001602000401001f0401001701000029040100180400007104000034050100040501
+00020501000b0100000f0400003d040000080100001301000015020000020400001d0400
+0019010000270401001a0400000303000006030000060300000603000006030000060300
+000603000006030000060300000603000006030000060300000603000006030000040400
+003b050100020502000a0100001004000300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+0300000204000009010000130100001a0402001704020019050100250401001c04000071
+0400003a0503000205020008050100100400003b04000009010000130100000602000015
+0401000303000006030000060401001c050100240400001e040000710400004d05010010
+0400003b0400000901000013010000060200000a0200000b0403000b0403001e05010022
+0401001f040000710400004d05010011040000390400000a01000013010000060200000a
+0200000f040b002205010016050100070401002104000300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+0002030000020300000203000002030000020300000203000002030000000400004d0501
+001104000006030000060300000603000006030000060300000603000006030000010400
+000a01000013010000120200003e050100160501000504010023040000710400004d0501
+0012040000370400000b0100001301000052050100160501000404000025040000710400
+00340501001605010012040000370400000b010000130100005301000016050100020401
+002604000071040000340501001701000013040000350400000c01000013010000120200
+003f01000016050100000401002804000003030000060300000603000006030000060300
+000603000006030000060300000603000006030000060300000603000006030000060300
+000404000034050100170100001404000300000203000002030000020300000203000002
+03000002030000020300000203000002030000020300000203000002030000020400000d
+0100001301000008020000080200000f040b00230100001605010400002a047400330501
+00030507000b01000014040000330400000d0100001301000008020000080200000b0403
+000b0403001f01000015040100a10403002f05010004050100020502000a010000150400
+00310400000e01000013010000080200000802000009040100130401001d010000140400
+00a70403002b05010004050100030501000a010000160400002f0400000f010000130100
+001a040200010300000203000002030000020300000203000002030000000402001a0100
+0012040100ac0403002e050100030501000a010000170400000003000006030000060300
+00060300000603000006030000030400001001000013010000190400001d040000180501
+0010040100b20403002a050100020501000a050100180400002b04000011010000130100
+0015020000000401001f040100160501000e040100b8040200270506000a050100190400
+00290400001201000013010000090200000b04000023040000150501000d040000bd0403
+002305010002050200090501001a040100250401000002000011010000130100000a0200
+000804010004030000060300000603000006030000060300040100130501000b04010008
+050100b70403001f05010003050100090501001c04000300000203000002030000020300
+0002030000020300000203000002030000020300000204000015010000130100000a0200
+00070400002904000012050100090401000a050100bb0403001b05010003050100090501
+001d0401001f0401001601000013010000120400002b04000011050100070401000c0501
+00bf040300100501000405010002050200090501001f0400001d04000018010000130100
+00110400002d04000011010000050401000e050100c30402000d050100030506000c0100
+002004020017040200090200000e01000013010000100400000103000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+0000040000100100000404000010050100c6040300090501001701000023040100030300
+0006030000060401000c0200000e010000130100000b02000002040000310400000f0100
+000204010011050100ca0403000505010017010000250403000b0403000e0200000e0100
+00130100000c02000000040000330400000e01000000040100e404030001050100170100
+0029040b0022010000130100000c02000000040000330400000e0100040000ea04010501
+001701000058010000130100000d04000004030000060300000603000006030000060300
+00060300000603000400000c0400010000ef040200140100001f040b002c010000130100
+000c04000037040000090401050100f20403000f0501001b0403000b040300190200000d
+010000130100000c040000370400000704010001050100f60403000b0501001904010013
+040100170200000d010000130100000b040000390400000404010003050100fa04030007
+050100160402000103000002030000020300000203000002030000020300000004020014
+0200000d010000130100000b040000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000001
+04000002040100050502000505050005050500e504030003050100150400001d04000013
+0200000d010000130100000a0400003b04000000040000070502000505050005050500e9
+04020000050100130401001f04010020010000130100000a0400003b0400000a010000ed
+050100150400050104000011040000230400001f010000130100000a0400003b0400000a
+010000ed05010017010000000403000b0401000403000006030000060300000603000006
+03000401001d010000130100000904000000030000060300000603000006030000060300
+000603000006030000060300000304000009010000ed0501001701000004040300060400
+00290400000b0200000f0100001301000009040000100402000604000015040300070400
+0009010000ed0501001701000008040300010400002b0400000a0200000f010000130100
+0009040000110401001d0400000a04000009010000ed050100170100000c0401002d0400
+00080200001001000013010000090400001104000019040000010400000c040000090100
+00ed050100170100000c0400000103000002030000020300000203000002030000020300
+000203000002030000020300000203000002030000020300000004000019010000130100
+000804000001030000020300000203000000040200020300040400010402000003000001
+040200010300000004020000040300000403000003000002030000020300000004000008
+010000ff00070100000b0400003104000018010000130100000804000009040100010401
+000204000002040000020400000304000001040000010401000104000001040100000400
+00020401000904000008010000ff00060501000a04000033040000020200001301000013
+010000080400000904000003040000010400000304000002040000020400000104010001
+0400000504000001040000020401000904000008010000ff00060501000a040000330400
+000102000014010000130100000804000008040100030400000104000003040000020400
+0001040400010401000504000000040000030401000904000008010000ff000605010009
+040000040300000603000006030000060300000603000006030000060300040000160100
+001301000008040000010300000504000300000204010001040000020401000103000400
+000104020000030000010400000303000001040000000400000103000000040100030300
+000404000008010000ff0006050100080400003704000015010000130100000804000008
+040000030400000204000002040000020400000204000005040000050401000004000003
+0400000a04000008010000ff000605010008040000370400001501000013010000080400
+000804010001040100010400000204000003040000020401000104000001040100010400
+000104000000040200010401000a04000008010000ed0501001605010007040000390400
+001401000013010000080400000904020003040300040400000304020003040200020401
+00010403000b04000008010000ed05010017010000070400000203000002030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+000203000002030000010400001401000013010000080400000103000002030000020300
+000203000002030000020300000204000002030000020300000203000002030000020300
+00020300000203000002030000020300000004000008010000ed05010017010000060400
+003b040000130100001301000008040000180400002504000008010000ed050100170100
+00060400003b040000130100001301000008040000160402002504000008010000ed0501
+0017010000060400003b0400001301000013010000080400003f04000008010000ed0501
+001701000005040000000300000603000006030000060300000603000006030000060300
+000603000003040000120100001301000009040000000300000603000006030000060300
+00060300000603000006030000060300000304000009010000ff0007010000050400000f
+0402000604000014040300090400001201000013010000090400003d04000009010000ff
+000605010005040000100401001b04010001040000090400001201000013010000090400
+003d04000009010000ff0006050100050400001004000019040000040401000904000012
+01000013010000090400003d04000009010000ff00060501000404000001030000020300
+000203000402030000020404000104020001030000000402000203000402030004030002
+0400000203000002030000020300000004000011010000130100000a0400030000020300
+000203000002030000020300000203000002030000020300000203000002030000020300
+0002030000020300000203000002030000020400000a010000ff00060501000404000008
+040100010401000204000002040000020400000304000001040000010401000104000001
+040100010402000c04000011010000130100000a0400003b0400000a010000ee05050005
+050500050501000404000008040000030400000104000003040000020400000204000001
+0401000104000005040000040401000b04000011010000130100000a0400003b0400000a
+010000ee0505000505050005050100040400000704010003040000010400000304000002
+040000010404000104010005040000050400000b04000011010000130100000b04000039
+0400000b010000ff00070100000404000001030000040400000003000001040100010400
+030000010401000204000001040200010300000004000004030000000400000403000400
+00050300000404000011010000130100000b040000060300000603000006030000060300
+00060300000603000006030000010400000b010000ff0007010000040400000704000003
+040000020400000204000002040000020400000504000005040100050400000b04000011
+010000130100000c040000370400000c010000ff00070100000404000007040100010401
+000104000002040000030400000204010001040000010401000104000001040000000400
+00030400000c04000011010000130100000c040000370400000c010000ff000701000004
+040000080402000304030004040000030402000304020002040100000403000d04000011
+010000130100000d040000350400000d010000ff00070100000404000001030000020300
+000203000002030000020300000203000001040003000002030000020300000203000002
+03000002030000020300000203000002030000020300000004000011010000130100000e
+040003000002030000020300000203000002030000020300000203000002030000020300
+0002030000020300000203000002030000020400000e010000ff00070100000404000017
+0400002604000011010000130100000e040000330400000e010000ff0007010000040400
+00150402002604000011010000130100000f040000310400000f010000ff000701000004
+0400003f0400001101000013010000100400002f04000010010000ff0007010000050400
+000003000006030000060300000603000006030000060300000603000006030000030400
+001201000013010000110400000003000006030000060300000603000006030000060300
+000304000011010000ff0007010000050400003d0400001201000013010000120400002b
+04000012010000ff0007010000050400003d040000120100001301000013040000290400
+0013010000ff0007010000050400003d0400001201000013010000140401002504010014
+010000ff0007010000060400030000020300000203000002030000020300000203000002
+030000020300000203000002030000020300000203000002030000020300000203000002
+040000130100001301000016040003000002030000020300000203000002030000020300
+000203000002030000020300000204000016010000ff0007010000060400003b04000013
+01000013010000170401001f04010017010000ff0007010000060400003b040000130100
+0013010000190400001d04000019010000ff000701000007040000390400001401000013
+0100001a040200170402001a010000ff0007010000070400000603000006030000060300
+00060300000603000006030000060300000104000014010000130100001d040100030300
+0006030000060401001d010000ff0007010000080400003704000015010000130100001f
+0403000b0403001f010000ff00070100000804000037040000150100001301000023040b
+0023010000ff00070100000904000035040000160100001301000053010000ff00070100
+000a04000300000203000002030000020300000203000002030000020300000203000002
+0300000203000002030000020300000203000002040000170100001301000053010000ff
+00070100000a04000033040000170100001301000053010000ff00070100000b04000031
+040000180100001301000053010000ff00070100000c0400002f04000019010000130100
+0053010000ff00070100000d040000000300000603000006030000060300000603000006
+030000030400001a0100001301000053010000ff00070100000e0400002b0400001b0100
+001301000053010000ff00070100000f040000290400001c0100001301000053010000ff
+000701000010040100250401001d0100001301000053010000ff00070100001204000300
+000203000002030000020300000203000002030000020300000203000002030000020400
+001f0100001301000053010000ff0007010000130401001f040100200100001301000053
+010000ff0007010000150400001d040000220100001301000053010000ff000701000016
+04020017040200230100001301000053010000ff00070100001904010003030000060300
+0006040100260100001301000053010000ff00070100001b0403000b0403002801000013
+015500ff00070100001f040b002c010000ff007101000058010000ff0071010000580100
+00ff007101000058010000ff007101000058010000ff0071015a00ff00ff00ff00ff00ff
+00ff00ed0101001e0101000e01000007010000ff00910100002e01010008010000ff008f
+0100002f01000009010000ff008c01030003010200020101000001020000010100040103
+00010102000001010000010200060100000201040002010000ff008b0100000101010001
+010100010101000201010001010100000101000201010000010100020100000201010001
+01000006010000020100000101000003010000ff008a0101000101010001010000030100
+000101000000010000000101000101000002010100020100000201000001010000000100
+0000010100050101000501000003010000ff008a01000002010000010101000301000001
+010100010101000101000002010000020100000301000001010100010100000601000005
+01000004010000ff00890101000201000001010000030101000101000002010000020100
+000101010002010000030100000101000002010000060100000401000005010000ff0089
+010000020101000101000003010000020100000201000002010000010100000201010002
+0101000101000002010000060100000301010004010100ff008901000001010300000101
+000101010001010000020100000201000000010000000100000101020000010000000100
+00000101000201020005010000030100000101000002010000ff008b0101000001010002
+010200030100000201000002010100020101000101010001010100000100000201010006
+0100000201040001010100ff00c001000008010000ff00c101000007010000ff00ff00ff
+00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff00ff
+00ff00ff00ff00ff00ff00ff0019
+%%EndData
+end
+%%PageTrailer
+%%Trailer
+%%BoundingBox: 0 29 377 291
+%%EOF