[BACK]Return to 2.ps CVS log [TXT][DIR] Up to [local] / OpenXM / doc / compalg / ps

File: [local] / OpenXM / doc / compalg / ps / 2.ps (download)

Revision 1.1.1.1 (vendor branch), Wed Mar 1 02:25:51 2000 UTC (24 years, 2 months ago) by noro
Branch: NORO, MAIN
CVS Tags: maekawa-ipv6, R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, RELEASE_1_1_2, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9, COMPALG_20000301
Changes since 1.1: +0 -0 lines

Imported OpenXM/doc/compalg. (A textbook on computer algebra)

%!PS-Adobe-2.0 EPSF-1.2
%%BoundingBox: 53.000000 121.183830 559.000000 701.056175
%%Creator: /usr/bin/X11/xwd2ps
%%CreationDate: Tue Oct 29 14:26:45 1996
%%Title: standard input
%%EndComments
% /usr/bin/X11/xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
% The command used to create this file (missing quotes on strings):
%   /usr/bin/X11/xwd2ps
% by geisha:noro (Masayuki Noro,Numazu,7551-5583)
% Information from XWD rasterfile header:
%   width =  423, height = 485, depth = 8
%   file_version = 7, pixmap_format = 2, byte_order = 1
%   bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
%   bits_per_pixel = 8, bytes_per_line = 424, visual_class = 3
%   bits/rgb = 8, colormap entries = 256, ncolors = 256
% Portion of raster image in this file:
%   starting line = 1
%   ending line = 485
%   starting column = 1
%   ending column = 423
gsave
/inch {72 mul} def
/buffer 2 string def
/rgbmap 768 string def
/rgb (000) def
/pixels 768 string def
%%Title: colorimage.ps
% Written 11-4-88 by Bob Tatar
% U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
%    E-Mail: tatar@crd.ge.com
% colorimage procedure to be used on monochrome printers
% or when the colorimage procedure is not available
% NOTE: Only 1 color mode is supported: single proc. & RGB

systemdict /colorimage known not {        % only create if not in systemdict
  % Utility procedure for colorimage operator.  This procedure takes a
  % string of rgb encoded values and creates a string 1/3 as long with
  % monochrome values.  This procedure assumes 8 bits/color (i.e. 
  % 1 character/color)
  % storage format for input string:  (r1 g1 b1  r2 g2 b2  r3 g3 b3  ... )
  % storage format for output string: (g1  g2  g3 ... )
  
  /colortograyscale { %def                % (string)
    dup /rgbdata exch store               % (string)
    length 3 idiv                         % Ns/3 
    /npixls exch store                    % ; npixls => Ns/3
    /indx 0 store                         % ; indx => 0
    /pixls npixls string store            % ; pixls => (....)
    0 1 npixls -1 add {                   % counter 
      pixls exch                          % pixls counter
      rgbdata indx get .3 mul             % pixls counter .3*rgbdata(ind)
      rgbdata indx 1 add get .59 mul add  % pixls counter .3*rgbdata(ind) + 
					  %          .59*rgbdata(ind+1)
      rgbdata indx 2 add get .11 mul add  % pixls counter .3*rgbdata(ind) + .59
					  %  *rgbdata(ind+1)+.11*rgbdata(ind+2)
      cvi                                 % pixls counter <grayscale value>
      put                                 %
      /indx indx 3 add store              % ; /ind => ind+3
    } for                                 % repeat for each rgb value
    pixls                                 % (pixls)
  } bind def                              % ; /colortograyscale -> dictionary
  
  % Utility procedure for colorimage operator.  This procedure takes two
  % procedures off the stack and merges them into a single procedure.
  
  /mergeprocs { %def      % {proc1} {proc2}
    dup length            % {proc1} {proc2} N2
    3 -1 roll             % {proc2} N2 {proc1}
    dup                   % {proc2} N2 {proc1} {proc1}
    length                % {proc2} N2 {proc1} N1
    dup                   % {proc2} N2 {proc1} N1 N1
    5 1 roll              % N1 {proc2} N2 {proc1} N1
    3 -1 roll             % N1 {proc2} {proc1} N1 N2
    add                   % N1 {proc2} {proc1} N1+N2
    array cvx             % N1 {proc2} {proc1} { ... }
    dup                   % N1 {proc2} {proc1} { ... } { ... }
    3 -1 roll             % N1 {proc2} { ... } { ... } {proc1}
    0 exch                % N1 {proc2} { ... } { ... } 0 {proc1}
    putinterval           % N1 {proc2} { <<{proc1}>> ... }
    dup                   % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
    4 2 roll              % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
    putinterval           % { <<{proc1}>> <<{proc2}>> }
  } bind def              % ; /mergeprocs => dictionary

  /colorimage { %def               % {imageproc} multiproc ncolors
     pop                           % {imageproc} multiproc ; assume 3 colors
     pop                           % {imageproc}           ; assume false
     {colortograyscale}            % {imageproc} {colortograyscale}
     mergeprocs                    % {imageproc colortograyscale}
     image                         % construct monochrome image
  } bind def                       % ; /colorimage => dictionary
} if                               % only create if it doesn't already exist
/drawcolorimage {
  423 485 8
  [423 0 0 -485 0 485]
  {currentfile buffer readhexstring pop pop  % get run length & color info
    /npixels buffer 0 get 1 add 3 mul store  % number of pixels (run length)
    /color buffer 1 get 3 mul store          % color of pixels
    % /pixels npixels string store          % create string to hold colors
    /rgb rgbmap color 3 getinterval store    % get rgb value
    0 3 npixels -1 add {
	  pixels exch rgb putinterval
    } for
    pixels 0 npixels getinterval             % Return color values
  }
  false 3
  colorimage
} bind def
0.750000 inch 1.696998 inch translate
matrix currentmatrix
7.000000 inch 8.026005 inch scale

