From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/tv/doc/src/info_window.ps | 814 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 814 insertions(+) create mode 100644 lib/tv/doc/src/info_window.ps (limited to 'lib/tv/doc/src/info_window.ps') diff --git a/lib/tv/doc/src/info_window.ps b/lib/tv/doc/src/info_window.ps new file mode 100644 index 0000000000..b459523d0f --- /dev/null +++ b/lib/tv/doc/src/info_window.ps @@ -0,0 +1,814 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: (ImageMagick) +%%Title: (./info_window.tmp.eps) +%%CreationDate: (Tue Jun 12 16:12:33 2001) +%%BoundingBox: 0 60 377 354 +%%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 60 377 354 +userdict begin +%%BeginData: +DisplayImage +0 60 +377.000000 294.000000 +12 +590 460 +1 +0 +0 +8 +ffffff +000000 +d8d8d8 +c2c2c2 +6b6b6b +d9d9d9 +b22222 +828282 +000a01ff01ff0137000b0208040001ff01ff013700000208040000000208040002ff02ff +0237000002080400000002080400020000ff00ff00340400020000000208040000000202 +04060200000004ff04ff0434020000000405020204000000020204000209000d02ff02ff +022b00000202040000000202040002080000020d040002ea010102060101021d01020229 +010102e700000202040000000202040002080000020d040002d801070209010102060101 +020e0101020b0101022601000203010102e700000202040000000202040002080000020d +040002db0101020c010102060101020e0101020b01010225010102ed0000020204000000 +0202040002080000020204060203040002db010102040103020301010200010102030101 +020201030207010102020101020001010202010402010103020201010200010102010101 +020001010201010102030103020101040201010102020103020301010200010102d70000 +02020400000004030208000002020400030400000203040002db01010203010102010101 +020201020200010102020101020101010201010102060101020201020200010102020101 +020201010201010102010101020001010201010202000102020001010201010102010101 +02010101020301010201010102010101020201020200010102d6000004030101020b0000 +02030400030200000204040002db01010207010102020101020101010202010102010101 +020101010206010102020101020101010202010102020101020101010201010202030101 +020101010201010102050101020101010203010102010101020101010202010102010101 +02d90103020b000002030400030200000204040002db0101020401040202010102010101 +020201010201010502060101020201010201010102020101020201010201010102010101 +020401010201010102010101020201040201010102030101020101010201010102020101 +0201010102d90103020b000002040400030000000205040002db01010203010102010101 +02020101020101010202010102010101020a010102020101020101010202010102020101 +020101010201010102040101020101010201010102010101020101010201010102030101 +0201010102010101020201010201010102d90103020b0000020404000300000002050400 +02db01010203010102010101020201010201010102020101020101010202010002060101 +020201010201010102020101020201010201010102010101020401010201010102010101 +020101010201010102010101020301010201010102010101020201010201010102d90103 +020b0000020500000206040002db01010204010202000101020101040203010102020103 +020701010202010102010101020201010203010302020101020401010201010102010101 +0202010202000101020101020201010102020103020301010201010102d90103020b0000 +020d040002ff02ff022d0103020b0000020d040002ff02ff022d0103020b0000020d0400 +02ff02ff022d0103020c040d02ff02ff022e010302ff02ff0249010302ff02ff02490103 +020200ff00ff00420400020201030202000004ff04ff04420202010302ff02ff02490103 +020200ff00ff004302020103020200ff00ff00420700020201030202000105ff05ff053f +0701020201030202000105ff05ff053f0701020201030202000105ff05ff053f07010202 +01030202000105ff05ff053f0701020201030202000105ff05ff053f0701020201030202 +0001050b0604050406000503060205ff05ff052107010202010302020001050b0600050f +060005ff05ff052107010202010302020001050b060005060602050506000503060205ff +05ff051a07010202010302020001050b06000508060005050600050206000502060005ff +05ff051907010202010302020001050b06030505060005050600050206000502060005ff +05ff051907010202010302020001050b060005080600050506000502060405ff05ff0519 +07010202010302020001050b060005080600050506000502060005ff05ff051d07010202 +010302020001050b06000508060005050600050206000502060005ff05ff051907010202 +010302020001050b060005080600050506000503060205ff05ff051a0701020201030202 +000105ff05ff053f07010202010302020001050a060605ff05ff052d0701020201030202 +0001050a060605ff05ff052d0701020201030202000105ff05ff053f0701020201030202 +000105ff05ff053f0701020201030202000105ff05ff053f0701020201030202000107ff +07ff0741020201030202000007ff07ff074202020103020205ff05ff0543020201030202 +05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202 +05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202 +05ff05ff054302020103020205ff05ff054302020103020205ff05ff0543020201030202 +05ff05ff0543020201030202050400770501007705010077050100770558020201030202 +050400760700050100760700050100760700050100760700055802020103020205040001 +057307010501000105730701050100010573070105010001057307010558020201030202 +050400010573070105010001057307010501000105730701050100010573070105580202 +010302020504000105730701050100010573070105010001057307010501000105730701 +055802020103020205040001057307010501000105730701050100010573070105010001 +057307010558020201030202050400010573070105010001057307010501000105730701 +050100010573070105580202010302020504000105730701050100010573070105010001 +057307010501000105730701055802020103020205040001057307010501000105730701 +050100010573070105010001057307010558020201030202050400010573070105010001 +057307010501000105730701050100010573070105580202010302020504000105730701 +050100010573070105010001057307010501000105730701055802020103020205040001 +057307010501000105730701050100010573070105010001057307010558020201030202 +05040001051d010405080100050601020510010405050100051f07010501000105080102 +0514010005110102050b010005050100050601000520070105010001052c010205050100 +053c070105010001052101020504010005480701055802020103020205040001051f0100 +050a0100050801000512010005070100051f070105010001050801000501010005250100 +05020100050a0100050501000528070105010001052b0100050201000542070105010001 +05200100050201000503010005480701055802020103020205040001051f010005040102 +05020100050001010505010005030102050b01000504010105000100051f070105010001 +050801000501010005030102050301020503010205030102050901000506010205020104 +05010104050201020502010005000101050301010500010005020102050b070105010001 +052b0100050601020502010405020102052e070105010001052001000505010405020102 +050201000500010105030102050301010500010005020102052407010558020201030202 +05040001051f010005030100050201000501010105010100050401000502010005020100 +050a01000503010005010101051f07010501000105080100050101000502010005020100 +050101000502010005040100050201000502010005090100050401000502010005030100 +0505010005060100050201010501010005010100050101010501010005020100050a0701 +05010001052c010005070100050601000501010005020100052d07010501000105210100 +050601000503010005020100050101010501010005010100050201000501010005010101 +050101000502010005230701055802020103020205040001051f01000507010005010100 +05020100050401000502010005020100050a01000503010005020100051f070105010001 +0508010305060100050101000508010005020100050e0101050201000502010005030100 +05050100050601000502010005020100050101000502010005010100050e070105010001 +052d010105050100050501000502010005020100052d0701050100010522010105040100 +050301000502010005010100050901000501010005020100050101000502010005230701 +055802020103020205040001051f01000504010305010100050201000504010005020104 +050a01000503010005020100051f07010501000105080100050201000502010305020102 +050501000502010005100100050101040503010005050100050601000502010005020100 +050101000502010005020102050b070105010001052f0100050401000504010005030104 +052d07010501000105240100050301000503010005020100050101000506010305010100 +050201000501010405230701055802020103020205040001051f01000503010005020100 +05010100050201000504010005020100050e01000503010005020100051f070105010001 +05080100050201000501010005020100050501000504010005020100050c010005020100 +050101000507010005050100050601000502010005020100050101000502010005050100 +050a070105010001052b0100050201000504010005030100050401000531070105010001 +052001000502010005030100050301000502010005010100050501000502010005010100 +050201000501010005270701055802020103020205040001051f01000503010005020100 +0501010105010100050401000502010005020100050a01000503010005010101051f0701 +050100010508010005020100050101000502010005010100050201000504010005020100 +050201000508010005020100050101000502010005030100050501000506010005020100 +0502010005010100050101010501010005020100050a070105010001052b010005020100 +05040100050201000505010005020100052d070105010001052001000502010005030100 +050301000502010005010100050501000502010005010100050101010501010005020100 +05230701055802020103020205040001051f010005040103050101000500010105050100 +05030102050901040502010105000100051f070105010001050801030503010305020102 +0505010005030102050a0102050301020505010105040101050401000502010005020100 +050201010500010005020102050b070105010001052c0102050501000502010405020102 +052e07010501000105210102050501010502010205020100050601030502010105000100 +050201020524070105580202010302020504000105730701050100010560010005110701 +05010001057307010501000105470100052a070105580202010302020504000105730701 +05010001055c010005020100051107010501000105730701050100010543010005020100 +052a07010558020201030202050400010573070105010001055d01020512070105010001 +057307010501000105440102052b07010558020201030202050400010573070105010001 +057307010501000105730701050100010573070105580202010302020504000105730701 +050100010573070105010001057307010501000105730701055802020103020205040001 +057307010501000105730701050100010573070105010001057307010558020201030202 +050400010573070105010001057307010501000105730701050100010573070105580202 +010302020504000105730701050100010573070105010001057307010501000105730701 +055802020103020205040001057307010501000105730701050100010573070105010001 +05730701055802020103020205040001057400ff00c20504020201030202050400010574 +00ff00c1070005040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105d101ff0158050a0701 +05040202010302020504000105d1010000ff00560100050a070105040202010302020504 +000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056 +0100050a070105040202010302020504000105d1010000ff00560100050a070105040202 +010302020504000105d1010000ff00560100050a070105040202010302020504000105d1 +010000ff00560100050a0701050402020103020205040001050a01040508010005060102 +05100104059701000010010000ff00440100050a0701050402020103020205040001050c +0100050a01000508010005120100059901000010010000ff00440100050a070105040202 +0103020205040001050c01000504010205020100050001010505010005030102050b0100 +050301000502010005010100050001010503010205040101057c01000008010200020104 +0002010200ff003c0100050a0701050402020103020205040001050c0100050301000502 +01000501010105010100050401000502010005020100050a010005030100050201000501 +010105010100050101000502010005030101057c01000007010000020100000301000003 +01000002010000ff003b0100050a0701050402020103020205040001050c010005070100 +0501010005020100050401000502010005020100050a0100050401000501010005010100 +050201000501010005020100058201000007010000020100000301000003010000ff003f +0100050a0701050402020103020205040001050c01000504010305010100050201000504 +010005020104050a01000504010005010100050101000502010005010104058201000007 +0104000301000004010200ff003c0100050a0701050402020103020205040001050c0100 +050301000502010005010100050201000504010005020100050e01000505010005000100 +0501010005020100050101000586010000070100000701000007010000ff003b0100050a +0701050402020103020205040001050c0100050301000502010005010101050101000504 +01000502010005020100050a010005050101050201010501010005010100050201000503 +0101057c0100000701000002010000030100000301000002010000ff003b0100050a0701 +050402020103020205040001050c01000504010305010100050001010505010005030102 +050b01000506010005020100050001010503010205040101057c01000008010200050101 +0002010200ff003c0100050a0701050402020103020205040001053e010005020100058d +010000ff00560100050a0701050402020103020205040001053b01000500010005030100 +058d010000ff00560100050a0701050402020103020205040001053c010005040100058d +010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a +070105040202010302020504000105d1010000ff00560100050a07010504020201030202 +0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff +00560100050a070105040202010302020504000105d101ff0158050a0701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105d101ff0158050a070105040202010302020504000105d10100 +00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701 +05040202010302020504000105d1010000ff00560100050a070105040202010302020504 +000105d1010000ff00560100050a070105040202010302020504000105d10100000a0101 +00a2010100a40100050a070105040202010302020504000105d101000009010000700100 +002a01000008010000a30100050a0701050402020103020205040001050a010405080100 +050601020510010405050100059001000009010000040102001901000006010000190100 +000a0100000601020013010000040101000a010200040100000c01010002010000070100 +00a30100050a0701050402020103020205040001050c0100050a01000508010005120100 +050701000590010000090100000601000019010000210100000a01000008010000120100 +0004010000010100000801000002010000020101000b0100000101000002010000060100 +00a30100050a0701050402020103020205040001050c0100050401020502010005000101 +0505010005030102050b0100050401010500010005030101058a01000009010000060100 +000301020003010200030102000201040002010200030102000201000000010100090104 +0002010200020100000001010005010000030102000a01000005010000010100000c0100 +0001010000000100000b010000010100000301000005010000a30100050a070105040202 +0103020205040001050c0100050301000502010005010101050101000504010005020100 +05020100050a0100050301000501010105030101058a0100000901000006010000020100 +000201000001010000020100000101000002010000030100000601000002010000020100 +0001010100010100000a0100000301000002010000010101000101000004010000020100 +00020100000801000006010000010100000c010000030100000b01000001010000040100 +0004010000a30100050a0701050402020103020205040001050c01000507010005010100 +05020100050401000502010005020100050a010005030100050201000590010000070101 +000701000002010000020100000101000009010000030100000601000002010000020100 +0001010000020100000a0100000701000001010000020100000401000002010000020100 +000701000007010000010100000a010100040100000b0100000101000005010000040101 +00a10100050a0701050402020103020205040001050c0100050401030501010005020100 +0504010005020104050a0100050301000502010005900100000901000006010000020100 +000201000001010000060103000301000006010000020100000201000001010000020100 +000a01000004010300010100000201000004010000020104000801000006010000010100 +000c010000030100000b010000010100000401000004010000a30100050a070105040202 +0103020205040001050c0100050301000502010005010100050201000504010005020100 +050e01000503010005020100059001000009010000060100000201000002010000010100 +0005010000020100000301000006010000020100000201000001010000020100000a0100 +000301000002010000010100000201000004010000020100000d01000005010000010100 +000c010000030100000b010000010100000301000005010000a30100050a070105040202 +0103020205040001050c0100050301000502010005010101050101000504010005020100 +05020100050a0100050301000501010105030101058a0100000901000006010000020100 +000201000001010000020100000101000002010000030100000601000002010000020100 +0001010000020100000a0100000301000002010000010101000101000004010000020100 +000201000003010100040100000401000001010000030101000201000002010000030100 +000501010003010000010100000201000006010000a30100050a07010504020201030202 +05040001050c010005040103050101000500010105050100050301020509010405020101 +0500010005030101058a0100000901000006010000030102000301020003010300040101 +00040100000301020002010000020100000b010100020103000101000000010100050100 +000301020004010100050100000401010004010100030102000201040003010100040101 +000201000007010000a30100050a070105040202010302020504000105d1010000090100 +003a01050027010000060100002a01000008010000a30100050a07010504020201030202 +0504000105d10100000a010100640101003b010100a40100050a07010504020201030202 +0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff +00560100050a070105040202010302020504000105d1010000ff00560100050a07010504 +0202010302020504000105d1010000ff00560100050a0701050402020103020205040001 +05d1010000ff00560100050a070105040202010302020504000105d101ff0158050a0701 +05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff +0535070105040202010302020504000105ff05ff05350701050402020103020205040001 +05ff05ff0535070105040202010302020504000105ff05ff053507010504020201030202 +0504000105ff05ff0535070105040202010302020504000105ff05ff0535070105040202 +010302020504000105ff05ff0535070105040202010302020504000105ff05ff05350701 +05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff +0535070105040202010302020504000105ff05ff05350701050402020103020205040001 +05ff05ff0535070105040202010302020504000105ff05ff053507010504020201030202 +0504000105ff05ff0535070105040202010302020504000105ff05ff0535070105040202 +010302020504000105ff05ff0535070105040202010302020504000105ff05ff05350701 +05040202010302020504000105ff05ff0535070105040202010302020504000105ff05ff +0535070105040202010302020504000105d101ff0158050a070105040202010302020504 +000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056 +0100050a070105040202010302020504000105d1010000ff00560100050a070105040202 +010302020504000105d1010000ff00560100050a070105040202010302020504000105d1 +010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a +0701050402020103020205040001050a0104050801000506010205100100050201000597 +010000080102001901000006010000190100000a01000006010200f60100050a07010504 +02020103020205040001050c0100050a010005080100051001010501010005970100000a +01000019010000210100000a01000008010000f60100050a070105040202010302020504 +0001050c0100050401020502010005000101050501000503010205090101050101000502 +010205020101050001000503010205040101057c0100000a010000030102000301020003 +010200020104000201020003010200020100000001010009010400020102000201000000 +0101000501000003010200ef0100050a0701050402020103020205040001050c01000503 +010005020100050101010501010005040100050201000502010005080100050001000500 +01000501010005020100050101000500010005000100050101000502010005030101057c +0100000a0100000201000002010000010100000201000001010000020100000301000006 +010000020100000201000001010100010100000a01000003010000020100000101010001 +010000040100000201000002010000ee0100050a0701050402020103020205040001050c +010005070100050101000502010005040100050201000502010005080100050001000500 +010005050100050101000500010005000100050101000502010005820100000a01000002 +010000020100000101000009010000030100000601000002010000020100000101000002 +0100000a010000070100000101000002010000040100000201000002010000ee0100050a +0701050402020103020205040001050c0100050401030501010005020100050401000502 +01040508010005010101050201030501010005000100050001000501010405820100000a +010000020100000201000001010000060103000301000006010000020100000201000001 +010000020100000a0100000401030001010000020100000401000002010400ee0100050a +0701050402020103020205040001050c0100050301000502010005010100050201000504 +010005020100050c01000501010105010100050201000501010005000100050001000501 +010005860100000a01000002010000020100000101000005010000020100000301000006 +010000020100000201000001010000020100000a01000003010000020100000101000002 +0100000401000002010000f20100050a0701050402020103020205040001050c01000503 +010005020100050101010501010005040100050201000502010005080100050201000501 +010005020100050101000500010005000100050101000502010005030101057c0100000a +010000020100000201000001010000020100000101000002010000030100000601000002 +0100000201000001010000020100000a0100000301000002010000010101000101000004 +0100000201000002010000ee0100050a0701050402020103020205040001050c01000504 +010305010100050001010505010005030102050901000502010005020103050101000500 +0100050001000502010205040101057c0100000a01000003010200030102000301030004 +010100040100000301020002010000020100000b01010002010300010100000001010005 +01000003010200ef0100050a070105040202010302020504000105d10100003e010500ff +00110100050a070105040202010302020504000105d1010000ff00560100050a07010504 +0202010302020504000105d1010000ff00560100050a0701050402020103020205040001 +05d1010000ff00560100050a070105040202010302020504000105d1010000ff00560100 +050a070105040202010302020504000105d1010000ff00560100050a0701050402020103 +02020504000105d1010000ff00560100050a070105040202010302020504000105d101ff +0158050a070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105d101ff0158050a070105040202 +010302020504000105d1010000ff00560100050a070105040202010302020504000105d1 +010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a +070105040202010302020504000105d1010000ff00560100050a07010504020201030202 +0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff +00560100050a0701050402020103020205040001050a0104050801000506010205100100 +05020100051d010305130100050b0100051c0100053501000009010000ff004b0100050a +0701050402020103020205040001050c0100050a0100050801000510010105010100051d +010005020100051f0100051c0100053501000009010000ff004b0100050a070105040202 +0103020205040001050c0100050401020502010005000101050501000503010205090101 +050101000502010205020101050001000503010205090100050201000502010205030101 +050001000502010205030102050201040502010205020100050001010503010205030101 +0500010005030101052f0100000701040001010000000101000201000002010000020102 +00ff00350100050a0701050402020103020205040001050c010005030100050201000501 +010105010100050401000502010005020100050801000500010005000100050101000502 +010005010100050001000500010005010100050201000508010005020100050101000502 +010005010100050101010504010005020100050201000503010005030100050201000501 +0101050101000501010005020100050101000501010105030101052f0100000901000003 +0101000101000001010000020100000101000002010000ff00340100050a070105040202 +0103020205040001050c0100050701000501010005020100050401000502010005020100 +050801000500010005000100050501000501010005000100050001000501010005020100 +050801030502010005020100050101000502010005040100050201000507010005030100 +050201000501010005050100050201000501010005020100053501000009010000030100 +0005010000020100000101000002010000ff00340100050a070105040202010302020504 +0001050c0100050401030501010005020100050401000502010405080100050101010502 +010305010100050001000500010005010104050801000501010005020104050101000502 +010005040100050301020504010005030104050101000505010405010100050201000535 +0100000901000003010000050100000201000001010400ff00340100050a070105040202 +0103020205040001050c0100050301000502010005010100050201000504010005020100 +050c010005010101050101000502010005010100050001000500010005010100050c0100 +050201000501010005050100050201000504010005060100050301000503010005050100 +050501000505010005020100053501000009010000030100000501000002010000010100 +00ff00380100050a0701050402020103020205040001050c010005030100050201000501 +010105010100050401000502010005020100050801000502010005010100050201000501 +010005000100050001000501010005020100050801000502010005010100050201000501 +010005010101050401000502010005020100050301000503010005020100050101000505 +010005020100050101000501010105030101052f01000009010000030100000501000001 +0101000101000002010000ff00340100050a0701050402020103020205040001050c0100 +050401030501010005000101050501000503010205090100050201000502010305010100 +050001000500010005020102050901000502010005020102050301010500010005040100 +0503010205050101050201020502010005060102050301010500010005030101052f0100 +000a01010001010000060101000001000002010200ff00350100050a0701050402020103 +020205040001056901000566010000ff00560100050a0701050402020103020205040001 +05650100050201000566010000ff00560100050a07010504020201030202050400010566 +01020567010000ff00560100050a070105040202010302020504000105d1010000ff0056 +0100050a070105040202010302020504000105d1010000ff00560100050a070105040202 +010302020504000105d1010000ff00560100050a070105040202010302020504000105d1 +010000ff00560100050a070105040202010302020504000105d101ff0158050a07010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105d101ff0158050a0701050402020103020205040001 +05d1010000ff00560100050a070105040202010302020504000105d1010000ff00560100 +050a070105040202010302020504000105d1010000ff00560100050a0701050402020103 +02020504000105d1010000ff00560100050a070105040202010302020504000105d10100 +00ff00560100050a070105040202010302020504000105d10100000b0100002a010000ff +001d0100050a0701050402020103020205040001050a0103053401020513010005190100 +0503010005130104050801000506010205280100000a010000040101000a010200040100 +000c01010002010000ff001c0100050a0701050402020103020205040001050a01000502 +01000532010005020100052d01000503010005150100050a010005080100052801000009 +01000004010000010100000801000002010000020101000b0100000101000002010000ff +001b0100050a0701050402020103020205040001050a0100050201000501010005000101 +050301020503010205030102050301020503010205090100050201000501010005020100 +050101000500010105030102050201000500010105030101050001000508010405010100 +0500010105030102050b0100050401020502010005000101050501000503010205040101 +051a0100000801000005010000010100000c01000001010000000100000b010000010100 +0003010000ff001a0100050a0701050402020103020205040001050a0100050201000501 +010105010100050101000502010005010100050201000501010005020100050101000502 +010005010100050201000508010005020100050101000502010005010101050101000504 +010005020101050101000501010005010101050a01000503010105010100050101000502 +0100050a0100050301000502010005010101050101000504010005020100050201000503 +0101051a0100000701000006010000010100000c010000030100000b0100000101000004 +010000ff00190100050a0701050402020103020205040001050a01030502010005050100 +050201000501010005050100050201000501010005050100050c01000502010005010100 +050001000500010005010100050201000504010005020100050201000501010005020100 +050a010005030100050201000501010005020100050a0100050701000501010005020100 +05040100050201000502010005200100000601000007010000010100000a010100040100 +000b0100000101000005010000ff00180100050a0701050402020103020205040001050a +010005050100050501000502010005010100050501040502010205030102050901000502 +010005010100050001000500010005010100050201000504010005020100050201000501 +010005020100050a0100050301000502010005010104050a010005040103050101000502 +0100050401000502010405200100000701000006010000010100000c010000030100000b +0100000101000004010000ff00190100050a0701050402020103020205040001050a0100 +050501000505010005020100050101000505010005090100050501000508010005020100 +050101000500010005000100050101000502010005040100050201000502010005010100 +05020100050a0100050301000502010005010100050e0100050301000502010005010100 +05020100050401000502010005240100000801000005010000010100000c010000030100 +000b0100000101000003010000ff001a0100050a0701050402020103020205040001050a +010005050100050501000502010005010100050201000501010005020100050101000502 +010005010100050201000508010005020100050101000500010005000100050101000502 +01000504010005020100050201000501010005010101050a010005030100050201000501 +010005020100050a01000503010005020100050101010501010005040100050201000502 +010005030101051a01000009010000040100000101000003010100020100000201000003 +01000005010100030100000101000002010000ff001b0100050a07010504020201030202 +05040001050a0100050501000506010205030102050301020503010205030102050a0102 +050301000500010005020100050201000504010005020100050201000502010105000100 +050b0101050101000502010005020102050b010005040103050101000500010105050100 +0503010205040101051a0100000a01000004010100040101000301020002010400030101 +000401010002010000ff001c0100050a0701050402020103020205040001056901000566 +0100000b0100002a010000ff001d0100050a070105040202010302020504000105650100 +050201000566010000ff00560100050a0701050402020103020205040001056601020567 +010000ff00560100050a070105040202010302020504000105d1010000ff00560100050a +070105040202010302020504000105d1010000ff00560100050a07010504020201030202 +0504000105d1010000ff00560100050a070105040202010302020504000105d1010000ff +00560100050a070105040202010302020504000105d101ff0158050a0701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105d101ff0158050a070105040202010302020504000105d10100 +00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701 +05040202010302020504000105d1010000ff00560100050a070105040202010302020504 +000105d1010000ff00560100050a070105040202010302020504000105d1010000ff0056 +0100050a070105040202010302020504000105d1010000ff00560100050a070105040202 +0103020205040001050a0100050201000527010105090102051301000517010305590100 +00ff00560100050a0701050402020103020205040001050a01010501010005260100050a +010005020100052b0100050201000558010000ff00560100050a07010504020201030202 +05040001050a01010501010005020102050201010500010005030102050a010205040100 +050a01000502010005010100050201000501010005000101050301020502010005000101 +050301010500010005080100050201000501010005000101050301020503010205030102 +0503010205030102050401010528010000ff00560100050a070105040202010302020504 +0001050a0100050001000500010005010100050201000501010005000100050001000501 +010005020100050801000502010005010104050801000502010005010100050201000501 +010105010100050401000502010105010100050101000501010105080100050201000501 +010105010100050101000502010005010100050201000501010005020100050101000502 +01000501010005020100050301010528010000ff00560100050a07010504020201030202 +05040001050a010005000100050001000505010005010100050001000500010005010100 +05020100050801000502010005030100050a010005020100050101000500010005000100 +050101000502010005040100050201000502010005010100050201000508010305020100 +050501000502010005010100050501000502010005010100050501000532010000ff0056 +0100050a0701050402020103020205040001050a01000501010105020103050101000500 +01000500010005010104050801000502010005030100050a010005020100050101000500 +010005000100050101000502010005040100050201000502010005010100050201000508 +010005050100050501000502010005010100050501040502010205030102052f010000ff +00560100050a0701050402020103020205040001050a0100050101010501010005020100 +05010100050001000500010005010100050c01000502010005030100050a010005020100 +050101000500010005000100050101000502010005040100050201000502010005010100 +050201000508010005050100050501000502010005010100050501000509010005050100 +052e010000ff00560100050a0701050402020103020205040001050a0100050201000501 +010005020100050101000500010005000100050101000502010005080100050201000503 +0100050a0100050201000501010005000100050001000501010005020100050401000502 +010005020100050101000501010105080100050501000505010005020100050101000502 +0100050101000502010005010100050201000501010005020100050301010528010000ff +00560100050a0701050402020103020205040001050a0100050201000502010305010100 +050001000500010005020102050a010205040100050b0102050301000500010005020100 +050201000504010005020100050201000502010105000100050801000505010005060102 +05030102050301020503010205030102050401010528010000ff00560100050a07010504 +02020103020205040001056901000566010000ff00560100050a07010504020201030202 +0504000105650100050201000566010000ff00560100050a070105040202010302020504 +0001056601020567010000ff00560100050a070105040202010302020504000105d10100 +00ff00560100050a070105040202010302020504000105d1010000ff00560100050a0701 +05040202010302020504000105d1010000ff00560100050a070105040202010302020504 +000105d1010000ff00560100050a070105040202010302020504000105d101ff0158050a +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000105ff05ff0535070105040202010302020504000105ff +05ff0535070105040202010302020504000105ff05ff0535070105040202010302020504 +000105ff05ff0535070105040202010302020504000105ff05ff05350701050402020103 +02020504000105ff05ff0535070105040202010302020504000105ff05ff053507010504 +0202010302020504000105ff05ff0535070105040202010302020504000105ff05ff0535 +070105040202010302020504000107ff07ff073705040202010100040504000007ff07ff +0738050400050202040005ff05ff054300000202040000000202040005ff05ff05430000 +0202040000000202040005ff05ff054300000202040000000202040005ff05ff05430000 +0202040000000202040005ff05ff0543000002020400000002020400000502ff02ff0237 +00060202040000000208040002ff02ff023700000208040000000208040002ff02ff0237 +00000208040000000208040001ff01ff01370000020804000000040901ff01ff01370000 +0409 +%%EndData +end +%%PageTrailer +%%Trailer +%%BoundingBox: 0 60 377 354 +%%EOF -- cgit v1.2.3