% get rgb color table
currentfile rgbmap readhexstring pop pop
ffffff
000000
ff0000
00ff00
ffff00
0000ff
ff00ff
00ffff
b3b3b3
d3d3d3
747474
a9a9a9
5f9ea0
325455
b9d5d6
729fff
c4d7ff
3e578c
6187d9
ffe4c4
ababab
dedede
606060
919191
fa1340
3bfa34
5151fb
7f7f7f
ffa500
ffc0cb
87ceeb
ffd700
70db93
f0e68c
ee82ee
d7d7d7
d6d6d6
d4d4d4
d3d3d3
d2d2d2
d0d0d0
cfcfcf
cdcdcd
cccccc
cbcbcb
c9c9c9
c8c8c8
c6c6c6
c5c5c5
c4c4c4
c2c2c2
c1c1c1
bfbfbf
bebebe
bdbdbd
bbbbbb
bababa
b8b8b8
b7b7b7
b6b6b6
b4b4b4
b3b3b3
b1b1b1
b0b0b0
afafaf
adadad
acacac
aaaaaa
a9a9a9
a8a8a8
a6a6a6
a5a5a5
a4a4a4
a2a2a2
a1a1a1
9f9f9f
9e9e9e
9d9d9d
9b9b9b
9a9a9a
989898
979797
969696
949494
939393
919191
909090
8f8f8f
8d8d8d
8c8c8c
8a8a8a
898989
888888
868686
858585
838383
828282
818181
7e7e7e
7c7c7c
7b7b7b
7a7a7a
787878
777777
767676
747474
737373
717171
6f6f6f
6d6d6d
6c6c6c
6a6a6a
696969
686868
666666
656565
636363
626262
616161
5f5f5f
5e5e5e
5c5c5c
5b5b5b
5a5a5a
585858
575757
555555
545454
535353
515151
505050
4e4e4e
73bdb0
ffd100
8a00ff
999999
ffff00
333333
444444
add8e6
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000
000000


drawcolorimage
ff01a6010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001071c
2501031c2501031c3a01031c3a01031c3301961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c
000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001
381f0001031c000131200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000113180101
0d180001031c00010c1d0101061d01010b1d0001031c0001211e0101141e0001031c0001051f02011e1f02010d1f0001031c0001212001010d200001961c00010001071c00011318
01010318010107180001031c00010c1d0101061d01010b1d0001031c0001211e0101141e0001031c0001041f0101001f01011e1f01010d1f0001031c0001212001010d200001961c
00010001071c00011918010107180001031c0001151d01010b1d0001031c0001381e0001031c0001041f0101211f01010d1f0001031c000131200001961c00010001071c00010418
04010018010101180101011802010218040105180001031c0001031d0101011d0101011d0201031d0401011d0301051d0001031c0001031e0401011e0401021e0301021e0301021e
0201031e0301021e0301051e0001031c0001041f0101041f0301011f0401011f0101001f0101011f0101011f0101021f0101031f0301051f0001031c000103200401022003010220
03010120010101200101012002010320030105200001961c00010001071c000103180101011801010018010101180101021801010318010107180001031c0001031d0101011d0101
021d0101021d0101011d0101001d0101011d0101041d0001031c0001031e0101011e0101001e0101011e0101001e0101011e0101001e0101011e0101021e0101021e0101011e0101
001e0101011e0101041e0001031c0001031f0301021f0101011f0101001f0101011f0101001f0501001f0101011f0101021f0101061f0101041f0001031c00010320010101200101
002001010120010104200101002001010120010102200101022001010120010104200001961c00010001071c00010318010101180101001801010118010102180101031801010718
0001031c0001031d0101011d0101021d0101021d0101011d0101001d0501041d0001031c0001031e0101011e0101001e0101041e0501001e0101061e0101031e0101031e0501041e
0001031c0001041f0101031f0101011f0101001f0101041f0501001f0101011f0101021f0101031f0401041f0001031c000103200101012001010020010101200101012004010120
0301032001010320010107200001961c00010001071c000103180101011801010018010101180101021801010318010107180001031c0001031d0501021d0101021d0101011d0101
001d0101081d0001031c0001031e0101011e0101001e0101041e0101041e0101061e0101051e0101011e0101081e0001031c0001041f0101031f0101011f0101001f0101041f0101
011f0101001f0101011f0101021f0101021f0101011f0101041f0001031c000103200101012001010020010101200101002001010120010101200301032001010520010105200001
961c00010001071c000104180401001801010118010102180101031801010018010104180001031c0001031d0501021d0101021d0101011d0101001d0101011d0101041d0001031c
0001031e0401011e0101041e0101011e0101001e0101011e0101021e0101021e0101011e0101001e0101011e0101041e0001031c0001041f0101031f0101011f0101001f0101041f
0101011f0101001f0101011f0101021f0101021f0101011f0101041f0001031c00010320010101200101002001010120010100200101012001010020010101200101022001010220
01010120010104200001961c00010001071c00010718010101180401001805010218020105180001031c0001041d0001011d0001011d0501011d0401011d0301051d0001031c0001
031e0101041e0101051e0301021e0301011e0501011e0301021e0301051e0001031c0001041f0101041f0301011f0101041f0101011f0101011f0401001f0501011f0401041f0001
031c0001032001010120010101200301022004010020010101200101002005010120030105200001961c00010001071c00010718010119180001031c0001231d0001031c0001031e
0101321e0001031c0001381f0001031c000131200001961c00010001071c00010718010119180001031c0001231d0001031c0001031e0101321e0001031c0001381f0001031c0001
31200001961c00010001071c000123180001031c0001231d0001031c0001381e0001031c0001381f0001031c000131200001961c00010001071c000123180001031c0001231d0001
031c0001381e0001031c0001381f0001031c000131200001961c00010001071c2501031c2501031c3a01031c3a01031c3301961c00010001ff1ca41c00010001ff1ca41c00010001
ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001031cff019101031c0007000100070001000700010007031c
00010001031c0001c6000501c2000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001
031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001
031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c
0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001
ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f00
0001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001
031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c
0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001
031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c
00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001
031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001
c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001
ff008f000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001
031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac700
0001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c00014f001501c30015014f000001
031c000104070001031c00010001031c00014b00040114000401b9000501140003014b000001031c0607031c00010001031c0001480003011d0003015700001a580004011d000201
48000001031c000104070001031c00010001031c000146000201240002015400001a550003012400010146000001031c0607031c00010001031c000144000201290002015100001a
520003012900010144000001031c000104070001031c00010001031c0001420002012e0001014f00001a500002012e00010142000001031c0607031c00010001031c000140000201
320001019d0002013200010140000001031c000104070001031c00010001031c00013f0001013600010199000201360000013f000001031c0607031c00010001031c00013d000201
3900010195000201390001013d000001031c000104070001031c00010001031c00013c0001013d000101910002013d0000013c000001031c0607031c00010001031c00013b000101
400001014500001a46000201400000013b000001031c000104070001031c00010001031c00013a000101430001014300001a44000201430000013a000001031c0607031c00010001
031c000139000101460000014200001a430001014600000139000001031c000104070001031c00010001031c000138000101480001014000001a410002014800000138000001031c
0607031c00010001031c0001370001014b0001017f0002014b00000137000001031c000104070001031c00010001031c0001360001014e0000017d0001014e00000136000001031c
0607031c00010001031c000135000101500000017b0001015000000135000001031c000104070001031c00010001031c00013500000152000101770002015100000135000001031c
0607031c00010001031c000134000101540000013900001a3a0001015400000134000001031c000104070001031c00010001031c000133000101560000013800001a390001015600
000133000001031c0607031c00010001031c000133000001580001013600001a370002015700000133000001031c000104070001031c00010001031c0001320001015a0000013500
001a360001015a00000132000001031c0607031c00010001031c0001320000015c0000016b0001015b00000132000001031c000104070001031c00010001031c0001310001015d00
0001690001015d00000131000001031c0607031c00010001031c0001310000015f000001670001015e00000131000001031c000104070001031c00010001031c0001300001016000
0001650001016000000130000001031c0607031c00010001031c000130000001620000013000001a310001016100000130000001031c000104070001031c00010001031c00012f00
0101630000012f00001a30000101630000012f000001031c0607031c00010001031c00012f000001650000012e00001a2f000101640000012f000001031c000104070001031c00010001
031c00012f000001660000012d00001a2e000101650000012f000001031c0607031c00010001031c00012e000101670000015b000101670000012e000001031c000104070001031c
00010001031c00012e0000016900000159000101680000012e000001031c0607031c00010001031c00012e0000016a00000157000101690000012e000001031c000104070001031c
00010001031c00012e0000016b000001550001016a0000012e000001031c0607031c00010001031c00012d0001016c0000012800001a290001016c0000012d000001031c00010407
0001031c00010001031c00012d0000016e0000012700001a280001016d0000012d000001031c0607031c00010001031c00012d0000016f0000012600001a270001016e0000012d00
0001031c000104070001031c00010001031c00012d000001700000012500001a260001016f0000012d000001031c0607031c00010001031c00012d000001710000014b0001017000
00012d000001031c000104070001031c00010001031c00012d000001710000014b000001710000012d000001031c0607031c00010001031c00012d00000172000001490001017100
00012d000001031c000104070001031c00010001031c00012d0000017300000147000101720000012d000001031c0607031c00010001031c00012d000001740000012100001a2200
0101730000012d000001031c000104070001031c00010001031c00012d000001750000012000001a21000101740000012d000001031c0607031c00010001031c00012d0000017500
00012000001a21000001750000012d000001031c000104070001031c00010001031c00012d000001760000011f00001a20000101750000012d000001031c0607031c00010001031c
00012d000001770000013f000101760000012d000001031c000104070001031c00010001031c00012d000001770000013f000001770000012d000001031c0607031c00010001031c
00012d000001780000011f0000010700030110000101770000012d000001031c000104070001031c00010001031c00012d000001790000011d000001000000010600000112000101
780000012d000001031c0607031c00010001031c00012d0000017a0000011b00001a000100000001060002010f000101790000012d000001031c000104070001031c00010001031c
00012d0000017a0000011b00001a00010000000102000001050000010e0000017a0000012d000001031c0607031c00010001031c00012d0000017b0000011a00001a000100000001
0100020101000001010000010d0001017a0000012d000001031c000104070001031c00010001031c00012d0000017c0000011900001a0000000103000001030001010d0001017b00
00012d000001031c0607031c00010001031c00012d0000017c00000119000501150000017c0000012d000001031c000104070001031c00010001031c00012e0000017c0000013300
01017b0001012d000001031c0607031c00010001031c00012e0000017c000001330000017c0000012e000001031c000104070001031c00010001031c00012e0000017d0000013100
01017c0000012e000001031c0607031c00010001031c00012e0000017e0000011600001a170001017d0000012e000001031c000104070001031c00010001031c00012e0000017e00
00011600001a170000017e0000012e000001031c0607031c00010001031c00012f0000017e0000011500001a160001017d0001012e000001031c000104070001031c00010001031c
00012f0000017e0000011500001a160000017e0000012f000001031c0607031c00010001031c00012f0000017f0000012b0001017e0000012f000001031c000104070001031c00010001
031c00012f0000017f0000012b0000017f0000012f000001031c0607031c00010001031c0001300000017f000001290001017e0001012f000001031c000104070001031c00010001
031c0001300000017f000001290000017f00000130000001031c0607031c00010001031c000130000001800000011200001a130001017f00000130000001031c000104070001031c
00010001031c0001310000017f0000011200001a130000017f00010130000001031c0607031c00010001031c000131000001800000011100001a120001017f00000131000001031c
000104070001031c00010001031c000131000001800000011100001a120000018000000131000001031c0607031c00010001031c00013200000180000001230001017f0001013100
0001031c000104070001031c00010001031c00013200000180000001230000018000000132000001031c0607031c00010001031c00013300000180000001210001017f0001013200
0001031c000104070001031c00010001031c00013300000180000001210000018000000133000001031c0607031c00010001031c000134000001800000010e00001a0f0001017f00
010133000001031c000104070001031c00010001031c000134000001800000010e00001a0f0000018000000134000001031c0607031c00010001031c000135000001800000010d00
001a0e0001017f00010134000001031c000104070001031c00010001031c000135000001800000010d00001a0e0000018000000135000001031c0607031c00010001031c00013600
0001800000011b0001017f00010135000001031c000104070001031c00010001031c000136000001800000011b0000018000000136000001031c0607031c00010001031c00013700
00017f0000011b0000017f00010136000001031c000104070001031c00010001031c00013700000180000001190001017f00000137000001031c0607031c00010001031c00013800
00017f0000010b00001a0c0000017f00010137000001031c000104070001031c00010001031c000138000001800000010a00001a0b0001017f00000138000001031c0607031c00010001
031c0001390000017f0000010a00001a0b0000017f00010138000001031c000104070001031c00010001031c00013a0000017e0000010a00001a0b0000017e00010139000001031c
0607031c00010001031c00013a0000017f000001150001017e0000013a000001031c000104070001031c00010001031c00013b0000017e000001150000017e0001013a000001031c
0607031c00010001031c00013b0000017e000001150000017e0000013b000001031c000104070001031c00010001031c00013c0000017e000001130001017d0001013b000001031c
0607031c00010001031c00013d0000017d0000010800001a090000017d0001013c000001031c000104070001031c00010001031c00013e0000017d0000010700001a080001017c00
01013d000001031c0607031c00010001031c00013e0000017d0000010700001a080000017d0000013e000001031c000104070001031c00010001031c00013f0000017c0000010700
001a080000017c0001013e000001031c0607031c00010001031c0001400000017b000001110000017b0001013f000001031c000104070001031c00010001031c0001410000017b00
00010f0001017a00010140000001031c0607031c00010001031c0001410000017b0000010f0000017b00000141000001031c000104070001031c00010001031c0001420000017a00
00010f0000017a00010141000001031c0607031c00010001031c0001430000017a0000010500001a060001017900010142000001031c000104070001031c00010001031c00014400
0001790000010500001a060000017900010143000001031c0607031c00010001031c000145000001780000010500001a060000017800010144000001031c000104070001031c00010001
031c000146000001780000010400001a050001017700010145000001031c0607031c00010001031c000147000001770000010b0000017700010146000001031c000104070001031c
00010001031c000148000001760000010b0000017600010147000001031c0607031c00010001031c000149000001750000010b0000017500010148000001031c000104070001031c
00010001031c00014a00000175000001090001017400010149000001031c0607031c00010001031c00014b000001740000010300001a04000001740001014a000001031c00010407
0001031c00010001031c00014c000001730000010300001a04000001730001014b000001031c0607031c00010001031c00014d000001720000010300001a04000001720001014c00
0001031c000104070001031c00010001031c00014e000001720000010200001a03000101710001014d000001031c0607031c00010001031c00014f00000171000001070000017100
01014e000001031c000104070001031c00010001031c0001500000017000000107000001700001014f000001031c0607031c00010001031c0001510000016f000001070000016f00
010150000001031c000104070001031c00010001031c0001520000016e000001070000016e00010151000001031c0607031c00010001031c0001530000016e0000010100001a0200
01016d00010152000001031c000104070001031c00010001031c0001540001016c0000010100001a020000016c00020153000001031c0607031c00010001031c0001560000016b00
00010100001a020000016b00010155000001031c000104070001031c00010001031c0001570000016a0000010100001a020000016a00010156000001031c0607031c00010001031c
00015800000169000001050000016900010157000001031c000104070001031c00010001031c00015900010168000001030001016700020158000001031c0607031c00010001031c
00015b0000016700000103000001670001015a000001031c000104070001031c00010001031c00015c0001016500000103000001650002015b000001031c0607031c00010001031c
00015e000001640000010000001a01000001640001015d000001031c000104070001031c00010001031c00015f000001630000010000001a01000001630001015e000001031c0607
031c00010001031c000160000101610000010000001a01000001610002015f000001031c000104070001031c00010001031c00016200000161000001001a00000101600001016100
0001031c0607031c00010001031c0001630001015f000001010000015f00020162000001031c000104070001031c00010001031c0001650001015d000001010000015d0002016400
0001031c0607031c00010001031c0001670000015c000001010000015c00010166000001031c000104070001031c00010001031c0001680001015a000001010000015a0002016700
0001031c0607031c00010001031c00016a00010158000001001a000000015800020169000001031c000104070001031c00010001031c00016c00010156000001001a000000015600
02016b000001031c0607031c00010001031c00016e00010154000001001a00000001540002016d000001031c000104070001031c00010001031c00017000010152000001001a0000
0001520002016f000001031c0607031c00010001031c000172000101510002015000020171000001031c000104070001031c00010001031c0001740001014f0001014f0002017300
0001031c0607031c00010001031c0001760001014d0001014d00020175000001031c000104070001031c00010001031c0001780001014b0001014b00020177000001031c0607031c
00010001031c00017a0001014900001a00014900020179000001031c000104070001031c00010001031c00017c0002014600001a0001460003017b000001031c0607031c00010001
031c00017f0001014400001a0001440002017e000001031c000104070001031c00010001031c0001810002014100001a00014100030180000001031c0607031c00010001031c0001
840002013e0001013e00030183000001031c000104070001031c00010001031c0001870001013c0001013c00020186000001031c0607031c00010001031c00018900030138000101
3800040188000001031c000104070001031c00010001031c00018d00020135000101350003018c000001031c0607031c00010001031c0001900002013200001a0001320003018f00
0001031c000104070001031c00010001031c0001080000016200000107000301190003012e00001a0001020000012a000401320000010700030152000001031c0607031c00010001
031c01010600010159000001060000010000000106000001200003012a00001a01010000000100000001250004013200000101000001000000010600000155000001031c00010407
0001031c00010001031c01010700000159000001060000010000000106000201220004012500001a0001000001010000000120000501360000010100000100000001060002015300
0001031c0607031c00010001031c01010100030101000001590000010100030100000001000000010200000105000001260004012000010100000101000000011b0005013b000001
0100000100000001020000010500000152000001031c000104070001031c00010001031c0101070000015900000106000001000000010100020101000001010000012b0005011a00
010100000101000000011500060140000001010000010000000101000201010000010100000152000001031c0607031c00010001031c010106000201580000010700000103000001
03000101320008011100010100000001000000010d0009014600000102000001030000010300010153000001031c000104070001031c00010001031c0101021a0300031a0300031a
0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a00010200031a0300031a0300031a0300031a0300031a0300031a0300031a0300
031a0300031a0300031a00000201031a0301031a0501011a0301031a0301031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a
00010200031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a0300031a03000001031c0607031c00010001031c0001b3002701
b3000001031c000104070001031c00010001031c0001aa0009011100001a000112000801aa000001031c0607031c00010001031c0001a40006011a00001a00011b000501a4000001
031c000104070001031c00010001031c00019f0005012000001a0001210004019f000001031c0607031c00010001031c00019a00050125000101260004019a000001031c00010407
0001031c00010001031c0001960004012a0001012b00030196000001031c0607031c00010001031c0001920004012e0001012f00030192000001031c000104070001031c00010001
031c00018f00030132000101330002018f000001031c0607031c00010001031c00018c0003013500001a0001360002018c000001031c000104070001031c00010001031c00018800
04013800001a00013900030188000001031c0607031c00010001031c0001860002013c00001a00013d00010186000001031c000104070001031c00010001031c0001830003013e00
001a00013f00020183000001031c0607031c00010001031c000180000301410001014200020180000001031c000104070001031c00010001031c00017e0002014400010145000101
7e000001031c0607031c00010001031c00017b00030146000101470002017b000001031c000104070001031c00010001031c000179000201490001014a00010179000001031c0607
031c00010001031c0001770002014b00001a00014c00010177000001031c000104070001031c00010001031c0001750002014d00001a00014e00010175000001031c0607031c00010001
031c0001730002014f00001a00015000010173000001031c000104070001031c00010001031c00017100020150000001001a000000015100010171000001031c0607031c00010001
031c00016f0002015200000101000001530001016f000001031c000104070001031c00010001031c00016d0002015400000101000001550001016d000001031c0607031c00010001
031c00016b0002015600000101000001570001016b000001031c000104070001031c00010001031c00016900020158000001010000015900010169000001031c0607031c00010001
031c0001670002015a000001001a000000015b00010167000001031c000104070001031c00010001031c0001660001015c000001001a000000015d00000166000001031c0607031c
00010001031c0001640002015d000001001a000000015e00010164000001031c000104070001031c00010001031c0001620002015f000001001a000000016000010162000001031c
0607031c00010001031c00016100010160000101020000016100000161000001031c000104070001031c00010001031c00015f0002016100000103000001620001015f000001031c
0607031c00010001031c00015e0001016300000103000001640000015e000001031c000104070001031c00010001031c00015d0001016400000103000001650000015d000001031c
0607031c00010001031c00015b000201650000010000001a01000001660001015b000001031c000104070001031c00010001031c00015a000101670000010000001a010000016800
00015a000001031c0607031c00010001031c000158000201670001010000001a020000016800010158000001031c000104070001031c00010001031c000157000101690000010100
001a020000016a00000157000001031c0607031c00010001031c0001560001016a000001050000016b00000156000001031c000104070001031c00010001031c0001550001016b00
0001050000016c00000155000001031c0607031c00010001031c0001530002016c000001050000016d00010153000001031c000104070001031c00010001031c0001520001016d00
0101060000016e00000152000001031c0607031c00010001031c0001510001016e0000010200001a030000016f00000151000001031c000104070001031c00010001031c00015000
01016f0000010200001a030000017000000150000001031c0607031c00010001031c00014f000101700000010200001a03000001710000014f000001031c000104070001031c00010001
031c00014e000101710000010200001a03000001720000014e000001031c0607031c00010001031c00014d0001017100010108000001720000014d000001031c000104070001031c
00010001031c00014c0001017200000109000001730000014c000001031c0607031c00010001031c00014b0001017300000109000001740000014b000001031c000104070001031c
00010001031c00014a0001017400000109000001750000014a000001031c0607031c00010001031c000149000101740001010300001a050000017500000149000001031c00010407
0001031c00010001031c000148000101750000010400001a050000017600000148000001031c0607031c00010001031c000147000101760000010400001a05000001770000014700
0001031c000104070001031c00010001031c000146000101770000010400001a050000017800000146000001031c0607031c00010001031c000145000101770001010c0000017800
000145000001031c000104070001031c00010001031c000144000101780000010d0000017900000144000001031c0607031c00010001031c000143000101790000010d0000017a00
000143000001031c000104070001031c00010001031c000142000101790001010e0000017a00000142000001031c0607031c00010001031c0001410001017a0000010600001a0700
00017b00000141000001031c000104070001031c00010001031c0001410000017b0000010600001a070000017b00000141000001031c0607031c00010001031c0001400001017a00
01010600001a080000017b00000140000001031c000104070001031c00010001031c00013f0001017b0000010700001a080000017c0000013f000001031c0607031c00010001031c
00013e0001017c000001110000017d0000013e000001031c000104070001031c00010001031c00013e0000017d000001110000017d0000013e000001031c0607031c00010001031c
00013d0001017c000101120000017d0000013d000001031c000104070001031c00010001031c00013c0001017d000001130000017e0000013c000001031c0607031c00010001031c
00013b0001017d0001010800001a0a0000017e0000013b000001031c000104070001031c00010001031c00013b0000017e0000010900001a0a0000017e0000013b000001031c0607
031c00010001031c00013a0001017e0000010900001a0a0000017f0000013a000001031c000104070001031c00010001031c00013a0000017e0001010900001a0b0000017e000001
3a000001031c0607031c00010001031c0001390001017e000001170000017f00000139000001031c000104070001031c00010001031c0001380001017f0000011700000180000001
38000001031c0607031c00010001031c0001380000017f000101180000017f00000138000001031c000104070001031c00010001031c0001370001017f0000011900000180000001
37000001031c0607031c00010001031c0001370000017f0001010b00001a0d0000017f00000137000001031c000104070001031c00010001031c0001360001017f0000010c00001a
0d0000018000000136000001031c0607031c00010001031c000136000001800000010c00001a0d0000018000000136000001031c000104070001031c00010001031c000135000101
7f0001010c00001a0e0000018000000135000001031c0607031c00010001031c000135000001800000011d0000018000000135000001031c000104070001031c00010001031c0001
340001017f0001011e0000018000000134000001031c0607031c00010001031c000134000001800000011f0000018000000134000001031c000104070001031c00010001031c0001
330001017f000101200000018000000133000001031c0607031c00010001031c000133000001800000010f00001a100000018000000133000001031c000104070001031c00010001
031c0001320001017f0001010f00001a110000018000000132000001031c0607031c00010001031c000132000001800000011000001a110000018000000132000001031c00010407
0001031c00010001031c0001310001017f0001011000001a120000018000000131000001031c0607031c00010001031c00013100000180000001250000018000000131000001031c
000104070001031c00010001031c0001310000017f000101260000017f00000131000001031c0607031c00010001031c0001300001017f000001270000018000000130000001031c
000104070001031c00010001031c0001300000017f000101280000017f00000130000001031c0607031c00010001031c0001300000017f0000011300001a140000017f0000013000
0001031c000104070001031c00010001031c00012f0001017e0001011300001a150000017f0000012f000001031c0607031c00010001031c00012f0000017f0000011400001a1500
00017f0000012f000001031c000104070001031c00010001031c00012f0000017e0001011400001a160000017e0000012f000001031c0607031c00010001031c00012f0000017e00
00012d0000017e0000012f000001031c000104070001031c00010001031c00012e0001017d0001012e0000017e0000012e000001031c0607031c00010001031c00012e0000017e00
00011d00000107000301040000017e0000012e000001031c000104070001031c00010001031c00012e0000017d0001011c0000010000000106000001080000017d0000012e000001
031c0607031c00010001031c00012e0000017c0001011700001a040000010000000106000201070000017c0000012e000001031c000104070001031c00010001031c00012e000001
7c0000011800001a030100000001000000010200000105000001060000017c0000012e000001031c0607031c00010001031c00012d0001017b0001011800001a0400000100000001
010002010100000101000001070000017c0000012d000001031c000104070001031c00010001031c00012d0000017c0000011900001a050000010300000103000101080000017c00
00012d000001031c0607031c00010001031c00012d0000017b00010119000501160000017b0000012d000001031c000104070001031c00010001031c00012d0000017a0001013800
00017a0000012d000001031c0607031c00010001031c00012d0000017a000001390000017a0000012d000001031c000104070001031c00010001031c00012d000001790001013a00
0001790000012d000001031c0607031c00010001031c00012d000001780001011c00001a1e000001780000012d000001031c000104070001031c00010001031c00012d0000017700
01011d00001a1f000001770000012d000001031c0607031c00010001031c00012d000001770000011e00001a1f000001770000012d000001031c000104070001031c00010001031c
00012d000001760001011e00001a20000001760000012d000001031c0607031c00010001031c00012d0000017500010142000001750000012d000001031c000104070001031c00010001
031c00012d0000017500000143000001750000012d000001031c0607031c00010001031c00012d0000017400010144000001740000012d000001031c000104070001031c00010001
031c00012d0000017300010146000001730000012d000001031c0607031c00010001031c00012d000001720001012200001a24000001720000012d000001031c000104070001031c
00010001031c00012d000001710001012300001a25000001710000012d000001031c0607031c00010001031c00012d000001710000012400001a25000001710000012d000001031c
000104070001031c00010001031c00012d000001700001012400001a26000001700000012d000001031c0607031c00010001031c00012d0000016f0001014e0000016f0000012d00
0001031c000104070001031c00010001031c00012d0000016e000101500000016e0000012d000001031c0607031c00010001031c00012d0000016d000101520000016d0000012d00
0001031c000104070001031c00010001031c00012e0000016b000101540000016b0001012d000001031c0607031c00010001031c00012e0000016a0001012900001a2b0000016a00
00012e000001031c000104070001031c00010001031c00012e000001690001012a00001a2c000001690000012e000001031c0607031c00010001031c00012e000001680001012b00
001a2d000001680000012e000001031c000104070001031c00010001031c00012f000001660001012c00001a2e000001660001012e000001031c0607031c00010001031c00012f00
0001650001015e000001650000012f000001031c000104070001031c00010001031c00012f0000016400010160000001640000012f000001031c0607031c00010001031c00013000
00016200010162000001620001012f000001031c000104070001031c00010001031c00013000000161000101640000016100000130000001031c0607031c00010001031c00013100
00015f0001013100001a330000015f00010130000001031c000104070001031c00010001031c0001310000015e0001013200001a340000015e00000131000001031c0607031c00010001
031c0001320000015c0001013300001a350000015c00010131000001031c000104070001031c00010001031c0001320000015b0001013400001a360000015b00000132000001031c
0607031c00010001031c000133000001590001016e0000015900010132000001031c000104070001031c00010001031c00013300000157000201700001015700000133000001031c
0607031c00010001031c00013400000155000101740000015500010133000001031c000104070001031c00010001031c00013500000153000101760000015300010134000001031c
0607031c00010001031c000135000001510002013a00001a3c0001015100000135000001031c000104070001031c00010001031c0001360000014f0001013c00001a3e0000014f00
010135000001031c0607031c00010001031c0001370000014d0001013d00001a3f0000014d00010136000001031c000104070001031c00010001031c0001380000014a0002013e00
001a400001014a00010137000001031c0607031c00010001031c00013900000147000201840001014700010138000001031c000104070001031c00010001031c00013a0000014500
0101880000014500010139000001031c0607031c00010001031c00013b000001420002018a000101420001013a000001031c000104070001031c00010001031c00013c0000013f00
02018e0001013f0001013b000001031c0607031c00010001031c00013d0000013c0002014700001a490001013c0001013c000001031c000104070001031c00010001031c00013e00
0101380002014900001a4b000101380002013d000001031c0607031c00010001031c000140000001350002014b00001a4d000101350001013f000001031c000104070001031c00010001
031c000141000101310002014d00001a4f0001013100020140000001031c0607031c00010001031c0001430001012d000201a20001012d00020142000001031c000104070001031c
00010001031c00014500010128000301a60002012800020144000001031c0607031c00010001031c00014700010123000301ac0002012300020146000001031c000104070001031c
00010001031c0001490002011c000401b20003011c00030148000001031c0607031c00010001031c00014c000301130005015b00001a5d000401130004014b000001031c00010407
0001031c00010001031c0001500014016000001a620014014f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001a
c7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff008f000001031c0001
04070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607
031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001
031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c
0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001
031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff00
8f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001a
c7000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001
031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607
031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001c600001ac7000001031c00010407
0001031c00010001031c0001c600001ac7000001031c0607031c00010001031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001
031c0001ff008f000001031c000104070001031c00010001031c0001ff008f000001031c0607031c00010001031c0001c600001ac7000001031c000104070001031c00010001031c
0001c600001ac7000001031c0607031c00010001031c0001c600001a05000001c0000001031c000104070001031c00010001031c0001c600001a04000101c0000001031c0607031c
00010001031c0001cd000001c0000001031c000104070001031c00010001031c0001c700030101000001c0000001031c0607031c00010001031c0001cd000001c0000001031c0001
04070001031c00010001031c0001cc000201bf000001031c0607031c00010001031cff019101031c0001000700010007000100070001031c00010001ff1ca41c00010001ff1ca41c
00010001ff1ca41c00010001ff1ca41c00010001031c0019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019
000100190001001900010019000100190001001900010019000100190001001900010e1c00010001031c0001ff1990190e1c00010001031cff19901900010e1c00010001031c0001
ff198e19000100190e1c00010001031cff19901900010e1c00010001031c0001ff1990190e1c00010001031c00190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001
00190001001900010019000100190001001900010019000100190001001900010019000100190001001900010019000100190001001900010e1c00010001ff1ca41c00010001ff1c
a41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001071c9701031c9701681c00010001071c0001
95210001031c000195220001681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c
000195220001681c00010001071c00015c21010136210001031c00015c22010136220001681c00010001071c00015c21010136210001031c00015c22010136220001681c00010001
071c00015c21010136210001031c00015c22010136220001681c00010001071c00013521010101210101012103010221030102210301012104010221040136210001031c00013522
010101220101012203010222030102220301012204010222040136220001681c00010001071c00013521010101210101002101010121010100210101012101010021010101210101
0021010101210101002101010121010136210001031c0001352201010122010100220101012201010022010101220101002201010122010100220101012201010022010101220101
36220001681c00010001071c000136210301012101010421010101210101002101010121010100210101042101010121010136210001031c00013522010101220101002201010422
010101220101002201010122010100220101042201010122010136220001681c00010001071c00013621030101210101042101010121010100210101012101010021010104210101
0121010136210001031c00013522010101220101002201010422010101220101002201010122010100220101042201010122010136220001681c00010001071c0001352101010121
010100210101012101010021010101210101002101010121010100210101042101010121010136210001031c00013622040100220101012201010022010101220101002201010122
010100220101042201010122010136220001681c00010001071c00013521010101210101012103010221030102210301012101010521040136210001031c00013922010101220301
0222030102220301012201010522040136220001681c00010001071c000195210001031c0001352201010122010159220001681c00010001071c000195210001031c000136220301
5a220001681c00010001071c000195210001031c000195220001681c00010001071c000195210001031c000195220001681c00010001071c9701031c9701681c00010001ff1ca41c
00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c00010001ff1ca41c0001ff01a601
pop pop setmatrix

/#copies 1 def
showpage grestore
%%Trailer