From: Matthew Fernandez Date: Sun, 22 Jan 2023 00:41:42 +0000 (-0800) Subject: remove legacy Lefty docs X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b86f5de6519db6144a4aaee84a219c60ae66a97e;p=graphviz remove legacy Lefty docs Lefty was removed in b2f287ca315dd5bf689d9ce2ca71dbfe63fb8a61. --- diff --git a/doc/index.html b/doc/index.html index b157517bb..679ae2bf1 100644 --- a/doc/index.html +++ b/doc/index.html @@ -19,7 +19,6 @@ diff --git a/doc/lefty/Makefile b/doc/lefty/Makefile deleted file mode 100644 index 5f59b348d..000000000 --- a/doc/lefty/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -%.dvi: %.tex - latex $< - -%.ps : %.dvi - dvips $< -o $@ - -%.ps : %.dot - dot -Tps $< -o $@ - -.PHONY: all -all: lefty.bbl lefty.dvi - -lefty.bbl: - latex lefty.tex - bibtex lefty - rm lefty.dvi - -.PHONY: clean -clean: - rm -f *.aux *.log *.bbl *.blg *.ps *.dvi diff --git a/doc/lefty/figs/Makefile b/doc/lefty/figs/Makefile deleted file mode 100644 index 74abaa2dc..000000000 --- a/doc/lefty/figs/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -%.ps: %.xwd.gz - gunzip < $< | xwdtops -bw > $@ - -%.ps: %.ppm.gz - gunzip < $< | ppmtopgm | pnmtops > $@ - -%.ps: %.xwd - xwdtops -bw < $< > $@ - -%.ps: %.ppm - pnmtops -bw < $< > $@ - -%.ps: %.dot - dot -Tps $< > $@ - -%.ps: %.lefty - lefty -x -el 2 -ps $@ $< - -PSS = fig2tpa.ps fig2tpb.ps figboxinitial.ps figboxfinal.ps figfractalonea.ps figfractaloneb.ps figfractalmva.ps figfractalmvb.ps figfractaltracea.ps figfractaltraceb.ps figfractaltracec.ps figradixtree.ps figbigtree.ps figtria.ps figtrib.ps figdag.ps lefty.ps - -.PHONY: all -all: $(PSS) - -.PHONY: clean -clean: - rm -rf *.ps diff --git a/doc/lefty/figs/box.lefty b/doc/lefty/figs/box.lefty deleted file mode 100644 index 62ef000a6..000000000 --- a/doc/lefty/figs/box.lefty +++ /dev/null @@ -1,157 +0,0 @@ -load ('def.lefty'); -definit (); -# -# initialize window data -# -canvas = defcanvas; -wrect = [0 = ['x' = 0; 'y' = 0;]; 1 = ['x' = 400; 'y' = 500;];]; -setwidgetattr (canvas, ['window' = wrect;]); -# -# data structures -# -objarray = []; -objnum = 0; -# -# misc functions -# -min = function (a, b) { - if (a <= b) - return a; - return b; -}; -max = function (a, b) { - if (b <= a) - return a; - return b; -}; -rectof = function (p1, p2) { - return [ - 0 = ['x' = min (p1.x, p2.x); 'y' = min (p1.y, p2.y);]; - 1 = ['x' = max (p1.x, p2.x); 'y' = max (p1.y, p2.y);]; - ]; -}; -pointadd = function (p1, p2) { - return ['x' = p2.x + p1.x; 'y' = p2.y + p1.y;]; -}; -pointsub = function (p1, p2) { - return ['x' = p2.x - p1.x; 'y' = p2.y - p1.y;]; -}; -# -# rendering functions -# -drawbox = function (obj, color) { - box (canvas, obj, obj.rect, ['color' = color;]); -}; -redrawboxes = function () { - local i; - clear (canvas); - for (i = 0; i < objnum; i = i + 1) - drawbox (objarray[i], 1); -}; -redraw = function (canvas) { - redrawboxes (); -}; -# -# editing functions -# -new = function (rect) { - objarray[objnum] = [ - 'rect' = rect; - 'id' = objnum; - ]; - objnum = objnum + 1; - return objarray[objnum - 1]; -}; -reshape = function (obj, rect) { - obj.rect = rect; - return obj; -}; -move = function (obj, p) { - obj.rect[0] = pointadd (obj.rect[0], p); - obj.rect[1] = pointadd (obj.rect[1], p); - return obj; -}; -delete = function (obj) { - if (obj.id ~= objnum - 1) { - objarray[obj.id] = objarray[objnum - 1]; - objarray[obj.id].id = obj.id; - } - remove (objnum - 1, objarray); - objnum = objnum - 1; -}; -# -# user interface functions -# -# left mouse button creates new box -# middle button moves a box -# right button deletes a box -# -leftdown = function (data) { - if (data.obj ~= null) - return; - leftbox = new (rectof (data.pos, data.pos)); - drawbox (leftbox, 1); - setgfxattr (canvas, ['mode' = 'xor';]); -}; -leftmove = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - drawbox (leftbox, 1); -}; -leftup = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - setgfxattr (canvas, ['mode' = 'src';]); - drawbox (leftbox, 1); - remove ('leftbox'); -}; -middledown = function (data) { - if (data.obj == null) - return; - middlebox = data.obj; - middlepos = data.pos; - setgfxattr (canvas, ['mode' = 'xor';]); -}; -middlemove = function (data) { - if (~middlebox) - return; - drawbox (middlebox, 1); - clearpick (canvas, middlebox); - move (middlebox, pointsub (middlepos, data.pos)); - middlepos = data.pos; - drawbox (middlebox, 1); -}; -middleup = function (data) { - if (~middlebox) - return; - drawbox (middlebox, 1); - clearpick (canvas, middlebox); - move (middlebox, pointsub (middlepos, data.pos)); - setgfxattr (canvas, ['mode' = 'src';]); - drawbox (middlebox, 1); - remove ('middlepos'); - remove ('middlebox'); -}; -rightup = function (data) { - if (data.pobj == null) - return; - drawbox (data.obj, 0); - clearpick (canvas, data.obj); - delete (data.obj); -}; -dops = function () { - local s; - - s = ['x' = 8 * 300; 'y' = 10.5 * 300;]; - canvas = createwidget (-1, ['type' = 'ps'; 'size' = s;]); - setwidgetattr (canvas, ['window' = wrect;]); - redraw (canvas); - destroywidget (canvas); - canvas = defcanvas; -}; diff --git a/doc/lefty/figs/fig2tpa.lefty b/doc/lefty/figs/fig2tpa.lefty deleted file mode 100644 index b82209d5c..000000000 --- a/doc/lefty/figs/fig2tpa.lefty +++ /dev/null @@ -1,6 +0,0 @@ -load ('fractal.lefty'); -maxlevel = 4; -drawfractal (); -length = 350; -radius = 2 * length / sqrt (12); -dops (); diff --git a/doc/lefty/figs/fig2tpb.lefty b/doc/lefty/figs/fig2tpb.lefty deleted file mode 100644 index fb984eedb..000000000 --- a/doc/lefty/figs/fig2tpb.lefty +++ /dev/null @@ -1,49 +0,0 @@ -load ('tree.lefty'); -dist.x = 35; -dist.y = 60; -n0 = inode (['x' = 10; 'y' = 10;], 'A'); -n1 = inode (['x' = 10; 'y' = 10;], 'B'); -n2 = inode (['x' = 10; 'y' = 10;], 'C'); -n3 = inode (['x' = 10; 'y' = 10;], 'D'); -n4 = inode (['x' = 10; 'y' = 10;], 'E'); -n5 = inode (['x' = 10; 'y' = 10;], 'F'); -n6 = inode (['x' = 10; 'y' = 10;], 'G'); -n7 = inode (['x' = 10; 'y' = 10;], 'H'); -n8 = inode (['x' = 10; 'y' = 10;], 'I'); -n9 = inode (['x' = 10; 'y' = 10;], 'J'); -n10 = inode (['x' = 10; 'y' = 10;], 'K'); -n11 = inode (['x' = 10; 'y' = 10;], 'L'); -n12 = inode (['x' = 10; 'y' = 10;], 'M'); -n13 = inode (['x' = 10; 'y' = 10;], 'N'); -n14 = inode (['x' = 10; 'y' = 10;], 'O'); - -iedge (n0, n1); -iedge (n0, n2); -iedge (n1, n3); -iedge (n1, n4); -iedge (n2, n5); -iedge (n2, n6); -iedge (n3, n7); -iedge (n3, n8); -iedge (n5, n9); -iedge (n5, n10); -iedge (n6, n11); -iedge (n6, n12); -iedge (n9, n13); -iedge (n9, n14); -dops (); -remove ('n0'); -remove ('n1'); -remove ('n2'); -remove ('n3'); -remove ('n4'); -remove ('n5'); -remove ('n6'); -remove ('n7'); -remove ('n8'); -remove ('n9'); -remove ('n10'); -remove ('n11'); -remove ('n12'); -remove ('n13'); -remove ('n14'); diff --git a/doc/lefty/figs/figbigtree.lefty b/doc/lefty/figs/figbigtree.lefty deleted file mode 100644 index ee0421a54..000000000 --- a/doc/lefty/figs/figbigtree.lefty +++ /dev/null @@ -1,452 +0,0 @@ -load ('tree.lefty'); -inode1 = function (p, name) { - local i, nnum, size; - nnum = nodenum; - if (~name) - name = ""; - nodearray[nnum].ch = []; - nodearray[nnum].chn = 0; - nodearray[nnum].name = name; - size = nodesize (nodearray[nnum]); - nodearray[nnum].rect[0] = p; - nodearray[nnum].rect[1] = ['x' = p.x + size.x; 'y' = p.y + size.y;]; - nodenum = nodenum + 1; - if (~tree) { - tree = nodearray[nnum]; - tree.depth = 0; - } - return nodearray[nnum]; -}; -iedge1 = function (node1, node2) { - node1.ch[node1.chn] = node2; - node1.chn = node1.chn + 1; - node2.depth = node1.depth + 1; -}; -inode1 ([], null); -inode1 ([], null); -iedge1 (nodearray[0], nodearray[1]); -inode1 ([], null); -iedge1 (nodearray[1], nodearray[2]); -inode1 ([], null); -iedge1 (nodearray[2], nodearray[3]); -inode1 ([], null); -iedge1 (nodearray[3], nodearray[4]); -inode1 ([], null); -iedge1 (nodearray[3], nodearray[5]); -inode1 ([], null); -iedge1 (nodearray[2], nodearray[6]); -inode1 ([], null); -iedge1 (nodearray[6], nodearray[7]); -inode1 ([], null); -iedge1 (nodearray[7], nodearray[8]); -inode1 ([], null); -iedge1 (nodearray[8], nodearray[9]); -inode1 ([], null); -iedge1 (nodearray[8], nodearray[10]); -inode1 ([], null); -iedge1 (nodearray[10], nodearray[11]); -inode1 ([], null); -iedge1 (nodearray[10], nodearray[12]); -inode1 ([], null); -iedge1 (nodearray[12], nodearray[13]); -inode1 ([], null); -iedge1 (nodearray[12], nodearray[14]); -inode1 ([], null); -iedge1 (nodearray[7], nodearray[15]); -inode1 ([], null); -iedge1 (nodearray[15], nodearray[16]); -inode1 ([], null); -iedge1 (nodearray[15], nodearray[17]); -inode1 ([], null); -iedge1 (nodearray[6], nodearray[18]); -inode1 ([], null); -iedge1 (nodearray[18], nodearray[19]); -inode1 ([], null); -iedge1 (nodearray[19], nodearray[20]); -inode1 ([], null); -iedge1 (nodearray[20], nodearray[21]); -inode1 ([], null); -iedge1 (nodearray[21], nodearray[22]); -inode1 ([], null); -iedge1 (nodearray[22], nodearray[23]); -inode1 ([], null); -iedge1 (nodearray[22], nodearray[24]); -inode1 ([], null); -iedge1 (nodearray[24], nodearray[25]); -inode1 ([], null); -iedge1 (nodearray[24], nodearray[26]); -inode1 ([], null); -iedge1 (nodearray[21], nodearray[27]); -inode1 ([], null); -iedge1 (nodearray[20], nodearray[28]); -inode1 ([], null); -iedge1 (nodearray[19], nodearray[29]); -inode1 ([], null); -iedge1 (nodearray[29], nodearray[30]); -inode1 ([], null); -iedge1 (nodearray[29], nodearray[31]); -inode1 ([], null); -iedge1 (nodearray[18], nodearray[32]); -inode1 ([], null); -iedge1 (nodearray[32], nodearray[33]); -inode1 ([], null); -iedge1 (nodearray[33], nodearray[34]); -inode1 ([], null); -iedge1 (nodearray[33], nodearray[35]); -inode1 ([], null); -iedge1 (nodearray[32], nodearray[36]); -inode1 ([], null); -iedge1 (nodearray[36], nodearray[37]); -inode1 ([], null); -iedge1 (nodearray[37], nodearray[38]); -inode1 ([], null); -iedge1 (nodearray[38], nodearray[39]); -inode1 ([], null); -iedge1 (nodearray[39], nodearray[40]); -inode1 ([], null); -iedge1 (nodearray[40], nodearray[41]); -inode1 ([], null); -iedge1 (nodearray[40], nodearray[42]); -inode1 ([], null); -iedge1 (nodearray[39], nodearray[43]); -inode1 ([], null); -iedge1 (nodearray[38], nodearray[44]); -inode1 ([], null); -iedge1 (nodearray[37], nodearray[45]); -inode1 ([], null); -iedge1 (nodearray[45], nodearray[46]); -inode1 ([], null); -iedge1 (nodearray[45], nodearray[47]); -inode1 ([], null); -iedge1 (nodearray[47], nodearray[48]); -inode1 ([], null); -iedge1 (nodearray[48], nodearray[49]); -inode1 ([], null); -iedge1 (nodearray[48], nodearray[50]); -inode1 ([], null); -iedge1 (nodearray[47], nodearray[51]); -inode1 ([], null); -iedge1 (nodearray[36], nodearray[52]); -inode1 ([], null); -iedge1 (nodearray[52], nodearray[53]); -inode1 ([], null); -iedge1 (nodearray[53], nodearray[54]); -inode1 ([], null); -iedge1 (nodearray[53], nodearray[55]); -inode1 ([], null); -iedge1 (nodearray[52], nodearray[56]); -inode1 ([], null); -iedge1 (nodearray[56], nodearray[57]); -inode1 ([], null); -iedge1 (nodearray[56], nodearray[58]); -inode1 ([], null); -iedge1 (nodearray[1], nodearray[59]); -inode1 ([], null); -iedge1 (nodearray[59], nodearray[60]); -inode1 ([], null); -iedge1 (nodearray[60], nodearray[61]); -inode1 ([], null); -iedge1 (nodearray[61], nodearray[62]); -inode1 ([], null); -iedge1 (nodearray[62], nodearray[63]); -inode1 ([], null); -iedge1 (nodearray[63], nodearray[64]); -inode1 ([], null); -iedge1 (nodearray[63], nodearray[65]); -inode1 ([], null); -iedge1 (nodearray[62], nodearray[66]); -inode1 ([], null); -iedge1 (nodearray[66], nodearray[67]); -inode1 ([], null); -iedge1 (nodearray[67], nodearray[68]); -inode1 ([], null); -iedge1 (nodearray[67], nodearray[69]); -inode1 ([], null); -iedge1 (nodearray[66], nodearray[70]); -inode1 ([], null); -iedge1 (nodearray[70], nodearray[71]); -inode1 ([], null); -iedge1 (nodearray[70], nodearray[72]); -inode1 ([], null); -iedge1 (nodearray[72], nodearray[73]); -inode1 ([], null); -iedge1 (nodearray[73], nodearray[74]); -inode1 ([], null); -iedge1 (nodearray[74], nodearray[75]); -inode1 ([], null); -iedge1 (nodearray[74], nodearray[76]); -inode1 ([], null); -iedge1 (nodearray[73], nodearray[77]); -inode1 ([], null); -iedge1 (nodearray[72], nodearray[78]); -inode1 ([], null); -iedge1 (nodearray[78], nodearray[79]); -inode1 ([], null); -iedge1 (nodearray[78], nodearray[80]); -inode1 ([], null); -iedge1 (nodearray[61], nodearray[81]); -inode1 ([], null); -iedge1 (nodearray[81], nodearray[82]); -inode1 ([], null); -iedge1 (nodearray[82], nodearray[83]); -inode1 ([], null); -iedge1 (nodearray[82], nodearray[84]); -inode1 ([], null); -iedge1 (nodearray[84], nodearray[85]); -inode1 ([], null); -iedge1 (nodearray[84], nodearray[86]); -inode1 ([], null); -iedge1 (nodearray[81], nodearray[87]); -inode1 ([], null); -iedge1 (nodearray[87], nodearray[88]); -inode1 ([], null); -iedge1 (nodearray[88], nodearray[89]); -inode1 ([], null); -iedge1 (nodearray[89], nodearray[90]); -inode1 ([], null); -iedge1 (nodearray[90], nodearray[91]); -inode1 ([], null); -iedge1 (nodearray[90], nodearray[92]); -inode1 ([], null); -iedge1 (nodearray[92], nodearray[93]); -inode1 ([], null); -iedge1 (nodearray[92], nodearray[94]); -inode1 ([], null); -iedge1 (nodearray[94], nodearray[95]); -inode1 ([], null); -iedge1 (nodearray[94], nodearray[96]); -inode1 ([], null); -iedge1 (nodearray[89], nodearray[97]); -inode1 ([], null); -iedge1 (nodearray[97], nodearray[98]); -inode1 ([], null); -iedge1 (nodearray[98], nodearray[99]); -inode1 ([], null); -iedge1 (nodearray[99], nodearray[100]); -inode1 ([], null); -iedge1 (nodearray[99], nodearray[101]); -inode1 ([], null); -iedge1 (nodearray[98], nodearray[102]); -inode1 ([], null); -iedge1 (nodearray[97], nodearray[103]); -inode1 ([], null); -iedge1 (nodearray[103], nodearray[104]); -inode1 ([], null); -iedge1 (nodearray[103], nodearray[105]); -inode1 ([], null); -iedge1 (nodearray[88], nodearray[106]); -inode1 ([], null); -iedge1 (nodearray[106], nodearray[107]); -inode1 ([], null); -iedge1 (nodearray[106], nodearray[108]); -inode1 ([], null); -iedge1 (nodearray[108], nodearray[109]); -inode1 ([], null); -iedge1 (nodearray[108], nodearray[110]); -inode1 ([], null); -iedge1 (nodearray[87], nodearray[111]); -inode1 ([], null); -iedge1 (nodearray[111], nodearray[112]); -inode1 ([], null); -iedge1 (nodearray[111], nodearray[113]); -inode1 ([], null); -iedge1 (nodearray[60], nodearray[114]); -inode1 ([], null); -iedge1 (nodearray[114], nodearray[115]); -inode1 ([], null); -iedge1 (nodearray[115], nodearray[116]); -inode1 ([], null); -iedge1 (nodearray[116], nodearray[117]); -inode1 ([], null); -iedge1 (nodearray[116], nodearray[118]); -inode1 ([], null); -iedge1 (nodearray[115], nodearray[119]); -inode1 ([], null); -iedge1 (nodearray[119], nodearray[120]); -inode1 ([], null); -iedge1 (nodearray[119], nodearray[121]); -inode1 ([], null); -iedge1 (nodearray[114], nodearray[122]); -inode1 ([], null); -iedge1 (nodearray[122], nodearray[123]); -inode1 ([], null); -iedge1 (nodearray[122], nodearray[124]); -inode1 ([], null); -iedge1 (nodearray[59], nodearray[125]); -inode1 ([], null); -iedge1 (nodearray[125], nodearray[126]); -inode1 ([], null); -iedge1 (nodearray[126], nodearray[127]); -inode1 ([], null); -iedge1 (nodearray[127], nodearray[128]); -inode1 ([], null); -iedge1 (nodearray[128], nodearray[129]); -inode1 ([], null); -iedge1 (nodearray[128], nodearray[130]); -inode1 ([], null); -iedge1 (nodearray[130], nodearray[131]); -inode1 ([], null); -iedge1 (nodearray[130], nodearray[132]); -inode1 ([], null); -iedge1 (nodearray[127], nodearray[133]); -inode1 ([], null); -iedge1 (nodearray[133], nodearray[134]); -inode1 ([], null); -iedge1 (nodearray[133], nodearray[135]); -inode1 ([], null); -iedge1 (nodearray[126], nodearray[136]); -inode1 ([], null); -iedge1 (nodearray[136], nodearray[137]); -inode1 ([], null); -iedge1 (nodearray[137], nodearray[138]); -inode1 ([], null); -iedge1 (nodearray[137], nodearray[139]); -inode1 ([], null); -iedge1 (nodearray[136], nodearray[140]); -inode1 ([], null); -iedge1 (nodearray[125], nodearray[141]); -inode1 ([], null); -iedge1 (nodearray[141], nodearray[142]); -inode1 ([], null); -iedge1 (nodearray[141], nodearray[143]); -inode1 ([], null); -iedge1 (nodearray[143], nodearray[144]); -inode1 ([], null); -iedge1 (nodearray[143], nodearray[145]); -inode1 ([], null); -iedge1 (nodearray[0], nodearray[146]); -inode1 ([], null); -iedge1 (nodearray[146], nodearray[147]); -inode1 ([], null); -iedge1 (nodearray[147], nodearray[148]); -inode1 ([], null); -iedge1 (nodearray[148], nodearray[149]); -inode1 ([], null); -iedge1 (nodearray[149], nodearray[150]); -inode1 ([], null); -iedge1 (nodearray[149], nodearray[151]); -inode1 ([], null); -iedge1 (nodearray[151], nodearray[152]); -inode1 ([], null); -iedge1 (nodearray[151], nodearray[153]); -inode1 ([], null); -iedge1 (nodearray[148], nodearray[154]); -inode1 ([], null); -iedge1 (nodearray[154], nodearray[155]); -inode1 ([], null); -iedge1 (nodearray[155], nodearray[156]); -inode1 ([], null); -iedge1 (nodearray[155], nodearray[157]); -inode1 ([], null); -iedge1 (nodearray[157], nodearray[158]); -inode1 ([], null); -iedge1 (nodearray[158], nodearray[159]); -inode1 ([], null); -iedge1 (nodearray[158], nodearray[160]); -inode1 ([], null); -iedge1 (nodearray[160], nodearray[161]); -inode1 ([], null); -iedge1 (nodearray[160], nodearray[162]); -inode1 ([], null); -iedge1 (nodearray[157], nodearray[163]); -inode1 ([], null); -iedge1 (nodearray[163], nodearray[164]); -inode1 ([], null); -iedge1 (nodearray[163], nodearray[165]); -inode1 ([], null); -iedge1 (nodearray[154], nodearray[166]); -inode1 ([], null); -iedge1 (nodearray[166], nodearray[167]); -inode1 ([], null); -iedge1 (nodearray[167], nodearray[168]); -inode1 ([], null); -iedge1 (nodearray[167], nodearray[169]); -inode1 ([], null); -iedge1 (nodearray[169], nodearray[170]); -inode1 ([], null); -iedge1 (nodearray[169], nodearray[171]); -inode1 ([], null); -iedge1 (nodearray[166], nodearray[172]); -inode1 ([], null); -iedge1 (nodearray[147], nodearray[173]); -inode1 ([], null); -iedge1 (nodearray[173], nodearray[174]); -inode1 ([], null); -iedge1 (nodearray[174], nodearray[175]); -inode1 ([], null); -iedge1 (nodearray[175], nodearray[176]); -inode1 ([], null); -iedge1 (nodearray[175], nodearray[177]); -inode1 ([], null); -iedge1 (nodearray[177], nodearray[178]); -inode1 ([], null); -iedge1 (nodearray[177], nodearray[179]); -inode1 ([], null); -iedge1 (nodearray[174], nodearray[180]); -inode1 ([], null); -iedge1 (nodearray[173], nodearray[181]); -inode1 ([], null); -iedge1 (nodearray[146], nodearray[182]); -inode1 ([], null); -iedge1 (nodearray[182], nodearray[183]); -inode1 ([], null); -iedge1 (nodearray[182], nodearray[184]); -inode1 ([], null); -iedge1 (nodearray[184], nodearray[185]); -inode1 ([], null); -iedge1 (nodearray[184], nodearray[186]); -inode1 ([], null); -iedge1 (nodearray[186], nodearray[187]); -inode1 ([], null); -iedge1 (nodearray[187], nodearray[188]); -inode1 ([], null); -iedge1 (nodearray[187], nodearray[189]); -inode1 ([], null); -iedge1 (nodearray[186], nodearray[190]); -dist = ['x' = 4; 'y' = 40;]; -defaultsize = ['x' = 4; 'y' = 4;]; -dolayout = function (node, pary) { - local cr, r, n, size; - size = nodesize (node); - if (node.chn > 0) { - if (node.chn >= 2) { - cr = dolayout (node.ch[0], pary - size.y - dist.y); - r[0].x = cr[1].x + dist.x / 2 - size.x / 2; - cr = dolayout (node.ch[1], pary - size.y - dist.y); - } else { - cr = dolayout (node.ch[0], pary - size.y - dist.y); - r[0].x = (cr[1].x + cr[0].x) / 2 - size.x / 2; - } - r[0].y = pary; - r[1].x = r[0].x + size.x; - r[1].y = r[0].y + size.y; - node.rect = r; - return cr; - } else { - r[0].x = leafx; - r[0].y = pary; - r[1].x = r[0].x + size.x; - r[1].y = r[0].y + size.y; - leafx = r[1].x + dist.x; - node.rect = r; - return r; - } -}; -drawtree = function (node) { - local i, n; - if ((n = tablesize (node.ch)) > 0) { - for (i = 0; i < n; i = i + 1) { - drawedge (node, node.ch[i]); - drawtree (node.ch[i]); - } - } - if (n > 0) - circlenode (node); - else - boxnode (node); -}; -complayout (); -wrect = [0 = ['x' = 0; 'y' = -200;]; 1 = ['x' = 1400; 'y' = 600;];]; -setwidgetattr (canvas, ['window' = wrect;]); -redraw (canvas); -dops (); diff --git a/doc/lefty/figs/figboxfinal.lefty b/doc/lefty/figs/figboxfinal.lefty deleted file mode 100644 index ea4729fa5..000000000 --- a/doc/lefty/figs/figboxfinal.lefty +++ /dev/null @@ -1,45 +0,0 @@ -load ('box.lefty'); -objnum = 3; -objarray = [ - 0 = [ - 'id' = 0; - 'rect' = [ - 0 = [ - 'x' = 50; - 'y' = 50; - ]; - 1 = [ - 'x' = 200; - 'y' = 200; - ]; - ]; - ]; - 1 = [ - 'id' = 1; - 'rect' = [ - 0 = [ - 'x' = 150; - 'y' = 250; - ]; - 1 = [ - 'x' = 350; - 'y' = 450; - ]; - ]; - ]; - 2 = [ - 'id' = 2; - 'rect' = [ - 0 = [ - 'x' = 250; - 'y' = 120; - ]; - 1 = [ - 'x' = 390; - 'y' = 240; - ]; - ]; - ]; -]; -redraw (0); -dops (); diff --git a/doc/lefty/figs/figboxinitial.lefty b/doc/lefty/figs/figboxinitial.lefty deleted file mode 100644 index 14f53c0c7..000000000 --- a/doc/lefty/figs/figboxinitial.lefty +++ /dev/null @@ -1,32 +0,0 @@ -load ('box.lefty'); -objnum = 2; -objarray = [ - 0 = [ - 'id' = 0; - 'rect' = [ - 0 = [ - 'x' = 50; - 'y' = 50; - ]; - 1 = [ - 'x' = 200; - 'y' = 200; - ]; - ]; - ]; - 1 = [ - 'id' = 1; - 'rect' = [ - 0 = [ - 'x' = 150; - 'y' = 250; - ]; - 1 = [ - 'x' = 350; - 'y' = 450; - ]; - ]; - ]; -]; -redraw (0); -dops (); diff --git a/doc/lefty/figs/figdag.lefty b/doc/lefty/figs/figdag.lefty deleted file mode 100644 index b7efef671..000000000 --- a/doc/lefty/figs/figdag.lefty +++ /dev/null @@ -1,5 +0,0 @@ -load ('dotty.lefty'); -dotty.init (); -gvt = dotty.createviewandgraph ('train11.dot', 'file', null, null); -dotty.protogt.printorsave (gvt.gt, gvt.vt, 'file', 'figdag.ps', - 'portrait', '8.5x11'); diff --git a/doc/lefty/figs/figfractalmva.lefty b/doc/lefty/figs/figfractalmva.lefty deleted file mode 100644 index 3c1b926f4..000000000 --- a/doc/lefty/figs/figfractalmva.lefty +++ /dev/null @@ -1,4 +0,0 @@ -load ('fractal.lefty'); -maxlevel = 2; -drawfractal (); -dops (); diff --git a/doc/lefty/figs/figfractalmvb.lefty b/doc/lefty/figs/figfractalmvb.lefty deleted file mode 100644 index 1640ea753..000000000 --- a/doc/lefty/figs/figfractalmvb.lefty +++ /dev/null @@ -1,6 +0,0 @@ -load ('fractal.lefty'); -maxlevel = 2; -drawfractal (); -transformfractal (['x' = 200; 'y' = 50;], ['x' = 250; 'y' = 100;]); -drawfractal (); -dops (); diff --git a/doc/lefty/figs/figfractalonea.lefty b/doc/lefty/figs/figfractalonea.lefty deleted file mode 100644 index ba5b539b5..000000000 --- a/doc/lefty/figs/figfractalonea.lefty +++ /dev/null @@ -1,23 +0,0 @@ -load ('def.lefty'); -definit (); -canvas = defcanvas; -dops = function () { - local s; - s = ['x' = 8 * 300; 'y' = 10.5 * 300;]; - canvas = createwidget (-1, ['type' = 'ps'; 'size' = s;]); - setwidgetattr (canvas, ['window' = wrect;]); - line (canvas, null, points[0], points[4]); - destroywidget (canvas); - canvas=defcanvas; -}; -wrect = [0 = ['x' = 0; 'y' = -10;]; 1 = ['x' = 600; 'y' = 200;];]; -points = [ - 0 = [ 'x' = 0; 'y' = 0; ]; - 1 = [ 'x' = 200; 'y' = 0; ]; - 2 = [ 'x' = 300; 'y' = 200 - 26.79; ]; - 3 = [ 'x' = 400; 'y' = 0; ]; - 4 = [ 'x' = 600; 'y' = 0; ]; -]; -setwidgetattr (canvas, ['window' = wrect;]); -line (canvas, null, points[0], points[4]); -dops (); diff --git a/doc/lefty/figs/figfractaloneb.lefty b/doc/lefty/figs/figfractaloneb.lefty deleted file mode 100644 index e5ee53ca4..000000000 --- a/doc/lefty/figs/figfractaloneb.lefty +++ /dev/null @@ -1,29 +0,0 @@ -load ('def.lefty'); -definit (); -canvas = defcanvas; -dops = function () { - local s; - s = ['x' = 8 * 300; 'y' = 10.5 * 300;]; - canvas = createwidget (-1, ['type' = 'ps'; 'size' = s;]); - setwidgetattr (canvas, ['window' = wrect;]); - line (canvas, null, points[0], points[1]); - line (canvas, null, points[1], points[2]); - line (canvas, null, points[2], points[3]); - line (canvas, null, points[3], points[4]); - destroywidget (canvas); - canvas=defcanvas; -}; -wrect = [0 = ['x' = 0; 'y' = -10;]; 1 = ['x' = 600; 'y' = 200;];]; -points = [ - 0 = [ 'x' = 0; 'y' = 0; ]; - 1 = [ 'x' = 200; 'y' = 0; ]; - 2 = [ 'x' = 300; 'y' = 200 - 26.79; ]; - 3 = [ 'x' = 400; 'y' = 0; ]; - 4 = [ 'x' = 600; 'y' = 0; ]; -]; -setwidgetattr (canvas, ['window' = wrect;]); -line (canvas, null, points[0], points[1]); -line (canvas, null, points[1], points[2]); -line (canvas, null, points[2], points[3]); -line (canvas, null, points[3], points[4]); -dops (); diff --git a/doc/lefty/figs/figfractaltracea.lefty b/doc/lefty/figs/figfractaltracea.lefty deleted file mode 100644 index 31a7a8b05..000000000 --- a/doc/lefty/figs/figfractaltracea.lefty +++ /dev/null @@ -1,29 +0,0 @@ -load ('fractal.lefty'); -fractal = function (level, length, angle) { - local nlength, newpenpos; - - if (level >= maxlevel) { - newpenpos.x = penpos.x + length * cos (angle); - newpenpos.y = penpos.y + length * sin (angle); - if (count < maxcount) { - line (canvas, null, penpos, newpenpos); - count = count + 1; - } - penpos = newpenpos; - return; - } - nlength = length / 3; - fractal (level + 1, nlength, angle); - fractal (level + 1, nlength, angle + 60); - fractal (level + 1, nlength, angle - 60); - fractal (level + 1, nlength, angle); -}; -maxlevel = 2; -count = 0; -maxcount = 16; -drawfractal (); -transformfractal (['x' = 200; 'y' = 50;], ['x' = 250; 'y' = 100;]); -count = 0; -drawfractal (); -count = 0; -dops (); diff --git a/doc/lefty/figs/figfractaltraceb.lefty b/doc/lefty/figs/figfractaltraceb.lefty deleted file mode 100644 index d21e4af83..000000000 --- a/doc/lefty/figs/figfractaltraceb.lefty +++ /dev/null @@ -1,29 +0,0 @@ -load ('fractal.lefty'); -fractal = function (level, length, angle) { - local nlength, newpenpos; - - if (level >= maxlevel) { - newpenpos.x = penpos.x + length * cos (angle); - newpenpos.y = penpos.y + length * sin (angle); - if (count < maxcount) { - line (canvas, null, penpos, newpenpos); - count = count + 1; - } - penpos = newpenpos; - return; - } - nlength = length / 3; - fractal (level + 1, nlength, angle); - fractal (level + 1, nlength, angle + 60); - fractal (level + 1, nlength, angle - 60); - fractal (level + 1, nlength, angle); -}; -maxlevel = 2; -count = 0; -maxcount = 32; -drawfractal (); -transformfractal (['x' = 200; 'y' = 50;], ['x' = 250; 'y' = 100;]); -count = 0; -drawfractal (); -count = 0; -dops (); diff --git a/doc/lefty/figs/figfractaltracec.lefty b/doc/lefty/figs/figfractaltracec.lefty deleted file mode 100644 index 45bd560ef..000000000 --- a/doc/lefty/figs/figfractaltracec.lefty +++ /dev/null @@ -1,29 +0,0 @@ -load ('fractal.lefty'); -fractal = function (level, length, angle) { - local nlength, newpenpos; - - if (level >= maxlevel) { - newpenpos.x = penpos.x + length * cos (angle); - newpenpos.y = penpos.y + length * sin (angle); - if (count < maxcount) { - line (canvas, null, penpos, newpenpos); - count = count + 1; - } - penpos = newpenpos; - return; - } - nlength = length / 3; - fractal (level + 1, nlength, angle); - fractal (level + 1, nlength, angle + 60); - fractal (level + 1, nlength, angle - 60); - fractal (level + 1, nlength, angle); -}; -maxlevel = 2; -count = 0; -maxcount = 48; -drawfractal (); -transformfractal (['x' = 200; 'y' = 50;], ['x' = 250; 'y' = 100;]); -count = 0; -drawfractal (); -count = 0; -dops (); diff --git a/doc/lefty/figs/figradixtree.lefty b/doc/lefty/figs/figradixtree.lefty deleted file mode 100644 index 1a2d3918c..000000000 --- a/doc/lefty/figs/figradixtree.lefty +++ /dev/null @@ -1,115 +0,0 @@ -load ('tree.lefty'); -fontsize=10; -inode1 = function (p, name) { - local i, nnum, size; - nnum = nodenum; - if (~name) - name = ""; - nodearray[nnum].ch = []; - nodearray[nnum].chn = 0; - nodearray[nnum].name = name; - size = nodesize (nodearray[nnum]); - nodearray[nnum].rect[0] = p; - nodearray[nnum].rect[1] = ['x' = p.x + size.x; 'y' = p.y + size.y;]; - nodenum = nodenum + 1; - if (~tree) { - tree = nodearray[nnum]; - tree.depth = 0; - } - return nodearray[nnum]; -}; -iedge1 = function (node1, node2) { - node1.ch[node1.chn] = node2; - node1.chn = node1.chn + 1; - node2.depth = node1.depth + 1; -}; -inode1 ([], null); -inode1 ([], null); -iedge1 (nodearray[0], nodearray[1]); -inode1 ([], null); -iedge1 (nodearray[1], nodearray[2]); -inode1 ([], null); -iedge1 (nodearray[2], nodearray[3]); -inode1 ([], 'A'); -iedge1 (nodearray[3], nodearray[4]); -inode1 ([], 'B'); -iedge1 (nodearray[3], nodearray[5]); -inode1 ([], null); -iedge1 (nodearray[2], nodearray[6]); -inode1 ([], 'E'); -iedge1 (nodearray[6], nodearray[7]); -inode1 ([], 'G'); -iedge1 (nodearray[6], nodearray[8]); -inode1 ([], null); -iedge1 (nodearray[1], nodearray[9]); -inode1 ([], null); -iedge1 (nodearray[9], nodearray[10]); -inode1 ([], null); -iedge1 (nodearray[10], nodearray[11]); -inode1 ([], 'H'); -iedge1 (nodearray[11], nodearray[12]); -inode1 ([], 'I'); -iedge1 (nodearray[11], nodearray[13]); -inode1 ([], null); -iedge1 (nodearray[10], nodearray[14]); -inode1 ([], null); -iedge1 (nodearray[9], nodearray[15]); -inode1 ([], null); -iedge1 (nodearray[15], nodearray[16]); -inode1 ([], 'L'); -iedge1 (nodearray[16], nodearray[17]); -inode1 ([], 'M'); -iedge1 (nodearray[16], nodearray[18]); -inode1 ([], 'N'); -iedge1 (nodearray[15], nodearray[19]); -inode1 ([], null); -iedge1 (nodearray[0], nodearray[20]); -inode1 ([], null); -iedge1 (nodearray[20], nodearray[21]); -inode1 ([], null); -iedge1 (nodearray[21], nodearray[22]); -inode1 ([], 'P'); -iedge1 (nodearray[22], nodearray[23]); -inode1 ([], null); -iedge1 (nodearray[22], nodearray[24]); -inode1 ([], 'R'); -iedge1 (nodearray[24], nodearray[25]); -inode1 ([], 'S'); -iedge1 (nodearray[24], nodearray[26]); -inode1 ([], null); -iedge1 (nodearray[21], nodearray[27]); -inode1 ([], 'X'); -iedge1 (nodearray[20], nodearray[28]); -dist = ['x' = 10; 'y' = 40;]; -dolayout = function (node, pary) { - local cr, r, n, size; - size = nodesize (node); - if (node.chn > 0) { - if (node.chn >= 2) { - cr = dolayout (node.ch[0], pary - size.y - dist.y); - r[0].x = cr[1].x + dist.x / 2 - size.x / 2; - cr = dolayout (node.ch[1], pary - size.y - dist.y); - } else { - cr = dolayout (node.ch[0], pary - size.y - dist.y); - r[0].x = (cr[1].x + cr[0].x) / 2 - size.x / 2; - } - r[0].y = pary; - r[1].x = r[0].x + size.x; - r[1].y = r[0].y + size.y; - node.rect = r; - return cr; - } else { - r[0].x = leafx; - r[0].y = pary; - r[1].x = r[0].x + size.x; - r[1].y = r[0].y + size.y; - leafx = r[1].x + dist.x; - node.rect = r; - return r; - } -}; -complayout (); -wrect = [0 = ['x' = 0; 'y' = 200;]; 1 = ['x' = 450; 'y' = 550;];]; -setwidgetattr (canvas, ['window' = wrect;]); -redraw (canvas); -dops (); diff --git a/doc/lefty/figs/figtria.lefty b/doc/lefty/figs/figtria.lefty deleted file mode 100644 index 1782dc863..000000000 --- a/doc/lefty/figs/figtria.lefty +++ /dev/null @@ -1,12 +0,0 @@ -load ('tried.lefty'); -insert (['x' = 26; 'y' = 387;]); -insert (['x' = 363; 'y' = 191;]); -insert (['x' = 373; 'y' = 140;]); -insert (['x' = 8; 'y' = 261;]); -insert (['x' = 80; 'y' = 204;]); -insert (['x' = 81; 'y' = 375;]); -insert (['x' = 317; 'y' = 151;]); -insert (['x' = 106; 'y' = 115;]); -insert (['x' = 51; 'y' = 142;]); -insert (['x' = 294; 'y' = 281;]); -dops (); diff --git a/doc/lefty/figs/figtrib.lefty b/doc/lefty/figs/figtrib.lefty deleted file mode 100644 index a6e03b6c5..000000000 --- a/doc/lefty/figs/figtrib.lefty +++ /dev/null @@ -1,13 +0,0 @@ -load ('tried.lefty'); -insert (['x' = 26; 'y' = 387;]); -insert (['x' = 363; 'y' = 191;]); -insert (['x' = 373; 'y' = 140;]); -insert (['x' = 8; 'y' = 261;]); -insert (['x' = 80; 'y' = 204;]); -insert (['x' = 81; 'y' = 375;]); -insert (['x' = 317; 'y' = 151;]); -insert (['x' = 106; 'y' = 115;]); -insert (['x' = 51; 'y' = 142;]); -insert (['x' = 294; 'y' = 281;]); -insert (['x' = 350; 'y' = 390;]); -dops (); diff --git a/doc/lefty/figs/lefty.ppm.gz b/doc/lefty/figs/lefty.ppm.gz deleted file mode 100644 index 05922e052..000000000 Binary files a/doc/lefty/figs/lefty.ppm.gz and /dev/null differ diff --git a/doc/lefty/figs/train11.dot b/doc/lefty/figs/train11.dot deleted file mode 100644 index 710645d71..000000000 --- a/doc/lefty/figs/train11.dot +++ /dev/null @@ -1,30 +0,0 @@ -digraph G { - size="6,6"; - node [shape=circle,fontsize=8]; - rankdir=LR; - st9 -> st9 [label="11/1"]; - st9 -> st10 [label="10/1"]; - st8 -> st8 [label="10/1"]; - st8 -> st0 [label="00/-"]; - st7 -> st8 [label="10/1"]; - st7 -> st7 [label="00/1"]; - st6 -> st6 [label="01/1"]; - st6 -> st0 [label="00/-"]; - st5 -> st6 [label="01/1"]; - st5 -> st5 [label="11/1"]; - st4 -> st4 [label="01/1"]; - st4 -> st0 [label="00/-"]; - st3 -> st4 [label="01/1"]; - st3 -> st3 [label="00/1"]; - st2 -> st9 [label="11/1"]; - st2 -> st7 [label="00/1"]; - st2 -> st2 [label="01/1"]; - st10 -> st10 [label="10/1"]; - st10 -> st0 [label="00/-"]; - st1 -> st5 [label="11/1"]; - st1 -> st3 [label="00/1"]; - st1 -> st1 [label="10/1"]; - st0 -> st2 [label="01/-"]; - st0 -> st1 [label="10/-"]; - st0 -> st0 [label="00/0"]; -} diff --git a/doc/lefty/full.tex b/doc/lefty/full.tex deleted file mode 100644 index c406f8fa2..000000000 --- a/doc/lefty/full.tex +++ /dev/null @@ -1,20 +0,0 @@ -\input{head} -\newpage -\input{section1} -\clearpage -\input{section2} -\clearpage -\input{section3} -\clearpage -\input{section4} -\clearpage -\input{section5} -\clearpage -\appendix -\input{sectiona} -\clearpage -\input{sectionb} -\clearpage -\input{sectionc} -\bibliography{refs} -\input{tail} diff --git a/doc/lefty/head.tex b/doc/lefty/head.tex deleted file mode 100644 index 245e30a20..000000000 --- a/doc/lefty/head.tex +++ /dev/null @@ -1,65 +0,0 @@ -\documentstyle[11pt,draft,titlepage]{report} -\input{epsf} -% \epsfverbosetrue - -\catcode`@=11 -\def\@makechapterhead#1{ - { - \parindent \z@ \raggedright \reset@font - \ifnum \c@secnumdepth >\m@ne - \Large\bfseries \@chapapp{} \thechapter . #1 - \par\nobreak - \vskip 20\p@ - \fi - \interlinepenalty\@M - } -} -\catcode`@=12 - -\newcommand{\DOT}{{\sl dot}} -\newcommand{\LEFTY}{{\sl lefty}} -\newcommand{\DOTTY}{{\sl dotty}} - -\title{Editing Pictures with {\LEFTY}} -\author{Eleftherios Koutsofios} -\newcommand{\lastedited}{96c (09-24-96)} -\date{\lastedited} - -\renewcommand{\textfraction}{0.01} -\setlength\oddsidemargin{0.00pt} -\setlength\evensidemargin{0.00pt} -\setlength{\topmargin}{0pt} -\setlength{\headheight}{0pt} -\setlength{\headsep}{0pt} -%\setlength{\footheight}{0pt} -%\setlength{\footskip}{0pt} -\setlength{\textheight}{8.5in} -\setlength{\textwidth}{6.5in} -\begin{document} -\maketitle -\begin{abstract} -{\LEFTY} is a two-view graphics editor for technical pictures. This editor has -no hardwired knowledge about specific picture layouts or editing operations. -Each picture is described by a program that contains functions to draw the -picture and functions to perform editing operations that are appropriate for -the specific picture. Primitive user actions, like mouse and keyboard events, -are also bound to functions in this program. Besides the graphical view of the -picture itself, the editor presents a textual view of the program that -describes the picture. Programmability and the two-view interface allow the -editor to handle a variety of pictures, but are particularly useful for -pictures used in technical contexts, e.g., graphs and trees. Also, {\LEFTY} can -communicate with other processes. This feature allows it to use existing tools -to compute specific picture layouts and allows external processes to use the -editor as a front end to display their data structures graphically. The figure -below shows a typical snapshot of {\LEFTY} in use. The editor has been -programmed to edit delaunay triangulations. The window on the left shows the -actual picture. The user can use the mouse to insert or move cites and the -triangulation is kept up to date by the editor (which uses an external process -to compute the triangulation). The window on the right shows the program view -of the picture. - -\vspace{0.1in} -\centerline{\hbox{\epsfxsize=5.5in \epsffile{figs/lefty.ps}}} -\end{abstract} - -\bibliographystyle{alpha} diff --git a/doc/lefty/progs/progbox.tex b/doc/lefty/progs/progbox.tex deleted file mode 100644 index 7a947bb05..000000000 --- a/doc/lefty/progs/progbox.tex +++ /dev/null @@ -1,159 +0,0 @@ -\begin{verbatim} -load ('def.lefty'); -definit (); -# -# initialize window data -# -canvas = defcanvas; -wrect = [0 = ['x' = 0; 'y' = 0;]; 1 = ['x' = 400; 'y' = 500;];]; -setwidgetattr (canvas, ['window' = wrect;]); -# -# data structures -# -objarray = []; -objnum = 0; -# -# misc functions -# -min = function (a, b) { - if (a <= b) - return a; - return b; -}; -max = function (a, b) { - if (b <= a) - return a; - return b; -}; -rectof = function (p1, p2) { - return [ - 0 = ['x' = min (p1.x, p2.x); 'y' = min (p1.y, p2.y);]; - 1 = ['x' = max (p1.x, p2.x); 'y' = max (p1.y, p2.y);]; - ]; -}; -pointadd = function (p1, p2) { - return ['x' = p2.x + p1.x; 'y' = p2.y + p1.y;]; -}; -pointsub = function (p1, p2) { - return ['x' = p2.x - p1.x; 'y' = p2.y - p1.y;]; -}; -# -# rendering functions -# -drawbox = function (obj, color) { - box (canvas, obj, obj.rect, ['color' = color;]); -}; -redrawboxes = function () { - local i; - clear (canvas); - for (i = 0; i < objnum; i = i + 1) - drawbox (objarray[i], 1); -}; -redraw = function (canvas) { - redrawboxes (); -}; -# -# editing functions -# -new = function (rect) { - objarray[objnum] = [ - 'rect' = rect; - 'id' = objnum; - ]; - objnum = objnum + 1; - return objarray[objnum - 1]; -}; -reshape = function (obj, rect) { - obj.rect = rect; - return obj; -}; -move = function (obj, p) { - obj.rect[0] = pointadd (obj.rect[0], p); - obj.rect[1] = pointadd (obj.rect[1], p); - return obj; -}; -delete = function (obj) { - if (obj.id ~= objnum - 1) { - objarray[obj.id] = objarray[objnum - 1]; - objarray[obj.id].id = obj.id; - } - remove (objnum - 1, objarray); - objnum = objnum - 1; -}; -# -# user interface functions -# -# left mouse button creates new box -# middle button moves a box -# right button deletes a box -# -leftdown = function (data) { - if (data.obj ~= null) - return; - leftbox = new (rectof (data.pos, data.pos)); - drawbox (leftbox, 1); - setgfxattr (canvas, ['mode' = 'xor';]); -}; -leftmove = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - drawbox (leftbox, 1); -}; -leftup = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - setgfxattr (canvas, ['mode' = 'src';]); - drawbox (leftbox, 1); - remove ('leftbox'); -}; -middledown = function (data) { - if (data.obj == null) - return; - middlebox = data.obj; - middlepos = data.pos; - setgfxattr (canvas, ['mode' = 'xor';]); -}; -middlemove = function (data) { - if (~middlebox) - return; - drawbox (middlebox, 1); - clearpick (canvas, middlebox); - move (middlebox, pointsub (middlepos, data.pos)); - middlepos = data.pos; - drawbox (middlebox, 1); -}; -middleup = function (data) { - if (~middlebox) - return; - drawbox (middlebox, 1); - clearpick (canvas, middlebox); - move (middlebox, pointsub (middlepos, data.pos)); - setgfxattr (canvas, ['mode' = 'src';]); - drawbox (middlebox, 1); - remove ('middlepos'); - remove ('middlebox'); -}; -rightup = function (data) { - if (data.pobj == null) - return; - drawbox (data.obj, 0); - clearpick (canvas, data.obj); - delete (data.obj); -}; -dops = function () { - local s; - - s = ['x' = 8 * 300; 'y' = 10.5 * 300;]; - canvas = createwidget (-1, ['type' = 'ps'; 'size' = s;]); - setwidgetattr (canvas, ['window' = wrect;]); - redraw (canvas); - destroywidget (canvas); - canvas = defcanvas; -}; -\end{verbatim} diff --git a/doc/lefty/progs/progboxdops.tex b/doc/lefty/progs/progboxdops.tex deleted file mode 100644 index 16c0a4159..000000000 --- a/doc/lefty/progs/progboxdops.tex +++ /dev/null @@ -1,11 +0,0 @@ -\begin{verbatim} -dops = function () { - local s; - s = ['x' = 8 * 300; 'y' = 10.5 * 300;]; - canvas = createwidget (-1, ['type' = 'ps'; 'size' = s;]); - setwidgetattr (canvas, ['window' = wrect;]); - redraw (canvas); - destroywidget (canvas); - canvas = defcanvas; -}; -\end{verbatim} diff --git a/doc/lefty/progs/progboxdraw.tex b/doc/lefty/progs/progboxdraw.tex deleted file mode 100644 index d13aa1c10..000000000 --- a/doc/lefty/progs/progboxdraw.tex +++ /dev/null @@ -1,11 +0,0 @@ -\begin{verbatim} -drawbox = function (obj, color) { - box (canvas, obj, obj.rect, ['color' = color;]); -}; -redrawboxes = function () { - local i; - clear (canvas); - for (i = 0; i < objnum; i = i + 1) - drawbox (objarray[i], 1); -}; -\end{verbatim} diff --git a/doc/lefty/progs/progboxdsfinal.tex b/doc/lefty/progs/progboxdsfinal.tex deleted file mode 100644 index ee20c8876..000000000 --- a/doc/lefty/progs/progboxdsfinal.tex +++ /dev/null @@ -1,23 +0,0 @@ -\begin{verbatim} -objnum = 3; -objarray = [ - 0 = [ - 'id' = 0; - 'rect' = [ - 0 = [ 'x' = 50; 'y' = 50; ]; 1 = [ 'x' = 200; 'y' = 200; ]; - ]; - ]; - 1 = [ - 'id' = 1; - 'rect' = [ - 0 = [ 'x' = 150; 'y' = 250; ]; 1 = [ 'x' = 350; 'y' = 450; ]; - ]; - ]; - 2 = [ - 'id' = 2; - 'rect' = [ - 0 = [ 'x' = 250; 'y' = 120; ]; 1 = [ 'x' = 390; 'y' = 240; ]; - ]; - ]; -]; -\end{verbatim} diff --git a/doc/lefty/progs/progboxdsinitial.tex b/doc/lefty/progs/progboxdsinitial.tex deleted file mode 100644 index 6525fe209..000000000 --- a/doc/lefty/progs/progboxdsinitial.tex +++ /dev/null @@ -1,17 +0,0 @@ -\begin{verbatim} -objnum = 2; -objarray = [ - 0 = [ - 'id' = 0; - 'rect' = [ - 0 = [ 'x' = 50; 'y' = 50; ]; 1 = [ 'x' = 200; 'y' = 200; ]; - ]; - ]; - 1 = [ - 'id' = 1; - 'rect' = [ - 0 = [ 'x' = 150; 'y' = 250; ]; 1 = [ 'x' = 350; 'y' = 450; ]; - ]; - ]; -]; -\end{verbatim} diff --git a/doc/lefty/progs/progboxedit.tex b/doc/lefty/progs/progboxedit.tex deleted file mode 100644 index 6a020d399..000000000 --- a/doc/lefty/progs/progboxedit.tex +++ /dev/null @@ -1,27 +0,0 @@ -\begin{verbatim} -new = function (rect) { - objarray[objnum] = [ - 'rect' = rect; - 'id' = objnum; - ]; - objnum = objnum + 1; - return objarray[objnum - 1]; -}; -reshape = function (obj, rect) { - obj.rect = rect; - return obj; -}; -move = function (obj, p) { - obj.rect[0] = pointadd (obj.rect[0], p); - obj.rect[1] = pointadd (obj.rect[1], p); - return obj; -}; -delete = function (obj) { - if (obj.id ~= objnum - 1) { - objarray[obj.id] = objarray[objnum - 1]; - objarray[obj.id].id = obj.id; - } - remove (objnum - 1, objarray); - objnum = objnum - 1; -}; -\end{verbatim} diff --git a/doc/lefty/progs/progboxui.tex b/doc/lefty/progs/progboxui.tex deleted file mode 100644 index dc9f43173..000000000 --- a/doc/lefty/progs/progboxui.tex +++ /dev/null @@ -1,27 +0,0 @@ -\begin{verbatim} -leftdown = function (data) { - if (data.obj ~= null) - return; - leftbox = new (rectof (data.pos, data.pos)); - drawbox (leftbox, 1); - setgfxattr (canvas, ['mode' = 'xor';]); -}; -leftmove = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - drawbox (leftbox, 1); -}; -leftup = function (data) { - if (~leftbox) - return; - drawbox (leftbox, 1); - clearpick (canvas, leftbox); - reshape (leftbox, rectof (data.ppos, data.pos)); - setgfxattr (canvas, ['mode' = 'src';]); - drawbox (leftbox, 1); - remove ('leftbox'); -}; -\end{verbatim} diff --git a/doc/lefty/progs/progtri.tex b/doc/lefty/progs/progtri.tex deleted file mode 100644 index 88095c965..000000000 --- a/doc/lefty/progs/progtri.tex +++ /dev/null @@ -1,121 +0,0 @@ -\begin{verbatim} -load ('def.lefty'); -definit (); -# data structures -# -sitesnum = 0; -sites = []; -lines = []; -canvas = defcanvas; -wrect = [0 = ['x' = 0; 'y' = 0;]; 1 = ['x' = 400; 'y' = 500;];]; -setwidgetattr (canvas, ['window' = wrect;]); -triedfd = openio ('pipe', 'tried', 'w+', '%e %i %o'); - -# drawing functions -# -redraw = function (id) { - local i, j, rect, s; - rect = []; - clear (canvas); - for (i in lines) { - for (j in lines[i]) { - s = lines[i][j]; - line (canvas, null, ['x' = s.f.point.x; 'y' = s.f.point.y;], - ['x' = s.l.point.x; 'y' = s.l.point.y;]); - } - } - for (i = 0; i < sitesnum; i = i + 1) { - rect[0] = [ - 'x' = sites[i].point.x - 5; 'y' = sites[i].point.y - 5; - ]; - rect[1] = [ - 'x' = sites[i].point.x + 5; 'y' = sites[i].point.y + 5; - ]; - box (canvas, sites[i], rect); - } -}; - -# editing functions -# -insert = function (point) { - local s; - sites[sitesnum].num = sitesnum; - sites[sitesnum].point = point; - writeline (triedfd, - concat ('new ', sitesnum, ' ', point.x, ' ', point.y)); - sitesnum = sitesnum + 1; - while ((s = readline (triedfd)) ~= '') - run (s); - box (canvas, sites[sitesnum - 1], - [0 = ['x' = point.x - 5; 'y' = point.y - 5;]; - 1 = ['x' = point.x + 5; 'y' = point.y + 5;]; - ]); -}; -mv = function (node, point) { - local i; - box (canvas, node, [ - 0 = ['x' = node.point.x - 5; 'y' = node.point.y - 5;]; - 1 = ['x' = node.point.x + 5; 'y' = node.point.y + 5;]; - ], ['color' = 0;]); - clearpick (canvas, node); - for (i = 0; i < sitesnum; i = i + 1) { - if (lines[i][node.num]) - delline (i, node.num); - if (lines[node.num][i]) - delline (node.num, i); - } - node.point = point; - writeline (triedfd, - concat ('mv ', node.num, ' ', point.x, ' ', point.y)); - while ((s = readline (triedfd)) ~= '') - run (s); - box (canvas, node, [ - 0 = ['x' = point.x - 5; 'y' = point.y - 5;]; - 1 = ['x' = point.x + 5; 'y' = point.y + 5;]; - ]); -}; -insline = function (i, j) { - lines[i][j].f = sites[i]; - lines[i][j].l = sites[j]; - line (canvas, null, - ['x' = sites[i].point.x; 'y' = sites[i].point.y;], - ['x' = sites[j].point.x; 'y' = sites[j].point.y;]); -}; -delline = function (i, j) { - remove (j, lines[i]); - if (tablesize (lines[i]) == 0) - remove (i, lines); - line (canvas, null, - ['x' = sites[i].point.x; 'y' = sites[i].point.y;], - ['x' = sites[j].point.x; 'y' = sites[j].point.y;], - ['color' = 0;]); -}; - -# user interface functions -# -leftdown = function (data) { - if (~data.obj) - insert (data.pos); -}; -leftmove = function (data) { - if (data.obj) - mv (data.obj, data.pos); -}; -keydown = function (data) { - redraw (0); -}; -dops = function () { - local r; - - r = [0 = ['x' = 0; 'y' = 0;]; 1 = ['x' = 8 * 300; 'y' = 10.5 * 300;];]; - canvas = createwidget (-1, [ - 'type' = 'ps'; - 'origin' = r[0]; - 'size' = r[1]; - ]); - setwidgetattr (canvas, ['window' = wrect;]); - redraw (0); - destroywidget (canvas); - canvas=defcanvas; -}; -\end{verbatim} diff --git a/doc/lefty/sec1.tex b/doc/lefty/sec1.tex deleted file mode 100644 index 26fdec5fd..000000000 --- a/doc/lefty/sec1.tex +++ /dev/null @@ -1,3 +0,0 @@ -\input{head} -\input{section1} -\input{tail} diff --git a/doc/lefty/sec2.tex b/doc/lefty/sec2.tex deleted file mode 100644 index 6302d9436..000000000 --- a/doc/lefty/sec2.tex +++ /dev/null @@ -1,4 +0,0 @@ -\input{head} -\setcounter{section}{1} -\input{section2} -\input{tail} diff --git a/doc/lefty/sec3.tex b/doc/lefty/sec3.tex deleted file mode 100644 index 1ec27ae4d..000000000 --- a/doc/lefty/sec3.tex +++ /dev/null @@ -1,4 +0,0 @@ -\input{head} -\setcounter{section}{2} -\input{section3} -\input{tail} diff --git a/doc/lefty/sec4.tex b/doc/lefty/sec4.tex deleted file mode 100644 index a6fbd034f..000000000 --- a/doc/lefty/sec4.tex +++ /dev/null @@ -1,4 +0,0 @@ -\input{head} -\setcounter{section}{3} -\input{section4} -\input{tail} diff --git a/doc/lefty/sec5.tex b/doc/lefty/sec5.tex deleted file mode 100644 index 280f0cb26..000000000 --- a/doc/lefty/sec5.tex +++ /dev/null @@ -1,4 +0,0 @@ -\input{head} -\setcounter{section}{4} -\input{section5} -\input{tail} diff --git a/doc/lefty/seca.tex b/doc/lefty/seca.tex deleted file mode 100644 index 272d3a4c8..000000000 --- a/doc/lefty/seca.tex +++ /dev/null @@ -1,4 +0,0 @@ -\input{head} -\appendix -\input{sectiona} -\input{tail} diff --git a/doc/lefty/secb.tex b/doc/lefty/secb.tex deleted file mode 100644 index 364b79b2a..000000000 --- a/doc/lefty/secb.tex +++ /dev/null @@ -1,5 +0,0 @@ -\input{head} -\appendix -\setcounter{section}{1} -\input{sectionb} -\input{tail} diff --git a/doc/lefty/secc.tex b/doc/lefty/secc.tex deleted file mode 100644 index 9d573c716..000000000 --- a/doc/lefty/secc.tex +++ /dev/null @@ -1,5 +0,0 @@ -\input{head} -\appendix -\setcounter{section}{2} -\input{sectionc} -\input{tail} diff --git a/doc/lefty/section1.tex b/doc/lefty/section1.tex deleted file mode 100644 index a1c1c38ec..000000000 --- a/doc/lefty/section1.tex +++ /dev/null @@ -1,71 +0,0 @@ -\chapter{Introduction} -\label{secintro} -{\LEFTY} is an editor designed to handle technical pictures. Technical pictures -are pictures used in technical contexts, e.g. program call graphs, binary -search trees, fractals, and networks. Although there are many different types -of technical pictures, they all share several properties. - -One such property is accuracy. Since the reason for drawing a technical picture -is to display some abstract object in a way that is easy to understand, it is -very important that the positions, sizes, and other graphical attributes of the -graphical primitives in a picture follow strict rules. Figure~\ref{fig2tp} -shows two technical pictures. The fractal in Figure~\ref{fig2tp}a consists of -equal-size line segments arranged in a path that is computed using a simple -recursive function. The binary tree in Figure~\ref{fig2tp}b consists of nodes -and edges. All nodes of the same depth are drawn along the same horizontal line -and parent nodes are centered over their children nodes. - -\begin{figure}[htb] -\centerline{\hbox{ -\begin{tabular}[b]{c@{\hspace{.1in}}c} -{\epsfxsize=2.5in \epsffile{figs/fig2tpa.ps}}& -{\epsfxsize=2.5in \epsffile{figs/fig2tpb.ps}}\\ -(a) & (b) -\end{tabular} -}} -\caption{Two technical pictures} -\label{fig2tp} -\end{figure} - -Accuracy, however, is just the end result of the more fundamental property {\it -structure}. In Figure~\ref{fig2tp}b, the hierarchy of the tree constrains the -graphical representation. {\tt F} and {\tt G} are both children of {\tt C}; if -{\tt C} is moved to the right, {\tt F} and {\tt G} must also move to the right -to preserve the symmetry. Other parts of the tree also have to move. - -Most graphics editors provide ways for drawing pictures accurately, but very -few provide ways to maintain the consistency of technical pictures. If the user -moves {\tt C} to the right, the editor could move {\tt F} and {\tt G} -automatically. Most existing editors, however, do not provide this kind of -functionality. {\LEFTY}, on the other hand, was designed with this kind of -functionality in mind. - -{\LEFTY} implements a procedural programming language. This language can be -used to specify all aspects of picture editing: how to draw the picture, how to -edit it, and how to bind user actions to editing operations. Essentially, a -picture is treated as an object that contains methods for operating on it. For -example, for the tree in Figure~\ref{fig2tp}b this program would include -functions to draw nodes and edges, functions to insert nodes and edges, and -finally functions to bind mouse actions to editing operations. If the tree is -supposed to have some specific semantics then the functions that insert nodes -and edges may be modified to perform consistency checks. For example, the -function for inserting edges may check if adding an edge would violate the -semantics of the picture and if so print an error message. By having a -language, {\LEFTY} can be programmed to handle many different kinds of -pictures, and at the same time provide in-depth support for each kind of -picture. - -A picture in {\LEFTY} is shown in two ways. One view is the usual ``what you -see is what you get view'' (WYSIWYG). The other view is a textual view of the -program that controls the picture. Users can perform operations on either view. -The WYSIWYG view is more intuitive, while the program view is more functional. - -Another way in which {\LEFTY} differs from other editors is in the way it can -be used. {\LEFTY} can be used as a standalone editor, to prepare pictures for -printing, but it can also communicate with other processes. This allows -{\LEFTY} to act as a graphical front end for other processes. In this mode a -picture becomes a user interface object. For example, as some system changes -state, its picture may change, but at the same time the system can be changed -by changing the picture. {\LEFTY}'s programmability makes building graphical -front ends for other tools easy. In many cases, these front ends perform better -than tools that implement all the functionality in a single program. diff --git a/doc/lefty/section2.tex b/doc/lefty/section2.tex deleted file mode 100644 index af3ec190b..000000000 --- a/doc/lefty/section2.tex +++ /dev/null @@ -1,163 +0,0 @@ -\chapter{Overview} -\label{secoverview} -This section presents an overview of the editor. We use an example that -demonstrates how pictures are described and built using {\LEFTY}. This example -is too simple to take advantage of the editor's programmability because the -picture has no structure, but it demonstrates the basic picture-design -principles. - -The picture in this example is a collection of rectangles of various sizes -positioned randomly. The complete program for this program can be found in -Appendix~\ref{applistings}. - -Picture descriptions consist of two parts: -\begin{list}{}{} -\item[] -data structures that hold information about the picture. For this example, the -data structures tell how many boxes are in the picture and their locations and -sizes. -\item[] -functions that implement operations on the data structures. This example has -functions to insert, delete, move, and draw boxes. -\end{list} - -\noindent -Location and size data are stored in {\tt objarray}, which is an array of -key-value pairs, and the number of boxes is given by {\tt objnum}. -Figure~\ref{progboxdsinitial} shows a snapshot of the data structures for two -boxes. Each element of {\tt objarray} specifies the origin and corner of a box -in fields {\tt rect[0]} and {\tt rect[1]} respectively. -Section~\ref{subseclang} describes the {\LEFTY} language in more detail. -Figure~\ref{figboxinitial} is the WYSIWYG view. - -\vspace{-6pt} -\begin{figure}[htb] -\input{progs/progboxdsinitial} -\vspace{-12pt} -\caption{A snapshot of the data structure} -\label{progboxdsinitial} -\end{figure} - -\begin{figure}[htb] -\centerline{\hbox{ -{\epsfxsize=2.5in \epsffile{figs/figboxinitial.ps}} -}} -\caption{The WYSIWYG view of the picture} -\label{figboxinitial} -\end{figure} - -We need functions to draw the picture, to change it, and to bind user events to -changes to the picture. {\tt drawbox} and {\tt redrawboxes} in -Figure~\ref{progboxdraw} do the actual drawing; {\tt drawbox} draws a single -box, and {\tt redrawboxes} clears the display and draws all the boxes. {\tt -box} does the actual rendering; it is a built-in function that draws a -rectangle. Built-in functions provide access to window and operating system -resources. They are described in Section~\ref{secbuiltins}. {\tt canvas} is -the id for the drawing area. In this example there is only one drawing area and -its id is assigned to the global variable {\tt canvas}. - -\begin{figure}[htb] -\input{progs/progboxdraw} -\vspace{-12pt} -\caption{Drawing functions} -\label{progboxdraw} -\end{figure} - -Figure~\ref{progboxedit} shows various editing functions. {\tt new} adds a new -box to {\tt objarray}. {\tt reshape} changes the shape of an existing box, and -{\tt move} moves a box. {\tt pointadd} is a function that adds two points and -returns the resulting point. {\tt remove} is a built-in function that removes -array elements; here it removes entry {\tt objnum - 1} from {\tt objarray}. - -\begin{figure}[htb] -\input{progs/progboxedit} -\vspace{-12pt} -\caption{Editing functions} -\label{progboxedit} -\end{figure} - -Figure~\ref{progboxui} shows some of the functions that bind user events to -editing operations. {\tt leftdown} is called when the user presses the left -mouse button. In this picture, if the user presses the left button over white -space (not inside any box) a new---zero size---box is created and the drawing -mode is set to {\tt xor}. As the user moves the mouse while holding the left -button down, {\tt leftmove} is called. {\tt leftmove} creates a rubberband -effect, by reshaping the box so that the corner of the box follows the mouse. -When the user releases the left button, {\tt leftup} is called. {\tt leftup} -sets the drawing mode back to normal (mode {\tt src}). Functions {\tt -middledown}, {\tt middlemove}, and {\tt middleup}, allow the user to grab an -existing box and move it. Finally, {\tt rightup} deletes a box. The names of -these functions are special. When a mouse or keyboard event occurs, {\LEFTY} -searches its data structures for a function that corresponds to the event. If -such a function is defined, {\LEFTY} calls it with one argument, {\tt data}. -{\tt data} is a table that contains information about the user event. {\tt -data.pos} is the position of the mouse at the time of the event. {\tt -data.ppos} is present only for move or up events and it holds the position of -the mouse at the time of the corresponding down event. {\tt data.obj} is the -object that the user ``selected''. In this example, each rectangle on the -screen is associated with an entry in {\tt objarray}. This is done by {\tt -drawbox} which calls {\tt box} with the corresponding entry in {\tt objarray} -as the second argument. When the user presses a mouse button over a rectangle, -{\LEFTY} locates that rectangle and from that locates the corresponding object. -{\tt setgattr} is a built-in function that changes the graphics state of a -drawing area. {\tt clearpick} is a built-in function that makes its object -argument unselectable from the WYSIWYG view, by removing it from the data -structure used by {\LEFTY} to locate graphical primitives. - -\begin{figure}[htb] -\input{progs/progboxui} -\vspace{-12pt} -\caption{User Interface functions} -\label{progboxui} -\end{figure} - -The user can edit the picture from either the program or the WYSIWYG view. From -the WYSIWYG view, the user can create a new box by pressing the left button, -then---while holding the button down---moving the mouse to another location and -releasing the button. From the program view, the user can perform similar -operations by entering expressions in the editor's language. For example, the -user can create a new box by typing the following commands: - -\vbox{ -\begin{verbatim} -newbox = new ([0 = ['x' = 250; 'y' = 120;]; 1 = ['x' = 390; 'y' = 240;];]); -drawbox (newbox, 1); -\end{verbatim} -} - -The program view shows the data structures and functions of the current -program. By default, entries in this view are shown abstracted, with each entry -taking up a single line. The user can selectively expand individual entries to -their full size. - -Figure~\ref{figboxfinal} shows the WYSIWYG view after moving one of the boxes -and Figure~\ref{progboxdsfinal} shows the corresponding data structures. - -\begin{figure}[htb] -\input{progs/progboxdsfinal} -\vspace{-9pt} -\caption{A snapshot of the data structure after editing the picture} -\label{progboxdsfinal} -\end{figure} - -\begin{figure}[htb] -\centerline{\hbox{ -{\epsfxsize=2.5in \epsffile{figs/figboxfinal.ps}} -}} -\caption{The WYSIWYG view of the picture after editing} -\label{figboxfinal} -\end{figure} - -Generating postscript output is easy. {\tt canvas} can be set to an id -corresponding to a file. In this case, built-ins such as {\tt box}, will append -the appropriate postscript expressions to this file. Function {\tt dops}, shown -in Figure~\ref{progboxdops} creates a postscript file, sets {\tt canvas} to the -id of the file, draws the picture, closes the file and restores {\tt canvas} to -its original value. - -\begin{figure}[htb] -\input{progs/progboxdops} -\vspace{-12pt} -\caption{Function for generating postscript output} -\label{progboxdops} -\end{figure} diff --git a/doc/lefty/section3.tex b/doc/lefty/section3.tex deleted file mode 100644 index a68c40b8a..000000000 --- a/doc/lefty/section3.tex +++ /dev/null @@ -1,779 +0,0 @@ -\chapter{System Components} -\label{secsyscomp} -This section presents the components of the editor. - -\section{The Language} -\label{subseclang} -Since {\LEFTY} is interactive, the language is designed to allow for fast -parsing and execution. The language was inspired by {\it EZ} \cite{drh-ez}. -Appendix~\ref{appgrammar} specifies the language in detail. - -The language supports {\it scalars} and {\it tables}. A scalar is a number or a -character string of arbitrary length. A table is a one-dimensional array -indexed by numbers or strings. - -For example, {\tt objarray} in Figure~\ref{progboxdsinitial} is a two-entry -table indexed by {\tt 0} and {\tt 1}. Each of these entries is a table with -entries for the center and the size of each box and an {\tt id} for each box. - -Variables are either global, i.e., part of a global name table, or local to a -function. Expressions may or may not return a value. For example, {\tt a + b} -does not return a value when either {\tt a} or {\tt b} are not defined. - -The smallest program unit is the expression. User actions on the WYSIWYG view -result in the execution of expressions. User-typed text in the program view is -a sequence of expressions. Each user action results in the immediate evaluation -of an expression. For example, if the user enters \verb+num = sqrt (4);+ in the -program view, {\tt sqrt} is called and its return value, {\tt 2}, is assigned -to {\tt num}. Once executed, the input is discarded; the only change in the -program's state is that it now contains {\tt num}. To specify code that is -meant to be executed later, the user must define a function, e.g., - -\vbox{ -\begin{verbatim} -afunction = function (n) { - num = sqrt (n); -}; -\end{verbatim} -} - -\noindent -``Executing'' a function declaration adds the name of the function to the -global name table. Calling {\tt afunction} assigns a value to {\tt num}, e.g., -\verb+afunction (4);+ assigns {\tt 2} to {\tt num}. - -Assignment is done either by value (scalars), or by reference (tables). For -example, after the sequence \verb+a = 1; b = a;+, {\tt a} and {\tt b} point to -two different values, while the sequence \verb+a = [ ]; b = a;+ results in both -{\tt a} and {\tt b} pointing to the same table. Functions are stored and -treated like scalars. - -\section{The Program View} -The program view is a textual representation of the picture state. It displays -the name and value of each global object. - -The textual representation can be long, so the editor presents an abbreviated -view by default: each name, value pair is displayed on a line. -Figure~\ref{figpviews}a shows a few of the entries in the program view for the -picture in Figure~\ref{figboxinitial}. Only the value for {\tt objnum} is -displayed, as it can fit in a single line. Other variables have an abstract -representation, which indicates whether they are functions or tables. - -\begin{figure}[htb] -\begin{verbatim} -'delete' = function (...) { ... }; 'delete' = function (...) { ... }; -'drawbox' = function (...) { ... }; 'drawbox' = function (...) { ... }; -'leftdown' = function (...) { ... }; 'leftdown' = function (...) { ... }; -'leftmove' = function (...) { ... }; 'leftmove' = function (...) { ... }; -'leftup' = function (...) { ... }; 'leftup' = function (...) { ... }; -'move' = function (...) { ... }; 'move' = function (...) { ... }; -'new' = function (...) { ... }; 'new' = function (...) { ... }; -'objarray' = [ ... ]; 'objarray' = [ -'objnum' = 2; 0 = [ ... ]; -'redraw' = function (...) { ... }; 1 = [ ... ]; -'reshape' = function (...) { ... }; ]; - 'objnum' = 2; - 'redraw' = function (...) { ... }; - 'reshape' = function (...) { ... }; -\end{verbatim} - -\hfil(a) All entries closed\hfil\hfil(b) Opening entry {\tt objarray}\hfil - -\begin{verbatim} -'delete' = function (...) { ... }; 'delete' = function (...) { ... }; -'drawbox' = function (...) { ... }; 'drawbox' = function (...) { ... }; -'leftdown' = function (...) { ... }; 'leftdown' = function (...) { ... }; -'leftmove' = function (...) { ... }; 'leftmove' = function (...) { ... }; -'leftup' = function (...) { ... }; 'leftup' = function (...) { ... }; -'move' = function (...) { ... }; 'move' = function (...) { ... }; -'new' = function (...) { ... }; 'new' = function (...) { ... }; -'objarray' = [ 'objarray' = [ - 0 = [ 0 = [ - 'id' = 0; 'id' = 0; - 'rect' = [ ... ]; 'rect' = [ ... ]; - ]; ]; - 1 = [ ... ]; 1 = [ ... ]; -]; ]; -'objnum' = 2; 'objnum' = 2; -'redraw' = function (...) { ... }; 'redraw' = function (...) { ... }; -'reshape' = function (...) { ... }; 'reshape' = function (obj, rect) { - obj.rect = rect; - return obj; - }; - 'zarray' = objarray; -\end{verbatim} - -\hfil(c) Opening entry {\tt objarray[0]}\hfil\hfil(d) Opening entry {\tt reshape}\hfil\hfil - -\caption{Various levels of abstraction on the program view} -\label{figpviews} -\end{figure} - -For a more detailed view of an object, the user clicks on the line describing -the object. For example, clicking on the line for {\tt objarray} causes the -editor to expand it, as shown in Figure~\ref{figpviews}b, to show that {\tt -objarray} has two entries indexed by {\tt 0} and {\tt 1}. Clicking on the {\tt -0} entry of {\tt objarray} causes the editor to expand that entry as shown in -Figure~\ref{figpviews}c. Entry {\tt 1} remains the same, but entry {\tt 0} is -expanded. Function entries behave similarly: clicking on a function displays -the function's body. Clicking on {\tt reshape}, for example, results in the -display shown in Figure~\ref{figpviews}d. - -Clicking on an expanded entry replaces that entry with its abstracted version. - -If an entry points to the same value as another entry, the second entry is -shown differently. Rather than showing the same value twice, the editor shows -the duplication. For example, if we execute \verb+zarray=objarray;+, -\verb+zarray+ will be shown as in Figure~\ref{figpviews}d. This display -semantic makes it clear how much unique information is available. - -Unlike in the WYSIWYG view, where changes are controlled by the program that -describes the picture, the user can do anything in the program view, including -getting the program into an inconsistent state. All the functions and tables -are visible and can be edited. This flexibility is necessary, since a -conceptual change to the program or the data usually requires a sequence of -modifications to the text of the program. Although the sequence of -modifications leaves the editor in a consistent state, individual modifications -can put the editor in an inconsistent state temporarily. For example, the user -can add a box to Figure~\ref{figboxinitial} by typing in the sequence of -commands executed by function {\tt new} in Figure~\ref{progboxedit}. After the -user has typed in the assignment for \verb+objarray[objnum]+, the program is -inconsistent: {\tt objarray} has three entries, but the value for {\tt objnum} -is still {\tt 2}. The program becomes consistent after the user types in the -command to increment {\tt objnum}. - -\section{The WYSIWYG View} -The WYSIWYG view is the graphical representation of the picture. The program -that describes a picture controls the WYSIWYG view; all the objects are drawn -by the program, and all user actions are handled by the program. The WYSIWYG -view can consist of one or more widgets, such as drawing areas, buttons, lists, -text areas, and scrollable widgets. - -Widgets can be manipulated using built-in functions. When a new widget is -created, {\LEFTY} adds an entry to a global table called {\tt widgets}. Each of -these entries is a table that can be used to customize the behavior of the -widget. When the user generates an event, e.g. clicks a mouse button, {\LEFTY} -searches the corresponding entry in {\tt widgets} for the appropriate callback -function. If the function cannot be found in that table, {\LEFTY} then searches -for it in the global namespace. - -The most interesting type of widget in {\LEFTY} is the drawing area. Drawing -inside such a widget is handled by a set of built-in functions. The supported -graphical primitives are lines, polygons, splinegons, elliptic arcs, and text. -Each drawing area maintains its own graphics state. The built-in functions and -state variables are described in Section~\ref{secbuiltins} - -When an event occurs inside a drawing area, for example, a mouse button is -pressed or released, the editor checks if a function corresponding to this -event exists. The possibilities are: - -\vbox{ -\begin{verbatim} -leftdown leftmove leftup -middledown middlemove middleup -rightdown rightmove rightup -keydown keyup -\end{verbatim} -} - -\noindent -There is no restriction on what these functions do. The programmer must define -them as appropriate for the current picture. {\LEFTY} searches for these -functions first in the drawing area's entry in {\tt widgets}, then in the -global namespace. If a function is found, it is called with a single argument. -This argument is a table that contains information about the event. It has the -following fields. - -\begin{list}{}{\renewcommand{\leftmargin}{50pt}\renewcommand{\labelwidth}{40pt}\renewcommand{\makelabel}[1]{#1\hfil}} -\item[\tt obj] -the object that the user selected with this event, or {\tt null} if no such -object could be found -\item[\tt pos] -a table with two entries, {\tt x} and {\tt y}, that hold the mouse coordinates -at the time of this event -\item[\tt pobj] -(only for {\tt move} and {\tt up} events) the object selected by the preceding -{\tt down} event. -\item[\tt ppos] -(only for {\tt move} and {\tt up} events) the mouse coordinates at the time of -the preceding {\tt down} event -\item[\tt widget] -the widget id of the drawing area where this event occurred -\item[\tt key] -(only for {\tt key} events) the ascii character of the key -\end{list} - -Determining the selected object at a button press or release has two phases. -The editor determines if the mouse coordinates select a graphical primitive. -Closed shapes, for example, boxes and ellipses, are selected if the mouse -coordinates lie inside the shape. If such a primitive can be found, the editor -finds the {\LEFTY} data object associated with it. - -Finding the selected graphical primitive is straightforward. The editor -maintains a data structure of all the graphical primitives in the WYSIWYG view. -When an event is received, the coordinates are used to search through this data -structure for the selected primitive. The only complication is when two or more -primitives overlap. In the box example in Section~\ref{secoverview}, boxes -could overlap. The editor does not resolve these kinds of ambiguities. One -solution would be to allow the user to rotate through all the objects that -could potentially be selected. The editor does provide a way to resolve -ambiguities created by design, such as when an object is drawn using more than -one graphical primitives. In the tree figure in Section~\ref{secintro}, a tree -node is drawn as a rectangle enclosing a label. - -Finding the data object that corresponds to the selected primitive is slightly -more complex. The data object must be specified as an argument to the rendering -primitive. All rendering functions take as their second argument the object to -associate with the primitive they draw. This argument can also be {\tt null}, -which effectively makes the primitive unselectable. For the tree example, the -text label of a node could be associated with {\tt null} and that would leave -the node's box as the only selectable primitive occupying that area of the -display. The box would have to be associated with the table that represents the -corresponding node of the tree. The mapping between objects and graphical -primitives is manipulated with two functions: - -\vbox{ -\begin{tabbing} -{\tt clearpick ({\it canvas}, {\it object})}\\ -{\tt setpick ({\it canvas}, {\it object}, {\it rectangle})}\\ -\end{tabbing} -\vspace{-16pt} -} - -\noindent -{\tt clearpick} removes {\it object} from the mapping, and {\tt setpick} -associates the rectangular area {\it rectangle} with {\it object}. Finally, -clearing the WYSIWYG view clears the mapping. - -When a drawing area is resized, or when its window is redrawn, {\LEFTY} -searches for a function called {\tt redraw}. If such a function is found in -{\tt widgets} or in the global namespace, it is called with a table as an -argument. This table contains an entry {\tt widget} which is the widget id -of the drawing area. - -The label widget can display a piece of text in its rectangular area. -It provides a subset of the user-interface functions provided by the -drawing area; it provides all the {\tt up} and {\tt down} functions -mentioned above, but does not provide the {\tt move} functions. The table -passed as argument to these functions contains the {\tt widget} entry -and---for the {\tt keyup} and {\tt keydown} functions---the {\tt key} -entry. - -The button widget provides a single function, {\tt pressed}. It is called -when the user clicks on the button. If such a function is found it is called -with just one entry, {\tt widget}. - -When the user presses {\tt CR} in an input text widget, {\LEFTY} looks for a -function called {\tt oneline}. This function, if found, is called with two -arguments, {\tt widget} and {\tt text}. {\tt text} contains the line of text -that the user just entered. - -For array widgets, {\LEFTY} tries to call a function named {\tt resize} -whenever their size changes (either through user actions, or program control). -This function is called with two arguments, {\tt widget} and {\tt size}. {\tt -size} is an (x,y) table containing the new size of the widget. This function is -expected to return an array containing new sizes for all of the widget's -children. This array must be indexed by the widget ids of the children, and -each element must be an (x,y) table containing the size of a child. - -{\LEFTY} can monitor open file descriptors. Built-in function {\tt -monitor} takes as an argument the id of an input channel (generated by {\tt -openio}), and adds it to the list of file descriptors being monitored. When -there is something to read from that file descriptor, {\LEFTY} searches the -global namespace for a function called {\tt monitorfile}. If such a function is -found, it is called with a table as an argument. This table contains an entry -{\tt fd} which is the file descriptor that is ready for reading. - -Finally, when there are no X or file I/O events to handle, {\LEFTY} can -optionally execute a function called {\tt idle}. This feature can be turned -on or off using the {\tt idlerun} built-in. - -\section{Inter-process Communication} -{\LEFTY} provides built-ins for communicating with other processes. This -capability can be used in several ways. - -\begin{list}{}{} -\item[] -Purely for output. A process can use the editor to display some data -structures; the process does not need any code for graphical layout. -\item[] -For both input and output. The editor can be used to specify the input and to -display the result of some processing of that input. Debugging is an example; -instead of printing data structures as text or writing code to draw them, the -process being debugged simply connects to the editing server and sends the data -structures to the server for display. -\item[] -As an extension to the editor itself. There are tools displaying trees -\cite{tamassia-diagrams}, DAGs \cite{dag-spe}, delaunay triangulations -\cite{guibas}, and VLSI layouts \cite{magic}. These tools are usually large -software packages, and duplicating their functionality in the editor is a major -undertaking. Instead, the editor communicates with these tools as separate -processes. Whenever some aspect of a layout needs to be updated, the editor -sends a message asking for instructions on how to perform the update to the -appropriate process. -\end{list} - -{\LEFTY} communicates with other processes by exchanging ASCII strings. This -allows {\LEFTY} to communicate with many existing tools, without having to -modify these tools at all. For example, the layout for the tree in -Figure~\ref{fig2tp}b is generated by a call to {\tt complayout}. This function -does all the calculations. If the layout were to be generated by a separate -process this function could be rewritten as follows. - -\vbox{ -\begin{verbatim} -complayout = function () { - ... - writeline (treefd, 'compute layout'); - while ((s = readline (treefd)) ~= '') { - t = split (s, ' '); - nodearray[ston (t[0])] = ['x' = ston (t[0]); 'y' = ston (t[0]);]; - } - ... -}; -\end{verbatim} -\vspace{-12pt} -} - -\noindent -{\tt complayout} sends a message to the external process, using {\tt -writeline}, requesting a new layout. The {\tt while} loop reads back the -response from the process. Each line would consist of 3 numbers: the id of a -node and its x and y coordinates. The process must send an empty line at the -end of the transmission. {\tt treefd} is the file descriptor for communicating -with the other process. - -The response from a process can also be a {\LEFTY} expression. The {\tt while} -loop above could be replaced with the following loop. - -\vbox{ -\begin{verbatim} -complayout = function () { - ... - while ((s = readline (treefd)) ~= '') - run (s); - ... -}; -\end{verbatim} -\vspace{-12pt} -} - -\noindent -{\tt run} is a built-in. It parses and execute the {\LEFTY} expression -specified by the string {\tt s}. A sample string could be {\tt nodearray[i].p = -['x' = 10; 'y' = 20;];}. - -This form of remote procedure call gives processes access to {\LEFTY} functions -and data structures and should help minimize the amount of work needed to -interface a process with {\LEFTY}. - -The technique of communicating by sending programs has been used in several -other systems, most notably in window systems \cite{blit,news}. - -\section{Built-in Functions} -\label{secbuiltins} - -{\LEFTY} built-ins can be used to perform window system / graphics operations -and to access various system resources such as files. Built-ins differ from -functions written in {\LEFTY}'s language in that they can take a variable -number of arguments. Built-in functions that are not supposed to return a -value as part of their specification, return 1 when they succeed and nothing -when they fail. This makes it possible to check whether a built-in performed -its intended function with an {\tt if}-statement. - -\vbox{ -\begin{verbatim} -if (~setwidgetattr (wid, ['text' = 'some text';])) - echo ('setwidgetattr failed'); -\end{verbatim} -\vspace{-12pt} -} - -\noindent -Built-ins that are supposed to return specific values, also -return nothing to indicate failure. - -\subsubsection{Widget Functions} - -\begin{flushleft} -\it widgetid \tt = createwidget (\it parentid, attr\tt )\\ -\tt setwidgetattr (\it widgetid, attr\tt )\\ -\it attr \tt = getwidgetattr (\it widgetid, keys\tt )\\ -\tt destroywidget (\it widgetid\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -These functions are used to create, modify, and destroy widgets. {\tt -createwidget} creates a new widget and returns its id. This id is a small -integer. {\tt createwidget} creates a new table, indexed by {\it widgetid}, -under the {\tt widgets} global table. {\it parentid} is the id of the parent -widget. {\it attr} is a table of attributes, such as type, size, name, etc. -Attribute {\tt type} must be specified, but if some other attributes are not -set, default values are used instead. {\tt setwidgetattr} sets one or more -attributes for the specified widget (except for {\tt type}). {\tt -getwidgetattr} returns the current values of the attributes specified by {\it -keys}. {\it keys} is an indexed array of attribute names. For example, if {\it -keys} is set to {\tt [0 = 'name'; 1 = 'size';]}, the returned {\it attr} table -will contain two entries, {\tt ['name' = ...; 'size' = ...;]}. {\tt -destroywidget} destroys the specified widget and any children that it might -have. - -Tables~\ref{tabwidgets1} and ~\ref{tabwidgets2} show the available widgets. - -\begin{table}[htb] -\begin{tabular}{|l|p{0.9in}p{1.1in}|p{2.8in}|} \hline -Type&Attributes&Attr. type&Description\\ \hline - -\tt view&\tt origin\newline size\newline name\newline zorder& -table of (x, y)\newline table of (x, y)\newline string\newline string& -A top level window. It may contain exactly one child. {\tt zorder} can be used -to push / pop the view (values {\tt "top"}, {\tt "bottom"}).\\ \hline - -\tt text&\tt size\newline borderwidth\newline text\newline mode\newline appendtext& -table of (x, y)\newline integer\newline string\newline string\newline string& -A widget that can display (and optionally edit) text. {\tt mode} can be one of -{\tt "oneline"}, {\tt "input"}, or {\tt "output"}. For mode {\tt line}, -{\LEFTY} tries to execute the {\tt func} callback whenever \verb+CR+ is -pressed. {\tt appendtext} appends a string to the string already displayed by -the widget.\\ \hline - -\tt scroll&\tt size\newline borderwidth\newline childcenter\newline mode& -table of (x, y)\newline integer\newline table of (x, y)\newline string& -A widget that can contain a---potentially larger---child widget and let the -user scroll through it. {\tt childcenter} may not be specified until the scroll -widget has a child widget. {\tt childcenter} aligns the child so that the -child's {\tt childcenter} coordinates are at the center of the scroll -widget. {\tt mode} can be set to {\tt "forcebars"} to make scrollbars appear -even when the child widget is small enough to fit inside the scroll widget.\\ -\hline - -\tt array&\tt size\newline borderwidth\newline mode\newline layout& -table of (x, y)\newline integer\newline string\newline string& -A widget that can take a list of children widgets and display them either as a -horizontal or a vertical list. {\tt mode} can be one of {\tt "horizontal"}, or -{\tt "vertical"}. {\tt layout} controls whether the widget rearranges its -children every time there is some change. If set to {\tt "off"} the widget will -stop rearranging its children until {\tt layout} is set to {\tt "on"} again.\\ -\hline -\end{tabular} -\caption{Widget types part 1} -\label{tabwidgets1} -\end{table} - -\begin{table}[htb] -\begin{tabular}{|l|p{0.9in}p{1.1in}|p{2.8in}|} \hline -Type&Attributes&Attr. type&Description\\ \hline - -\tt button&\tt size\newline borderwidth\newline text& -table of (x, y)\newline integer\newline string& -A widget that can display a text label and execute the callback {\tt pressed} -when it is selected.\\ \hline - -\tt canvas&\tt size\newline borderwidth\newline cursor\newline color\newline\newline viewport\newline window& -table of (x, y)\newline integer\newline string\newline array of (r, g, b)\newline and strings\newline table of (x, y)\newline 2 tables of (x, y)& -A drawing area. {\tt cursor} must be the name of a cursor bitmap, -e.g. \verb+"watch"+ or \verb+"default"+. {\tt color} is an array of RGB values -and color names. Colors {\tt 0} and {\tt 1} are predefined to be the background -and foreground colors. {\tt viewport} sets the size in pixels of the drawing -area. {\tt window} sets the mapping between drawing coordinates and pixel -coordinates. The default value for {\tt window} is (0,0) - (1,1). The origin is -at the lower left side.\\ \hline - -\tt label&\tt size\newline borderwidth\newline text& -table of (x, y)\newline integer\newline string& -A widget that can display a text label and execute several callbacks depending -on the mouse or keyboard buttons used.\\ \hline - -\tt ps&\tt origin\newline size\newline name\newline mode\newline color\newline window& -table of (x, y)\newline table of (x, y)\newline string\newline string\newline array of (r, g, b)\newline 2 tables of (x, y)& -A postscript file. {\tt name} is the file name. {\tt mode} can be {\tt -"landscape"}.\\ \hline -\end{tabular} -\caption{Widget types part 2} -\label{tabwidgets2} -\end{table} - -\subsubsection{Graphics Functions} - -\begin{flushleft} -\tt clear (\it canvasid\tt )\\ -\tt clearpick (\it canvasid, object\tt )\\ -\tt setpick (\it canvasid, object, rect\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt clear} clears the drawing area whose id is {\it canvasid} and the table -that contains the mapping between data objects and graphical objects. {\tt -clearpick} removes {\it object} from the mapping table, and {\tt setpick} maps -the rectangular area specified by {\it rect} to {\it object}. - -\begin{flushleft} -\it item = \tt displaymenu (\it widgetid, menu\tt)\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt displaymenu} pops up the menu specified by {\it menu} inside the widget -specified by {\it widgetid} (which must be either a canvas or a label -widget). {\it menu} must be a table of number-string pairs. When the user -selects one of the string entries {\tt displaymenu} returns the number -associated with that string. If the user dismisses the menu, {\tt -1} is -returned. - -\begin{flushleft} -\it reply \tt = ask (\it prompt [, type, args]\tt)\\ -\end{flushleft}\vspace{-2\itemsep} -Prompts the user for information; it displays the {\it prompt} string in a -dialog box and waits for the user to type or select a reply, which is returned -as the value of {\tt ask}. If {\it type} is the string {\tt "file"}, the dialog -box shows the contents of the directory specified in {\it args}. If -{\it type} is {\tt "choice"}, {\it args} must be a string of the form -{\tt "||..."}. Each choice string appears as a button -that the user can click to select. If {\it type} is {\tt string}, the dialog -box has a text field that the user can type in. {\it args} in this case -is the initial value of the text field. Finally, if {\it type} is not -specified, {\tt "string"} is assumed. - -\begin{flushleft} -\tt setgfxattr (\it canvasid, attr\tt )\\ -\it attr \tt = getgfxattr (\it canvasid, keys\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt setgfxattr} sets attributes in the graphics state. Each drawing area has -its own state variables. {\tt setgfxattr} sets these attributes -permanently. These attributes can also be set on a per rendering call -basis. {\tt getgfxattr} returns the current values of the attributes specified -by keys. {\it keys} is an indexed array of attribute names. For example, if -{\it keys} is set to {\tt [0 = 'mode'; 1 = 'width';]}, the returned {\it attr} -table will contain two entries, {\tt ['mode' = ...; 'width' = ...;]}. - -The graphics state consists of the variables shown in Table~\ref{tabgattr}. - -\begin{table}[htb] -\begin{tabular}{|l|l|p{0.7in}|l|p{3in}|} \hline -Name&Type&Range&Default&Description\\ \hline -\tt color&integer&{\tt 0-255}&\tt 1& -The current drawing color.\\ -\tt width&integer&{\tt >= 0}&\tt 0& -The current line width.\\ -\tt mode&string&{\tt 'src'}\newline {\tt 'xor'}&\tt 'src'& -The current drawing mode.\\ -\tt fill&string&{\tt 'on'}\newline {\tt 'off}&\tt 'off'& -Whether polygons and arcs should be drawn filled or outlined.\\ -\tt style&string&{\tt 'solid'}\newline {\tt 'dashed'}\newline {\tt 'dotted'}&\tt 'solid'& -The current line style.\\ -\hline -\end{tabular} -\caption{Graphics state} -\label{tabgattr} -\end{table} - -\begin{flushleft} -\tt arrow (\it canvasid, object, p1, p2 [, attr]\/\tt )\\ -\tt line (\it canvasid, object, p1, p2 [, attr]\/\tt )\\ -\tt box (\it canvasid, object, rect [, attr]\/\tt )\\ -\tt polygon (\it canvasid, object, pointarray [, attr]\/\tt )\\ -\tt splinegon (\it canvasid, object, pointarray [, attr]\/\tt )\\ -\tt arc (\it canvasid, object, center, size [, attr]\/\tt )\\ -\tt text (\it canvasid, object, pos, string, fontname, fontsize, just [,attr]\/\tt )\\ -\it size \tt = textsize (\it canvasid, object, fontname, fontsize\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -The final argument in most of these functions can be used to change the -graphics state for the execution of that function. {\tt splinegon} draws a -piecewise bezier spline curve. {\tt fontname} must be an X font name or a -postscript font name. For ISO style font names, if the name contains the -sequence {\tt \%d}, this sequence will be replaced by the appropriate font -size. {\tt just} is a two letter string that controls the justification of the -string. The first letter may be {\tt l}, {\tt c}, or {\tt r} for left, center, -or right justified strings. The second letter specifies the vertical -justification and can be one of {\tt u}, {\tt c}, {\tt d}. - -\subsubsection{Bitmap Functions} - -\begin{flushleft} -\it bitmapid \tt = createbitmap (\it widgetid, size\tt )\\ -\tt destroybitmap (\it bitmapid\tt )\\ -\it bitmapid \tt = readbitmap (\it widgetid, fileid\tt )\\ -\tt writebitmap (\it fileid, bitmapid\tt )\\ -\tt bitblt (\it canvasid, object, point, origin, bitmapid, mode\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -These functions are used to create, modify, and destroy bitmaps. {\tt -createbitmap} creates a new bitmap and returns its id. This id is a small -integer. {\tt createbitmap} creates a new table, indexed by {\it bitmapid}, -under the {\tt bitmaps} global table. {\it widgetid} is the id of the canvas -widget associated with the bitmap. A bitmap can only be displayed in its -associated canvas. {\it size} is the size of the bitmap. -{\tt destroybitmap} destroys the specified bitmap. {\tt readbitmap} -reads a bitmap from file descriptor {\it fileid} and returns a new bitmap -id. The bitmap is assumed to be in PPM format. {\tt savebitmap} writes -the specified bitmap to file descriptor {\it fileid}. {\tt bitblt} copies -pixels between canvas {\it canvasid} and bitmap {\it bitmapid}. If {\it mode} -is {\tt 'c2b'} pixels are copied from the canvas to the bitmap. If {\it mode} -is {\tt 'b2c'} pixels are copied from the bitmap to the canvas. Pixels -are copied from the source (bitmap or canvas) starting at point {\it point} -to the destination starting at the origin of the {\it rect} rectangle. -The size of the rectangle specifies the amount of pixels to copy. - -Bitmap are scaled when copied to / from canvases. For example, if the -canvas window to viewport ratio is 2.0, a bitmap drawn in the canvas will -be scaled to 0.5 of its size. - -\subsubsection{Input / Output functions} - -\begin{flushleft} -\it id \tt= openio (\it type, name, mode [, format]\/\tt )\\ -\tt closeio (\it id [, flag]\/\tt )\\ -\it string \tt = readline (\it id\tt )\\ -\it string \tt = read (\it id\tt )\\ -\tt writeline (\it id, string\tt )\\ -\it table \tt = readgraph (\it id\tt )\\ -\tt writegraph (\it id, table, flag\tt )\\ -\it table \tt = parsegraphlabel (\it label, rects\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -These functions handle input and output for a variety of connections, such as -regular files, pipes, and sockets. {\it type} is a string whose value can be -one of {\tt 'file'}, {\tt 'pipe'}, {\tt 'socket'}, or {\tt 'cs'}. For regular -files, file {\it name} is opened for reading or writing, depending on {\it -mode}. {\it mode} can be one of {\tt 'r'}, {\tt 'w'}, or {\tt 'w+'}. For pipes -and sockets, {\it name} is the name of an executable. If the name does not -begin with {\tt /}, or {\tt .}, the executable is searched, first in the path -defined by the environment variable {\tt LEFTYPATH}, then in {\tt -PATH}. Finally, if {\it format} is specified, it customizes the way an -executable is invoked. In {\it format}, a {\tt \%} followed by a letter -specifies a formatting directive. The following directives are currently -recognized. - -\begin{list}{}{} -\item[\tt \%e] -the full path name for the executable. -\item[\tt \%i] -the input file descriptor (for pipes). -\item[\tt \%o] -the output file descriptor (for pipes). -\item[\tt \%h] -the hostname (for sockets). -\end{list} - -An arbitrary shell command can be executed by calling {\tt openio} with {\it -name} set to {\tt "ksh"} (or any other shell) and {\it format} set to {\tt -concat ('\%e -c "', {\it cmd}, '"')}, where {\it cmd} is the shell command. -For sockets, {\LEFTY} creates an internet socket, starts up the executable, -then waits for the executable to connect to that socket. The executable must -try to connect to the host and port specified by {\tt \%h} and {\tt \%i}. -{\tt 'cs'} can be used -to establish a {\it libcs}-style connection. {\tt name} in this case is the -{\it libcs} name for a service. The optional {\tt flag} parameter can be set to -{\tt "kill"} to make {\LEFTY} send the kill signal to the child process (if -such exists) after it has closed the file descriptor. {\tt readline} reads a -full line and returns it (stripping the newline character). {\tt readgraph} -reads a graph in {\DOT}'s language and returns it as a table. {\tt writegraph} -writes out the graph {\it table}. If {\it flag} is set to {\tt 1} {\LEFTY} -will attach extra attributes to edges to help identify them when this graph -is read back in. This is used when {\LEFTY} communicates with {\DOT}. {\tt -parsegraphlabel} takes a {\DOT}-style record label and the corresponding string -of coordinates for the record fields and returns a hierarchical table. Each -entry in this table contains either the text and coordinates of a field, or a -sub-table of fields. - -\subsubsection{Math Functions} - -\begin{flushleft}\tt -\it value \tt = atan (\it y, x\tt )\\ -\it value \tt = cos (\it angle\tt )\\ -\it value \tt = sin (\it angle\tt )\\ -\it value \tt = sqrt (\it number\tt )\\ -\it value \tt = random (\it number\tt )\\ -\it integer \tt = toint (\it number\tt ) -\end{flushleft}\vspace{-2\itemsep} -{\tt angle} is assumed to be in degrees. {\tt toint} truncates the decimal part -of {\it number}. - -\subsubsection{Miscellaneous Functions} - -\begin{flushleft} -\tt dump (\it ...\tt )\\ -\tt echo (\it arg1, ...\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt echo} prints out each arguments by appending them one after the other in -the same line. {\tt echo} does not handle tables or functions. {\tt dump} -prints its arguments separated by newlines. It can handle any type of {\LEFTY} -object. If {\tt dump} is called with no arguments, it prints the entire -namespace. - -\begin{flushleft} -\it object2 \tt = copy (\it object1\tt )\\ -\tt remove (\it key [, table]\/\tt )\\ -\it size \tt = tablesize (\it table\tt )\\ -\it size \tt = strlen (\it string\tt )\\ -\it table \tt = split (\it string, delimiter\tt )\\ -\it string \tt = concat (\it arg1 [, ...]\/\tt )\\ -\it string \tt = ntos (\it number\tt )\\ -\it number \tt = ston (\it string\tt )\\ -\it string \tt = quote (\it scalar [, qset [, qchar]]\/\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt copy} makes a complete copy of {\it object1}. This is useful for assigning -tables by value. {\tt remove} removes {\it key}, either from {\it table}, or -from the global namespace. {\tt tablesize} returns the number of entries in a -table. {\tt strlen} returns the number of characters in {\it string}. {\tt -split} splits {\it string} in words and returns a table (indexed from 0 and -up), where each entry is a word. {\it delimiter} is a one character string that -is used to break {\it string} into words. Each occurrence of {\it delimiter} -separates two words. The only exception is when {\it delimiter} is the space -character; all leading and trailing spaces are ignored and multiple spaces are -treated as a single space. {\tt concat} concatenates all its arguments into one -string. {\tt ntos} converts a number to a string. {\tt ston} converts a -string to a number. {\tt quote} returns a string representation of the input -{\it scalar}. When a character in {\it scalar} is in the {\it qset} string it -is escaped by prepending the backquote character. If {\it qset} is -not specified, the default \verb+'"+ is used. If {\it qchar} is specified, -a {\it qchar} is added at the beginning and the end of the output string. - -\begin{flushleft} -\tt load (\it string\tt )\\ -\tt run (\it string\tt )\\ -\tt exit ()\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt load} parses and executes {\LEFTY} statements from the file specified by -{\it string}. If the file does not start with {\tt /} or {\tt .}, it is -searched in the path specified by the environment variable {\tt LEFTYPATH}. -{\tt run} parses and executes the {\LEFTY} statements in {\it string}. {\tt -exit} quits the editor. - -\begin{flushleft} -\tt txtview (\it mode\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt txtview} turns the program view on or off. {\it mode} can be one of {\tt -'on'} or {\tt 'off'}. - -\begin{flushleft} -\tt monitor (\it mode, fileid\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt monitor} turns on or off the monitoring of a file for input. {\it mode} -can be one of {\tt 'on'} or {\tt 'off'}. {\it fileid} is an id returned from -{\tt openio}. When a file descriptor becomes ready for reading, {\LEFTY} calls -the {\tt monitorfile} callback. - -\begin{flushleft} -\tt idlerun (\it mode\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt idlerun} can be used to control what {\LEFTY} does when there are no -events to handle. {\it mode} -can be one of {\tt 'on'} or {\tt 'off'}. The default mode if {\tt 'off'}. -Setting {\tt mode} to {\tt 'on'}, instructs {\LEFTY} to keep running the -{\tt idle} callback unless there are X or file events to handle. -Setting {\tt mode} to {\tt 'off'}, instructs {\LEFTY} to just block waiting -for events to handle. - -\begin{flushleft} -\tt sleep (\it useconds\tt )\\ -\it useconds \tt = time ()\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt sleep} pauses execution for {\it useconds} microseconds. -{\tt time} returns the time of day in microseconds. - -\begin{flushleft} -\tt system (\it string\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt system} executes {\it string} as a shell command. It waits until the -command finishes. - -\begin{flushleft} -\it value \tt = getenv (\it name\tt )\\ -\tt putenv (\it name, value\tt )\\ -\end{flushleft}\vspace{-2\itemsep} -{\tt getenv} returns the value associated with the environment variable -{\it name}. {\tt putenv} sets the value for the environment variable -{\it name} to value {\it value}. Appendix~\ref{apprunning} describes the -{\LEFTY}-specific environment variables. diff --git a/doc/lefty/section4.tex b/doc/lefty/section4.tex deleted file mode 100644 index b009e2fac..000000000 --- a/doc/lefty/section4.tex +++ /dev/null @@ -1,396 +0,0 @@ -\chapter{Examples} -\label{secexamples} - -\section{Fractals} -This is an example of a type of figure easily described in a procedural -language. Fractals are usually created by starting from a basic figure and -recursively replacing parts of it with more complex constructs. - -In this example, the basic figure is the equilateral triangle; {\tt -drawfractal} ``draws'' the three sides of the triangle: - -\vbox{ -\begin{verbatim} -drawfractal = function () { - ... - fractal (0, length, fractalangle + 60); - fractal (0, length, fractalangle - 60); - fractal (0, length, fractalangle - 180); - ... -}; -\end{verbatim} -\vspace{-6pt} -} - -The replacement rule is to replace each line segment with four: - -\centerline{\hbox{ -\begin{tabular}[b]{c@{\hspace{.1in}}c} -{\epsfxsize=2.7in \epsfysize=0.9in \epsffile{figs/figfractalonea.ps}}& -{\epsfxsize=2.7in \epsfysize=0.9in \epsffile{figs/figfractaloneb.ps}}\\ -original & replacement\\ -\end{tabular} -}} - -{\tt fractal} does the recursive replacement: - -\vbox{ -\begin{verbatim} -fractal = function (level, length, angle) { - local nlength, newpenpos; - - if (level >= maxlevel) { - newpenpos.x = penpos.x + length * cos (angle); - newpenpos.y = penpos.y + length * sin (angle); - line (canvas, null, penpos, newpenpos, ['color' = 1;]); - penpos = newpenpos; - return; - } - nlength = length / 3; - fractal (level + 1, nlength, angle); - fractal (level + 1, nlength, angle + 60); - fractal (level + 1, nlength, angle - 60); - fractal (level + 1, nlength, angle); -}; -\end{verbatim} -\vspace{-12pt} -} - -Recursion is controlled by {\tt level}. If {\tt level} exceeds {\tt maxlevel}, -{\tt fractal} returns, otherwise it makes the four recursive calls to itself. -The fractal in Figure~\ref{fig2tp}a was drawn with {\tt maxlevel} set to {\tt -4}. - -The picture is drawn using the concept of the {\it pen}. Drawing is done -relative to {\tt pen}, which holds the current pen coordinates, and {\tt pen} -is updated after each line is drawn. - -{\tt transformfractal} changes the size and orientation of the fractal. It -takes two arguments, {\tt prevpoint} and {\tt currpoint}, and rotates and -scales the fractal, relative to its center, so that {\tt prevpoint} is mapped -to {\tt currpoint}. {\tt transformfractal} is called from {\tt leftup}. {\tt -prevpoint} is set to the mouse coordinates during the down event, while {\tt -currpoint} is set to the coordinates during the up event. Neither {\tt -prevpoint} nor {\tt currpoint} need lie on the fractal outline; rather than -making the vertices or edges of the fractal selectable, {\tt setpick} is used -to make the entire view a single selectable object. Figure~\ref{figfractalmv} -shows how the picture changes as the user moves the cursor. - -\begin{figure}[htb] -\centerline{\hbox{ -\begin{tabular}[b]{c@{\hspace{.5in}}c} -{\epsfxsize=2.5in \epsffile{figs/figfractalmva.ps}}& -{\epsfxsize=2.5in \epsffile{figs/figfractalmvb.ps}}\\ -(a) & (b) -\end{tabular} -}} -\caption{Moving the cursor scales and rotates the picture} -\label{figfractalmv} -\end{figure} - -Figure~\ref{figfractaltrace} shows a trace of the functions executed when the -user transforms the fractal in Figure~\ref{figfractalmv}a to the one in -Figure~\ref{figfractalmv}b. For brevity, the trace does not show the lowest -level of recursion for {\tt fractal}. Each level one {\tt fractal} call makes -four calls to itself, each of which makes a call to {\tt line}. The pictures to -the right of the trace depict the state of the WYSIWYG view as the program -executes. - -\begin{figure}[htb] -\centerline{\hbox{ -\begin{tabular}{cc} -\parbox[b]{4in}{\tt -\begin{tabbing} -xxxx\= \kill -\>xxxx\= \kill -\>\>xxxx\= \kill -\>\>\>xxxx\= \kill -leftup (['ppos' = ['x' = 200; 'y' = 50;];\\ -\>\>'pos' = ['x' = 250; 'y' = 100;];])\\ -\>transformfractal (['x' = 200; 'y' = 50;],\\ -\>\>\>['x' = 250; 'y' = 100;])\\ -\>drawfractal ()\\ -\>\>fractal (0, 237.170825, 78.434949)\\ -\>\>\>fractal (1, 79.056942, 78.434949)\\ -\>\>\>fractal (1, 79.056942, 138.434949)\\ -\>\>\>fractal (1, 79.056942, 18.434949)\\ -\>\>\>fractal (1, 79.056942, 78.434949)\\ -\>\>fractal (0, 237.170825, -41.565051)\\ -\>\>\>fractal (1, 79.056942, -41.565051)\\ -\>\>\>fractal (1, 79.056942, 18.434949)\\ -\>\>\>fractal (1, 79.056942, -101.565051)\\ -\>\>\>fractal (1, 79.056942, -41.565051)\\ -\>\>fractal (0, 237.170825, -161.565051)\\ -\>\>\>fractal (1, 79.056942, -161.565051)\\ -\>\>\>fractal (1, 79.056942, -101.565051)\\ -\>\>\>fractal (1, 79.056942, -221.565051)\\ -\>\>\>fractal (1, 79.056942, -161.565051)\\ -\end{tabbing} -} & \vbox{ -{\epsfysize=0.8in \epsffile{figs/figfractaltracea.ps}} -\vspace{0.1in} -{\epsfysize=0.8in \epsffile{figs/figfractaltraceb.ps}} -\vspace{0.1in} -{\epsfysize=0.8in \epsffile{figs/figfractaltracec.ps}} -\vspace{0.3in} -}\\ -\end{tabular} -}} -\vspace{-12pt} -\caption{A trace of the execution sequence that draws a fractal} -\label{figfractaltrace} -\end{figure} - -\section{Trees} -The program in this example draws trees of arbitrary degree. Each node of the -tree is represented by an entry in {\tt nodearray}. Each entry contains a -string label and information about the children of the node. {\tt inode} and -{\tt iedge} insert new nodes and edges; {\tt inode} is called from {\tt -leftdown}, while {\tt iedge} is called from {\tt middleup}. To insert an edge, -the user pressed the middle button over the parent node, moves the mouse over -the child node and releases the button. {\tt iedge} performs the following -steps. - -\vbox{ -\begin{verbatim} -iedge = function (node1, node2) { - node1.ch[node1.chn] = node2; - node1.chn = node1.chn + 1; - node2.depth = node1.depth + 1; - complayout (); - clear (canvas); - drawtree (tree); -}; -\end{verbatim} -\vspace{-10pt} -} - -Whenever an edge is inserted, the program recomputes the tree layout. This is -done by {\tt complayout}. The layout algorithm assigns distinct {\tt -x}-coordinates to each leaf node, and positions each intermediate node midway -between its leftmost and rightmost children. {\tt drawnode} and {\tt drawedge} -draw the nodes and edges of the tree. The program contains two functions, {\tt -boxnode} and {\tt circlenode}, which draw a node either as a box or a circle. -Which one is used is controlled by assigning the appropriate function as a -value to {\tt drawnode}. {\tt changenode} can be used to switch between the two -styles, i.e., typing - -\vbox{ -\vspace{-2pt} -\begin{verbatim} -changenode (boxnode); -\end{verbatim} -\vspace{-12pt} -} - -\noindent -sets {\tt drawnode} to {\tt boxnode}, clears the display, and draws the tree -using box-style nodes. Switching between styles could also be done from the -WYSIWYG view, using a menu. Adding such a menu facility would require the -following additions to the program. - -\vbox{ -\begin{verbatim} -menu = [ - 0 = 'box'; - 1 = 'circle'; -]; -rightdown = function (data) { - local i; - if ((i = displaymenu (canvas, menu)) == 0) - changenode (boxnode); - else if (i == 1) - changenode (circlenode); -}; -\end{verbatim} -\vspace{-12pt} -} - -Another modification to the tree program would be to allows it to draw binary -search trees. {\tt dolayout} is modified to position each intermediate node so -that it lies to the right of all the nodes in its left subtree and to the left -of all the nodes in its right subtree. Figures~\ref{figradixtree} and -\ref{figbigtree} show two such trees; these were copied from Figures~17.5 and -14.11 in Reference \cite{sedg}. - -\begin{figure}[htb] -\centerline{\hbox{ -{\epsfxsize=2.5in \epsfysize=2.0in \epsffile{figs/figradixtree.ps}} -}} -\caption{A radix search tree} -\label{figradixtree} -\end{figure} - -\begin{figure}[htb] -\centerline{\hbox{ -{\epsfxsize=2.5in \epsfysize=1.5in \epsffile{figs/figbigtree.ps}} -}} -\caption{A larger binary search tree} -\label{figbigtree} -\end{figure} - -\section{Delaunay Triangulations} -In this example, an external process is used to maintain the delaunay -triangulation of a set of sites. The user can insert new sites or move existing -sites to new positions. {\tt insert} inserts a site at position {\tt p}: - -\vbox{ -\begin{verbatim} -insert = function (point) { - local s; - sites[sitesnum].num = sitesnum; - sites[sitesnum].point = point; - s = concat ('new ', sitesnum, ' ', point.x, ' ', point.y); - writeline (triedfd, s); - sitesnum = sitesnum + 1; - while ((s = readline (triedfd)) ~= '') - run (s); - box (canvas, sites[sitesnum - 1], - [0 = ['x' = point.x - 5; 'y' = point.y - 5;]; - 1 = ['x' = point.x + 5; 'y' = point.y + 5;]; - ]); -}; -\end{verbatim} -} - -\noindent -{\tt insert} updates the editor's data structures, sends a message to the -process indicating that a new site was inserted, processes its response, and -draws the new site as a box. The process responds with a sequence of calls to -{\tt insline} and {\tt delline}, which insert or delete an edge between two -sites: - -\vbox{ -\begin{verbatim} -insline = function (i, j) { - lines[i][j].f = sites[i]; - lines[i][j].l = sites[j]; - line (canvas, null, ['x' = sites[i].point.x; 'y' = sites[i].point.y;], - ['x' = sites[j].point.x; 'y' = sites[j].point.y;]); -}; -delline = function (i, j) { - remove (j, lines[i]); - if (tablesize (lines[i]) == 0) - remove (i, lines); - line (canvas, null, ['x' = sites[i].point.x; 'y' = sites[i].point.y;], - ['x' = sites[j].point.x; 'y' = sites[j].point.y;], - ['color' = 0;]); -}; -\end{verbatim} -\vspace{-12pt} -} - -\noindent -Because the picture is a triangulation, i.e., there are no line intersections, -the view can be updated incrementally by drawing and erasing lines. For -example, {\tt delline} removes an edge from the screen by drawing it in the -background color. Incremental techniques are also used to compute how the -triangulation itself changes when a new site is inserted. For deletion, -however, the incremental techniques are not significantly faster than -recomputing the complete triangulation. - -Figure~\ref{figtri} shows a sample triangulation and how it changes when a new -site is added to the upper right corner. - -\begin{figure}[htb] -\centerline{\hbox{ -\begin{tabular}[b]{c@{\hspace{.1in}}c} -{\epsfxsize=2.5in \epsffile{figs/figtria.ps}}& -{\epsfxsize=2.5in \epsffile{figs/figtrib.ps}}\\ -(a) & (b) -\end{tabular} -}} -\caption{Adding a new site to the triangulation in (a) produces (b)} -\label{figtri} -\end{figure} - -\section{Directed Acyclic Graphs} -In this example, {\LEFTY} is programmed to handle graphs. It can control -several windows with a different graph displayed in each one. {\LEFTY} uses -{\DOT} \cite{dot-tse} as a layout server for the graphs. The resulting -%{\DOT} \cite{dot-guide-tm} as a layout server for the graphs. The resulting -tool is called {\DOTTY}. {\DOTTY} allows the user to read in graphs in {\DOT}'s -language and to edit them in various ways. - -Each graph is represented as a {\LEFTY} table. Each table contains the data for -the graph (nodes, edges, etc.) and functions that implement all the possible -operations. There is a prototype graph table that is used to instantiate new -graphs. Function {\tt dotty.protogt.insertnode} inserts a node into the graph -data structure. - -\vbox{ -\begin{verbatim} -dotty.protogt.insertnode = function (gt, pos, size, name, attr, show) { - local nid, node, aid; - - nid = gt.graph.maxnid; - if (~name) { - while (gt.graph.nodedict[(name = concat ('n', nid))] >= 0) - nid = nid + 1; - } else if (gt.graph.nodedict[name] >= 0) { - dotty.message (0, concat ('node: ', name, ' exists')); - return null; - } - gt.graph.nodedict[name] = nid; - gt.graph.maxnid = nid + 1; - gt.graph.nodes[nid] = [ - dotty.keys.nid = nid; - dotty.keys.name = name; - dotty.keys.attr = copy (gt.graph.nodeattr); - dotty.keys.edges = []; - ]; - node = gt.graph.nodes[nid]; - if (~attr) - attr = []; - if (~attr.label) - attr.label = '\N'; - for (aid in attr) - node.attr[aid] = attr[aid]; - gt.unpacknodeattr (gt, node); - if (~pos) - pos = ['x' = 10; 'y' = 10;]; - node[dotty.keys.pos] = copy (pos); - if (~size) - size = ['x' = strlen (attr.label) * 30; 'y' = 30;]; - if (size.x == 0) - size.x = 30; - node[dotty.keys.size] = copy (size); - if (show) - gt.drawnode (gt, gt.views, node); - if (~gt.noundo) { - gt.startadd2undo (gt); - gt.currundo.inserted.nodes[nid] = node; - gt.endadd2undo (gt); - } - return node; -}; -\end{verbatim} -} - -{\LEFTY} uses {\DOT} (running as a separate process) to compute the layouts. -{\tt dotfd} is an io channel to a {\DOT} process. - -\vbox{ -\begin{verbatim} -... -writegraph (dotfd, graph, 1); -if (~(g = readgraph (dotfd))) { - ... -} -... -\end{verbatim} -} - -Figure~\ref{figdag} shows a sample DAG. - -\begin{figure}[htb] -\centerline{\hbox{ -{\epsfxsize=2.5in \epsfysize=1.6in \epsffile{figs/figdag.ps}} -}} -\caption{A Directed Acyclic Graph} -\label{figdag} -\end{figure} - -{\DOTTY} itself has become the basis for further customizations -\cite{dotty-guide}. -%\cite{dotty-guide-tm}. diff --git a/doc/lefty/section5.tex b/doc/lefty/section5.tex deleted file mode 100644 index 465edc200..000000000 --- a/doc/lefty/section5.tex +++ /dev/null @@ -1,41 +0,0 @@ -\chapter{Conclusions} -\label{secconc} -A unique feature of {\LEFTY} is the use of a single language to describe all -aspects of picture handling. Editing operations and layout algorithms are not -hardwired in the editor; they are part of the picture specification. This -allows the editor to handle a variety of pictures and still provide, for each -type of picture, functionality comparable to that of dedicated tools. - -Providing two views, each of which presents information at a different level of -abstraction, gives users more flexibility in editing a picture. Some changes -are easier to describe in one view than in another. Also, users have -preferences; some prefer describing operations with programs, while others -prefer using the mouse. - -The editor's ability to communicate with external processes allows it to make -use of existing tools whose functionality would be difficult to duplicate. This -extensibility also makes it possible to edit pictures for which the editor's -procedural description is not desirable. For example, a constraint-based -editing environment can be implemented as an external process. Such a process -can display both the picture and the constraints and allow the user to edit -both. This arrangement simplifies the implementation of a constraint-based -system because the editor already provides support for the user interface, and -allows the constraint solver to be written in any language. - -Using {\LEFTY} to construct graphical front ends for existing tools is fast and -convenient since the existing tools do not need to be modified. {\LEFTY}, -however, can also be used for building new applications. This can be a good -alternative to building applications by integrating the user interface with the -main application into a single program. Implementing the user interface as a -separate process helps make it clear what functionality belongs to the user -interface and what belongs to the main application. Having a programmable -front end makes it easier to experiment with different approaches. Debugging is -also easier, since the main application can be driven by a text file. In an -integrated application one would have to perform the sequence of mouse and -keyboard events that lead to the problem, and this can be tedious and -error-prone. The speed disadvantage of an interpreted system, and the cost of -inter-process communication can---in some case---be prohibitive. In most cases, -however, these disadvantages do not affect the response time, which is -dominated by window system operations. In fact, having separate processes can -improve performance, since the processes can execute to some extent in -parallel. diff --git a/doc/lefty/sectiona.tex b/doc/lefty/sectiona.tex deleted file mode 100644 index d4337e905..000000000 --- a/doc/lefty/sectiona.tex +++ /dev/null @@ -1,59 +0,0 @@ -\chapter{Running {\LEFTY}} -\label{apprunning} -{\LEFTY} can be started by issuing the command: - -\vspace{-0.2in} -\begin{verbatim} -lefty [options] [file] -\end{verbatim} -\vspace{-0.2in} - -\noindent -The file name is optional. It may be {\tt -}, for reading from standard input. -{\LEFTY} uses two environment variables, {\tt LEFTYPATH} and {\tt -LEFTYOPTIONS}. {\tt LEFTYPATH} is a colon separated list of directories. When -{\LEFTY} tries to open a file, it searches that path for the file. When -{\LEFTY} tries to start up another process, it searches {\tt LEFTYPATH} first, -then the standard {\tt PATH} variable. {\tt LEFTYOPTIONS} can be used to set -specific options. Options specified on the command line override options set -through this variable. Table~\ref{taboptions} shows the supported options. Upon -startup, {\LEFTY} sets the environment variable {\tt LEFTYWINSYS} to either -{\tt "X11"} or {\tt "mswin"}. - -\begin{table}[htb] -\begin{tabular}{|l|p{0.45in}|l|p{3.4in}|} \hline -Option&Range&Default&Description\\ \hline -\tt -x&&& -Instructs the editor to exit after processing {\tt file}.\\ \hline -\tt -e &{\LEFTY}\newline expr.&& -{\tt expression} is parsed and executed.\\ \hline -\tt -el &\tt 0-5&\tt 0& -Set error reporting level. {\tt 0} never prints any messages. {\tt 1} prints -severe errors, such as trying to {\tt return} from a non function. {\tt 2} is -the most useful: it reports function calls that cannot be executed, either -because there is no function, or because of argument mismatches. {\tt 3} also -warns about bad variable names. {\tt 4,5} warn about expressions that do not -return a value. Only level {\tt 1} messages are real errors. The rest arise -from legal {\LEFTY} statements, but may be cased by some logic errors.\\ \hline -\tt -sd &\tt 0-2&\tt 2& -Specifies how much of the stack to show, when an error message is to be -printed. With {\tt 0}, no part of the stack is shown. With {\tt 1}, only the -top stack frame is printed. With {\tt 2}, the full stack is printed.\\ \hline -\tt -sb &\tt 0-2&\tt 2& -Specifies how much of each function in the stack to show, when an error message -is to be printed. With {\tt 0}, no part of the function is shown. With {\tt -1}, only the line around the error is printed. With {\tt 2}, the full function -body is printed.\\ \hline -\tt -df &&\tt ""& -Sets the default font. This font is used whenever a requested font cannot be -found. The string must be a legal X font. If string is {\tt ""}, {\LEFTY} will -draw small boxes instead of text.\\ \hline -\tt -ps &&\tt out.ps& -Specifies a default file name for postscript files. This name is used when no -name is specified in the {\tt createwidget} call.\\ \hline -\tt -V&&& -Prints the version in {\tt stderr}\\ \hline -\end{tabular} -\caption{Command line options} -\label{taboptions} -\end{table} diff --git a/doc/lefty/sectionb.tex b/doc/lefty/sectionb.tex deleted file mode 100644 index 4063aac96..000000000 --- a/doc/lefty/sectionb.tex +++ /dev/null @@ -1,96 +0,0 @@ -\chapter{Language Specification} -\label{appgrammar} -In the formal specification of the language below, keywords are shown in -typewriter font, alternatives are separated by vertical bars, parentheses -indicate grouping, optional clauses are indicated by brackets, and optional -repetition is indicated by braces. - -\def\bar{$|$\ } -\vbox{ -\begin{tabbing} -xxxx\= \kill -\>xxxx\= \kill -{\it expression}:\\ -\>{\it scalar-constant}\\ -\>{\it variable} [ \verb+=+ {\it expression} ]\\ -\>{\it expression} ( \verb+|+ \bar \verb+&+ ) {\it expression}\\ -\>{\it expression} ( \verb+==+ \bar \verb+~=+ \bar \verb+<+ \bar \verb+<=+ \bar \verb+>+ \bar \verb+>=+ ) {\it expression}\\ -\>{\it expression} ( \verb-+- \bar \verb+-+ \bar \verb+*+ \bar \verb+/+ \bar \verb+%+ ) {\it expression}\\ -\>{\it function-declaration}\\ -\>{\tt [} \{ {\it expression} {\tt =} {\it expression} {\tt ;} \} {\tt ]}\\ -\>{\it variable} {\tt (} [ {\it expression} \{ {\tt ,} {\it expression} \} ] {\tt )}\\ -\>{\tt (} {\it expression} {\tt )}\\ -\\ -{\it variable}:\\ -\>{\it identifier}\\ -\>{\it variable} {\tt .} {\it identifier}\\ -\>{\it variable} {\tt [} {\it expression} {\tt ]}\\ -\\ -{\it function-declaration}:\\ -\>{\tt function} {\it identifier} {\tt (} [ {\it identifier} \{ {\tt ,} {\it identifier} \} ] {\tt )} \verb+{+\\ -\>\>\{ {\tt local} [ {\it identifier} \{ {\tt ,} {\it identifier} \} ] {\tt ;} \}\\ -\>\>\{ {\it statement} \}\\ -\>\verb+}+\\ -\\ -{\it statement}:\\ -\>{\it expression} {\tt ;}\\ -\>\verb+{+ \{ {\it statement} \} \verb+}+\\ -\>{\tt if} {\tt (} {\it expression} {\tt )} {\it statement} [ {\tt else} {\it statement} ]\\ -\>{\tt while} {\tt (} {\it expression} {\tt )} {\it statement}\\ -\>{\tt for} {\tt (} {\it expression} {\tt ;} {\it expression} {\tt ;} {\it expression} {\tt )} {\it statement}\\ -\>{\tt for} {\tt (} {\it variable} {\tt in} {\it expression} {\tt )} {\it statement}\\ -\>{\tt break} {\tt ;}\\ -\>{\tt continue} {\tt ;}\\ -\>{\tt return} [ {\it expression} ] {\tt ;}\\ -\end{tabbing} -\vspace{-12pt} -\vspace{-12pt} -} - -A scalar constant is a number or a quoted character string. The language does -not separate integer and real types; all numbers are reals. - -The dot syntax {\it variable} \verb+.+ {\it identifier} is just a shorthand for -{\it variable} {\tt [ "} {\it identifier} {\tt " ]}. - -Assignment evaluates the right-hand side expression and assigns the resulting -value to the variable on the left-hand side. If evaluation of the right-hand -side expression returns no value, the left-hand side variable retains its -previous value. Only the last component of the left-hand side variable may be -undefined, otherwise the assignment fails. For example, -\verb+a.b.c = 10+ succeeds if at least {\tt a.b} is defined. - -Assignment of tables is by reference. For example, if {\tt b} holds a table, -\verb+a = b+ results in {\tt a} pointing to the same table. - -The order of evaluation for \verb+&+ and \verb+|+ is left-to-right and -evaluation terminates once the result is determined. For example, evaluation of -the expression: - -\vbox{ -\begin{verbatim} -0 == 1 | 1 == 1 | a () -\end{verbatim} -\vspace{-12pt} -} - -\noindent -begins by evaluating \verb+0 == 1+. This is false, so execution proceeds with -\verb+1 == 1+. Since this comparison is true, the whole expression is true, -so evaluation terminates. {\tt a} is never called. - -If the two sides of a comparison have different types, the result is false. - -For arithmetic operations, if any of the expressions is not a number, -evaluation aborts. For {\tt \%}, the two expressions must have no fractional -part. - -For table construction, each of the left-hand side expressions must evaluate to -a scalar. - -Functions are stored as scalars. There are also built-in functions; they -provide functionality that cannot be written in the language itself. -Section~\ref{secbuiltins} describes the built-in functions. - -For function calls, if the evaluation of an argument returns no value, the -function body is not executed. diff --git a/doc/lefty/sectionc.tex b/doc/lefty/sectionc.tex deleted file mode 100644 index 1c1f37dbf..000000000 --- a/doc/lefty/sectionc.tex +++ /dev/null @@ -1,11 +0,0 @@ -\chapter{Program Listings} -\label{applistings} -\section{Box Program} - -\input{progs/progbox} - -\clearpage - -\section{Delaunay Triangulation Program} - -\input{progs/progtri} diff --git a/doc/lefty/tail.tex b/doc/lefty/tail.tex deleted file mode 100644 index 6b47932f5..000000000 --- a/doc/lefty/tail.tex +++ /dev/null @@ -1 +0,0 @@ -\end{document} diff --git a/doc/leftyguide.pdf b/doc/leftyguide.pdf deleted file mode 100644 index cd7b20bd9..000000000 --- a/doc/leftyguide.pdf +++ /dev/null @@ -1,9368 +0,0 @@ -%PDF-1.2 -%âãÏÓ -2 0 obj -<< -/Length 268 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T0`5u5BP%#+0L'fi.HFEWg:bn[?IJdW4*;(dg1$Q;uJ1JRdoS7X14oCSV=gCF]S --EB]-&[3"(o$!s^\aoR1Dk0u-%B*mk4hd)J=4)Bq4aa,sIccC"^k]Wm6kZ$aTO6+j -?SBl3U2CoSgfqq!ilFlp4)KrNloZ;0aXI!D`n4?sapn"3*Pr.$U1U\Q/,/8jjdOe47.T?No+Oq:.UbD?0")LSiSu!t2$RR(M.(3YA750O!$jQnp]~> -endstream -endobj -3 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T10 4 0 R -/T11 5 0 R -/T12 6 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -9 0 obj -<< -/Type /XObject -/Subtype /Image -/Name /Im1 -/Width 395 -/Height 279 -/BitsPerComponent 8 -/ColorSpace /DeviceGray -/Length 20031 -/Filter [/ASCII85Decode /DCTDecode] ->> -stream -s4IA>!"M;*Ddm8XA:OX[!!*&R!(-_l"pP89"pbD;#RgtD#Rh1M#RCbI&.K'Y%1Nj\ -$k<^U%L`p[&ebrm&e>fr)B'G0,9ebcp!!`; -iWpl`#mqLeKTnnpUpO1O<@AdVj7C4=jRd#+KpALB`RX)CAp/opVRFLqk4U`(=(c`4 -Q`%=5fB;lf86BPMLmY-NaOo_O.60t&BmGQ'WO^.(l1lei8m5tUMOLQVb1c.Ws4mYX -!#bgj!!iT+!!#4`/VYDo?DA8ee$K_-)Y,8/8NA,nG%:8VRb>3['UP'q)PYZorr=*' -X\,j)'5b"S-pMoPs>WrhBDmbuqc^J!+RH!3![(?>lloOZ31>rrC;h^9.B& -hs_$R!&\BbZ2R=qrhBDmc$@%*r^>99!)\7.]\caSaZ',!rrC;H^9.B&hs_$R!&\Bb -\+p\e^b>W;S*J&i-Em9(rr=q=qR?86;uK/b!1L6B=T8@Hhs_$R!&\BbYrr_:])2s9 -!&\7s[pY.lAIJV!=Vd:"ebJuP8s%":7dVD*RW3I=DkqI/'=_CBcmVU6OeQgQ!Xbj) -fUib57r4>Y)cGZeAMSWF8H`cD1'MGSHiF((J,djsCa:3_%F?Jr2`<&PfO_II>1OXd -^O*!lq54mAGa+<3E!lQ:DY3EgiL+QCHLOR^TW+dESnL5]fVd5$rrBV_^Zd5cqI]S^ -Fn@Pr6q/#%K?.7p\t4cYl=]lF+$Kl -h\Ue7Q!s[m2!4XeJ%dP9rr=cS+4E0u)u];Nrr>Vk+7i6GW&OV5li*'K5N\Kn:iH*I -fDR!tJ'C!fT\o3r^\UR,rrAL/I6kGj(KLJ8R&^b^P\`koN&O!3^Zec@dk'bOUoQe) -#hY3?=RG_TEAt:-<4'bdJ@SZ3F^V!2K>sggl>n8a&dBgu:_h&[F(ZWVMp?uBNc;&b -F*iDLT"e(Uci;ApBL%S2N$8&ReJS!,^]8o6QC)oFXW3V,!r\+-D(P_&uT[YkBc0lD/X;;OMcJb -8'F)/82R&uFs;,Jf278J)?1a!!G*(nG`L'(]F\PoqDBcIP:U1c0Iarr*T4BQBO\\O/Tg%^M&*P -?p8T^=.[+DEiX78.aSns2FHM`eM"$J]%#`$4$9f/6Q@jP%8g3o7Z>#NNW`*a;6]0U -^9K%8orloo[D@bX95b`:eeTcVJjq!DAn9rONVho=dNsK:Q?\j(?J\f7LH(PYQ5qDT -Sa#1`"R6d]QQ[,+\2^S5,HF?8@#(*a(&ad8!fed,;-J>19dY4Bj!+CpeHsj#:u;-T -3FL<0Z-+`[/47YQ!8qqk=;=<_F^?T'r_\MD"A_///ujcoQ6[`P5UYJg7;_gm?N!1[ -g$qQ@E6V*T5H[WK2qAD&g--mF'&i2>.5NSmupbi&]^IVIVb>_ju$-1n]A^(!74%J[',K+rrC^VJ,dt:jD.t( -]l(\;W$@lm]t"W9U:<=%5nse;BR4;urr^ZM'$nFhG5!*6-bqF?JC -C!-GU%qm'XC:!p?Uj0Z:SDW;m"9,E'J+Sde3EP?S[C)=&@rGu_G4:Ys`tBjR -I5]r>"t/K!k*#1eZ?hiZ -'TgNa2;aKW$>iO?02K$eH1%.u[=og)Me,j[:_p%`S=5I"RXBi:qK:GsP%aW=HdXC* -ZuIp/TQ8i'U)h7h([9OtS@41I!oh?<#$;UL=Q9l94:LZEddc%m!$30M.#VASN(IGn -&t=bL@oQt%/&l@+EV>Tg@XX#:+FT3An0^'Ggf^X"f*`)hX?q+n=U%>[lB$ -lQNc_mFbZVX),#6!ZsZ6GSYGZeicZJ*=khM_ATNpk.A&;hcFEG6BS3LNs+Plmh:rg -o&2r.Ffm<-D)\DUhHNFfD;m2kN@8F%]im+)pjU"""S;eFWG2A,O8]00VJiJ(=72rr@RVl&j:S`>-.SVj7HfUf6co!3A@"kXKjl -rl?nqeMI-;rrA)YSc8[E[pSe.\_?WFZLY*h*e44:n(DthH!,DqH*XaH -ZLY*h*e44*h -*e44>n(DthH!,DqH*XaHZLY*h*e44@n(DthH!,DqH*XaHZLY*h*e44:n(DthH!,DqH*XaHZLY;C^1nGuLJP7cIoR[%2(@k49TmlB -e<%#cg:5C4OepnaRQQ]pEDrj"60ZCagp6u7?i`Lm:^qpl&ktF?jCt@uD`\lEYVD*A -nSgZ.Vtj`\CT6(]$%!NW.2:;-+5OL(:h/M7D.J_pb[J"C#UTa7-bg5MCjW9S^'`'+ -bKA#QS9OR/r]?Df:]-\uGNH=3G:gSi%H%(Y4TEq"fm-_G=a=.qZEj&,o!7hlo!7hl -o4;HBci4"9NElD]!97,+4oYN8#(Q['1]4ue!07&Lrr=d_?hFE0g@Fg?o!/QR^8CmA -9/u;I8<"qM9!'(O1f]VQkPQp%DshqtI#d=N.sW -GcN_?j^m?j:ZG)]43_gU&,]mTXIm?SK6$OfP/A"(R&>pTNP*DLcCRn)JKPJT"X:2BX0&[W6E,iL>.J_o&%7P3'PX\Q5 -a#Z2%OWHNnn8r?sJHpbBfi`U,NrEgDa)])^rrA7"Nr6?c!060Mr*d5;!/\ags46Yl -H!,DqH!,EuZLYl=U%j&XJhrrC^VJ,e+Vr4`12NrGUL -!&:rio`2PVo('*WY`e>2]t)WR23ZcD4bOqN(\4,9m)N4nJ^#ll(YK/G,p)%78Y*#p`hj -&"m[Fj4.a$'E!9QIjEqB9E(sRrr=-ST?0%iP5bN^\\H2=-h:"3!$o>EY&Ek(M>WQe -aY3LkS,@]/IjEqB9E(sRrr=-ST?0%iP5bN^\\H2=-h:"3!$o>EY&Ek(M>WQeaY3Lk -S,@]/IjEqB9E(sRrr=-ST?0%iP5bN^\\H2=-h:"3!$o>EY&Ek(M>WQeaY3LkS,@]/ -IjEqB9E(sRrr=-ST?0%iP5bN^\\H2=-h:"3!$o>EY&Ek(M>WQeaY3LkS,@]/IjEqB -9E(sRrr=-ST?0%iP5bN^\\H2=-h:"3!$o>EY&Ek(M>WQeaY3LkS,@]/IjEqB9E(sO -iUb?YEAVW%'^[HQ&iKX5m)Oo$bMmJ"SaL*ZbI8uJSCZV:c;P#Pd-^_0A2X3>Jc>`' -#(Q[#1]4ue!07&Lrr=d_?hFE0g@Fg?nur6/Ut8e?;@Z8C,.aA!(mGViBsKhRU.T]* -!GEf-WG%>&BDm-s*leIp-&O^XBVn4]2AB\@)+aK,!e!gjD563TCC+(6pAh=-]e-aU7&dTSD`b8]\1>T28A1^@J'R"agT&<%oS`b -e24j.(tMc>Y/lUE:d[^oe-"a's3d4*Y'KU%>g!D]qPpV>6JV9sM]!ME?\N4K'7VLr -nbOS,,]45>fC0 -nj;+f/Zmp]$rVC,'LDjY7d\DO5cne/`?30`a*A\XC'lSj;X0bleO=4uET0$(i-W3d -7qU3qf.;=[2%%*3'R>Tc1tbbb-fqa2%?'fJ8V=:s2uK^j^ZD_Dq`>naS,QEph0ulAmV%*IDu!G>o_RS;n=fiL^ZAZofB\?$ -`eXD&rrA=$2uL*:rr?hErA/rG[[[8#(5&L)qI]a-Q#/`mY-0Js+6f9o&s3ie%^Ae1nrgj&h0t1N_!4ghSo!7hj'peT_Mg.pP -pH]HorZNkY4Ace.AoHd")j>jO$]Ej0 -#GZ4keQT'3nX7nUrJL"%:(rU+9s*!I%>4oE\rkND']ed.MgL8q$b9`L5jm9@OA>p/ -RWP9+(^:OF`KZ#%`@o0P5(&->0mG?\RJdm1%D^c8-joV:=q[o"e<,>qF4ohMd!k0c:\//kS-(#3(p<_hcU2 -`_TCRp[0"\qK:p?TP92;PT3<5\e?fidN7p -Yh8A1WMgPG2=*-1VN-``dLu+=at*A/;"Au_nJ"=GpF89rD4[T)hFNc)V].E98c/'] -_A2qV5t(%I`.NY[/PK441fco`'R//l\5I:50S[!CICM;Abk`Lm$1m"^< -lFS`npo:]6hQ2*?L$u'X*j)egl"3AOIe$C_)TGF8Ws=S@!#7@+n?-$mY-Sk=P9uI@ -9VNaO,#>Ym]U`dOOi7/T,*b7:<8afmMu/\gbobJ6hFC*e?<1B5?<1BKXGhH)!<,irT:c$rg#p-I+OC)< -1]4ue!07&Lrr=d_?hFE0g@Fg?nurjiqph\G!6e(8!7Wm?,HT\<@[>X:P!'\5+]Y%s -F_-nM$tuVC&,Ng"[7.jn*gR2>0ofD5NR8qYe2"cCB&Ds9Ul5rjRR5#+At%\4)L3`7 -T?=O60YPk>0&,CBs?qTo&ED]nJ.5ab.T28A1^@J'R"agT9u^\iA#hWOk_TE!K2GlU*5ldpui -UlZF]:qmgInT2aD?PBjdH?N_89\sCjN=<[+d"0C=)+.)kV07;<7bbGGVYFalUJs[_ -7qZ]`LQ/m-*/F`<"Y@hF'Or>r_Ou9?ou0d;qTMY\Y7&MogQdb#Y:a3P?tEL?-O6Jk -YO(2DP0'dc?LSFeYG[FR#>9"5RY43W7@&l:"0N!fkPA]`MM?pgGJWXQTqTUQkF.- -ksd;I.P"aErr@?"PIAD=f,@DX4RX]JhBdTgEN9'Ye)8"/e$?a/5QuHkE5m6S=mb+5 -+$rb%N@Gn*Gj'>ncWj8+Vs..1K@][/bL:o(^[kCRYG_@oC[[-LDs:%[goKb+492#o -=,hNpZ17=Vm>9M!Rnp,5@Ee=*_79"[RB7=Uo&J(;[`uijoSE0JomIARH>gjUhih!g -YG^VgqXK':"oLQ^]KM*e41iP\TCErr`Nm(X!YG:>E;fVo#rL%n^%oP1T -]4j*fHV9bB6#bf@R8_R1KbbgB'$inF(niPO@C?6fr[g<9J*!?"Ys&6Jedc%W3oK?. -W$A;glmc1C;I><=Zc70S0F$[7E'K^B$V*c#A;u3d!6WH!#WmVD`3(`[/HBRcj+'&' -b3FMLDF@kOM665=Zo47,8sT&2N=65\r`LU'<-WsjHnmLShs3%5*;(an.[O&e>9?N4 ->Wkt*AT7bt85or=e>f,]kBI42!9(H:V!+juQ-^M -+&Dg(Cl;Nt!6:GOkPc]us3R9b?2FK&I1?sm?D=qWi:shdTcY))E6]=dCQf!iV@D`^ -_9]%^."H;o`4QJ@C7a=hgu4g>O48IC[/!nh)e>8o0dru^U,,7%Z]W44q/JP%k(aj- -j-o4Lk0^>A=K\Gj-;`Jhp!C(j_N[N"l>O,Hoc"En`7S861<&P7g;NMM)G)jt/DR`G -;5?;#DF*OGM!J+Y,>!o(@(.o%;YI:3\-dJeI@l%^L]susd=YmWW1u2sOKcsp(p&6H -VVG28b8kdA*C)]=hZUb(G0m(u,E-W@6kq&!D:PX^du%^Jj^mObj^mObj^mSsaN'qQ -!9G-0q>UH7Xe'n>!4!%5d51^7rrA)YSc8[E[pSe.\_?WFZLY48SbDNejs@e%$(B'9 --d -7pck'jop.J./nt2T>)i:NVDD9,bF`IEJl_mO -<]Qq;^BMI,=a@?6rbI#(El7/A!0_8^COc-MVt40n!5rsYd[GF`lJ1f]__S^##Gb>/ -XHe57qL(l?D25AdX%I9)I;0'h=QN&2R]l0C"AV86+@<7XDh=5J-O_V?\ON1U.u4pb -=ZKHLTA`o\aEXd\nB.lK&2tQqQSa$$(UiI#=u<^SE_I)OQ/,,mShl8K+9 -G5O$VD5l=&H5a.9/Fp`20cP^AUT@?''b#t_Urqg/:,upr[<.6g=N[_& -c33?@J9(Np&ekAdPW_@^6`n[Y10a#ODA3\j=6#e*=s-Fi2d -.JP`>OMd%h!_@ahT&\S%CQ5X/Rc!EPUB`PJntYb$Q"*fpgMT5dFkC.9l5(!_M`TV3 -1fg>ood+^98[r/>BRo`kVo@9,7PB1./]tl5[f[Vtb0Nrk<,PAFJCfnXBR:_AP$H$4 -)n4uZGoE@H!En*<6/nMJ80'nn\0id[.k`e]7Qg\Nrr=Itcd2SJD"HQ_OD"UB1]4ue -!07&Lrr=d_?hFE0g@Fg?o!"ZqEuiIY0j-/IjGGAkm"GIOEUKEf;uEY(ZuMlrUerOB -j%u\LTE%dsIKI6oe&!uEeB/fI+sf+4]iC11Y>BEG%_3(Wo/mRU&1T -VmUG?'mdI>P"4u_H@M2U$sB`@>ApX1"qC]#+P[\UTSdlqCeDi!#bI -nQ,UPoQ:BD5q:1hF"%9'-Md,^%-"d68ZK5s*n'/FFcp&V"F_O[ -+t[+n3._;(S]a6l:;]TQ).QHEG'o^T2UffDI0/q"2@QhD(b3u3Qji+`Oe[G8gP`*O@AEW -a5D.@!.P/eJ]M]<(p"5YXhn543>UaWL++E2Ua6G'8tN$tM^jV35X*#J9r8pX97(_# -bQcIkNWjl$=A$pqYcAgn3I'PpP_Rc/2cAN9YV.dU8cp7j.:9&[r\#6iKFgiba`?B1 -H!VoU:UeKLbJa@U5^"6T0c#[@eE#bUM'S\KGdK5f`nj2HaU0&Rb5J$$lCpA.+ER_m -ijOisf636r+GVJY!E'-sA!`IIQ'[sj,9D@7!0h6]kPkN#[X%?@a>0"pIa\FsaoQ,J(^T@eI[bIgHPO2BWk1VUa[Hgu ->^s@k^tkSY!C,Zc27U$$]25t57ll9!,t2b`q]KiBkfD6Ojdpg/fHc1#%fm[LU+#gG -gbi2_`3A&GfIX&L^WiR8R\,\#A4'/Com(Zsm3R?E/7H8\(>]Qq\Rep?=R.Q]D%e=7 -j/%'#N_BAdESjO%qr%GeB)Nq>]XBaRT_hO(*hVe-GoZbjS+NhdqsNYHOY2.KQ5Ai_ -`O2PKl;8hm4fXYRQM1ZDPoQQ]bZ%DdHQE'Eq-O'[lV=mCinNb\.naMYZPG%gj7no" -N3DtUq&DN?c('"L>Q-^M+&Dg(Cl;Nt!6:H&f0AdFs43Y\`#b?JAktLHR\eIF#&eDariY4\\^R -io=OX6\oJ$j`K..QYC9piqgp;YlLsNbUXipG4!`lAb-isEGKY'lqe6aFQF'!h8dFu -'2JIRnKo1>XR5=&PNnqh9[SBRekS!2&bk%Wh[/b/gb5%$G;dbU:n>rt`-.0@U4^+J -3AoRXdg+\"odreW&Ue$C.5WY?3@LrfGu:R!0tt?iV9eFV]_$LGI\QiBHiEj&:\\gp -kWM:QFA.7\%#V-I^eT5-?Zh]Kj:hi?\'Usi`0Xtn]1M# -^6*oErpW7W,P;lMdosZ3S\LYk1K#h@e41pDc-/F/3C$(fM'rYka_IMsEEb)tQjLAh -]eW2FWjNDMH>6&%MM.Z%-a!cubKA#QQ'%+lrrC2!F7]D3NE\O>rr?RIs49()^Ae1n -rgj&h0t1N_!4ghSo!7dG@ZG]/JlUnPMG`!E=AY'j$S?13o_hq8F)S2$au>Vh,pCX8 -b-dM'SCA\rlbrQ,2U$@"i%%%aW=GZ[AXA+Dn;*0!r8\tBOC*B=q?(kS1^\K>.J2Bj ->^T*&h,j_5eru#m=DgBsR2+uFa9,55'u9RM]J0SEL>lh;Xjlc!\*Y:.T -28A1^@J'R"agT9u^\iA#hWOk_TE!9-r`tj"HDqFV(rWT-",`[MIuCKPCb_)9('l(L -5HUE5HRYNdJk=uk:JgV+A*fE1,"!#\, -,=hX=,N=\^:nNKSf!MCi6V&g4IomZtlr-&\.+=7m5g/,#+c%7]WY1LaDOBkRdZ",=a=.q -ZEc4JrrDjaY'tljX(S%(!:5>&s3WY#^Ae1nrgj&h0t1N_!4ghSo!7hj*i?$IiopJ! -=gurr%ESq_O[/GMb:*,$C_Nj]siqG0B/VTD5Rr&cVjW64!Sk -<&_5pbJ6##\Xr65oLV2jrrCQY--uLS&n'JuBE"/Pl4(C:)!q8&itfV0rrAXL5N"m* -i7nVbqA3fs&D^*YN2T!05OiQ\(Yiob$?;fZmQN3l:K2HPbHrMV3m%BEDde8`"(ADS -#&LrR]\1>T28A1^@J'R"agT9u^\i@Y`om=GTE!?/ra#Y0nroFG-qspgO*:KZ`Xges -h]teiFmWXB4#dcj=np;jU0V@nr@k8[H?H`8$S#1M7)gGEK#KTIZgrJG`o0X]M;M-68QmiCP] -TiMc*_OdD3pJQ9,aHO0:4n1P/ell4YQ5a25Mg&j).MB[c)l([r<7+3T:Jrq=q[F$_ug#T:Zsk -M7K8*F"p[JM(6H2(R$N+l2tluVRW_%@ditl4XgN](R]quOZjja[O&ABX1/AJf^$Jd -H0ia!YcO\(!!l+8:DT?>YKQ;fQ?2(AUhg!n;hL8&XS#cIrTsR -E].'G>>+t=pQ77]Wle:jYF>*QL0Zhr]Y_,d5@tsr^LI3CA:5_F`?r9M"r?a.RW&KN -BL"0T@VSn>Ha*YdqR+l)pTf*brrC5!$tt.N,d^TjP49SN_/[L8.'Z0u*,DjSJ.rLo -#!4Ig0.S\6ESo#Zq!M745OrZs/T:Xh*`W,STD4Frs4!J4%TjhioA%2o8BaiS'j*oF -RIs?"-l9g?P%Y#q`,W[0qb6NI/56O-Zr4Z;hS-gnEAWQ)^--ZWgW_A-f%,3&X[;1' --P6OEd^b*c'i.R`A_N^rHBL2(Mjq=A3MDA[+g2oA.+LfFF*V:DO$U>ADumJs;biZP -(TucW3>#h50&O>7,,"SU<4=,\X45U7)>[)g;3EA2-%]?GVNKeUUs*=d.Na`*=TIdW -f6g;8>CW`pDJrLd9`G+)oGeX*T1Kic5Qm%@eEFqhG,&e*0)i'?(trauLmEi-'m>C( -jH^b`OJ8+U"TTS_@Sg;Ti_CVK'=;Wf>-H)^7fNJCNO-2hgM$#M<^`0m5kO0YZ1pt7 -l\ja9?)/.g_!8u+/BX!G'b%*QUMn=pVN_pn18OE[3X,m7LJ[9We6u4r*!T@.7<)#& -]WAcI]\-F)oD\ggUK9ZEpsl^sJ+c1#s4&q'^Ae1nrgj&h0t1N_!4ghSo!7hlnft,Z -ITrpX9gU@E"jjc5iOK$GTdZLl)F5SS^N[Z\&tOJNOEt*Nr3b:/dPRTi;k')W]5Y3E -T=)s8q0USD]RKIAf@Jk9KS-T^B;r!O^ -ZP0ks`8[21=a=.q=a@?6rbI#(El7/A!0_8^COc-MYDpm+7mI%)S,Qa5,f9KlPXkVS -CeG\*0ViZ3rF(6?>I#[OL95=R5Je#^"7NMs?br+0nJH>%J6*/Gt\$jnP& -"K?>@\T_jWTgtf?36Mi/`<%L9,bDjAQBoh!Q>m) -l7+jV_[KT9,S3GM6P>'41]^TV709KKJ--M.bKA#NbKZ<7O$EXEau+83rrA$_4SSjU -A/YF!1]4ue!07&Lrr=d_?hFE0g@Fg?o!7hlo!7d7Xl-aK`H)Yd)5/K'L0BV,2+CTZ -[C*"Om9rNsSjai"J=9BC:cI,Eb0.rNb0.rNc('"L>Q-^M+&Dg(Cl;Nt!6:FSmXO4V -s3R3`?]/t!?W`/]UlZG1X#C9aEHB1eJ`:]HQBL%:ZWV'"b86o#(Q:2T]VIJ8?:B:C -iQH)JOdp,'_5T_@m10761iqn@2>E'[K^XJidH502m]CC9(H5"nOJ%%. -+nU1;7TTCn]_c&O[uO`DokkCLdPSJr1@emn2SZB_V#4%D(gH -$s*B.=63lYihZ$h;7`?$WFAh.5Ng&s3WY#^Ae1nrgj&h0t1N_!4ghSo!7hl -o!7hlo4;LpA`[LbA`[Lcc9(j(rr=(_&#]D$[RI=u!9;9$CS1B^J,dreIU.9tmsPZd -@eEBGC7c:p4@o7Q94b%nDe*@`dj9_H)k2MiOA/(nCcJ1\dIi]cVorq_jOL&\H^fi` -=W0\g)VlSKA`aQ0O59Z.+@"'(T\Bt:qSsH^geC?p"QU(8faV-_?Ru3lf,!'[ZGUJA -cYj5H$Y!FO8gu.uaWp@$k&>=M=J1[WM*-`4jR1@EupGKL_`1F`I]SjnE_ -#6UCrc+b/pMKe92?q^Gbim)c,+0,`P90XLn>+&6Q@o#u[PO7p*$DD=KoYVed!V+F$ -Q'[c&Q'[c&Q'[sj,9D@7!0h6]kPkN#[X%?@a>F!Oc -)3fH/H9=i]hGq(?o_OXA[`L'UhqV=gI:)*2#%_r/_e1\'K7+7P"e:&rEi?g=6f;Y;AX)7 -&g^\s!4T2iTYP>SF)hqIZ+7:An`Z[t9Joe$gj -9dORU"*7;,8"47As&6I -q-YdBgI\5GR33pl]LX9WAr38qT1JQ]8I(0=,.lEn@2QJZ.g_Gq\Wtl'/(L3FPcUk* -p/"Hg5V^XBg0>K5'?;Pj5?]1g)jGIIe66uuYhoK'X"62n><8O4HYCd$W,>Zfai2/_ -'i;QA%7o\:b:bA!.k`D+.k`D+2HE:0rrE'!.+QYir\\N`hu/XLs49()^Ae1nrgj&h -0t1N_!4ghSo!7hlo!7hlo4;LpA`[LbA`[Lcc9(j(rr=(_&#]D$[RI=u!9;8cF8l4P -ci;@\q#VG2O&6\`(oBS<_SFQ%a$(\>F\;Lg`<:X[7GJa0Tma^%.h_5U>X_H&:mU1JL:Ndkgp9rrA)Y -Sc8[E[pSe.\_?WFZLY(*M?_NE=H)`ea8?<1B5?>Q^UXLtXIXLtXI -XM!4h)"[b-r1d=X5PWd8c[YXSTE!Lur4Xc^,1FRSKO.oFeJk-Z%B7r@AmSME=-hllsICb>43V7$<5 -UY=QPWGa$&s3iR/)Pq]CZH/;nS+fGk\WfNk -=qgTEG/6U0gjeAHp\mT'q5554!92USEBW<9,k4ur"a^TU`prYC5Mhmeq%S>@SA%1) -YPZdqrr=7(r6pqOc.)anH>e;o;?$WbF)gephs!)7ngOM&F*g:S!#6+G!#jmir*8eKqY,ifPJL]b'g2_"m=9+" -eI8Z?XZXm.Z%ZgUPpJsXW!)LK[pX(rrA0Orb9Wtc/8*@ -HiF'iO8RIna3E07!.&R5jAGpWRW>q6\tAFcn,/&-o1j0eDVP+:p\mT'q56.n2fJ\Z -HiF'iO8RIrO.3-Jo\TTJaJ8b82!+9!Far8;ht[t9k+&SS)=#UJ**9(5&UB# -QCHe-'S#88gjIqeqG$GVMEg]-?QV4.rTV#q!0KeNC!,Jul@6K+^[`fQ!6mO6q7=?0 -:%/";5P%Wf5&T9V-MRL.+8MfS8"4`QqY,SpSmIU[esgdK9La-q3Jk`"c/56]ofYjE -[.gTZ:Y"jIhnS^Ml#e*(rr>:WkPs3~> -endstream -endobj -11 0 obj -<< -/Length 2205 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,997gc&AJ$CpuhljLSWeI":9tZPbPm/HJlrOc)rV.OrS-7I>9TuMR8qM0OREc -3Uce+j2^QHrO,nPj`\BM)l],)IVX=/V-<#,]#g8mdm>SrMtb!b-'sB!T""B%p#0JP -#$k##gODIV8Ku`kaM^OR+dYgD9iY24qU8p(2LF4-=G;kru\?r>1o9`9K'M^6fW -VcB-c<_^])Ri5?_C3JRgR9I(E^(bJPD!L7?1ulS.Vim%n*m$8cb6Q0gX5$@u'SM(a -G!3PeL#4TNY%D?jW$5ftYAR\s-k@pgmFn_GPG0I=>tX`HF&j8!Z:b<$G[BX$Vf`%K -X8XljPHp80fr[->q'ooYo*=G7^UF"'n*M3T.]^E3@G4X<$cGq*AsEo9-btJVF9d9^ -^"u%NVXGY9-srdDr6Lh;PGTF=$)=,,Cdh(5U,43heW[b>1oV*%. -=^[4)AXL@+cpPdC..CB26d4*9*7Ib\j?)h6qi4PoqP>P1D:i:!a\k8[+cG'mfoa=;pGmoh3al!OZjM,q --JSqAV([YZ]]5tJoa^jYb-9k_=`5h)Hr0A0%,!WO7SgNGXn(5DcYd6fU=Qhm"*@"$ -OQ=97.$3LeaM//G"R^`V:C0N*<>AcNQa%]D]Kf3]IYXiLVuU&nC0.G[/4#H>Y+0g" -83iG.[HeJFSp_nm#rXuNRQ$95!'fObQ:2_>UQSV8=OO%L$8Pm6froE2FGas+.]0LZ -4(_a_G20`,EG3[Z3eT;*W6=6r#IpI+qA,alFU6:\I;D@T."N"2EEaW7edWOd$F<$I -,5IPipXG0ke2go@KI1,#ntMPlVVP`UePh7rPd`(?X$M;U%#HS10poH%9uW;dN3C=.u7rBbg+qSffG -p#JK8Hbs71B\g)O:F;S3!9*(dY3]_/JYXJMqeE1 -,D0*M![g$(X*Fd#c2aIVZ"Q%Nbr`?;;8]HAKuJ@mVK$\_#&5'RmfQtX]82Cr("(Q^ -K86`+bWDOMc`:5nZgjrWZX3.aMfirQGg"W27lIZ.qVkUL#fn"/Tm&(k2rhu>UrnrHRGc"g7gC$\F7soG'DFSqHtQ*0 -Wp_j7]T/"OEs,=3D0`VUqOA"_bDZVk#?S!GR1#,m8sZqCh(DT\:HLA(>nAd&5P\c7 -$g]QRpJ+MQ[DQSHi]F:39ji;R3YnhhdP;eP)hLd&>^WS]`(^o+\2It)2_PmVk*\1c -0)@<)A&sTOGC8? -1J.."-X`.-q"!YN-``?i79WE7h;!O -XhJnGmKAZiAJEc'W-idhUj#m-SCl4GoZm:ARVmm=W5JuH)SW=*_XpWWaQuooH"$IB -@@B=`>0^>]FcSN*Zb%jFi`f4O5tke&N]=mbBYCP&(WnN9<#a@m&pS**"a49C@Ei -N4q\7qYK:J5p`Q[-JN#aX_ko'n;W"qau8ui[cm1&%H_UTLehQ'+nPfEKh_j-L`RXo -@p8?8+SBk./7]6@JaD^hKl7'?i:D-^02VR_P@q>X`DRGtBU+)K$>`Us<%dPq80hS_ -I9O;`r?R`%qSf(brrrIRh'@O~> -endstream -endobj -12 0 obj -<< -/ProcSet [/PDF /Text /ImageB ] -/Font << -/T7 13 0 R -/T8 14 0 R -/T9 15 0 R ->> -/XObject << -/Im1 9 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -17 0 obj -<< -/Length 10446 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,gQ(@7%=OkPkf4RVUK(=YqWQ^n(^L1Rqeb?uD7?B4S%_QA[3t:D&*l\+.MKU( -A%-`@Fc%`U8Ep`_LJReZB6O0=LU&UW=43`(n>iDcbJ#ClDLZp[GGg3l5CGH%dmChD -LPNo7^(,)I3'ZfF4k-nmb-Ek2FoS@p7oOZZ1f_rPIgQ&=21RS6I6ub^Y!\Y/g,NF@qJ:YN$d>R`tMPSIWOtSrq^_ -VSd_Pa!FtiTC*7j("KG;sQqK6$F -=5W*.]R*^!Q_`C6Y8BLiEpS9S]VjRqh0&P0qPiFb.>1;jR#CSqU? -Sop+C5>1$MF4>95K`lVi.B_WLoIW:cK4fFeB09(:dp]_Pbj+4(DnXj//un'Xp`WuL -3P[PlJ-:+B"_X.kf6mPl%)4obF'oKI.Cs?K]MAGuJ^5/8BoQe"hJpk'_\U^j$ejoG\Xo\IRWE[cGX@b6]0S/*_>_t#r:LH6[;KZdTffAehD.ocd+ -)q16Y!ai`Pk-m@+;tZ`77Ae*$9ibM>L>M&M'`ck8>Trp.H3]%]Z'TX''WZRLbG<>B -q^K57n?Ai&3Jl5WRt&p2D-QYe=$Fs0)sGPuXf.d$%ja2J=]OV&(tNi$^>@Jo9Ie1' -+K*'i0D-PCRfCEe0B$c>0'(Qd+e,QJ@duirP^[FLL7;7l2t[F#0/<%84J-*f1of`Q -a$E$(:ju1p^MTg=mELj(n1CJ!j(-eC*QcalKBe"I@XrH#ORWmT0._ -`Wp,K'2b)hcA`Ik4]SlDe;D>P/8b64f8##Jp92#*>\6g><&s&a9`ll&S/ -bI"?j4K1C6+D6oGdeN;.E.7L0*j*]'5>SPJ4M/&ijXH.dbF%S#RU=Z'2--`4%J)\e -:G`dIVglt+@]cYO*n*Irf%7RUDn(sn,$!iG]=cO\3CX4JLR.hsbJ,N_cL;tbGfm@D8S+/snY8d2)\tViV\U=KL("#F -Nc.*J;$R:BhhAt!Q*&Te]O+h=Hj`4h5GF3_A3uI4pnhs#oNUV[]i!`oA_IItRLbK1 -GT65+f5?akj\'tFGOYmc*%O2n&k1XNRY#-D:?GdG`!no.:i%Y"9@O6W09+H)r2G+d -(Vk,VHFlBI:^lNZpCEKVoOgA8O(h,'_%tSHOcRFi>-cW.46r?Pck&!o&+jQS^.\Lr -'C#Nj5JHM5F(t#iB?K&fG$f\IG=S)_>sV37[<,F9mR"5Bo0?7$LiM8Q(YR1N'ijGg -(@W5bd3o0_rH_DlA;KQo_Bo_O0LnX@ed=h[`f6?)mE]u./ -L`WpWX0`*DnN(MaWtS>'l[>Im6)<&2/1Q(b"qcU(0ZaN`4bkI9V4[jm5rn#0KfWKU -U9+ITk\\_S5S7S9JX94:0D_\f^%*?j_E`t4K,7+FHNXKU5W%Pd%DqW<&sO[a5X>F4 -;nX:HC.tX\!)$\+QrR!!.sMq"nY;fjVmbMQ!qQ>jFG6j8M_+JqW1X.\,#!k/HBAeI -i=^[H=M`0'U)+jKX1S]<7hc5*c5?Z++A,B8^BSqt.16CXUW=<)b=\'Z;>E4*jfCqa -Nhb;9'Hm8&]'s'iYc[u06$\;.J-c&J"uP6qg;7$iT`D:D'c'RFdBE8;9u)2]O@Dt9 -LcRg(?GdN_:-]Ebo,VM[CUh`O5XPQYUFJkN#Rqm]Q1^rI&[XrJ1r?to>`2HIL6hBq -&Hi+$?k!9i03jDmi&0`sku/;S2&^5X8j`VcK.J+;#=iPW9t!)+;Op -k19V%YIPT#=n5`11]VHHl;_,hW@K.-P3]K<`JV)JND&.)_`5QPHcU?)`T!/W.$."JW*'MsOsi\ND6%$"p5+:+]P2(pHt -?:J/^=^;'`GD#rakZkEr!:G8E5DZhADd\2_(Btn>E$puN5_N8?(c2:ML$3=aSkJhm -'TjQrKa(pK&e,#cKZ2nH1,;[Gf@+1qcjnINLj26T(oP=u"%S]YZ3J)Wd85Agdb1A4 -Bedaa4UZlD?j7DV"iqB2B:t1l>kp;aHqf-O7ehn;CC5i(,Y=m+VCXcVc3Ef"hC,M$ -&[,]%%fK6[Eo\1eJCg_J]ET[G3Wis.hLn3D"=X0?cIY?b#19W_Z-l6^D%L<@ -r)Bt(!"'&E+8DBT)&Vp3;mKN@b93Miq5%jlp2d?419K"Y?26A92>frZStQ1g@R -T-+1;rS+\M&-9:>f$FE:-(gk3NiXpb.!ZuZ-pqnFr5Gm+J:kQI>m\tZSt&4EaQQVeMOl;@t?7[Tr'W=!(9a?[07'i5Z!lB8$DUnJBW.'dMSncEnk -8BrbG8]f&9l])/pa$E&ns!>9^Z6_tK(cq-)jQ)rU3o2oDs3nCY=BG-r,c_%P@SD1t -f,?<;8"WAn)8Eli#7a5!iqXK4.#^^9^&0Dl@QJ0SS4UsEg[#hkrr$JjI==gIhbt6s,>rMo_c$BkQk&.?Ql41:)J:Od/W0.X ->WRV[f'Dus?m\bgTj5%1hN:IK)1TBO$P#Y%ia#;$_h_-*CN`Gk__<+*KlVs08;HSJ -cD5D''mm;pf/E$u`u0qQao;HToNL%A39/E<4I1R2E#=L@39*eV7L0*.2!4'%7\o&B -MP1H7,JJ)!$S+o>R+2%[m?P\Z -e3)V?0tJ%=nu)b*+uBr]N2UQm`H"Y-dA>(rk95g@,8^$2Np4qqcACIQ8n!Bn),7

o,_cY$W3n<''u04N$AB'dnNP_@-g4E7g;IqWdQ"", -lDliPO/a-o?m\bgJS_?63K]1Xq]8iN8,V5iDuq)g&B*h;9pOUm<:!s8+$2cUd:9a( -S4LWLCNq:e8B&,a'#\mjKp\7W4EKVVR+2')Q&9R;1]GZY_o.3TRbQB5R@)L*=^gdV -Ed%[A4RV`mDuqgEKbMTT$IH4+Q\Oa$mtZbY4A%Caas@suQanp]O/V6&HZTI5O_/'e -cZc]b@5GB61>g%F#TLmn_]cKM^#`!P4d8B2UXe=np"2`ClX\GJ/+ -`2J<=M%S9j5X:8\#,=.&%kS'lqBuW.5VH18iWMC';IE#JYi\bj5\.-$eXi.KfUq8: -8(k.Z!.ba'@NSV)M<_-Q@9@q<"@f&nY;)Pta17]N/O!G.$\\WO6J:["Ql%ibbKC\o -a-_D\7NdU@C/1*T,F<6]Cr,P;#I$4LEl -$&i7-qm*r-7:Y72/d'"[7>1c)`VNdkH_iQnrkI=MPm"#mUG+F&Pl-N>3[Y"peObIO -;/=A4#ruZ"Lf*b:i'cB=g&o7&GN<-7DD*Gtcjcp1LuD/WTh' -IoVma#.&j")giF&gqd&1*L;g1)@ju -\?->Ie8:6Y-Dig.=:gOB"(=If.icAC3G9RlX(.m>#k_KUObo2n[&#Fea,XpN$3MK5 -k^,73O.FYtX&L%Xp_"F[/GA1O4c@==/fH'kWsbi@#kda*ARaRQXouZ&7=d.chB^/7 -7\RV]U_B_`6>?G;);gaH@DIiin\[/%7LiT+ieYWS?<\d);XoYiCnjZte#^:='9els -'glZ)8^3GF\'>a4*QHcSK(CCE&^7,dOGSOH5.$0_>bH)6ZI'J,Ql`#730B)>\db0# -7C_"f`#7I1gVSeHXM(X#_MD$YDcV"?@@.O.Mfl`_cJO!_9MB2q2mKK)+r,;a45@fC -e=?JTON*^<>g$h!&^t6kM%cl@Qd]![M,\;LeU,1O?i(:2%Ru-2a9N1i:8HnFDMT4K -0HFm[-71To^PAV)-8ejTdBtc*^nnb--SQ>cN2URXlR1cnX+!_NB-E6jaJI%I'<*sh -]>KJ)lsHHQJ2lRn/+a[s)0q1p:70GZD[+)khqqK!lY^]/%T.=k3](+%.h%4BY39n$ -bFgY330raG.Whb7KYRl\"U6[_3slX6E&+)+VU!aM?5\EB(-D&8L]T`2USZl9]j7H>8\"(fh`LsVb?_Q -eGg$o*+GIV#`QP8&rZ?sP)2cT0=rBq(s_pT2+%olObt\rbesg5e5@./\-4I)`pkm( -,>rM4X8SSKj'-[H$3Om^D=*)UNMuk%IH$'$n+V3p^kl%g>/R(?Ql*>l_J`P_(h#aA -&L[)#R7/@ms/O%m0n'G!?l&)!]UhQ%;Y+G^"V]mS?d%l4(m0]^F\N^l)7efo24%(6 -ilLNr!of1-g$A""mLs2SCQ/i'mn@EG\$\9F9MG;abNYuC!>d?/`2)O0/J0hbUuku9 -)p*q9>cmq?`L53qXT1]J9PVj(ZZXP!kqLD^':_QAN'K#gYrG%1qW&uX1Qf\Fb,)h" -69%s+E$?%OEn^cU6n2[E3_EmKr6n!M&Hc_SjM5L()Yr.7L -WVH#'0UU8b.uXfKBDh!18FK5!!Y2!9R0_&&!b1:G)QfDVO3t!Ge/T/L7M_b'S-V*5 -L3"Oq!ssdG7CBicKDgI]1H6,t9MD!-NF\CtrD&^cS8]p9crVuo,EC_:*]+O]=\)sh -j\]qGa)i0eZC/Ot8i&3S)iZ[/[D-Z(ed6oC#b83jhOOpsA4K4L%r2Xi#%SKLE@.P& -T"*a)8itT4+>.NIns%<*ZP46S?["ALrVq -N5mqk(bh^hlbP9,1T=Nl`^LZ]&\ihKE)`2YUJGYa1r@2PTbbLa`p`B8$@reg\/*s3 --fe-sR,OKd_LT_%^2PIls!eY90tmc[+GVFH:8Hlc>n9W!8^6,'*b_'8c1Y.ZN+<&s -7Kn"q5JjIs]58c!ht8LIUu%;KoR\YTA[+DD9I>PR:!!D_+V>bJH6?m^rdAPGC3BU\ -a$,;b?![6:QER;c,9(b+/H?5n(j47rdO"<^UE6*4W)3[UNuCW@)A!s4%kU=h6uS#0 -W0>+ITQRUEFo4#D?W$sTE.O-)m$3gpbMoQ`uDoW+/:;6OQ-]?6Dj+XjKJDoVH$W -OlTt=]TFgd\('5!X`;,62sfW6,73YrWahhtgiZ<+7"FD3HJ/)\+ -X=JS83=BBjc3)VdX!4VgFgtJCEH!4B9q4P?0uTh.r]9["\eY%@Dss99mf)D;kLJDc -O63!Y[sGd+R4Epi1j^,(P@XcmTY(\Ln*`$clsK/rs0uEa^&,%&6??6Q.5\DJn;ME+ -9c,Z'DsS*+"V$^>gg#X.=eJ&#!*E4S.klJb#sjZ6^tdS5Jh].03VWp5_%n7L^IBp; -(rI#J@M5H+U4_oHZf't)Vq?Mogi[-L";t%2c(g3s=s%rfs]R,Wqkq -%@L32)UH`]B3[&1Z5lH#=>*NjE@*f_89--sO^'XTB&KCWb9fhJb(1%!'b.u5ZIb;5 -i5ihnOP-T`DX:+=!WCC.fLfO<)@,E^d1I%:E8c*Y*^"$#4M2WF;g9%1FUm7M!Y9lb -eTFj>M$%[MHFD>d2lBL1=d%>.oh,6965^$_B/H,bjWU7A)UtpB]Rgp7/,SNriii2]`;]:Wl31(J!2Lf\rhTXeVfFN$E9- -:)sXXKKIZu8,c0N:VadT;U'cFl,1_t]`\KY -h'j1R+G_i0k#:mdJAIJ^7d>6]HBuutm7tL5Leq<"S^;kCBicjV/YgaM-ubCW>X,*B -RB7tb@@&T&TN`uu2hLQu6DlMc8#:VNI9%YT4rM(2nB`EYZ<7[d_`M)?,S2MYYs0&L -TD*"1Sle6eF^;h7eZZLQKf:&]+@UGXc8'NnHV]Q\h93?ImiPg>rtb)lpu24UeSfXQ -?Sn_&- -_tr]p1m"O,5r*7\&sQF5*&]'mrf^`Al^W0@e/%'4j"i-QH>L_LhHT?-4c-9Wd*Lmm -VV/E`\p@AS+WS:UFFd+jqq<-!fs,M.JQuq7Gk0_ge.m'^3S2uT1E -90'])V6=r^2Nd1Eo -'s]!9cPAQh6[(XDfuK\4N3AG`kXQ?f^6TaW3;)9.;^ji$7RuPSLV`&ZjNNsP0ZRVF -2$f8p!l>a5JNQ6^b8?,mVO&5>jl?ddUVcqe:*de&5>mJunP7hql)$%3E`bq76Ff=$ -XMmb1nNKaRZs9m*ek5Onca!5h37'+(/c+mH)[KI9*q\8EIl2W#9p59F_cL-)S3YjC -dE+h2RYhs7h*kP.PobC<_h-%>iD*r1lR1@! -TK;sf[>+.Y_nEDKRJ(FpI7[=]Mb=#!Gmsh^75EgnrM15pDDh-@IG^pFBHK&^#KAL*B1n[p*,[CK.3S\M"+VH&tajQ*6[a#ohf\T$N*R02X2\;0J_iS@@3 -jA(\7[:1:g"I]X^;qq=<>%'!,5@/#o.=us0S-kh2`i5*$"0rD]R$,-ZpP.MeMU]r1 -(tt)j:pF=S0*En18j9/:1c4er=oN?[hR1A"L!8'LL!2>Q*hs5:nf$\kB%IJch\$@# -^FXO"qc1V/.E(YWIHI#$FmLlq-o0gXF.Y#oZ,:B&o,^8;1>H:JRg2Ye'bj6^_G+S" -9mc/3%PXi;IL!2^pe>W5?Qe5gg+)eX-HssAe/o#6?O1RZVdn5hfRokDksg_a1#o)h --*uP0F&3`%\c(isN=Qi+Y)7)MQIIVl5NW:`U?ct)9k5UiYQ9/k^ZW$mU0Vhb3B&TC -6\\ap.I/L)O]Ia:Y+'ZM)15Z9"]gTM"Nh'dVtcuiGL(1>pMS%#ZGd\@G4-d*VG"q] -KNg3SM\W"je])(kkI?s#CDs0UCViAVfjN8A`8_uM_\5)G`_TagM0Sl -RXFbF4XPDU+C$YQ%In[1=]d#:b$s3?qjoT&%rUj2>:FVh8JKh!2*FM4Fn(.#XohB> -]IrYZH<-Rr2p,#moH-ie.;#^IW'_q+Ct,h$S`Ha$dA(VXQFS\N_UPn(]d@Vn[diqr -dZ(F,'f&.Z5&?]S'OX`CeS7Un6;Ps9)Fi_g'[#P`88)fIhbfC6#E]*=G[4Dng+D16 -i+5-Smf"7-]=`KP~> -endstream -endobj -18 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/F1 19 0 R -/T4 20 0 R -/T5 21 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -24 0 obj -<< -/Length 2559 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,9p=m.=3EbcW2UP<(VN-Bhb^W&pD@[Kg!5D.WD!OlUZYhj5So#dh9> -Z8ou=$%`]'_o)BEin_2U'6icu,$Kiu/i%p;m\qo?UN.*gGO'Dah -=,X9*^:SlRAJ@SVHWR#X<;54)0;]fhg()8n'-`QPl&7!4pX.Ej9\_rt\qQ2:-H2Me -Z%XF/)j[MY>(hQnefb'+Q?p0pj+I:A9>Nj:hO&4q'Jj!rA(FQEDe1OVl="^&neD&g -/q&WKJfd8W'K99RY85g_rSLaMHMGDa)lC;^ZPDQ9A7co&Q -MqL7<3eOU@2*l8O]QMkX/Y>1TG]6=6:Fo39dSl`J#$HSY\>Bl@Z5^cS2Dk:"8Qg$kj.b8oTLdK/5m.$)L.q -N7/Y-7UuKEA73]u!h/UdaZP?bNJiNnQ`o>O8;Kp>lYClR4sLcLJT6GMW9olkVhh)7 -_''C_i'DA!K5TR>h)B)s+Wnmcglj$o!),X[eaIBl4kA-dXIW8sH'i:@fOI+B&L(t7 -gb?LVHqqs^P_f("DLI9(@@3hAl>]dM%4*V9,P\D0.3X+j`^q5YW##[](f@fO;;M4^ -bWWHfn(&+TAhJ?b=Z1Rb6(!$jQ];WV_o`5qWDn):/ptZ+heI!cpk%pHT=\s8nb*e- -O[]qd2aJaTkX!+TV!tM,PG[Ne4GC8/^<_OhK0Xa\+F5:*CIS>>]"si1R]1,'>OpJ& -%X]ng3(UiOH:uaaGE5sVS.>=`PHA=A8WppAWq,7)Z7JPi"0Sm&U.2@3Dr=eLT6:D! -Ju%3!c%U4^P*-[!;0QG4UdB+)s'\*Qh3oa649.Q"FiH4JImtTi6HB7eiTHGL[``aY -Z`Z;(jiq_doch46q('lD6oBA_-[!o-jgiVJ\0blTUueHVrd(pIt.=m -jl=h'K.%Q2AUX%Z&`s:Q_Q`E6e]--0u`\E?&,Us+1JCf+b(Z.S;5kriHJ';ul0EhMBu>j(ppaRbtKL[>$isZ(ukAmfI5n5c\K(4HYFBf^o"Ni-*`4:a!"hS?bd6hYh*Fa -E$]O(Zgos5k7JoYNY4LsK6cMnbli/<1X9+:^C,34O?5lRSI[uWSnfWml47#5b8iYg -Ug+K?5J*V5'bSL]L(uEECZgNq[O8"%0YBE,eE)CeC>pTAU(j'!c^63d?6i8oDW%1@ -;ZK?Z1JDXe!J3dsEAm_LN\FW?a."?tRJ>lQ`hh8.bsl"e:m4i-m3\SQ<7?&UFb'!L -+FUmRdRQ1YMp>$A$&AU80mm>g)+RdH:?#i+,0<`HQ39ndr\Ypk>P2k!Vj_GiC0b+* -Ka_bBL.acu,\b3TJ/k##SO]S5g/Rt61Iq9@eZd8&LoP/S#:)9$/^Io<4[[7S)7Y:* -m>RpB#_'<.Vr7b[:NS#%k>U*A4i:jH's<6>\:b8-MhoIq=E#A?H8q_1noN:q!!V(DLk,)R -3J4/G\8XSf$Pq@n[E*:?#WUApkB'^GP?;n74Cm&o=Duu=lX%P]?J7B%s&mG0&8L*6 -aV>@GA/14n;?U'0beUbNU^-JTf?k+_8SRJtFtgnfW_M;7/'::G2)=:@C"5$!c1TWn -i=.jJk#=9D]PGf\KlN3n/J8lU\dQOmk7tElb=*[N)&t_FI4:4.DtI0tP`EMId>qe5 -_US>ff*e6pEKDJ*r!@bH6*Bm;Q'VMp3TZg*7&\>"$&?od\XWt=G5jfS;_N1l+R=d9 -)-\5tSYhgJblBHDQ5kMPqqO._Dme<."^-Rj19j<'O#D]qZt0]aRuG3*n7jjQGKbKB -m)U%.#*Ui4pA3B)5Cn8*bJ]lBP/Q[!Mcjisqd[>7DZE`p%6O~> -endstream -endobj -25 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -27 0 obj -<< -/Length 3270 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YPl9ondr-gg+Yg+?C_tnYEX;HFXbho8of;J"P!]b._D3\uNsrs70MMn?V]4WdE.Y -C>XGA(NBAZbfU/s<;-3$^-:h2Z/ib=T(ctYkdE4,\U?SaW`RI)bPE9n%Cci9g<`?:d*Ml66Ii>3SG"hT(R!2R#JNi99E9."(T4D -,s14oSeY,,He%RG]j3/m`8u0>8P\RtS%[Q[@TBlR>n?WDk<;?KR;NL2_@fJ^;rPLA -lIi:O4K$hVM^k;f=`gks'E@.YDi\CQ*9PJX'KID[T#8]#,M!8E=s'E`S\ZQ(dVH5/ -96@u9YT>T8B0OC$+H?ldY`D4=NQF>V>E%6V%Z+TR!(S>oRPlk+]98?2ZA"ZTA8!9=)-:D8;E59oTCD*:78Vh1Ml)1o>qg@8#S$)QQXPXR"< -`oYkk9MDrS8V;G'd"i\BnaghViQhP9GBIQKc?;M++.tVt\\^+Q+ad -Y=CBDJaGm*aWmt8##RZU9CjhAcsacoeK79C!"7Nb3;^@-ebKcGQY1JdqcVr:n2:n$^KM/^/-r -]MNNcHQjS*W[&&m@RE^E=.X_/ZE8a+55CB;P*YoGcj!qdjW"FO-sg0TP*PNtq#dNEa6,T86e(MJg3]lfA -op2I('2b7a6S%'Yh\)6d_8Quc^9,G5U=0>fe.FMr#"#/%'S*r+i;fcWTFXA)/#cjf -jT(@i#e-q7D2`*hJ*VM)2_$Q0O@IT7OtUgYb+k^.CZLl"U:RVF@LGhkj[=P9FH(Pc -$n&/I+q'`(OK`5/*&dA,%Jo/I\XsMO:s%l/"C[Cb4V\M>Fbs[*.Z0n@eJ:<)_,,f\ -ejf7\@%Gf:309-r6=Z$\@IUqnb!L^WQG$m -ADjH;-?SDih-&UsL/59K$bsL#'`0Dmk;P9)M&$6/fmOtgE2_%*`8/2>!?+%TKL&kEguBrAB:G"`XJRtpsm -5J&?b`]ghXG>Eb@5t4/\2?Jn%E"8IfVOGT]HuMlV<4MacgR"N9/M=q6;8qN6e.q]j -Qd4;FnT8OMmMLY6`QHTP2&->CGc_(=5;BFnmVQZf?d()5="'I!b[?nU*!BF_#2hab -QB>62M]E]nk)_4o<@/Kj$V?O=4GhuS2Os'amk`Jt>%M,;bGFc.t"IuC"U??L>a(ra>?Y:"nX -)+UINWsEl2pUP5m.U4%=OgP6+k=#lQ4BoQErh!Z-GH3BlhY;O/$JKoP[?@(b_6]dS -JJoXGFapQF8YW:1-G@B5SQ"*n)qN"U"JpEM:P"pS>3IAZg1o[6cPU]XYc"=,7>PX7 -'!^cejB\.qG(Q58(@9:PFbgeXeVT=86T!o395%=%#aC9KB7&&!YQP^I:>9LHC$nn" -oPg&_%%bgH1r8euKQ.,Ok%Db<9@Su=D9Q+!Z3&?E.]A*AT_WEP'_F1K2)pfgR -Ab.*UG)M/P#fI#,A$:hlm_PTI_R9PtPhp5'\+A;N688m#O;]H;EWp`HAD]%("$$PQ -E!26B;5.CYkmYh"P!Sn(+XWG3e8X0l:pG]&6eV_g.G4Mk.OQt@33P4gYWMsGkdVZr -$/$TA8aLGmp13(H6_j>dDG#sXQ=SHjTY3_KDR"3?VAFc%n64!ej>*CM9H_13gYj/T -nZnt$>/A=tVi%D6-pZUarc(*umf5iElE:~> -endstream -endobj -28 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -30 0 obj -<< -/Length 2350 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,9on9eU\/"J\20q1H1jK`9'&@gmGgZl3o[a^E"EDMbrmos>- -.$i]p$,OS6iqhTj5S>\%jH<>(F!UhKbSg.99nR`,`4(NA/7b%-_e\V -TijK/d`D@co,^s4!Y:ou1eD-D*/QNK2-PK%UYS8:1cj,sp;pDs`ae"IP-i%W=C3*Pn48pg7kSlhICO -nME)G>F!'4//.jXo$cljL!H_%"pER\]n9ms]jLC$[gt]Qr9ZY[$M4+jD9aug5L@ki -f@pI)m<16h(pg\<8Jt)ZP-moOb7Zbcn5u+!ESoOD=]Qd_r/hr]OVWGOo:f&<<=`qr -1=LrFDKbEsG)u-]S(EEo\"26e)\`,%S!?I9W_*Khisq*TqE3dd$=QbmIZN=1mnf4O -js)gn_;iS]q-;s8JA&quH!6s64nh9.7.!;[PITLtY(r_Mb$7dTIrMde$dX_j_%k6f -Xo_tjTc*Ut;o -\K)^ieMT$)/TQI8q8OB;FrV9#P.Sd6$U9K4,+p=-RopmS3^=1"eIGP)&cH=@Uch;_ -=e]!]N@[MSr\I&E#T(GSWGfBT(r.-=_@s-o$(%*@7'n0UVL:VDS94qEjKc`c;WST( -bJN%=mcb[J!-j*ulcP=+*Aj?m$qoi>I39!-DQfabD!XW_W,?30*Q"a\DC7i;doI85 -q+qLELD2+s#-\EbM(Su,b`]!:'K?94T) -A6ETqVF]tD=kU*cZ+a-H]2E[a6r-1c61eQdVue+t/];"G1]ne+Hefdu5FT?3ku9E; -Vteq+,!oL)11(^'6W6d?/R$MIL#8>f@(`9*B1$881?R>/YRV&Tn_)uY5u4@D"^7Bf -N:-*P?_QC8qfW1^@q4OA1kU&<0?Pu4U$$m_NLIR^WBu=4I^D0Eht$u+%9?Uu>6-*+ -VUcsX6c3s)FTq01R,E'J'QA^'EP2mJFfHl4:TI.gF0`l7anMXfQXP -MG#Q8C@BaaH)W30h$qE4a9$EaV-=>P$>/V)((aV=n5Q9EuOk`BJlq-;tA8VR84FFe[*@[K@jrS`8Zc)meb\>#EJcI4Q39f-h< -Arb<5,fUr#=>Zl;b&#u[De*he3&L+rq+;Fto;mjsqEM@#u,0_k3g/XRh/E4n]r@e\C0D:FuB -:QC:RURk.^[E#M;?Y"QBut9i-)NALY@k*l:#4?6HliBe3jlkBpSV/%R#UJU<6ZVf(hb0[!iBT2S?8cd.7LR -r:$C%0(EhMGQ3F/koHq%e8*n=0)4^eYSam>i>o3u>^R8'IUOm7`Ph)7$u1?\)HPu! -ClI5&_a50]Fo0:$-273g#V1G`1AJ38-prs90n'ko/rb%BgSOc'VPh]WA`#MmeO=GE -2(Gg,FM:B$.u8?TX,-YmN&F0)]it>P!6[/S]D~> -endstream -endobj -31 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -33 0 obj -<< -/Length 3053 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XEL?'!aK&q0MX=S*orhR+SkOsi3ObJe=UoX+mT_OCe`k1WFDacPS.(]F-rQfN*6 -N[1N\U=hZM'$2$:S2kZQ^T6&BK+3A$!EGj'mC(idR:qn*Db`pHGk=V`3__*lhl,tk<"h_++ZCo^9#A!'0Enpg0TcZ[b^TB:?aEVs -Tf=Q<1?3k*cW^Ct:-I7fB5)TWO"6enJh+jIhAO"RBpRIO0tC6IlS/qtmr&;`>?kd[ -0f[]j'jtYmH`srfHZt51Z<2cD\3!1mV]Od8f9%YY7.LZ^LBjC9ZKd>'%O.0nWuo7. -XB0+..RC]/clc7kLRBT+l3I2frEui'iu]P/_d8eRSN`sGu^MBQP)X>:Be!M5H&KTbL'D;7uD)qT-di2n`7 -n1gurWlD)aa95OHUrXS0.6dGETr$^SaA&mRc@\[8BAJ<'t:]%R@HU!NV5f[sbo>c"Z9`+XDF -F4j_=9Jkb57gZ5!2K`,`TOXQF?;l?T"V8dI-r8,9#uQ8??Ypf2+[.JM11]XT>MP,-(11EG$#M%Q,$^'T"F+')Tj/8foU&eIiMF_L.pBtC`UpaiS ->Zq,a(hr9q6.t&b1ab5AI'PA4SS+2X)XnB?ndFLhNN/>)ZW\0i%W!J*;gif)%&*c/ -AGFVg#g%\.XQQuQEP&n@m=RRnm4*0+o\hj2-bGdd%*8lKG)!ZWWhS05?:=#!!OBR? -mZ@`-7-MpD=*+UF'#&(lk-ENs&,%YEU9u-7_NTmZ9Ie7-+S/g[9Vdfk5g_l?qe0g3 -7U*abf$t8/+c5];=SbG-FUj:C7"PpU8T*Tu)'"86l5ESBPI(L=%lY#^:O$?Lq#`*#P2W"<,Bpbch191LY$=982"i@N -Rf2=NTbB.,@7j'NC!;C.^1ZM?AkBGQkgg6h"en?(D]uVV7"GkSYrO<6_Z7g<,U\ah ->ItA1!n7r2n-eEN:E]s/^e!BDSG)Ks>gQ%J6<&%lP,\%Th.&2cE[(@ha -YaK5e8,A>fmdn]u'q@:?)A=B2UTi.ckUI*/J(E]?3^Z6D_VW^"Mn3pL3$O-'\e@8@ -&=c%u%m.JC?c1Frh3s1B+r%L7b>E5u,tWHe8ol14mO-2h4icI@6:ag&?/%BOMP(u=cO;Kn0=AeIH0HfIFQ9'bT;0SC9\-Xd) -[uGFI.sp:D>=7.k/QES_G)dhXXW9Mgg9.pCRGC]uP6-]`=NKfRf=YK5-n?[f>g@UM -SC+;%cA3=C&Pda%>M4gQBb,+/rm%lW2\U$.\-\940=5AT^:nB?l_]-.:3`1N4d;$N -e@t7Z%fe!]H9!HfL?C>6M0KKIBmV)[@Bps1X^/#2,ZmT[-K$"1ZA=ZJ=Uc97nu_E% -gikBt\,Nk7%75WJdNW*);\;k\h[huE*'"5F%i[8FRNd`n+(e*HR%Dg=_9?tl)pH<\ -l8*MG3[Z_YPSB?6Bjq+s&oFqW)pps5%'%$VWB`>2QMTYNoI6P[FZGSuXH("]$T!\n -"S;3/B'PC_J5/qH; -@fmMEr.=Kuc81,p27\\Ag!m\ATM&+VMF$$,9&/0r*_Oc?p<,_#Ol2qI\)]69)';EQ -_QE%dmr@d3Gq-Nn)%paP'H-Li=E`R!\Fmj=Egmf"Gk<,n<7#!i$,o6_S0pbH-0oNE -q"WUI+$T\t1Gi4;7DG/RC+GAR?i/3XK+P6L06g*aZml7,&Gm\o[OgqS'%X?5mL<\u -S.:<7:!VPd;@_I9Y.8A\9B42hPLPW$Z.+]j(IB;YO+&+!8>8nkHF!%fIu!s]Lp!8; -nt^u@S'dt#P`KQ2RkIlu^dn$u>[c`78l"Wu!7>)&KTTB:C'X=!j^M&].?SV],&Hm& -nIs/ZdpWJ\!^+)kjP86G$n#GE_$%VF]0[cg'^@=X,HAs1E=%U7(Vb`: -fJ10W2WQ3E)i[;+>^mbsnWaA^pI,NN'R<"p`b*#g0sPq:fA[>Z/eq[p=@T'N;Q20a -hdAs)K#tkq5\QC#BCk9q">)_\11-^8(][6Rn:2+'R^Vu\CURe=3#H+./-T"&BUs>= -qT6rs35V'-^2`q<8YZ+b0u0Lp0lH8B*+#[1?t:"ZgcRl]B<43XY1FgWT@#Ietf -55qpXrI4f5%-V(~> -endstream -endobj -34 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -36 0 obj -<< -/Length 2215 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z\7991#N%)2U?m*4Brm>RidG*,GE-:k=_&Hm7eg9L!E17g5_Z1bV>IXT? -ZtPn,ZT3sjOs6ld+/r>babs_X6Z/4E8[KW4-;o>7o9HL,4?kNc?c -ar"=slCZo/6a+a+<9,uk:q`'[Fh-$A,c8:0fNC$A+-$4MZg45jJoL(g;@cb28'[fVn%))L]@.P=3c,T&_"9,eOfhDL:Akhd18;4Y(gV -`51Q&ippiqD`2'N2+ae@QeJ;#WG/:)+'`&"]lY]QRbd'9E!-""8VBq:k*TXcKA1%. -8h^qAcJ^8R@c-Zm^fFSEhB$5'#o(hR\)JTU5(gs$8jefEkT9Ocquc[U0Sc&a0KV+( -loL671iYe[[s9/p&o%8iR#.>=XZINVnJPj]M@cElbQ$MrrnmfX -q*(V)[A?Z&0r+cj9sk&%:15c.j4)eOU2iSa&5%KQ(X!6`4/&q5.hW*6ea0^!%B[.2 -1Sko4kT]imp;?Hf8Y#Y(?d4&c7#OBMCEl0(#jbZU?F3pCC/\))@3Kb_GcoX@0U`$7 -+51>Yo"Bl2$OZ8mMPJ9(9nL7H+&*eI(3J%l];C:W!6+5XNH";p3'[I"j_*'1NE[sU -I8c]lbDI6SN5V[HN/E"A-r*Ynr7StiabZ$k!uh(`N&s&BX),n(BDg%1hiKf<<$c\L -*+KT`Oq8.`r%l?WT__.OWgap_3D6-sEFHiPh8"5D@E`2*Ze)'<>`p"Rc,<"siql(h -mdR\Las(6_d%KuhT<7%b!rth[4U>2I#FiiTUl_B'nZIhe=F#4C3%Z@2@TK+JZV$#m -1J?iso0FaDY+Xtu1e2GQWe*&!N&9[42*6*kA[C:cHIDoUh%Zr6CXjkV?l#OQk[9/7%FfR3Q]4Nglq\@>P3Acs6KH -UP!1ThN<*M:JEeCh)tgUniZJ<;6]:]U*&ddAqX:OqK=8eh\KBL2>F@6-oc7@h,@Tt -:@g8_jj:F;\5St/qlbD3+4"5[U/3i3`SaA6^29$mZhShU\2 -6LpB^^lP%-[F$>rmbo`o;A.?]:95m[>_%#C8J!KO6)B[0^"Cug(jL=jr?E:L!j^l5 -=J\4N*Wr:I5mJ[i\'K#>&s+RBKUeQB6,Bp!(cH,HN/\:AhGjV\pp[mO.UfZW.U?u`@GN15@;\H9_5,"&,-@7a@E=^`A4)rZ#0 -Isq4^r>YZK/(G=DhtCOng=q>pN^t[s0X?+*40tg^cHciE;b!9i-fJ<_RPpcj^`3DL -0ioTR>_rpT16'tSXg1g#hr1*QW7s(Vk9J/PgQ#hfkp.Ul^pfcG&[`KTN'8p">4)0h -Cumr]8R`Hir\-<@OWCS4hE>*/1][1MLt9#V2!>o5:^9\<#f?e4+T]m)1^c^GRa`@e -2Y]/Pb74;j,tZ4H-K].cOgq^T,\c5W\[OGfCae]!D=C;]4`FmAK<4p[1u)pXmY9.< -.?bh(e@8s7P"0t:_[;/+P5Bq;PE,$Rj*2V,-graZUGTq*S'VX_'!5G?]EY,(gZHjT -1PEU4V9;Xd5I`H>M]A2(=@#02C*#kd%*$;Tm;E"ho^k`E;+@4t2hqqgU^.mP@K&+Z ->C?S[)OhK@[WSS&&S;t=:)A2S$0,b*dln074["9NN;58XQQb]=4*T[r]W[hYl.oGai -H'!cNmbEGfC-&PhN:T()&?mY*-qpZ(M`+!Y%FDNGYqd,nFG+P3Q[`=:rYbbJ[%`Q~> -endstream -endobj -37 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -39 0 obj -<< -/Length 800 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Yhs9lJ`N&A@sBljZl"ZSUoQgPp5ee.so>0?$g'=WC[#`(5I#R*tp0c?fGG8V5Zj -Wq`k]oA7^Xo+TuMcl.Zl!ue -2uCX(\@)N+./$Lc%[MOF@t?BY>?pF[a;(3GLa#7236U;oS^;?Y1c4H9cCkY8"dR6" -@)_:4dWGWfFi^RQDOM'``BZpiGUJ=/NaJ%lKu):"/=GZ'F&p\dbKdaKr1d-Na_"EM -^k87J'+"BV9r&X>!pD>1gJ#@8$QdbY^mPM?U>3Yc\_C\i%\TC4:7`01Br[FY)Y[Kg -)/t60BHLVDVMeE"Ro&m_3l*+9!rmgC5h6"F6&k6uGBr"8'*8):'*Z-f,';-bOm)ZI -9s,H(I_8@%*.$b:.m5_7`,[7-7J>nd[Ek#0m`2ktNd')BC -Z5"rhAg&Q,,&ee005puW%#&`;P:T?X\mH/@)1Gs([U\5egD&3K!5WJk>'K3\e$[_W0A[-r(lb -R]j<[oO[bHfk\RE7Z+hTl'K$Z8Yt+$1c`2uIjJALl:Jg72\4 -endstream -endobj -40 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -42 0 obj -<< -/Length 615 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wj8bDr&G']&?qm!u)I?e^+qW10fX9&8(1,RX_bU7)-=:2*o)h[=le6t%sW1$?9r -\HdWDhLSTII"(T^!n^$7)s^F_I@YrSlZ_ifEBa!:$gW6Y,Q>TuUmOgM -k67HinDf*8WI_q0[B!9]G7-qJZKN`"7100]=QJrA)<[).`VfK27)L[+mUo7ibm;1P%G?&G2q,E8Lao8_O -rk8Ba?k'likZV4b]'Y4!g?,#^%Ql\:S?_lkE^%_;A,+h;="0kgrp(+&EPan-BE$/N -R;;f71e@$+A*C)&/\(H$*?3B4=fSoGAcrl[0VP]meQBq::f3/Z%:%G& -endstream -endobj -43 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -45 0 obj -<< -/Length 4355 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,hiHO%&UrWP_WXX0FR=m[IQ$E-?(0PS;4n*PhVmbE"4s8aV7*`Yak>JcrSL7g -3$XIN"O.*1=X&X=R;]h8k54i-Rrpn.Zh<`==U@)]m!h\.<7nrW[7]LrIC`'`qn"dO -Hk`pc@%Z'*]D9'kIMtqq=F\'.A@>*n7+eX-5Ms`9b.SL7\uP+hnFGW*0Ue4&OQPNX -B)\qp4Y;u!h)k(/dk3hds)OIL.Q00pDU4ep!Br,);3p]W()9qS+.?WCPa+$\R-iOJ -m:*%-p[b@C6a0eU&s'FY_tW\/m%\N\>ORL0^1>4USo0;\a`i`\E>nkY^84>D" -AJ)d'gf7=:LT@QEG5FTA=a9I=gOY\+"U\h!q@-?4A -L#99URXJsd^T&]PCF,G:r)/*[l/NB4.$"u4jr"T-GjDO(ckL13YMA@C@T:KpnWWBr -VVQS0,l4Lp)O=iYb_t/G*P,8Oj!(oOP.=O\Wb+SBo,0fK_@WsBlqrqCKL\2`VktK+ -Rbl%n.1>nId4``WbXTZ`#'hcB383j$ac\4',0KIg^A78.R4Xa(Qqm]]V:*H#B)^U" -=aH:[2F+.K[Z8Sjd?XErK:S< -gJ'Hb7c=#[-L\P&<[1RILdWQ3(t-@sTtL!N5%O'^-mhUY(l@DhP]1Ttrnhb``o95bbq-Y8^[OHLr2I/e -coe/)GMG;'Q!3$O"R\pnP9?MCXb(g3^B_m&6gG!@&GI?dVK1rP,$ -`![l5'p6V*N<6"j0sn<760,_+2Z2g.lW.IC;u^W_llPii*e-'uZ_AOB;N/OJ]9j"jBe+43X&"I9j?=n< -Gd>HsW,(_n6-nr$%.DL/(,Une#Z;hehnM-*m'q6F@8Ighq3)$.$'CJf7/""r3=ejI -[(mpb#t`:ijqd/B>ca\CoO^5[/IEGV/%u/U`aZnFm'H6(P,-)7pMM*+h>f8_6WmTu -.7++WL0oG?-HAW26<*$8H&Y\qE/;1 -nsMrUIlY?Z@:-%EhOpnB!Qh8R]3$W#V,Xatnk'h7#!u=WPgR-sUbGZ'@ROLV.[Ie2 -bp)"/"YIJ4;T`d;_@eYlhp*R-]o&%@Lk]=5^Pmml3Ir<>(X51)m32,m.'dL(&e1jk --3(,A=Q0PsB#Xcb00HR$SP7l'd=4eF(,>FB3Y%HD1ch:3&#E]bpZ\`b:0_]dO5)4+J09g`lKeZ]l>;-p70K4P[^`nBk\`A0i&.-'M2i7TijP7t+P_m+]XcZ/\nk.OCVC'bbG<*)([>_qUh89E^,GXg>Sukmg*;T9gFu>o -?K&KO_lR=J0\4>U#%<%Qlie7(I_Zc;kR,k<6kh2ZPDA0aO)t\SC*BNiJaDkG3eBsa -1Ms*CdVD0I4Eg+-S$(Spbq(';+`*Y(.u&M2d\eu^Db+rkaTRTA -9bL2C*+3V>U%JMIln4B=-?3,U,g%"8X[r:_0'VQ -\n*%*Xu64%3A?jm)&1uG_g>3"mJ_FO1Ns%6QW[\/&Q"M4,jIT&r-."SP6n(J?*XS5"IkV$ES\$UV_BKP09=IB:oMRm%A!+B -0;*k'2Mm11bO9eFgC@[)4?P1_Z/tdA17tW`ZJo%*5PJc&H7qY'M[)M@2$Q;s"V\2N -k1(Z4k>e#jGGFDJM>5--/:jR,Q"C`O8IA6Y!=_Qp^1Ibu;W986?u.WJ=JSNCYLOUm -oUaNBQGdE3BYkFQhVl%@`+MjbLrutGF\V'N79i`6QL`-<`s'hF@h36/IPIm)R"qV>bQHpJNJC\$TWY!c:0'CbZ -jKd/e@7ZeBZlX/el5$V]fs:-!nC_VJ\BhI>at8MN[j#!^2GFT.bWM>'H_mm+?+[j! -n<+->,%KnMF:ARS&>_,E'fca;mcj!+Yr?$Y!<"00:,;LmWm%3'MB[JH/^sVP8F]A# -P8(J\G/P^2]CZ,`\m4+`$nA-WWUp!RHdYWL7.J%'X'Vo:(^BCj8I+JB^GO%7^tOL% -a\>\P-nSdG."-GYa]>38[a^:H=ZYB0#%BKFSZ'K;r"j<#'Pt>ol80cuF9$b4]$62\ -auC!se*m]@`qSgtPEQE%FGm3Jb:ec0pRCr^S+?ma\Xb5TMn)$ZY!cVjj3UHYDIt>4 -H&H1T[;n&7H+WMF%La^d*NI9`pf+DS^Wb-e^3,;IGC;U#A=5Uf-#80T!L\)^(7X -P'mem`tYLNrtcro"lI:k,]1U/_gQK*ZM$ON`+nlV?&2nL&Gjje%CkjXK"U0>2p\^3Eq1A*5L)f7[ -U$J_s^*A15WiglP23TltYTi$:"d,2u[%9-OHM+WY#)S'^!/sVsk.6Te#%amrbM.L: -d0>3]Z**11q9F;&BOm+I%;.-Ki3=njE2"&?,PN&]Hrts.8fN]5?$q>ImUD".\jNWY -&];b<^dZ3MHfAHjs.,9+$S-AC2fJT?NPd(\1hc1)omV,V?;%9Y2_,P)X(K5mjsa[t -\0>mtU>3GW;'[2qHoa'/H/T:ce;Ykqj;L7CrZ^"7Bd/;Wa1MY&8Af!ss)BMarQck& -8CXPoY2\[r75_HQWM.VUn%eQQ-Xp>A]!F\u4D -endstream -endobj -46 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -50 0 obj -<< -/Length 5093 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,gQLU:%=OkPR($b0AnK`P]\8X+9k(`)a*\=8acUmDOYSSjQ+oN-#1*Ju -c"([XCIGJU\/ZJ.r9a=JrH!.cm[mkSU*lf+,PUZ%s!r0j7E&3$n"1,7dJ`M$rD12, -qq^K8I]i)s;uc:]o:8eL;\V[CSU1:Uh.GH[;k6,fmN6]=rcbs.SG\9n_Cqg83A"%` -5K@`T%^5`rkAhE^1V?3?@[5m;I5uUP.6[0DN95Tab>L\3QXhV$jngr,_TkU`j -2m&hh*dubpY&:s3ot*`Sr/3JfGJ?<@o?QD7*]],iEj?Acf5lq4bH;W?gpmP@X2hPG>nIDF\%,*OofMAG\i&S.tn\$[3=A*"j!,FGAO-2pf<1 -o23Y)goT\68Q:/BPdckOn#CCLYlK%n$3T^s<7JFWmF2[Go9@-E+Hq]4Hp(s$NRlN1 -?r0Ai(,dd4:A@ntXe79`=*\I#+O_AOoR&atr&pK"Fn[Bgmp>Id$X_rK -rK?_HFY,SeHdj+g:roM_o'fD]iRWK`Ca>-&3d9+b>rU,Uk_hD-+$e$0l`KIps4P-) -2HRQN?^;)ZKT7tYR/_Q@#MYP3Hi=MVV]qfLorARh6E=jTXbsTSAFF+&3a.!aG!*4k -;3:uj3fdf\.2gj4UOO0[kDg&#BW90q`%8"gBs[3mGQ+&;s$RSKOE?1]PJ4mkl6:bK -ED7j]d=s#cBZ>IGCd`]2#uNfE1PPSYFgB?m;W[IgC`VC%[kfbJdmu]?7q[5-jt]HL -,e%PSlO6iMs& ->qpV26[)C-$UP;gg(>,"N;ChG_N8a8>D@J.q9OV5.t41eA9Oj)f#n:K$Boc.Qh&Vq5@,,sh7J9qi^`*c"q -P13J]HM_7-Q=`N%XHuU#CYfFaa7)NCKC=YaiR^]GH*2i8IboFnOC&ENfE@@"e*GBf -+V`*\\3;oba3,"Tmk?MS:ob0aY75("8X,&A<,GQg8OcQHMP\=Lnn$7@%KN.g/kYQV ->]G5g[+UYR\[-e0+b&1VR<^2X.JRTCb439F;'ZG9U7n)lfsV>H\Oo-'q)A?A>5LC' -FNX->V&TU`A'HN%SULA)f3a"+q!1`&"G)\PF+Q<8[!Zls"&+f6/]FX,:`UP=m%>+@ -U1YdB;i(L[j&]o#$@Ecg[V]be^k?("oa)8/4j*As^*d.*U#-=@!F-9hZn<0"5\Jo3 -eR1a;OA\a2"]&=Y,+.e3X3'SBf(;\jpcS_pNs*l>Ug9 -p-dk.H3&QWg'a2OOWh!d0E;7$l`,-2nYS8YPB,8K'>?1N^DXSrF_<8\%6m-L/<(Vp -Ef`"jFf4[t4&.I_j.L=42!q1Hd+OiBU -OYgG4f!Z@VZqgC"H);`#_palH(F&Gi:"MB#4-ftb.rcd+PnG5]5;,/D_253(nd07mg -8\GYZ+0uuV;+@.F+EeNDGbAg)Y-q\R]g0prP]+R'H2D1"5KA&D -8IsYn_V72O-3%&Wb(3?3KY`b=#,FR+qh(*$ogjj7Xk*P*8"&$n8u^lL -MM+ZXQD`-h%gS*^`Y0`3XuQfBY%[HU\tQ+>Y'u8%4-M3@ou"t[PQj>@Tu*Eu0bh4" ->b;!F+N[^2#u3,2cj8\71Kog6h/rr*C7Z5N4d\S6%T=Qn*@6;EEP_J3roiL^D\maq -`]TUZAs]\XD-SJ/QN`!aRk(C]2XF\5*uKr`)0==dB7^###*N/F<[i=n1J\1eH2 -A?a;ail['+Z^iH`pK(ipD@&WdZnm(Tjmif'Yr+"V$Bd'O7,"q5ijc[AZCmXeMn.g_ -[EMOofn^4*A4QeKc!n,U;=tKt6%?M\oV5>jPIW3,iR%0$bAV&!k^bQjX;uQsgt6J3 --"Mm@XC"&d)B.lMAJ1-l8`VI_H!YD'6K]P]Cfm[\Xj.4A -CpV:t!S[S+$iYEn)]20u*GP#(fi1C^D)5%:=V0SUX2H<2I^0-bm:q()gBrV*.6*AL -_/sd>#oY-a&#ZWpUL*D[+Hf]g>r@RC3FFoN>o_Xmf^`qpL?m8)W:S8^&_@fUqF5c4 -HW%]_YBnuBZreB)^.$k,[E6Cs8s6EAHk6+D(d'+I5/piqA$J('i.CO+n8hN&&D+MG -KtShrRB))UV8_41-@V\>9=^&M=+1S[bQS$ -X\l397bos[TI,i)9.>4?5qWj$ -Oq#pWjdEZe"4:2*I__(82k4]tCSh[KFQ0\TRded8XoJhqf'EK148fsdIDLl_Q4Ctt -JWB?GlUk'86(Y^Y34ZgGaAV=j>^dhhq\9@f/9-[^[VOL/D9Hc8,WZ/#KWQ2%[h)G$ -_J>kJ^9:G_OaE$'Vcu]i8XMKn\<13\F'DB>VBcG"H!Gso>q-u%SS^GO>$sY%'pRec -.$=u*a$#N]cH%t!%l#:Y:0!+QKBN=`<*G[gC.4I^VXs]d#"FV^+`p<1]RXbE$(#O- -1cZ#3.&l1\qCjZU;s9TK?1;*+$)fY%C*9c&n/CoF1HN3bq^i3qSHUeC)"P(f38$dW:-,UM.D4pPaM_l_W?$%VOK)ifBCOPtWLD]#^@>]MQr^RqdjFk-[/'Y+YONoRoY -%c]#qaL`V1)%VbdjQr%W/)U-h^S@f*5=$nMBc%al?LMI-']SE/L;IG1r?7A(F_)?t -S?FGgX7\iH7=\)CL)+%Pe8@>,BOb/]8F7J9jRhIF#PU7/7[ZCnM&k5O2c6h-b``mJ -@Sb)6N?DMuq1>PDs%8/QMAH)rXHb9&1JS_i&XcTuWX%]jM$>QpQMr.$SsS^aVs*I_ -Pi>_5g?CL3U1?km_G-XB"]Gn-_SAqM`93*PF08ahMWj=,2eiN?6t#Oh$]:3+B;/ql -Qa;Nj+t4@c-C8[O?J"%j.aW4'"FFaYg3d$Z#*:VC)`5:rm:q^G>rCc.VGcn7L4]lB -[mPq6g161XZt-LmJ+4/=N2CU+S#d?:5.Mg2cFq?uq!Rm">(IgOk4h6qpkP\Z@slT/ -BIm%"m#G+#Bf$O$LaUZUc&eXCGUWC<^83,))Ej*24BV@d].TW#82DoWHQ"jZF[3ZE -+YV?'#hh!?cQB[S`@""4prb -[CJe?/L4Wc,JB:l7;RGPgp_dG8lg -GF6$f8\t2#g4/SYf"q;R4M6.g,!NXWF1*a6.k1>L2^8*22Zpd;mi3rB9_]3K(0kX" -`FO]0"&[g;=tNjEScNiSQqXIhV`AA4Mf*KM&._EGZP,F+aJ/n`W;[Ul'aEEQ%hq_u -Mhp=94p!;D&DHklAr;g%X@EdOAd@"t:_C1m^Eh'Z\-aQngLIPG'8R;J+6"GBDE:(3 -:Y$aL@>.-\2ZbIqrnmeBLXiF=[6(l4;!5_iKHQ^7:Z;ud=R'3R(>[7$\e_o#"rW!m -Y&(FCVial\_nhSc9CqX+!o04FpRD)lirLo=RQE$qFQn3W -endstream -endobj -51 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -53 0 obj -<< -/Length 4683 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XEL_2dP8%_^Iqe88,L=1'@-Q@7QE_$kWCH^Fec62)F*[ZYmhYlia[<;lbfU.C2; -dXtg6]$PD4M%[qNa2`[G+$OVl8+F+F4X;[I4sp!\Z[^Es0.C6@q7&RO,`hhXcbKB- -*qtkHhUW4,9AAgX4?[Q]YSK&t:b&s/[m*$'h0aNpQ=Z4)S,$IgVe7=2F6fE\n.oC! -]A^0_n3^P'c#ft#oCDOGmCs]q/FjVS?D-+-4'YqA#O*:QkJ!PBTuRi$$(("5F5MA^ -?gUP]TG;V"Ff)u^QZbQc'f&"]rOt)[HJG-Reg#B!.>a"!*Doa2d" -_g/tY$hG..0!o[Cgi-c,CqV>+k,_+LbD`7@OMO:AdG5=F8Oh;@i-M)eo`B>DCkV>1 -h\)'?Y*gF2KM@qo;SjbXk5H.6lQ7*o3fi_,'onTJGLh*-+9!t%]qrr>8A]slm`]Uhh$lGDiGcq\aqIgbiaF;.8sJYFJT"A?#-]!h2Heas2:T)Q"V;_>\Y( -YZQ("^pjB;m2N$8*%rC?pKE@iIC"9ufW0pWQ)f0$i/`u#d)R[!Yr0uX\81S*.M\G$ -B9!\MIV%OOD\[BF#MYO/30X?O>XX8I\8tt',$oO3\cuJV^=l(LjS7^o=G6O)Ku.BP -"'5*I[!ag$aepbfMM2^taR<9&gEROMph&/EO_`l1gt,:dF@q5tQL,gSDa*16N<7I. -fj$dRBb8!^9EdES8R6i#%"7lTYf`u1PYNZ*Dh_>U]UMTsj*RCoCnHe,A&I6hIAkgs -T>!Hs",Zeq77?Wc@2\k=l5_?1NQ+.A;u=VaBPQ!Uiagp/.=0k[Qi<$>[iJkd"cAB) -2bfE`$cr),a)rKc8_hFO^7Qcq2c%C'o;)Dq4@,DUbZ2J?&d6p$&*bbE\5?quMsnec -]&D%:r`8.&p=3,5\NN/bi?9[^n8;q/^ -!8f65[(--;UEST;3LDN65)YF.rO,\e&)/[i4s[85cf8]Ag6tW,6M5Qon^ilKg5qs\ -ruZ[ao;\d->EZ.^V%hNZLMEnAR>_PtlPtOst85mA-SQGOdQ1tL:':WD*L[_:#6 -Q(9dRh5%NV1+9E2kBS-FLrq'mXM]jP7VfZ*kU[:1E!&qo\O^2P$CUqs0i3k_SL3RB -FJW-L95JG_cMhe_X)WSQq`WMhQ2*`pfOBKlWa9G$oc65IJh/+cJ026;"27%iU2^9A -n&O^8BPTO=J`YA5*o"5R$R80(@(o0ca8,aJ2b[P^qRt@O3h`pM8:;Cu#K8O:s.^CD`!2U&!/5%W%a -FN(Rg!9>mOoaO@IXTR]7J7!DTr6guRW',uPO#)oq]/J2Eh()bZfP)PtCb$q+,Zt

0+-IN -CuKgDAY$kh;2l#a:oXJR'AtdhWpP?s;.S@-flp@o_kG+>J[Lh*f>o3]-RRNjk7L*A -[H8UB"]fjO;kW&Id\>RX[_B]*IS1>4LJeuF*$l8qOX>NfgV[rPo0egS^]"/tQf!8l -`P'IuRp=iSF7E+m3TBS<"11%eA+$c&J\FS-@hH$gj^S1_fe/X`kblm/i2i/ZQ84FA -a$c6LF0$FS@D'uV8r6_ba+q)Kr.N[g -5G=FE^7M,7M"a?#eAJi7VOjdB20DHGGDVFnGaU<:M-O%3=IrCKK#FVe=#5pt_,pRh -j.hln6Pm6sOfZH0g_Q%A]nPnmn]H\.D1+t6ofKQ&pb>fU9]<4$=YTS9Vo -22o&i_BWj`MhjPr,X1PP#2gPr17LHUU5VRL\[?'tTNe\AOet"\9.66\6_Is$.'=^) -$4gUB2)M0IOfMW<*:T5GF[=_cX'XT;3 -ZA?>h^`(')6DCp;Cnu2\6Whe30&C8OVKUj\?:HZZMY,d8I/_M79"@Xh+FmC6`Jr/W,PtjqS_=rc;AiXZolPS)m&Vq77 -8O^g1O]"VqTN*RbeaGR%Pf3H2?e_j2A]2's//:gb8SE8^Q"0P$RSj,@/RGeD"ZT=* -8Cg%u/**K-kkQE3ln#c`nb-)6@cFpF##t[LNb:lnD#QI\&f+I7;HtRBSP(o>tD#m2? -(a9S\K4(+;\`13BP'YZgV[3aFDLLQ!qcqkNJFj[]ira(g(0BANNeR92B.23C0L,r0 -XN&\SoM+[`7`ocV?l/Vo]$pa=7%dO=!>`i=)P3S1G3@n/B?q>*:,i+h#1:b$*PRjG -!'a<-W->MR&#>UubqfON^.#VRX:->B/sqFtkq=gC`fC-@H,bTXkm+/a47RT@ -NnIramX_I>f+,$Ujgb/"(jBsjJQYPklZ:VD/lK!\!WE!H:d$aGWC]V9F>iT`dpe34 -q.$n`89j>afKbpP8f#C)3q'M%>@Y?T@!>^W!2@ZH[&sub"eiY6W\`4rTVk_rQI=Wh -c@ho_&2hkN&U+T3ZK+F'TDpgO>n%^b/8gMK82=6Jg'si#3`R%HoE?_R\PdGD=mTR] -lgkE$9$(f9"'@?^@MZP,Q'4bB0(4qsYb5^.;hqreaQ(G6F[^/o@lr";$pt'W!L#r7 -\lrujV!rg6nKoJ"Trj#BqD9:ofY`;PP94_iZ_5LXUBm]8[2UNJQ%W%^EhSfEJqZc) -i=k@P8$S3-#MQjdid&AKZ'3^!TugdDhTWbuM<5Sj;1.<3;G/XS*f'u$pT_1!6'Kq6 -CpO"Z9JKk#B%c;M4B!uj"O/16rt8Wi]57UHFPe`C,eIN?GP>s>FX'=PZ6:(>5MP03gUMK$.m`4&YS,6JcL.r\%_!n@qKP&++;nNTalNh*($,$s -a&%D3q11f@WSY=F[DFb?IgnA+P":-lLLu..b2jWAB4(/_]r.!,C(' -L3d!_gV.\@dVKsuEiq]KH2Vnn$=gR!9,&FD%,49qZt9F; -=h$5lce3'(dcUFtZD#3DGDZK,LP_T7h_)HH;2m8XH_gGJ'F95f;WdLNh%g5.WB,/] -YnBmtn5':i'0P3LGeJCg_>5Rjd'-/H[N ->[#0(6bh36XDO%F6)dRqVfT+M1+&(Pj!Ee'MOJ-!a,;@KE_,qe\Y]n^YH>>@?` -q9P&i0,#NQg5E)]pL)QKh4`OF%*@'tb%K5W=U&C$#k>aQ_r4RXR[DcKmf]IL\?L3% -B,9]t3T -4KF=DW7rhpj"Eip#'JOI^_j!Uk*Sc#Pu]&G?;4@f"e`3riehKZ46_^YjNQh&d8S>T -=f7\6J$uPY-+"k9VCd?7U["(4Abs'T$^EF_[A5#_[F9K!VO'Lh^\o5S0Aj7k~> -endstream -endobj -54 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -56 0 obj -<< -/Length 4992 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,9lK(5&\\'Cp_FaO2=,40@SYT^,a_gL,R+lhS-(@O,js$T5Z2)RfH7lau4.WtZm_=g4 -]2;."\kbNhijO33(Mic,f=r2;PHeVZZ\#,)Jr&cQ$M^!3[nJetWATk,=hH!XAq40G, -ac6lag;dQ=FC%?9\DrPFg7?^K0o:qZm*GWJDMN[mHW:fHI@+ngQ21?%`VSh\7gE5?h3XmT'`LgS\kkP+" -p5;og^Wf9)US%&;K(eLkGfHO7]MFS;,1a^Nm[R't,=#DR!:%:\n!.T,9/F6SicVBH -CB\r:R42E=NIMh(qI4eF==OmD?ZEJucm>?>=p)U+Wa(bt.[/8\p7AM\I%G&-At\:T -#jqREdj:]raCGuKV6g=*PB1+C%!9j_iOb@8:nl[6Lb4:loET>#pdY5;=UqI'-:e/\ -1rim_LU5;FFJ?nj:)Q2Kht][fO/&8EUG<'2Q[F1..84u,2rL9qc=ABh[cdY'bX.^O -S:Rd$'Gst$/9T'V2374M$[qX$IMb-bG_%X\9c`p,#rEG",1=4j:&Z'h%>ro -gA)\[AkBt9%%.JOUb8GN!].i8AG\f.E-JFO+HE]DWAlj,EU]+hE:02a+"n^Ji(Z6\GWPWs4h0L?[=:qWFG"Z -,^^E/E`FTH5;X?KGmt5keg_^'.aj<;hU#HF+5@;+N\QkRihr3\n.I4ZQri>p?)XSV -Z,N;qoc+q+E/?DraVI8VM4f._Ec$G*.!$^3qCd:XA'O^>W`(InLi\/;9?N^^B*GV4 -bXB#R\gS:/5O,!0_?"^MMo@K2/I2u:?lnOSj3:kFP,WOl^6"VoIW:_h,,J6kaO7=i -qnH.O,gomYT!Mf5FiAS/d4q=#m7=mc%Y&Ca.[jkgEJ@-33i@#UF;$< -.rm6V.USVaY="McnN_'Y7?[ri/t-$AfO^tM99rnl]D84FIkX<'"P7KC.dgJ(:6Fo? -Jp+kQ9hPVu+D+X!JKP=+g3_Pdh7l21iN,MT'mb"me^b]agX]4mR.Q?#G=[%6k4eQa -PtnNCi/B3Y`ZBRVAXpYL2j&9j7]H.c!69ktY)?@*Lj$03_q -el?/AlnSc>-r+0Tm2PqW-H2D=.UC7UN2i]k#N+PZNL`G(;U?CB4:M_r.o.D1[h:q]WOk)b_SStaaV>%(.r+d=0lYS -%"12J/<^/pH-ZhbW"atY=Ee9#FE`//@CdN<$lI#V,QP9Ef]6<0YH!K>2>k)9'EE_A96+#eeOM"qS>f%`e_6Q@];04P3UDiCoSMgk -Gh1/<$\me=q^AtqNeWB(J$f\8GTo=Bp_@UZ-FOFA)msn+m@CH8>8srnlq+\&K9upc -_(f"5P'E9#rgmRJ^k.[N2Pi7oZ>W`88D,rM[7^>lH>F0_`FZ2L9^c4PY)):3fO!WN -)*+$>qlX?.pWs:DpiY2#e>u,>1gXq0J/P]\?-V;t\rbp"cZOohjFEebGO^J$eZC.@(hC -a^ZDj&i@P;W82a-EM(>2$p-TS)@U9_RE&Wi!Milig8=cIK26AQ4^srMD=*iP'+Q"4 -oOh`[]L.IG`$prn>_"T>iY_N3SriJF7g(?A1(u8!cS;#'K]$ch]^P-! -nloD^n;Q%ti.hppd[)XKYiO)QHoR+gl;3M3SL0U#OpLXAi/:\o;g#Ft7"'.+;iX\s\e6XF(>:h%OjXG*S"-C"hP5q#IG -e%i4Bqo#hrB(13UlY.[S/0rY?,&M:DWL,00;3HgBX&&D0gU/gHT$a'[UW`4=0BQFm -U):R%lOIjc,g3[N5*3EPaf4NtcehgNE7TqIp_=MgVS.nT27aO;;cIk_\.1j -L[-APqeBP;CmFVYN$5'uaP!HiRI87oZMZ9MiXRF%*`]+(?QRlC=DupXeD]J]Z:$0' -LZ`Lg^JN66>u1':hKa"+5$q0S4-pe*-[9Y9,T4Q)*51I%#RWi$Bsu]D106)]'Agc@nsT%VT?L5<"Am -0-imS!RS'c7(e2SB0cfiZd5+j,1]2QJc)O83&dOC -LAf4urGq2iB@IrNZ_(ho_tZZ#XTC%`&=c4c3L+Y_6QE*u.-J=HJI9jU(KC/eC3(F, -q.d?V1[G!1^?KcVk@g7;EGPPKGdT*3#t**g^S8n``^pRE&BgluAhqj"->pEaA3gX4 -Bl*,:ga%AVl+SEOg?rDo,]W:`k>;K[&`0NKVB;plZ$H#4_1$P>`(`B`L%oa>9ib)< -E$hfdDbNIS,tT*1[U'D+-V_=1n\Zg^*4X83XH`AcJL&?Bp?`,%ud!qY,CWQs+bqb^!k'@ -&PL$gea1(>VO*5+p/^L;9;qgma)Zl.f*o)(pmsn)DX)[M);pA:FPO,_VSHfZgIUbnPZCuVMNjFFJKkrQ -BoGRPF"S+@gGJg3)%;gqI/3^Er.'R;gr`Q"e_O'9>dDW&F&>AIh(/++d]n/KNg\s5 -\3V%gJ>giu"M86]VL(lH!Q4u`L03C!dEBRh3h2(JUrZc\Z7?13QH?KFBc[*;nT.pD -B[)MK#f'G50gORB*@/0S9VlB-S7o#.I"H[C0`X1.c2sG4JRpfk]`G'6_s2nP"AT)V -s)m=:(q-WKOg5]f'=9,&,e^j&DlQcSA7!FX"`^Mqol6Pq$!'TQ"JA'd[*t@UV?J;N -i8l.#CG6&))/T'kAaIW$HPpKEA&/u\;n^>Kl+8Yu#__1W#RH(KKt6Ef`S0IRJtj$[ -d]QmeA7tj!>q^5G6S+66G5\9FS1UVDF?8oKRrhfB#RWFY0,":In?pRBT.nFY;>&ZN -5D&!)CUfiZa%/OIoUCW^pN5%N10G3ZA,:'!`;H$6/ifTVN2+8A2++YtaGG:eO7f9* -8)eu'V4gNGA@XSa/fK"#;:EOY1=3ZtN$sD94Yd?GAC&XV?r:01^GS0[1#^8"S=.,0 -%OnL4P,-?\d&-a_mfP63`OTI/R6-Raka2^RL1Eg4-=of$p6^^^*uhG0NPINqW8o5' -_@/+CO._Am8,#K16p$EWU12@W^A6]]R:d2HXfTM#^J0HU"^dbDaU**3'g9_YnGsRr -e!Af?52_hkWm8VA8@@GA^"Y40dAJfs4-Xt(7UZFUAQZ%Q -;K;`,h6n-98.`apFHje7gYJXWDZ=; -endstream -endobj -57 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -59 0 obj -<< -/Length 3250 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YPl99\Bs(#J+ToWAk-PHcAtRCWd'\58Nd.#JsE8MAT%P*kba=SANm`Vo0p3]aR2 -U`">01H":Hda<>ghtcnU]D/bXT#fCSY_Y2j5"4c*g,rs3?W:hcqQt)UdF3+*l1[E+ -Vk[5;gN'P=:L^a1gOc4hmF_D]Yq10!:(8<2^69N7.>a6_'LhfqVh9G$`1'*lZ1"1p -C0rf&s%[WRU\aGb=C1[t38!"^,Ab['@kPb$obWJd:.^8VE9thBP/;-LU3_HW1t2>C -kCEDL'V-*9-n=6_6/->?VstR50WsQfZ`l8`jcR;MMDNlXoGHj -dB2!,d!fr5*$Y7Dco4[;>Y6f,3JW39g;_K2C]0*#`4F3lIE7d:@J&c:YItHS"hFUrTo2qn.a"P5DoZr^<0`_6T6+eKcOotF_sc?jqVK0oL*B`!)JWg'7sn^ -U8oPI53*eZ"Tl/hWn'u$MAOSdJ6`),!TdK;E-$$G1SD.d]J&-b^Z -0JeR-BV6WJ3Qmj,jsV@.!b!M21Pi$)\9^h)8mXm.$+E3FB*LZ'34/ -C1fG/_rJNog"'%N+TMggW67_^3gb['lki:rBIKijAW1iM4sI7`X8Pj$=Ut+Mlj%oZ -d#U6<\m=(ApcpYrqj+._0"GC7]C]!^V[&"Ml?U/eO5RID;4]fXiNitBif>4"E14$s -4DD<@lDFYqn@=RuA(4_F)>h$Ia,%.6M=XVU@ -P]\#qCGiat;174R;5gelgf<]M)@b8DiS<@$X`ojhs.>,945Kl8UOh%>HP/Y]R(NZr:8Fe+`u -FIuKXHMeVm3hCg;V7k>3p./4D`0)se_1!30^(g(P$PL]]Qm4:^es_.YKe.rj6UgsK -YBNm^(T6+V3=^7"1W;86TtnT0RsX21$1fXWJrg.Y9!`eJg#FV+9.OriI%;SjTp_Wi -nLcorlfJVBSb+':r4C/nFq[)f&q,4Jf>EM>&O!W2q$UnI0.8W'`fZmi2.^bgLVH!? -\XM2[g#B=Vn2;SFB`$2:=F]1,di`UXadWL,O7bH)i.O.F,ig0X;O[?j;'Dd(@*#(U -9fe<+/Gc$%n!&ijHla4tLb;Z%kht6RNuUqqbqPEX$;9)uShX$oJ.+9:+]$H5@,`H# -1R`"CY&T+;(tmF)M;K5E-G2m#6OePe`sa0 -K\-](`ntDp*!+r!kj!(^S`Qq^hHOc06q"gm0/LJr7=0p\UF:2U*N0)U9)d*SVJWJ,\@CW$sS1cZOYJ+::]7" -DFE3#@.Yhs3mW[2)R2g%-4_%GG?)Q^le%u>=/1Ea50SDF9="UnIL.V#0ZnuREC4XE -U4gL,aqL#[-KV\<9Zla.1LRF_TL1jfm?Xd6cDS6q(X[[qP$@dOn#uH43_RtB-l7D) -osDgpF.e*?%:H.38_RU?;M8N\P7h+YE2E2h$53YP'Kq*$e0o -BKgN;?_;YWZZpWK/!K`,qP2L2U8X[XX7.IA,!_qO\?5J*[-A>h-IlZ/?l@Fk,`QC9&uLla -j*'t]!<=fdWCR~> -endstream -endobj -60 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -62 0 obj -<< -/Length 4229 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WR4bDmOR&`(c7%(rhL(s,LXT5\h%"A(5/2n7c#gMT=iP+^#*HR$`AEpaXMfUfo&7EHuq&*d8-eIf5=P -g^WCm\UKqEenfO&ppBtqTF,*;/cTG_nFeR5LL&(1>ah5\*=NYH]9/9;X*freDeqmGj-4k=QNm9D"+0/#-T6s@1pP?gqSKeqQ>T1.jj -eua5mfe1B/=X6SupPi\/$kd8H%mAT1bXJ*Q4<]A_<)o4"?\`qqlfa'c0E8gS$38_P -9(c,+KU<)a%"aQ,c4*4a6CYs_mB4\eXE2ofqV[[SeX(hOT!RT.QC04?`,\ceA)CRd -D#`CtjM`D+,\@5!/5`8UnSrqt\Z^c,$DLpbfZ&W8-8H'gmbri?l'_->K*>-enJu*E -gSBW9@msn_Ot?IQC3Js8k/s3dD49kRl-&X)VFp(i*6@)bH<%HDW$nY>0RdDcWpItE -V2JV0X8"@QDHQDD3@Tss=8l1XbG_s#@Xkt8YW^mk#FgtTN?MFFqMtcmh -mT]Deq9k5++;F/!AcnW\/7B,rm[M&2<8+"6,,$[)VBO)r`DSo?p#,nJV%g&/"W1*V -:rdl`pH3o1&93Zt#;IZF">S$YlSS`FI%LeE-s:R\rHc8*P$&iEDq[qa!t01QZ7=rq -nHstU`f=D.O86*@4]YC?Z)Yh7A@J,So0#DlK9U@_:Eb>A,_)_bdb5_Q=,hJSEd",c -^k15lX!E].E^IX[gL%u;fR^^g<>clnYk/QoA`o,qF'jjp>GUf:DMsEfH7EEZ)JEgs -8U-93=<8jXZ/W;)/DrW&AW#;&nKb9G\LKDEb8TYUMhn)SSg;]^c0O%^0bcpBdDk.X -7f9"imK"<+X>HA"JP>818c>O%(Rq**F,Y&&luescu2Pqj2r,u0!LS3b$MYXaqlBj5tt -M"!a4gIjM(5\"'e0Zs -6+:0K3*LKslFob';M`Q7*pr?d9QmUEVS$-K1CDDK0"pDaEQhVeKa,T`+8U5f8qH?] -\tX1NA\N/fgbM=#!e;D;=DS2[[!5b&!3I -A_;2TnHoeZDk&%@YZc(75_G?2U,bKj\^Q#W7C]B_:OCSk1b7<.e(fIqW8q;pH:A5J\\6Eab$41r45O1[P#\'3&\Q82tVYMfbmD?As! -'A:$C1Fg\]iZ7?V3KWq?6EI-=bu9,EHqR5V9Kie`o#q=!,*faV5?^&lI/t9l1S5UV -pDJrZVTtZS7lu^ee`IfIkAB)c2>q2H[)MMf,OU`DBU$s9<[eUq1@SL6Mn5h5>5Z<. -U3/V^)j[EfGQa?b<=LnT39ns!4VXj7*2XWk1ZBG-=FRnO,.#kr3=_1uk`EFcEc@dD -9gS$f[@.!g>-CG7"Zch5m]a7p_(6k`-Pd@!XaKV?>P[cbR>?LPf>e@UQ`qA_M%,pH -^rjkg#:#A"X3AI+:/C/L;2Eu$+_Yo -K$Gt`MCGIp@%fR?JEdp8`jjXL0+3n&5dj/'/u3kj4:S[TNfNn2kq8a3kck6K$2XGf -[$\'qc2dDr2(:Bq\ed<^qsJ`FLn)iG/M0%;4aEQY./&(oq&B4AR1BiW_3L4%HH-/6 -_$f;4]r>Ccf+j?47O-/PQFtqXL>0dZOU^saaTsE-COQ"]@oYd2\)#_h^M7jXp_(St -NV@M2R/_WiVC]5:dLLrGOh,F9gK&e@3^_ae?(ctHF6i-]O.gdT9Hf-lXE\]#!1mYm -:&6UWkiJGk)rqV:eMqhjL;AlfZCI;3UnASr,7g@nQqP+O(Rua]`[7+nLBjSSD^P-o -k(cjn&Lg+E\W35:QqiDE2kV_^jo\(\F..sJ2cLCr';0P]L(h4$d'i@e_?j(bUf]d, -=MC;EHLc_kUI\,cPr6j$[I"Z'n^E;HcA3iCf#MY#) -()p2gIR.8@fk$XB+$)MM"-dMQou$,2U^E*.$*=(*c4jO:"1O(A7OqB`[&:au$h'2g -WoD\cqRT43BWGT-6](mG<3=^>nRR"QNL136.9#KX*0-'KU2m/5iM6Kc=?m -*#V:Wid`Ydm0KPN>tJ1KER"S6$U,7:AM>W55D":82M_,2YLTq;K:?pC.ngn9kmC)4 -b:ojg0_'EXfDP-2^@*&Qpa=o&:34cr1c_F2`D&BSKd[h8\]RWEQ6`,!R;hZQ1j0)f -qTF4A#BEAanm46i:L_-`?l:>22t/PpMK<&K\'nU(T1F#hcSqBP/(X&/f))UQ:GSqP -cchuK&WHKJ]#X[q^4h[t;Ir&DTZTe*;l=-ijI+cflUO`n%FSs7Mr61Uo-u@+7KXb3 -KYF3^oiV(6n'QIDPPG!tmu,.o&grsN(8WAR]3Z]t\cmdi]>moKribm5b=rfXU?I)n -dB=`;KSf;(5eDVc^^YiacqkBJM#$+P -1Y70fB#59g]\T[&oFVi>#AMk>d,]>B+)#oFn9DQ*UF-fpS&C/WB]WG5T*4$TIaQ,t -/_,(2 -[du=*p_VdPWN/F%pd/k'`gK)N47pk3U,\fbphq@=Q&Yi:2PaMk8D_Y&(;";$cJ"Wd -UMR?/&a[_h]=tUH?;^r=@%Qs_0`Ec0*)\cEGo<$Vf/K?P'c'ET!T9\dpX8`s$o#=E -1SLS=Vl@/Vh$S3X;i)CPqIK4hgdXWuj5YhegeGFh;q/8_-Mk-LSWKGUhM+Ufo/BG&t5dD@\\` -rV[OTHPkT1VRa5Vmd5o7Zc>2k=PeP/"K:#Ug' -kNV-sdD%1>>dGO;YXV^n893[gm1/)?S\tcaK+4l(U>sdb2>E[(n_t=Z?rXeI#Nt=m -E'"_F#CkZTET$#aebITK2Q3a%7m!js'q!=4aU30kPkM^Fb/r20,rqL&KrhCukt_!# -+0GE;q&`JjnFQJSb4u"kiDb$0HiJ*W:DZ9-ie1(IkMR7k.@:BtdraaWmjYHte'oBW -E?'=O]qaoXKeo:Noc5.KdTUrQfPYU4T42a78sNrlGZ"mDlO@asj"\&?Ql'\PH>FDf -ejU1S34r97,!^dO/jfkgR"hbJ46?p&!MJjJKH%hOB*GV:jC]i"N:Ve -d*$cCWRrc5_Z>JogU&%8Q.gWlV^]Qt]F@6$Yf^Moq.=Q[3/`4W\Jjc7aWRX;]t"Q=9!6TG33+5)lfo.L -V(k$VmZ7?QQGg!'!Rg8C/g_ZHd$)aMem85FB:pt -EVm=60QNgASO`JgGGl]185GgNl(Fs*ec/5XJVe\\\]j8_Xm9-"F:'+$3aI7CoXi[tOLEnt<95`-G*4[YS(aC"*&7\=K]3]steR$8M1!27; -06bPakYsfd%8"p^QV?I*#0GZ!Occ?,Xh\]g8&q48dD03m;>:i:n2#_E9aZb8[5gGB -Yn(VJ$LcPi;EUr?VQg.g;MreOoS-phD:XLTC7EpjIB/p!5r.Xk$8pH8LHA@\>W4r[ -(fD&jpXus14]H>hC\lj7@+U@i[@-GK+4,qP]#PO?N6W@68JX&#p254Q+n^*Z-lp^G -kU.J/LQ&2``s+pWG\fIg)5d6p4;>KtJ%-q0E;"G5B)X\!$W1[*Tusp.6hfi[KOZO[ -0pc2^Z"<.!T_O5U0m,/Jh$/Y^nj+&eSJ>RLJ:<\@]=dXajE!OIpW)GahaP3I/^@\s -o,Ec1H8oE-m3Ymt+NV+&5%B%OgU?(2P,n\f711T!Xs)+a&kqBcGkP7Z!2N'R)OuMS -Jl*^%a1%DX2o=U/R5M7^=+%9tN&>5B%q,=ddq9]9G;AO7bIH\;blc+:5gJnZ1s31cW -XNTXa]Y42a)(,dHpAR\J;OBUX*H=2B3`"58Q7sn3&TU$'\rD+0_585dnuGXfVWrL9 -rPSr`i0e*f2^taB]of/:8pfs/9EG"Icj_A>MrAV8_4YBW#r&-: -")S9hT*DQ!59aJQ3B1aBr^T%:X%l)p5?td3C3pdBdtF6/@.*QKl^W)2,j*AbChEa! -pq2P>&%N7-GsJ@ph;Y^-%UbJ?5'`)\@r/J&$u%B)(@'"6f,nrM8dfq$aqR8EWBV+q -j!M:uin]Bi>6HSkGafaiLiK0KCf(2a!Zu,C+V9WE*_UNNdK=Dg3EJma -1ULd3b0gPtGcBoR=ICmCr:M4\L0soCIqD7l@5LQ>M?!A4-f>;,uDL,WtKhg&Ef9I1'';JPl6%r[8RBPBIm$cf0*kb6EZ`4fZ -b*:CKEC,=^A_"D[&ETjJX]ir5d2XR15qhm`'K*fca[Bc\%KX-.gP9DaeXVYN:+:jW --Ye-QR<&@UTgH(%Esm)7=e+M]FQ5)paZ:EO>\UHRPcDChDEm&3C:Q9e1&q+mbeQs3T@VB[L$.1ujK,nKE -jug9t*UZR?FEhm8d4&PpZOJWUA#FWsFJ&mTVo"n2gY4B3XHgo-PhBUaO=A?H=d4*' -(I]V925[rK=BsX8?8:bJ?HbAP"[k&-LM#o.iRmU65D>p"+,p;7?`"!"&-L)Xdm=?; -0GKn-a-)Ce%kjLGTF9r/Uga["`!5MJd%U,'9>LfnUE2q*aMuOgqg$le#ZHDG.h$!" -MjG28EJ)iL6qhqbK+9Z.HiGC6:>na)PD0oU!pK2Os[/97Ag4:TV"iBrNQmU>0la>qi?m)$V3CI-Q47T -U#MN]0&bsCG[][+&k^?VJX;@?K?<,H2\$C1\.'3RD#61u:;Em,TS'IK;`[ShG'@o8 -_1Rp?Z@s`jHf*.6rsR7E0AJg=Wi$"31:h/#5@81L/!F^8J?Alm5soZg,\bjhPGGP3co-R`DKOh3L3HAlMURC`!6SAnD=$Y --B[,OB4:*36SJWHBg`4Z'%kR+g,k/3rk:+AV5__UJ#2 -+.2<98;pW%mUOM(Z/hhdI1Jbebf_$>W+Z?.2QJl5]/X;bi^.oA9djc;73,Z-"1(

$I[Qe3St;7sPJCDN"&G;UE[T\XR(&47M^=lZmkq$[FDYcjPim5t/Gr:O -kOEECo9N_rePS5*QMfplB^DP3ac;,7HmQY(:Er"VGLJYo?WaGS">Lg<,>*1;Yg64D -G4ZOAT!CA>!S-j\XcgO=@D3l.iFn/nFib;[%(mUXO=oI.8Q'/C_b8K!Lf(*oc1G6i -K(!.Icns1[-l`'^g`9abhTk_PY^ejXQ43R6CG.)IMG@V3^Z=Fbr(G$iY@+/Q*T%Et -dBr-0d[Do9n7VUA8O9YT4X)X'j4Js7d_-usXYl+lG5%hhJ?"l[9k_kc:eOWTpY>lB -5_L9Ma`!g`>H7k18(&KQO_:>9Y_l:AB@YJ6lSKOB2lN]tE=[J6):r6E,7=k*ElJ_* -p@$i'.2g9MrBO^-ni5]#+`\mLE@cad.rno#T$:T-gp;Q1kEqbE7iHY/$@C<)Y;cHAdnn -dq(KYR,Na1bD.=HW37&i]DI?[JD2\<1^Gc--1KTrBg5(J:gB#p;E,1O55ZE$n!3rD~> -endstream -endobj -66 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T7 13 0 R -/T9 15 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -68 0 obj -<< -/Length 4174 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wj<>ArQ3'n4K4#R4D`6/tAG83b:O#R%1-$`%= -8$Y),S]l^;Olq2-o:8+Jn"/.M4h4qgmZJqamh>Z/Z;3ge:Pu''hQMuaao25,q60fF -p\S8]YH,:s\)qcR*nLA)UNrR%XT*+n?ga6+k$=RrX5uRlK0.(.s)*$uW^4$eDdGZ3 -;p`5k>X)r!k(qa.2\+_9,+arC+\ofpc,YE#(&FPLeXg-!Eup[2UL'QC7*GX%T, -KV\$iI'gX%*\1sI,J9q+`L;f=^:]a)2l6"jZeRZ,X;KKNQFjReQG`HPn*@`L^9Ck\ -ia*\MobA&FJ_,QOo8q\0-:b-7q<%D:qkKnqbOMC9;Smi'81d8 -SdliEq7.U^KNngMOIstn[o@Qb1$][@3"n5BXT:?F:0"q[M"?"Z6k`p0XNb\*[hq?^&+D.;Ip9pmLO6A7S-502T&U&JOFsfkbeMgb36thu1o/HpV!:r"/r1IaZ`_[6D!rkIHrLbTU_0)pMVr4BZeGjImWfr -MWEnr6^\a(J?"&^5p7Nt?3)cpjth*>['!BH,\aOMZ9H/o/4*C[`kKNO.$MlfW)EI9>i8/JlK4$8^6Lbp0ffU9\"e[*UHa -@l0TKr3Ei;eTl=6neYH"/^&A?bU:-#2Tp$N%g6e)fOaj5%W9cAH-#Yjq0rXK.IdsGp*E,3$=H;JZl3u -r-@UJ'LqtE.^ek3N7-K8R,i.t]()9.#en\k!uWQg;&kZ(`*H?o2FlF#201"q&1ei[ -i8>$Z'@Js7jdhomcu6oD3AbP`3W\)JH"VYQ8/+)-+q@@5F*m[0[F? -IoT3GfC(EifaK_n7#0;&ohn('Ljpr\4?!ohLCtp?)9\ieI9n@d2j8KM!hOWR5U9OgJpB$Wq"Pb^hJ:oQGXh,s*C!qhOc=s&TDWl6QJ@-<5Z6=G-6kV?VJUaKQ<"/hBZG\a(5Un:W!K1t:t8a0_"QhrqZ- -5%08t;DPaM'3CVlohQ6-0odRg=J0taY%s).!.lQ9I]gJmiF2.6ge=l1WmMf]M0QUI -/Q&.E`,1H@MPH\:eQ2BDVbY,hhHudMa`Q+K4C#@M7r`6-@85BQPLpjO*h23(s(6>f -P/AXud9G-4BB(;`a+VLo@2X,KAu%-#&i?mLZ$#/6IIh%+FlsA5hQ!HYBrZH(2gE0FB4@[i) -.`8sIAB+hGk2gbK?stAE+pKbLVQL@tT^9"h,ISuQ-sVRSqsg%fW*##;R!N#4SI'nP -?A;2n>&49%BY8b=lOR>Ldsr[=HN@17M5h.W"'pA"kQVD\`%YD$1?"Z2pWGqJ_pP?H -nbcIc;aEV/QA@&dC7>Rk0SVpgZd/="hH?J$&ad=6sOPZ8QZR%g -8:qm'!t5WM2hVY*I(HU9N3b0R)4"aD3u*Rs.X -@bloQ\V;M!,=3G+OYZDVg&4a4A%3u6:nPPVp13/[ei4dd#fs/$pQL+1=?)S:2TY;G -DA+EcLgopPJ1X,f%nKnJd#Rk^:";+ml>B#rZ*b6'AKS_cAZ9i]7[uc%?n!!T -#CfkTU3]0\"#0+M)7@J_0P_/0&7QVJ!1*jg#E\*^GnZo-%0;do"C5(XK%]K'Q.1*?iN -<]Q.LA^d-Zg/rgY+_mSF&EsBj-SS+IJP\`<>@@t3Y5ofA?8'.i7;'u4?D.ZH^DPCH -!MHa;>Rj-c$_#%riAd$-1L7b,7$p(ur\s&TGs0o4cURbS014'F\?$SGa[;oY8mo*2!u6OOSOWFQQ"N:Hu5Dn&M]*)('I_p!]:?f.48.;+>Ha@K -#%8X!n!?j"OmiGTLE+cIDa!gR&?;C,+=3^rs1\30]k1uY8l9MXi:Yb"R$iWXe+El+ -bLo8OGg03g^3I[s1$=,GKOC"]13efT'AZ9SJNsTOX#r8OkmT@<2C)EfjJ42/9VLDI -8u*%/,9XWQ1t-lgF&1eB)NTFNYgAZ%77>aY++P=Rn^AE`Rmb:o-3[U`B^VL(B#$j/shDVXE0oM2!4q``VlY;3;QM%tTZN.hR_K^OrUu+(' -Xd`Buo!I'A.c0ZL5.RA@kJNV]_&Of`-P98rgGU$?.\O?3fjZ0uWj8Pl=>@ECO5MWC -N$Yo)7tMDQ6S[MSF`YkIi$b:d31[\9iA;grR]5!N+p/K'/W -X$h]P2N#q/&'f(08^[NlOQf.d4kse-;D#fbJ6/q]i&qo1.%gJX,C)0nEP9j2\[4\j -nC@O"i>ZOrID#~> -endstream -endobj -69 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T7 13 0 R -/T8 14 0 R -/T9 15 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -71 0 obj -<< -/Length 3778 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wj#E5=_Yf&\Mr@l):2csY -K&qpR"WZZ`M6h.sHTJgl4[OgKFO(B:MK$o5Ora="7/=M-Ea"XY"h-V(A:.amS*huD -=":pnH%'Z'ce'bB8A]Qoe79=s?+6Rd>/[Dp\=4KhP$;7OSN4ZXQ=ng>#`nJH7,]l, -Hh3&=@N:L#?Du@D]PMeOMg4A.Sq\A4>1CI\;&8<=U)\p:6#W'M.[kgHSTtjsdgNfl -B`(i=\7_R\^"1)9q0Dr5+gp*LQ>]9G-MPE0eh&W& -o\Pm+10ZJt#C::QX]q7` -\u=aDBN^/.7AI?c-m@(/7Z)1TE:"&SgF.NueHcYR9AHE%[]D`PlT(01!s#6"A^f9K ->Aeqma#uVqe-s3IR=5gq9'lZ2e\orQ%oBt8Q2C^F$Re/?)cP&%\u1;0R`ZM.AORnt -]j'X0]U&[:[g&PF#.3;7qpggH%1U#T$[G!FMA&(c=%/'Y11)!g1K#894:l*j=BBd$: -3nqaEajh-t$>@^LCZ@,BNG`$,5HK4VY)2tB7\u81$_S)>_I;lf1F^anN3T*!N_Sn? -@QE6X&q%"! -j`A-*R3u7^CL.mXo$\)V@lHZhk9"^,k*RmPjT20B,U76!1+d&/`6mDK+5s/$7@[jL -H$=kHp.A`[T8DpD;[:4(623r:4&ctEaFe%+ck/:iI@g/H%=5CW-SrS]/:11#*tV#8[%8YF@Q+m8001ZP3J`)Y>CoXZZj=o -b\F;P#**;\9?#jPF]&u&8`Je3[>D%R4hpBr"4'L^Z.agGJEQ$OiV!FMjLZ,EV\+TkTT3$!ONFHdeI>W"+F<2@S.4`l<#L^QX$p%6Fn1\l/R@].e9CA]l -Qm:#kIUAP!hfp<32YYLV8P4V$9;;J$G3XjEIP]nP1Hj\A7N56=k!hsOBtO7FV+=#a -h-@G:5KrmWl&#o*[^BPU,Z8bq:I6t,0"28k?_!/&b6Qr1f)/iK&]9lJ)?sK6($(pZ -IW$l*BE5\c.^As^3#@FK*k\p+bl\H2LV?s[`MRN>\Dh3GMOWik6oEZh_>CeZH:(/= -!FgsN3dBAFfFe6V4IR<_ElHPohIo)S7Q&SKBb_S]Oq,7Ao\/q+L@m[C,XViZf^\8c -'ECpJAenbcqk&T#$8<0;rl$NCTmhOIUKJVerh?DfIG%XhI,1mG-5=u\RE17.c;0?a -+&+:Vm:jS3(GjLXoERHP\$8Z_IM"'RVebbX8',XRHe.W=jpa=,p1'ru;HTaX3<>)iO/1XbZ:A>_Hd+RYFR9)]E9r-!K>(k#4K,s`mlZI -Q6m>aEk(/bmK/Ai)BfKLJ.!d^/8kGj$K/BZF4Ls!\T!e/*'f)k1Qb#fdR."U&Ribj -8J)VI]Dt>;j1Z[.)cY2Hehr.0Cd4=a+`4kO'gVHcQ(Vpd^"\WLcnUrephe2`<4ikg -`>Z/QPAN8GJoBoM0RWb^.6 -"tgebgch`C'j`"hoZE.!>\Cu3SQr`O$&s0+2]LMTD8mq@$=+aN3VuA&[B&'5_S_@s -m3Y5Y>HRkF@VCFcAs[\=ET.K&lZ0TnJ@h.C/2UYC!L\[mH![_R`g8#)A655iSsM@: -M4!EP$2Cj&G_3da6qB]:/$]_j+1WaWV;j/-b&t>C>G!];J29N:YWB]m -+!/[?=.MgYd6=[RfU56#_2[<3d$2o"2g.\LCUZe$**et(\<=+2[<&+THLtZl_IZ*L -c4PsAk647?,R$-H`B%MBrR*qu?+jHsZW\S3"Q7]U-J10ip3a[lNJ``'jDbYQDq+SjYZ<`X/6tLm@_Y:Eaqq_3.8!0pe4%9 -&&b^mBk"]FTd8t>DYip:3OS1LaS3:7=p.T("DMtqfP#u,5fEirYjC]HV9qE*"buIf -^\k\Bn%\k/rYpn6)qc!34egJ/g7GoRH=J7P9M/4/ZN6n";$@ZRl74/*Dq8!=]tTjV -G8c_RGHP,Dj;JP7Xpp6p(IL_a_7#0!eShA>Q[?g@RsOG`$MI=2=UKH&n?*[+6:k;aNFp'euU'W52E@p&,=TpJUOPpVk0JR -SZ!9A\AeU$3j(Jo+;=uRQXtNp@f>]nEQdC5V#MO\.eW^%FZf2M;>.dd[QogdBkTP% -%'V&uOS_:cYp#j!b0A67V#h8S2]>j*B-Q&>^lSU6+D/R22^/M:N1e`?R6fSB+B=0Y -+B>Qf>QDV7icb~> -endstream -endobj -72 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T7 13 0 R -/T8 14 0 R -/T9 15 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -74 0 obj -<< -/Length 1990 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X-D997gc&AJ$Cp_GLo4!H+Od\2F1/W07*""iI'TU"bI-*h';no"0YGPE#4j%#9, -8"UF?fCPGR2j3%ZniG$MN?drB'"i1N\U!L,1A2d_O]K -LVq*Q4A0.9IpNqlNIN0`X@,&7EGG7/r)s*(9?+Ja,Md^KZ#[8*K#4U6NFs6@,\?,)21.s>/j^>ui -/AVNm29jdF6Cm8+bAJZ3)33E1dY*d_bu**i2s4Ks9Zro6H(MYNL&0Z(;hcW\#XbL# -P<6Q[)Uo_J^-lI*h0"_^Sm`&9/Q*F:\H4COYi]IEB%JYj[\F!W@hdM^A)2ATZP:M7 -)f!(IdQckf"NiehSfJ-3jQY&f.oL>3O]DrMR(VXbi$ZtOl+u4`.j:3P'UKkR<@Nai --5:&8PIn\Gd\A-8l\4V?I!K`ZdibP",lV\9;"*$udl;I;:5PQLTBh>1bs`O=.Mr2A7 -\aG"jW\m-6eB:#C;-/$7BnVXMY,&7('Ier@A3K6,,R:?<&]&7Z'iB?2Pa2tk\Z)s8 -10$_a[_=b)V5WAnl>u.25`c;YZd@u7,lG#+To/kh=I?mrHCF3U9[*ja0a[\9 ->S+aU,s),T]*BaBYrUoE"G!p>ds,bX.F"S(Aa[0);NQ.SU1>"ia6JSHn[.P(/$2Tt -/$m$CEqFg#-uc40j&eks!EO"b(d(H`hc7rB"QHB(SB*7:UI;.$NS:@RZ@[gV(66uK7&u$FpWtaFr -[L*c&\l/sT*RQ.fd%\=H@$`/;q.qCrm]j[dC)dMi$m5hZ*a`7Pi(aNpDH4.UT>639 -,5l)G,,[6c^G7MS<`\:5:0,isZF,C?6fDdU@`uXdo(X>KNF0-Bd"[!f-tbu6U?O%B -[(TL/eD.u+RBk\k4o:=2CB#ZZ6\O'j4o0^U8eMG*r;sDISGEhW\ZSn#qX%6LQmVCq -ONT_N70BU7B':sLB -JieIhJfpF`f_pmaimXmo."a)@Q"kX&68[ia.s0#rj%ETYDB.D)?g@&Q=6#3md^Ksj -jkkOK:b*o$N'f8TbSYJ_/S;1S-JeJfg`?#(c:_+GgM7b_\O$!dQX -<-8Qs'[jBc=WA$c)plf]rrSFSGi\l0$M/,!jJm8!0,Pp;5du<\Sr"Z\q0ZhHT[N3F0]A\++DdJOOKsca\1p*%. -#"].9j4q -!*m(O*<~> -endstream -endobj -75 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -77 0 obj -<< -/Length 1407 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z\795iQS&AIa;n7F-ul$`*P_M8n$$fmI_F]eZ%@$+Os+SCkKV7ecpRC*> -PVR&b9P\<1H@3g6Ok@OtJ/&J;RKt73!/Aika5'0?i2Q1(?"Dk#FFdr,""-NWl_H+> -Q-9)mQ$&5"*%<*?+4`m7EdS0)+Q6sR=f?a5`f5Sc=N!A2o -dR&9(TD7M/9Lj;%LM7WLfU7HZ]JW>PFC@&-M&gD..9O1SVd'sqLQ+c*Iq(b>TkY=$ -UHfiL&E^J$aS>;FP]GBA]>;]7O`&-/LaHb0CR,I.mh5>'g5LFRUkaG6pYQV0sthB`S.=@\`!*`#i<,0Lm_e/`(qgOQ3b;u<1D -$ZJP1`Dpm)R*T*0(lWp4!Vg:H^&OVjpgm,g&g7l.]M1^a8mDuRAeR2kbX"N%ih>"T*9[(`FsbLCag9ZKnd\h-Q"&lN -=`!jSDBa)5f]IOpXKGrc@P'FO-Q80@8*)NW1f/,$8ntLOnnGShP ->ll!@T>h[YrE7L]8pM$#8t]RNp @]'6KVul\ -V5_NmPgWBXq6NU80hjLae(RrClQ8nid)HugjCXcIk&g>9IRbfGLC)gKFNBB7S99T4 -d^0pb_)A35b)(p\1Z*E'I"/JU'`(7VT+W]t_&u\n"(*p$+c,X+IFDBK,N;t><)iV' -Eo["p4;=2aeeA=MX$>!`+FTBb!=/PWp5RPcU=r<6r&+ju5d5i9!`:4s'DWZp_(c`80Wt_s7udDH2!LB%TFYL3==_pOD:XJo99%#d*r`Rq_ZFDf7j0'Ag35](dUJC^ -p?L%k5?2W8K[^1>D,0\f>,;c,Z:JP%f!\V[lEL31e`O$Uf1#P7:7aBA=NMq@M6W_E -p2MXf]hPSH!rt*T_B/~> -endstream -endobj -78 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -81 0 obj -<< -/Length 3000 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Xu\9on"au9Yb7O.Z;\R -PiqB7>OU1%]61PmbOlNNAXr[NV[O"),Y\#SI98n\og\n*?3KS`om[aV#breWY^$+T -nIW>QDf,`k#is7Ff0:m:=O/tK=<9rr[9cUu@lt5)G8q%*dr$Jq;(rDaolqBcYMLU/ -CgOk['WMs#'D+cm'`=,0nN;63C[m"3hQ8u_Ia_<;TkYP.g8kO!;2!&6iBNs"S:t[) -D,r!'aCC^)@#A6Si&W=IZUr9SXp4'1-(egH_:*84?$#q3CpPLu?+$_T6m=T]f0Z2F -W3TPNjW2$_ -q08ZUd6IB"Xid7WlD*$pGN5l0-uFjV!L+qK$-_T=56m79p[[+_#8+,5'.f*PoG6 -5[Bg:#;MYr-Q4W''/K.b!@OdGO9[<)nd6GYlZ_4*KP[e4gL4b+r`501kDqR\g&/8] -H?"D+jj,3s_WYb6/0IWVpbPK?,nM]sl=UD[8[=Fl)B7b(@0RH/Sd=u"oB.!54IV'] -U7;Q3FkT&]gL3mj7/j1K6bBaB=rra1g!Wro;<*=:8#FuH,kW^3e.$Z-_fEDdpU'c: -MuG'$,.b^lDh9U)WWcIfWo1s^gRT>J^;IZ)k_gVto=1q!@u]PO'[.f;QP$[3g!YUU -$^.eB2RL(I5KI\!!4ZXIMH$O@g9cfKmM7ZKG:\'=7@2$A?%%W$/'eTFk'$T+CYt1'3YFJ9/7IL86$W+:8^;QAQ,QN8\lmUWlYae1-$3="2jHl#g9 -EJ12A;1TF!1<#+#HWqui7suhP(+q>H;052NfnFLR)Nl^1qC>,2Co<=oS%_]U\.]j@ -HIV2EWAo498L[D;R,].m;e0+aZQl8dJ9q/o*mD*>p[CDqlShEPDe(Y3fsr\aG%CHa -Fnu&G[[P1(3r`DlNK)hHqE*aZ+rA`-=+c9[?#i9p'\V -VYnCC!eY=5bi\T"U!b\^f70;:@jM+]035ge@Oq1/4o6%jlbYpbR&:J_2t!B:28+EG+]Kg -Z%=WT9@]M91J9L>4C3C@WfIaM(&Qs7H8B/^o\PS,)4oMs -%Q]GV@N%2D_@*UnmjC,#&83l"RW0tl>#jTsA"mGR@hP(M1iRH<#72+:m6k45U0'Rd -h*sSo?,)gn-bPXuQ>@Sa:BgsF!k+laD3ZtO"%UMULub3telGi)Tg_Fc)YIB2r$Dld -7BV5>3`,EWm)_8N5cLYj^#[,eeF_s9YfjaZF_Cs/Tu=[Hk`Iq/<.d;EnMZ@r&VCN[ -eb%BmV+*1:68hJohpFmFP"6BphNH1,,!@";X(;lu8Lc&mUhn$?gZ]m_'1ne\IT^i" -q(gR%d/hZa=*ZL'Mk%[j?,YoJdAU0GP*Nb[b86NdkCc]]PpYLWCEc:/r3kTN(eO;2 -"cOjT*#+Cn.;"I_aqlRRW+)miU"2)cTD[),_k$C#6WEI_2g*X]8.TeXi2p"136N!V -ndH5F#*_2epGbCb?DVq3Z(0GJAgoMlEBu5@oZ]mK-P-!CDC-lYVk_=3>#caSZ.-Hi -ju2I3hf^ibd3rbko2h[tPJX&l3=Kdn.!0M8d.5NNQl!h]W&A=>qg^2=Vcoj7iIB\A -TZCB,VD&t(_#FjC))=6sKkdEu[#HndNamEAN9KIlj;kK,TG/LK_5-+&DBIhk3oD0+ -fA7W!GCBeiq[7_VqJ;hp%EC@IHu.6TbKSQh!Gl,%f:%SEi!j?<4Y[)H6_-0u-T2e' -l:PTP:+?`jG1,Zd$IY;Pj*9:g1(_ZFXOO6*X2s]4CMXt?%Q[@TN>4'-HmL2_YgZdn -I;AN^46?5iWB5d10Y-Je3Y`&$nbri3\XrN91+]k&d/&%)kejEKHLaGE8)>-F`>RbK -flnhY7Q0Icp5$*.G_MlId*k')6+`lVF'-J@TIgP_/`PGRS+>G(4`FY&`D(4 -A/)c32pk61&bZBr%l;]b3+0`RB(0[bE-"["4.'Qro::c'd,gh`X:g+1%?l^7cqMn% -/Bm(i73!YbmWrYkLLcpRYiG&,'I!>hkG(^Y$CaIK;rM1Sj-i@qi5,n<7Q~> -endstream -endobj -82 0 obj -<< -/ProcSet [/PDF /Text /ImageB ] -/Font << -/T4 20 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -84 0 obj -<< -/Length 3368 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y8dD3*Gk&aj<1$Gg(E(S'^Fjmjug$cI&C\3P['(#TUHrBQ2iM)A(.8BQ/.?f0P' -=`S(OB@-j>!05-)c9+0EcSI@f^72h7n1Qi[e[%JQS4-aH-h-#VGW_Qfe4\eG*[ZHY -iGnHKHhVORp=#PWhYo#)H2%3^np_b]0lO(UR!j?Hs3'bqO0a=f.J:B[7"$]oV5]8D -;qt$_CJ;EGc/,Ut3M!@^@$EF"#JVIe(C+8#?Tl]UI'o+:4O"YBgXUdcU$iR[.%FSV -TA;/,NjhY'?7a%^^K5oWrNb^>887FQE$WFZBU!M_B.^d8:C:'onLU-+b1EO\eFIGf -EV'%-6_8Zk,9Pga8"X(..2I]&?&BrPle^m>W&I_*D"@->JbAm&8`BoK&jKW]1%dLD ->E54u@;O+!9TcA*>EpET/4Zqf6PUS3DpoXA%DWb6(^'r[eiL#+rsJ"ZJ0.455h42l -X>3X9j]SpVIpN!Q,pf-_>t[(JVIn"I'gi[8q0fd?2DciqX)A^-(2N -)E`).WrPQ#_aX()':!sY`:rbXqF_:!3:$i:AkRE$OI9"T&\A;9/Qj:$!o_gh#+f<" -eEkWgs0>3,pbU+ZA!*cA-W/kL8J56._O45l8b'$BYmFTrY*$'pr&mp_&"0`1[&0?9 -MJ'0pX\dg9[,VP0#qZ]^Si4.[0T0D2DWG/,fYt;oX>=_92aO,tLG=6F[-*l,(2V:'HbM^KQ_gD/?b -,c9#sKFb5Qi[@dTQaH/o:(>#h`$c#r'%+9\M3&q.UC3Pi__:u%5Q(*=S5eK'7q -=\*<1BdpeUIdRr3bu*l7!EGP0Ck0`EhGJ1'q>.8"$^sWTV?b:T]0#g2#f+46#k1nrL4S[FV(NldM1&iF8nm -1,*17VF6YC801;?lE.@680Vd?ia+]EO\k_uHaE%.uZNI3C -q8Dfg.Panog<<`8Fj7YAGHp'(d_qGZB`:ig0COA_iLS()kE`_ej=ALq%)kfadS/3$ -rEM*U\qlnlZo;NEcoite?[Fh>R)>QXg"K/fH[k%nasQ#UDDMtgiLjfi%O!cu>Mt6& -*TCL@d$],$PTP"6jq_9%C:;N]UA):9Ft0,=@2Fh>(9$]?o^f48:\k^N:4&]B=n,Km -g.nk(/(&gc6baT1qOI"V1#;iV(+YBUBPPrE3gEHgfF-XGChjYgge'AE%&:,Kr)j^k -.]60RV?]8t7>7mb=Zu(_mp6BjZ)FKmIV\Dl@IpbHGMWLOR[dYUK(W?P&rNq'qJfK; -oJC;q7qbbZL>.%&CG-kG_HpC%6(S6kE[Fe7#rC>%`\`VUq&u$(WGZ[.,d-]?:>t93 -,-'kfK^QRpV@F7JI,,dF9Fb?3)$Nt#8"F\Nr:`;&2_igGB0/(kcUH9C/nH=ogj+nL -ITV[n!mT6uEnS1)GP'ip?RMWmIOVI0Ng*PXP?"NQPY"%)2]11$mS.t(l=AS6HCid3 -mLiuEpPM#XKQgi1Y_2ZB6bqWUc"0%tT!\.l?j:I^MT8fdF;O(U0)#Z8TYSRDbHlBn -_'s^FJGp_(iu?OI*F4"]D7(F62't*prZaB#=eEMm/k[f"Ii&TJdG/\kV&p4+Np'.m^U=:=>t4OqGdZk9%Ko;.1`l]J\A-d13D)E0s8k!Y[Dts-#BYj5gB(t'aue8q1O@Y -"120mp/q&C5s)Pj0uj*@>-s;abAd(T'grB4DC>#LA!u$-G+Os04fqHC8J%=nGI4;R -]>Sl'jm/hiQI+ToYmf++(*=S5Q/-M*f$2pY=j$1b5)':Wcl-I\,1XF:;US"fRqO.LfK>_fXf+_jBdbRadO5WSS=K1kOLg6.fSjo"HA10@Mr:N\@@#?IXsWUCiE,&)ei5kUVGoCF,, -H'PEYB@FAU8fr^lf.(8RF#)05]6EnuW.NBSVa;^.4/i-L&%geV0FG]^RDq0:,[)(f -n+Z4,f'aX%JAr7JO!<7/*Ud/_oC=Sk5g$o&";ghF6#3u.>))ea"n4A)&AuB3UFJ6H -,e-O4EW2_>s2Z%8_<`:M%;U0Lb>alb0$"ogM_&!B]M=kL(^;Bu?.7E911a(>2!Fsg -Z.dqjZT2$N31*R\2Bpm^Z:]%<1iZTT-bZkM]hDI0mg=&(^T0"F9Gtnu\[EGaU.i@1 -?r4srrNk1lcC&YP/p!lnnK"En1,;Ch(>.ODWeNn/)c5U<#)rX?^n;I`"i!U%.5QVk -Z2h&d:lujX..f(cXfC\k\8jJ'XtAj?ZE=Xp0&Xu83O"L6_.c#[%D%-"Sb(kZUS*^+K=I3V1XbR@CfJsa-o -4I0U%c9s=:o\D'LY.iXEJJ]r'CdJ2#=9J6q\'9ijFTRQoJ!iPRL2SBbPYj[I[4#q8 -_`<4hmIk]!N'T^f@]l??YG(<^cFeCrbc` -;uJ^'pnHKll:o.B6G5$J70[@k['OpV=&*bhOGoF]0mrMe7Zo&,@u`"L?T\nBMaCsq -;:mc8iQG.Eqd/tJ<4t>Q?!EhD@>n0NqCs9rC!=DrTufsTfBfkojQ]89(V/g](uVD[ -@CS@4(^sJ--uS=Ua>68HeIV/:V=e/:T?F)dcb2#p]VAm.PIDW>^NW'&8Q03agVOdh -+P)OL1^OTZT^'2+]-)g1^WW6*%P6Z\n%]Zn&nrlc^$p@r&fu9o9g1s4j^]ZU&B$9N -'!#R-]!)5+4o\$#DnYbp(k&@2j$!\W1BLK6BqqM^.;PS#'"7^)#)c=lWrEM.=6R#l~> -endstream -endobj -85 0 obj -<< -/ProcSet [/PDF /Text /ImageB ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -87 0 obj -<< -/Length 2047 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YPl968iG&AIa;E-dA2=>X>0_0FBqg*Dm+o[&7M3sV4/A>U'?n.F@&aaYso"X$'. -*h>kaYrrBo//B=N^O>$c)-rJ0N8npnT`gPrakrrob2j]p&k(`"';9Xk?+bK=j7Oh8 -b;ri)G#rN.0q=LNU6MG[63tc:jmUTK-#+'*/1KY@R='!]D76P`e^?3':eYk@Up6A` --j*':cRrD6<-(&URtn#8W`JT%.!%YcU`@>V;(YW$20tPG_FFZk=:2mSlL^J+4u*/[ -1l.+fg\[6Oa/RmtL7Fa\Uj$3Be^`YfHa]_J_a9m,0Af0bZU7a,rbI2?H62_+"O(GB -Me[(^#?W*LqlL_$Tt.Euh!-[4[V%F943Rf:\_Xq>HF'pn\+;RVo7:V=kD"U#0P,OZ[`UJ)H;CE35rRqR/Jc:.)qSU)HE_%qG2; -3++TL\/S1Ahkl%Y[T.0P15(%o>Bp6W0$@!e`Th+`@']IuY*n^.nD(MQVKWM8`&`F# -s6F"=r#Rg?8^M\A1sGVL-GWW9_*6:W>1[P_'-Y(K-51(Fo#c^5\[FmlSXb3UO<*#D -jsTOj:'E76<0meTno8PN8K5W[A_PXKSq]`*\.t?l0c4F0RT&+>[mRQ-!L8;UP%N:6 -f@NniTBe8[DYtfnrm=04]0R8UA.kjts4GE^4^4(9).35b.;:$Ae:-EiMu'FHLP(Rq -7Cs4he(e.(R>qU^HSp$?eF_ICN&l,8Y0Sq&Ap=3U;.>b6Ki46E@=?X_DEZgH)d*u8>(ODS>00;HgeU7))7i#D"B7D,_:8Rnru05S]C>`J -:l6A%@(s[FjiB_B%U7'XD$\%rkKAD/q[h(P+D&)r+(Qh*&Y5e+7X.b_-;3!"Q>d:m -)b9+kGO(pB%RjB5I@R&thjkKqS'L7;`S-oUdbnf5Q?CV3U8r_a+AcC/&^kO>gK+uI -hoLih0hN"pnLg,qq2b=94c41>;A2PB,O$Y[r@\hKe1#d -RoaKaDc -#^"K(1_,Ita[fb?5hRX\la&:kD5qq7"lNP/"5F(PG_L4R"-VH/3qNmYqU4pu^@[V^ -FMYWk/G2[7@kF#B7]h$dM%m\^[<9B`[5eQbp)a.L^B4H)6c"h\=oWC/k!Pc91+%*@ -Tr74Vqc&Q1XI3:c0]AF\*NjNMDJ,J\o<'n@=-)X\m>"3*lEKZkQgZMF,4gjO3%4FC -;OlNk^i!cM:Co44R-(*S[+3IU"ko`t[VP+i:P>S?fbYZ@6fS5qAOc=_0ETL7;bE&*g4S=%\h(_2c/6dsSZs0Ea -.VbhX[&X;)k@cs!AN]q^TdM.2UR1/DI/%)BH0fe:e>*Fp2S:D$E??IAY.?]aGIg,m)Rf'A~> -endstream -endobj -88 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -90 0 obj -<< -/Length 4179 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,95c%6'#*[5kU6PnT'!Y3pD,"n,f&hV,9R8^*."EHXc0&6>4(kJrq``%8[2r) -'$)c-58hUQ.su8Z -q!W@5Z$4s[5s\l^[VOU*&Vtal)*orLWkOup1_1Of,j!2cc=l41*c%F -4C6LgINIp+g]"\i/a_n-iPXgNP.&)0O-dm4^>)]UVTWk)?@WGT:5AIq18sd(f!2DN -WODHm)83F0g?Tqu]SPboPThgM,5!NI$ad2?e`lEN46U`roX1;Dg"1L3%En8L8*ZjH -m4l-^RrPuKW@>D!CSX;hJr6dXY'a4"-3l^[40MH#*@]B*V8]?s];Oo#^XDD\n]F5( -%#,@P7@?#j1A`iQ?jn>ugEf"EC"#s3q#b\]YBqljA52[pGSuh;qB6.UQbA?Xf/Anf -%Ofu(8e7Fadf5J(mQpS2EJMFecH56hi4q]mMRl^X/9!XJ3Vl]#Ft^\XL/d3b9>b() -Ij)-ZWe?%fa>+9mlX?7.LO%N(_b!8D[AErpAqu9k7-\Kr4HU"WfT15]*5!*O>$_"I5sG-@m!@`GSrGPTL[(C.$Z)bOCq0 -3i.c[;CW'9P2sn=[88V@+k?B&e,8u]jrfV!a9<\3b$_e=cB_FakB[!r4<6)5*)*&i -$+ok/?fHu?rm#\^atf%l_3b$s*C*gP3)9qASg/0sPq4SGFPRBR(=tj/^ggrc)71q* -\RURN2l,,YWgkLsOeOJgCuVI;jlYU?[Bm`\?,W"oFW]cW*(_Y)M0a)b*gWgJ_3dHh ->"\7G*P+tsoC/7t%aPdJ6S_I8qOU0V]_6cV -icGs%[.^=8Vt%"(4:<[Nle_@j2==hp-a\s!Et,8spU0B]TI,2FZSE$uJbJ^-E[AHf -Jsb50:BDT@]kE9$bD\q>6kN$?A -Q*Bs8TI*a'ZeG/J&Rne3*+YR>,t.&Y^RDZZ@r4bZHUru,Q_BL98H'P'QJnD68j8[L -ek#gV4G'/-,f=S^UsOt^K(jQ>R6Mj$4MPnTfi)B@d$ -*qS)t&O(d#HHpk;g+!:9>ZEP`:*X^BSORlO>,uPfK,aMsO^R52Uh@W'Glpdb'2%Kr -XfgH*NX*;mDbcYWhE/>/V@%kE/32#GQkMjYbAho@LJk^=35(gsL]>6r?Nm?TUV!?N -h=mdBGPBT5^V`B*.-T-6qI/uVj!-]Wp_IN^"eV4t4n1,ZGpB:ulEL$OBYh"i:pF-<8J#0 -LOMHZ10`&),oM.!T_2<*R>JQeDK*>Ba(2WH=%e^iF`$"Q'qLqnU]\4T(C5f2)QCi./A!&G4$/N&[f%+Lpg6Tq8T%VcLM^rIMO`uE8Y'aJ;lA!$j0@*>Ds -%`gWYG\ZcqGh,f5:lfHSg]_$2oViZU!B-(fR?SB$^mI5s)6ptK'b&;ZBFH?W,N`_N -b4JDYTr4'WK'(j33*BH,Js(l]?8i3^e+C"PP.58spea6#,Y=V0('G(]K7]9^M?+@4 -!Yh/&EB6]1f6*k)hk"m386FE";ZcL98Pq3-_W]"dd-$ij)V8C)Pt``GCebqS@RbOOpijBO'`'7`2$.d'+QBjqc5e6F7kT2dFG/X$[j`'a#c9`oCLh -EZ,&_r6C`?)-Y#$.28bi#GWqiMpo\>H%s#E9Qt -,rmA`pgiUuh[Ct=@Ma?EoKk2dFp.uQD[6ND%m1[Z#"lBPB_F#iUuGbmHHZt[iWrpX -@h1Ym?I3tdHX&7$_JkZAc%W><3(5CE*RupN.`V;/R=XPF2qo&e;OUo>p[k;TD-JuI -2!SFdcgZ%%>]"rG%):ZhA$bq)I-Tb`l.=0-?F\UhM%a%,Rpcc!TG'+1pUKqVS`L/[UD]^4*ODk<8'WLn1i;2IKl.h0&H9ebDO]pmUa*LJ60HFhZU3EM-E_dsWI$-P'>^";1\r_*: -FRa5hs"j(LQ>qsYVX'-6lfRkS]T>/.f:#(+ioN5H,hKVsVjH^XRa5ft]2EKHP4ft? -Y%9S4`_s$214=(%\A>+f1@'!Ze\K1ia8opSojn00jg9VbAlKMR`P@ZQ`&'X#A!X,qsR-W"Y;u,rI/3hDZID*:^mN" -:j\TGNk>6>&rCG$TklnJ::/,9ck%^]1g\js9?X7'$YMG1B05OuhW3<^)[PfD*rpe4jbK#Y^j2Ot?,9:f@tl'dE>8n7.r ->fY=P6Wt`()$D][pH#*Z3&elAt --..hgk9FRH)DC(1aK:k/V0ZD_/r7A],;M?S4H=+Gdb%<^<6EdjDG,u\naVHuRqEYu -V&I!`h3tMH8o#cmq[qX.?L[EC7B,7'k7:."?^q&dh*:r1dgn\Co)HG)+Lc2)#i>H9 -*#g",,Z17LoN^GZ\bSW`Zm.gO%8'C\hfm3(Y.1LtRqu$Y+_PG#r.a71.G'(B/h&ZH -=!X&`XSio/oPb2CRl]O8Rd4?""Dos<@g(2M\Qmk=o3 -"hEk"?sW.E8f\&"+&L!gTiG>&(p;LVFX\L+_aU14JJ`guC^B_a3/#%W@_-IGh:U%L -Cl#A<"qG/,:*Zc$WBP^LD-CB?[`;Xj!nkEfamVoE_"a6[%;2TY, -9=i3R%T_SV[6sG]<Mk]8SWur.SX';'g>9lKSIDl//.?tM&R4;RRdtrck+D:G`8RL`ln@ts8,Ve_4@IB -endstream -endobj -91 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T5 21 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -93 0 obj -<< -/Length 3746 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Xu\9ogO.&\[L3kdDC?eB;d9^$m17&d&>YM$-7t3i(IA%IW`Weq -e^?KBX9SjoWa?R#`N!"#eN^-ImoO*RkGsB+BV_()pfkaFdce]N\SFQBgjHN%M>?2u -rJs1dq;Vd1YL^&!Y(&FG4Q!5hSS;pZ+bYO!X1umppPZY-cd0Y\4+([?B\Km(oFCkG -SLqRr(TkS4.]p7.pGnZmSLfteXVNRS&0Jul9usq"EKt?/mHhtn.mA?>CR7rbpnjTT -WH"1L:H;et*-5W2GT(1@A]#Lbc!f0n0G&MJg'0"(,tO.&QA6ui03PuIPcq*-H(/m>GoE_Eep4=)Po!Tof<]RAn!Kc< -*bE8lanU$8FK\\BXI"&@pPZCTLWR,Bc1iop&[tiAL-\HcK!MkmO\RPloSYW0C"$+b -[F]V"is,'4;n,GP#C]h-)FaXjX`pCT+pG(Fk.=1_2VYmd/f,s8+lq5Nef7d1fiVm@ -Q%(+e/p;Nhnu-JS(b+>&1m^e7GbBr4IR>k]GF]131V[?6VgJA6=a[8b.J60nRH3c( -Wu2HMreG\Un`q/!&fKi8 -F"-8OSDS`/o?GKmf/RVT?/%Umo0"53)PEB*Wc?s3GCcCr`!S;f%1n-cd=rn,`s;)B -Qb??\hOuk&E!\WioLI"^bBFE4"Zsf -g1\A9[#n&gE(ZM#SC5f>,NK(S[kPn"XVaP!HZ;FX(!a3u,`tO,BK!p3> -`dlA&Aj9r))$m1S9#$KldPQMR9DTuSC*f[MQ>E&+WKiR&>"UW&;_'"+[?PPq9s+1q -;%))1E,$\pU)"_+E,$\pU6^BEE,$\pU6^BEE,$\pU6ZRSB@J,u:^]VZN*6OdW!2$@ -VcH,6C2&b=:9B0`C0B3)0kt9q:s6]cN_q;OKj#8K3(C$/'P^eGhaM9S&[]q[MqN\8 -*%,3U-OAG9`acS&;JT"6i<\+-X:.L1.EN5+D1F"^`04A#nSeVI/DRQM:HGrR"lO[2VHRcg-Fc4N4YPjo.r\Z#!;r+0k84d+-*!'Hr%^[=BH;4(k4n8WndhF2?L8e -qU'&ACha)h*:c\AXp4>gR,DBCGD4.@\.G&^@JU-@VMl3t_P@Ga9Go:rKEi8dQnhQm -ak4%b-'Q9#,RBGWQmcOALlu`h4VOZN'N'Hd!3Z6'PVQ-)aZ,*JM,Hg#-m@$iU6L1* -P`,uHiC]=i:diDb+9<.PN"f,E%PADA8f9(PA3D;g'N$XB2P,b'7Z&U&KV"#u7Z&VQ8Nd``N"f,EIMDeg -;FCg9FA.oS;FCh8G>+5V;FCgIk*RQ.UkfXQk\fAYb-FM:6Js8f9(PKK\=^-tT31')%c,U6Lca8pD6r7;7Y+fr[[0J5]8\:Csl6 -mV>@\76XRt3(!H25"'f*18UlMW1LlIW)CIq<6lIK)jggmYhNWR`/#cHA_F$o=odRkG/$g221g3o)i=AGW$9_q*21)$QnJP%BjL"n)F5;a -UMJmJjT47(#%R!,!)`iXTT'!^C*Op54RiOtV1@k[Skl-lk6S(cgM#pqlphku1-tUM -G7n4m5HJJc=!#*No[/0Vf.Z=SnW;Y!qL?9PLU-4C -e=H4"c-XH.,Uc7WTmO7n4l%YhM^D`tF!KW8ki:b=+U'&T -;"P)@^3!Osh@J]#YQJG1kmWJ-4p'^-l"Rca`:ot=E^i*ab+X$7A?2^u08=r-G:,G; -#"HF,osN%/]q!Eh6\F=oPp)H-CldRngM\-[1.X7?)Pu)X;eZ.!E#eSL(nV;ip0;@^ -@SAS0&'*Ld8co-$Zgr6cGg&!)SbqSK'7GnW/]S$^+Vp]%-D2s*a2cc]Bn(@fXou_:I3^WM"CCe?2Z<7C$"(P.cK.fERN)(Q -"gk>0TtG0+1HOOl\:<@X?]HeE\`"K[=6KR;(61%U*>'hT#-nb=I`p?F]>JRC.Bae" -k?UBO?I)!r?Y'ASa=Eeo\\,kjs*eAC+H9'R1l4>.oZL0_kbBP>g"+H4.O[)2EI9[5 -8OqpM@[,Q/N5P?aL+eKhnKOn0m> -Lise&]=d,2P?+VqPSRj$qpc?#TkIOl;Q)H_F$.h>WTg_UVs']=+pAD9F>1MW@kYA&Cj+2;TAq-<;l+@1:iY$'J --9h%"4hFRXl[1Q0LX#P>@22Wk/aYVLn<#N0n(%VPK;[5T[=s\a1EVS -7]i'7%`d%A8U!;@4/91=/PqO;.*sGM+V7Yd4q((fN%H_TfZ&rnU]`XTYjXMT3.CR$ -?^V5SD`=lIIqZmJUDhMn$rX,`3;`:2L2NX_L)-BFR%h;i"PPJ7,;CrnHC@p2)roYD -a2@<@L\(Li,%$)\f68rha_o`p5#E*&@#hIkjs@]iPnPc2PJVfCF!P)-r9U_kGb8#!2O -=6CZKCfIg<;kg]q;BX_0$L5\-NJ7eMf!;o*922QGRp*5"1GSGI2J6F8735K)\#^R( -\+QZZkDOpE[<6@3T)H[<3K.a[ -/Lu)W8kSiS)Y;LUH/7!lI9Yf/a6rkI/5r4AgGVYR+.81(;J1XJV;mdui_%8oeh8I4 -9!Ik_EcRE/6BaSTNUAsd_XO*.$`9`Z<\1CH_@81ne&nM17cj_Ces@_QZG0orTdqS; -guYRI$fSIkapK'[%-2mZP/u(l>99cmF#U+)q>_5lIta6:$GnJ*7Gn%V"W;1+f(f@G -JT(CjNSt(/Kh]M#2f"m8@=iE-@nfNIkMG\adY7l+CXqpsKLVFD;'2#., -endstream -endobj -94 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -96 0 obj -<< -/Length 15005 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z,'9p=8rX'ZDk)>ZG`/>8gE#P-F.E&s80M7 -#SX0A*5K=0/M8)qR#[U6-QFnj`q=5GobhQ?\@3%l.Z]`%\8 -rV9j'Pe(u3';jQD^R\U9M`'PjZCYpAP:Oc=D0K@-a$m?5\=?:M:Z%*\V_\/E[3(CC -OEp*3W6L;_>!#q?P*o%K+Y-#?7%CmH`lZo*]1l#GS=Uh3c0?p-q'!s!YIuO2Gdd)9 -o@8"ShJcI`lX,t"c>)1I%>T$o;S)'Uc$a.RPDTD3[Igf[U,Ad.j\Hi`@ -0'Nd_`ZOK&\%_I2\Z#@m_D1N$80t$HFhNAoK%=bU+sD6opGP&r?U$/A)J@7\3^1Sp -U_"@.>3S$*52&0P5`0e!O!3=[3Fl3 -*'_UhcGK+)*!WT)or#iB;]ij3mIYomd'VN@pTitq?V:j:r@^m,21+:ipgq+3%DY[*UUD>Xi8s-rJ0"io)$ -Ibs(0ZN2#Pl_P?T@l3c5O&,d6)K2(VqqY_p?dXBrSCO'EhejN;F39lB,N?0#`f&Mf -p28m36ftI*r_IL&.pln;BXs_\Q9JG0BYLp?`TB):5ie-diMZ5+Y/c\Y%[.MR -mn5beD/u_ob^?kqCUX2mLEp"a9XEVN@S"11H1<*R,BLG)@HnRdga:A1pTrCU*EcSS -eW6A7oQQK1\D`(UlfGPbTX)6n[J>p+:t$NM3>gf;Xb/Ud4p&IXA:RJDVdlSoRH+bdNEtK"8PG0!r%Yu"MN1]EV8F3fo0MW!TkB]dr -^%b?NPm0Y6Ors#!`t-F0[di`g30@"nU@Z\uAZ48QkgeB<;qnT*26LJ$9e+N/)We8R -g^Rd$bOTs8DMU-/BDhc!e\o[3ACJ>p+(M)'HG5@Pl<.dKSB:IYE8I2En!cmN)0!C! -lLFnWhE9;GB""b8PfWJ^*2;"&Sp'k7?$)pr7DG0`SRUefou%r<&L3%t/"&HT/q.)% -csboA+HT:QVd>UG'Q48*>)HF-aPeVODg&)b/aM.sf5X"Xn^R!4>4al+:u(/*f=.a& -H/IsrDU5fU`A)j?(>udIZ]KOd9!DEh2rduah;bA-7T:h#'^:3GV2D&&qp;aPt0k,-X*R:XeaEg6/TmPF9D^TDFZa_G/&:H-nu_V4`-ZTh/Sb[3Zm^)lh(%3GL" -:ljRIQ@0#HtHnFI6+m.&qLl>Im^8?>*b> ->Oc0jNQAClf>\e?9ArRnm2AF@<)b2:.LdL)/5J -T7Uc^fjqo.mPY.9+SDeKrSNO`kQfo:?L^:&'l?_.ASD^F5Za7T(K(Wc+0L"`"-:JU -$!Ki-1$lDtOD4\te;rJ$[)AL5sn:#&gHZF>/$$6rZd@@H" -_sg>39d+NGp_SNKOO14=O,B8rF\)s<+]=gUefFjb`IXbCAcPLL.IWRhSCq?--,U)G -AR:2!;\)-7Q_e#8nMa#;0]UfH5u8ZHpePO5r('p)!-YZL,\ZDIn0#Z7im/+$76pRU,`lb\GAJ^Fblc*&u%\r_Y$6I!#_TlZdUTI2^@_4[m0 -WpHGICpk(;'U[!MG8AqB5:6/Ff_tA`fH#eVqUA=K:Xg,BUb3%:@jO^#k65N#HQ82jKi(2!41AKN?OcJ7#^h_:PPNNqMQp7GtC -'1^*!929SAC4hk<0ccHsm`FmU$Qiq0[HH^LOG77Fet3JT.qh9e<",\r4=$##6+]_U -I>ER8SP(A:C:&ldcIIn"JKUMuT4A"s*Qa[BTOf5Z)3^nZ%WiU:FauL$"9$o?';,R* -CrdL`a`5E#lQ!tdKHsPH?*8J$84R-PK=lr-VZWqtV)+IC(t?0:o!p<+%CK'R=mYMn -=Z@%f!NOYK#UOH-09$O)iTcgCdY@*VJCire#i0FS8X]kI[CM6oaWnAo4Zckm8 -AB6Lf!'AJV37,5f@5/36X-N01Wm[#4n=F%C:Pg=S0q7Q; -;,p$iU2`.=5g%7M=i[7pP,bmm[@n -a=t+.g6)_*kco"n!O;#+oK.k^W`7+ekW427!i,ZrKk''C$@sXFDfnl9_p(L.bU\pf -GrH?EO@`MgKbJGcW%,5,]!:4J4"iXdX!"pDeeSA4qF68S[L_LDnGDsHM -@F12-PE,ubo]jro/,8Mn,C\UBrX9V3M._HJ\-I`'u*):Mg=n@Q%6[u"OB5qu17]g1KJ]//o&c`I9GA-Zgf -'j"^[%JMLL#ojJE*ok&2ab3G2=XqI%!nlliXEf\!SB-_*UPV[gjonBTidV9up!O?' -r1BIto>t:>UQe-?+n%XV'3-/43AbipA`@7iampTD'0t:n:>[2<5a-XVBW[NY\0AQA+!SEVdTHtcEP'Kkl/gDL7GQd,seb>M]QHWh'd\d]cCV"Z -]_\g%,ECOWVa)-+h#HRWiF-Fk<<(]C>/ju!d*ki()9c%bj;Mi%\5""P,2!X4!uq7BjKZg_q^_Hp%n+EHcNir<1dtKaZun4m2V,F&ZJi?/g>?] -,E2h-K29eM9G_^NES$7d?Gn5:.6gKfiAdR1^JeNYB%*$A4*!5>QBjJMfFeQRX3la`SUB^i0tZT6 -,*"7K13dp.\,Ua/M:;M]Is4SY',)$SpuHW;r8!\>2ANF!Yi[AuE>nE(6lXq'Ga]HD -r%S-t:qaTXrC]K5.Bk`El=DZN8H,.X@&PH=Eld1g/h)Qado,T]*Gc^l8!e5M?@-gU -EVDTU`B=M((X?I'k4Xf+AJj[jP!ZE9.f+)W8V)?*jTL#IT+fTCl3_0!.$cetg?Zl" -\u!@9DZ@1O]p3MVrB=Y0Q?C0co(0Ab=\o5[L[hd+6tqaC$^(V4Lg'mE0OF"=>`BWI"mBD,B6:97O8 -irm'0p53jCht.74L)RdC<*/5h[1Q`9B^Boj)J#'9;eZAn"ZQrl+]`fqm`M^>>=N7$h -AtSL7U?b=gmRbgiqI(bW6BDV)'l/*dP',)jq<(,Sb3%Z^S$!o8]BY&ZcT85[ss&FX= -\As@gMf[2Z35$uo"#oM0&=f\V#IRn/9IiC>\badSf$,c<^HLo--A(X@]RiA)2`Zdia&S/@[-H!m0aYN)Q2(A5-'qUq3WXl`0h.0Q4Gmh;)G$ -kr)CeEiPjT)OhT[3^U#34dun>W#M9:Cl<9HLqA*ET$A#X+"ckK=4=hPg%%?2m!O`Xo8@9DNSjoaBoaLKTB -g)/b*4KU:/r)hhSs2D&9]CY@D.%3*,E'W6E#::VrH0JK?aU/G -)1KH1 -gPWO"!RL1K]3s78^:޾-0f2jB.D-1OoBs5sUk-_YJrt<]EjW.Z.MH^8XAmnr. -^)SL8^J"EG@Tf%Cep,G#T\h?+YQq:KZi97)8E5!c%heYCc6N)srdW4'"nC?E@.RFP)Q,s4OG'S=-'Q??U%dLDT9B(sDgQ?S@aiGg6$\K_SAmV50 -oX"gm4fn_i:M[V93H^$BCP%hBdG4^&.j,Y24Ac^/6_Zb_R[]GbR5T8#*Rm -jV)'GMPd)f$)TYQnB(7aLe])_?D[K*l^GR9:*Vts)\kOkRhmL8`P2_d?,&DkIr6#4 -%Chd8YXJcC5He"?;l,m7*YJ8XiPHE6PsLkm_U5S"H%FuJ'o"]e)98M]r%RMocCE.l -^upLK?NThF9AeW57bg)EKD.t$G+bda9npM>fP+On%+o3%6u-Gj&'CUQi=?/.VS#1f -q?iS]KSd.fV$n=j-L2=/5Ld@Rkj?e.B5>+T0R0"AK`hXCVDF+LE$>nt9H6bib/DeZ --\T6j?HLSG!OPn2YOLmWS2$m..XBRa8AobA(\mn^s!CRT^:ufqcE6*Bqp<6SQ;U*o -;`og33?OhB0r'1,I>)6h:Rm4ICJZ!PMgn@@>)U -X*ELV;SZ`b4]7,,b7ZYO(_Bim+>QV/J)(EWB'#>.ArQEMOV5\2P;X:?5uV^78RPaN -)"nVS;kQk%:,'VHbhGSlLW2gka=5pCY<0kU>"AeV;M8HiC!9F(<%h#:"#$RgW/S8J\2(D\O&uA1u4o6EU1*IH*iqdeg=D -4]eO+_`Zb:j3p^m(%bW,FG,8^i[.L7^-\6J%.eS9g2m$lk&i^_s%>V\QZb?d4^4:k -("f"ppR:II7+qd9m!<+I2n79eiTrsq7L[n".C?Q/p7P!FNn.aE6biCf;M#`@K'XoI -dP!ItFcY(Lk)9,B[`T\<+5!X62r9n_1>G'+QkqMugtb.!*4CR(io:NXciI4OY:qMI -@,8o$[OuB*hJIA`^DA;)hr"F0-LMT#HSoe;p`@cpX&!t'd>W]YCY+6Ca,$1)k:t]& -3/l/.'O+%i5Y:PC!a`Dp*+3%s^[0rPKJmb=_Docq63 -)j:W2G3W9qnoR&I@oIXAoCCgJGgNTqO_G[>La^-Y9bA[">"=G(s)D,$C0eb*k/UP? -9$+0c"c9a6TE![-o)H5'P3g22(q@m@HicHN&;P?%#_"G-me^pP!?_CsEr+NsC6]Km -JJ>pe@>,]W^Zu7JlbuqR/p2uc(gX8eIH1/MF*OmI+Zi?G8mTVb7]&%hT_ubDAf>J7 -n(nnJJO)I551k;pd2D9fVOYCfro+Sh@HX+?Q`UbAd03-a8T+fUorf-Z.AY.WlGYeF -Z0K03M.bAL@\oC"hWh)i&q@krMCm#Ep9`JDji;JLT1_>bjg4kEIBNT$Fu7P+b!Me, -/+t'5=_+o0V(D0QOtR3UQ%cP?L4"=eXba@^s]#8 -5)nPCAN)]aSW:@A,:'Z`b(o+NYKn(3n#m;]`I-U6o$+h0F^P\4:l[4)Vh&_=YE6YO -?gKn!Q;eEb:3nE+kmYOr^%?2H>a0HO]mJjH;&7G_@@61>R8)cohBo^fo -]AG^-c@o#7kP-kFmKF,h:SYG-_S"NG/Agtn1lW"?i41!#=C_VEoa_sIbQgm2m-7AH!V1gck`"g;?[$nbUTLM)5^UF:bt[t -e%#NW-IZCW$H]c1;TQDTa]q./Me1Q-FQeaZ_R#hCW:3W7-XWT?+m?K:PsX]C+X#LD -`>kci.PZbo4(eebTPn%X>EK2#ZU -)sBgi:)gt_B,c*Y)mugAi:?b`1dbp5*=Oa;;eFo-CA5E8,/!@R^k[,7(oI,faF/:` -pER-4$mW+UPr<7"Ic!Asi\cac@KVnpD4LIuU<2[:l:h]2.8](]8Sc,"?; -F&h_S@>>_Ce7I29oNN.(hR0$X?Ju:)& -OiL3To\c3d=Koad\"XONkApGSTOKTl3h@h[]eZ5RXjI6uq,@W<%&hM#LTOI0e,6Wu -+iK-!0-5@SBQeHX(^"XVlFeP)`##k<4g^)S1nE/gM7UNEEf:[F]&^:D&]?#j132,1 -.VeA^f0S:')CZ`rI7^/R*oR8d^+@#:'^tL7 -^NPZ2*UM&Xp:tUWZ@Fgf8W-H2me#'4BL)&a'L'$c'?$Y)#ciI%n7"S#-3:.'TTXjd -]Ki`gr6mp?QWI:E+MZEOmS%*qXl,30E>3$9JKQr_#6l8p0+'.8!9m!d!.!c+'uj\, -OGG.=bSaVXgU(a@:SLOT8ZoVjb?0;SV!4k`P%Vt>s;m0Dm:D5U8)+$Bkh;YS\B=Jut& -S#>C;ld'MBg@hQp)O -c.^1tbHd2dD0'uVUG5q0?0GBDf$]sp)ldKnfWei7L7V<&WS5]s[+=)3m$KAck)/P] -@R$]e[.TY)@cO4]a#Rr5B;q)4nMR"BC''7*C4cG'Me^*qnYumTH[g`I'Sb^MVt[jr -&`0Nsk+;jh]tD4'Z!Za'GHO1\\uD>2Z2t(iZ;XT8aU>%B7H4Lbc+;b;@2s3Ji=J9> -4S7#,Y51_Rg[B9-Y87'53_-`%`rqHbgae@'[,N-`'B)GK))P5.\/9Ut-He6s3J4j< -7h%-6"6Ynek+/`H/\F?RQi,;t\!L1;iP.$hSemkahfa$pn;*J?Eedlf*"Kjg37q8* -cD-pr)k!342MKEpohtXUNM>H(gNY1*gAYqD=^A@TbGgc8jbFIkCeX&G<(hSX*N1OKl*`sfp$e8/anDX<\ -$H3k-j-<\A0f-I?N96`:]"Pbn8XYo+c^d')Udn3$:[P@+RAbce%`1Z6"ZR6N&%3"1 -5%]=tG^kF@$m>aIo[cIE9lImk@"b.K_Gbo%crU2/_LGqZ4>4+L\47*X];6OnOUo.c -p2SE#h5q[P/EVht4_Rl0-#7kEW1=/Hd]:CJ9QVMOsA)4]h1,R;e23n"%.W16;*_NcdC!a*hhQoOp>A^DddaXpUZoNVi,nKTu -;pRDoL7D[7_@(a==ai0JhV[d.W9?k:U$2d`(H3-!4S]R.:5.1]hAoT8n1jF+keZDD -Wm1LVYO9"l(N[T9CGk"n)mhKlTh*BR]D^Sfp[4c*?g9JXRnC/EQ+h5?0\AqfO[Q+J -Nn=MFaG-c-q63\o=I_\NrX,RrJ;H,?F9W3W;tL)4?^b:1FE_GQUPE4>0J>?RN,#<# -PYb"QVS0ELE,CKb9os(-Y!?rJVA"9S&/Q1GT\pL3$B:P8#(`.hcr=t@8:b4Oe^$!@qn5^D_s"r*iV%oRpr^mF-EtRD@%m_!C?I`@C=mZ-^,aTgcfCJ4>5ajOLfWWumnaV+.n,g% -6q%AT]j<5+0]+;?D8%2bYUpU;1#^'i+?=q(UETo62`eY8Kob_,&Xn1dbj>l>AbR\i -?0YgA/jIkH']9IaJEGjM-GTpLpgEt^7;#H+k5?$\6'MJ7J6(j,Y@hqli0rL?eCD<; -o^=:Nk0CQ.L`q@G)P9K=MR8k_-(5d(O+Dp-8f+p*F/T"t#O:+[,.a-tL.G,9B&;H8 -`Y)S(j3+a_mtZ,]H^CeDc=pU#&9qrX\pq_(.mt+,2!@1Q_up)GV>/*5kVO+dE,#!o -TWVt'_K#FseeS?GKo9mE\48VtnXLX,;E1M.qY2=]ghJFU,bKWLNCH"O -QbOU)?&"uoK,"FuS;Y5hgIE=0b[=fVG7?4f^i[sejP0;R>R*an$,rM,H\9'/G8G_m -R9)H%SI7+lDB(CTirkWAG2ijG^ADVt$LNYmn(G<'P\J&i:D<"VL5cdNLCqcpJ(MrA -'oja/8uHrsR87Wj"csM.S1@'1)&kS2Cg"2KPqCmUn(:#qG,*5\^-C9N%)XND"fZmf -eqcs^m3u74B[S]N//6:@6N';Z(3M^m;AXIK.4tg5oaf0rKjqUFkrnK`KX\gcq58d] -0r_=J+0>>A>oQ5X=VV3!>/cbjocI,8_Q]hfGioHH9rUmB@rU?ZeN- -maA4A2N^OZ1$I@*J%tm#7sd;CK8d1fGduDl12&dQ;:\oGV8e(oAAq*7n^B@2d)b_i -C#NXAqjb&g:VphZ:64qF^;O0tBheDQEE8l#mV3^'X%A/K]@t')F&s:gBoRa2)#_A; -Y-qcQRd/^IY(YE-Xnfq$\!KRoiN-<*m(kcgWV;:Mc*#pX-\n:L9`g!GMQ,O6fg'SY -Qn\38Ne\$!NrZ'BGR,.$dI@cC?!#'6^l.qgfQ]r+k7RCT1aCtELGZa`bhh7Gri2@Z -FKdRMfo25QIr2bn=>SJ9N6%qFCrX-WU6S:iJ"qHSroFO;nr#fk -T(r3=?d[r+%X."*/&@Ul+>X*7VkXmApu%08YV67$/.j2er=q5+L!0tb/B#r2)m`(] -B2D(t@aRF6FI4l)&%J2*`)GdH-r*)k\MBaC8_08#4^'SVN,@Yl0uR`'?M7P -J5l7A$Kl$((n?%3Dht3L3IHH2I*6F4Ab7W.r5[+.F$@MGm0o=1Tn@E)2B4I)&1ho< -JTJlAhuYQJ+6bOBK5'tM1jh)l>d9?;2"(cKROro>c+`9uK6?fn?20JOS`_^6#XpsD -%]'=N3RO6NP*!8E1Kl)](gDipP,W>/!lnnP7*_].BF?XZ#\Vat%4j-D%d';4BMMB9:Lh2e>EX+!#!hqU3;mp:TSk -V8daUo\IT[;%$fr*?ME*h0b)o\Kc;EE:r7l@FeGCf8m+l'X?8$=9sA'`G8Yj^VZkk -"F".JhHb:rGh$Aoh[Jf6?X7n03-TML1FG_2PVpN#MlP6eZ4ZE?.#WeuO0ZRSq&:%6 -lpail^FW(`eiIu!UQKS`,b5q9;\E%PaEEX;5 -2K/4D`]\^%Q\4BYKA$/!h)@+Cds96?Uo<8,/>Tf#1([XBcU&I7LJ\=Uj;`sJ/KbGHHh0/P -Vs(iJ[-[d;);WIYlHj@i>OhQGKcb>#4-h"4BFYLYF"fZ_7:d)C50[25rqrYiQn,;O;n)mecDM/D_ -.\ICE@2.9d]0SfZU5V'\a#)%_G[X=];H^%d3#1nc:ol`PF-G8C$lg+nkT*t>Rbeo5 -hV[_6?1H_jL?'m8!XfV*Vm6;%S0BCAHp^(,.Y9BS6rlhsN<7,9+FATl#iEiDc_m6& -dCdlF46H#A?4N9.%/T\9hs\8cg-)"i62m^PgW2Q09kpC!6CT8`M,ReF-nF5.;V;8, -&pBFO-_[c(XI(h6+.1VF)p=,%rPF0ERd:XO"gZ0LeoHQ4Dko"1Q3U\J/#J9QFW`QE -FSQ@D;-jmtbGi;;ShT'!YG[K!-@IjVp89`kiP:b.d+f8'jq-&bL06`;lKIjFE3#0H/1k&Xu>2j!ELs'bXq]Xp5NK>bAJ9Q]*5EJ3$5 -A.j0@61l,(WK76K)"34QSJ-2h;'H3I8PiTo7"D1$M9HRc_C6)Tg&!96le*]nE>G7q -URMmYoZeS+J%,0QS%b@j4]k1ChOLJWM%+=Hm:0'rR5suJ4P)K1)5]jgoOck!GiWD! -@?s',`QKUdH&ta&LgDt?:S[sNAWu%)Hdo[.+pkHY8b8Ff3r6%4%!9IqVh:OC=]G_7 -#g9bQ+,VRs@M3!$NMr\Qj0U5IY^HMjR6`j8hI#6SoLZ5rYgCe1,Q;<`hd?iLns_oc -rMp>+Z*X$aG2I;O$X+-`9kKea6XGJ&c;Y5u'5^/q4]WbAg,+5i[oA,=(CUZ:M;EhY -TJ2(@Y(Z/$m!,/d[r.qe'k8i.Pe:EV]^Su^M[!J"ME@>N.m'oV5ao-Um2>)d9CVP3 -Y/jFj"X`e[Ssc91StBZ"aVEG%c9/F-9g@4pe4Y.(cR/r2/br04(-/%bSROD!MMi*C -:9ai[T2TQ.a<;#tEV,=.,aIAl\CA+u1't.A:%O9/hk'W?h2e)@X+NRV.GJ$u:Dl$= -,t4/V#d7o=KUZr.mV>Zf0$.(^5uq9AF*+DkfYIsM:W]Ro]S5YL'fKi]Hs+Ek6s5Rg -W_Lo'K/39>Ma!BRDGG=d(;gr2>"EY^1*F-LCE\@:"t`g%4M;N1m`bh7&Mf:Zj`Z!o-;p6AAXdTU"*pZk2^LKn,jGL?Due&$qHdL0;Zt -G?6gg\gelJ0$eZ]BnW5IG''0/$a#gt$2'N%&AFP`'@7nn5P -Ki@F%N)=S15+6]7YaRFq6^NF:\*()ApNpi9Aj<30[u$Aq'.mt]IW)_m^BRr!-@sd/ -PJIX]#9m>/J7eKR$>8f$L*QA,k<3tC_b[Dl]DQ,78,qkkJ*cMakJQcFcqqQC,UL1p -0+p2i*Wq,Aa1#Cde+(K;cX6\HbE%.&^46*I-N&:Cd.kl;^V'O0O>/:\a1'sDijX.L -ki'kVT0M0s`Up@Kr8[\;J%gAi/"qI,J,d0cB2(fWs!F?;qL!eULYl^&DE1\EkURO! -M=]?.^E -endstream -endobj -97 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/F1 19 0 R -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -99 0 obj -<< -/Length 2712 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;ZD/99\DE&\dR4kU'',Ua6")4gc)mm?D[ODUKLa,"CRZ,%ZoUbp4&(p&NnKLmGR: -*:2`oYA4IH)uY55rV^@%H'?J*I.K*$f8S$Cokt#3<;dp$l]BFOVcbuDbWc'o+)HDi -eTnKn"jpL9CgL`u9[o!F&$t1!=VmF%d$IUuihcKmSHU,3Nj3[HL*8A&)h"(CFft^" -='\f_LJ(n]<@t3tP8J7M" -TPJ.Rja5MgkK( -6t@?fd6CoK]NgmgW1YBPF'ld:34DmDllP)57T/2P?ka"/cm;uRmT#6\hdiufg-5Y@ -]2eK,8j%iM$\+Yhl"R:!J9nKi=\tA8oqS\m+-""r$!';f1o\eUp<@U/,J@\k@h;>Js6l-=(@iU-I&-Jc?Z:&W!9E>CdVsc(Qq2@`B.TF -(]!-9PDBnN@R>qH&Og]S`@jCj;fSN55#;7R\ZJCbj2WO2*]\9WU2q1qr1iWUoOlqQ -l"g"3.CJWdVH',nGPQ0e$Kmr:c@p8^Z%Sd=Mk*^VTr0N5%DKZR/?>K3(@IB\;fG/Z -5UJjBfajEEp)9"RLgZ\"d2)Fp;@'?`8Gc0"/TVg6h;U<)XdZOnbuQ%m2-]R,lFl>j -';4)4!$l3LouT1nD(M>G-T:XUIKHsPj!6NHO[d9#<)Ma6/QaDLi[%3NpjibG8ib#0 -!QBIIor;[tGi_b"fbFd?E^*-uL:9m@_;N,I5'-57?AqY;2eE`aKchc8A-l?>Sm+!@ -7p=[XhUe]te\iV/:2q-\/Qg:-I[P4PfpcBhYo-OO;I-?^BH_D);kfVn?=^C/p@jB6 -'iq;\qa72#6"$]Gk$u3o?l2N_iA<1I_j$+.[0#,J(("usdOMARf,b`e0fPUkVI8cu -crl!c"?AI5@-:+d3"PHNfsjgA-qcjX_Dh9ic>Ne6)cod*Reu'R-#[(3lhU,mp#8U> -.5auF1/*fLQ^T6kRit(#"J7_kZO=I#0I4d.`=ifW -W3Mhh8OVfeg$r7ftJj(is>eVqX/D1o4&uVpXQ.]j[W,E"EgCiFF&LI*-BNom`HuSNO;u --s&eNI(h3\^n].;2sPZV&S1Ro@1NmV(XKMUX+*`oA#ZDh.t/i8rGmO56OS%e8qD(_ -`nW+2\%Vm"ed)Lbs"[#OU@Wl8N29f\1@"Z%@c,`DgnFL -\IH9>qr6$s4#$`niUL.R"]A$ -A=kb>C83boZYY_/0;50BZt?(rE."]#Fu&6/dG,76_jTHF'&a1REOFKd\Sa(CaK-3Tk6H[8. -5nsa&O'b),c_5!&!G#E(ns\;s-.G=P`ej&$IR^-mglb/c[YZWSB`b8ai;SBYpNr;B -]"TX2p=7"9p=5k9Fs2cc?\G7ASR"m@L'FdTV39BH@+oF/6.mad\_V8PX[ibr,JruSgn+A*O;M$Vc[1W]9 -,YMg&Op7Sjbh3Iul*f9J3ZPD'Z.S0!c&mG/26t,=X8USU:i8"LQGaFgkf:s756Cns?1[j~> -endstream -endobj -100 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -102 0 obj -<< -/Length 2099 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:,9lo&I&A@C2n5af]6LYGi[rddXP"pA&28.'k0G5rn6V/>^MX,cL?%;nUP"mbM --T&'[IJ\3^!FZju5OEI`p@aMXa)8l%3a4>aM9KK_Lt3G""Y$t(\BomHQ*o0-@7Jl;(k(sX_#<(*A[-"b9:cQY&1!Ke",!&t,^JMkfI)*l45]V(Q$ -,n"h)"EA$/M(q0`$O1Yh\KVqdN$,Ye8Y[o,bb<=!VNIVLSL3u&2lEL>SkSD\Vn?9S -dJD!*0Xi"k%_JACgS],cr%*h\0+%kVQd'J>7/@M>oKGk -RdWP>8Bhj*k4V_&N\fejZob&mi`AGu30XKTOZ="0pu"^d7OAG47(ZY0=oa^-9sEQ7 -LhHc7^nAb!_SP)u)@.Yq*s[&!/N'5!=f$eWN-/;0+:T]DdW,sk'liChQpB@Vl.cH3 -?\jr@CSmel"&2MPE@)Gf_881W$&(nfPWYD.l*fM<7?]DeSJ%N?>=r:<0af\ks%.lX -G#JB>N`1F#/N5PSS64i+J`#X@)BC43iLmr**Ph`rt`1lJ*LiR%9]DL?RG)pXhl -=91!>.EB-XqI=rd[aiVl^_0oTNo+chCd/$;*0$>,Z!4t)*:!.cAcjt8R$D(*nDdb: -qkIHQ#<2V#)t]1kph]9eI(V@K?XM+:.EBF(m!Uqi)o;'2VtT+tXUj$3eVuJS$0$$FG&H(* -l*8-c:lc&!4GP\J5iVXhg!\1-E2nDhm2;5e&lemrVl-D1`jn?3XEWfW]>_h]HtY"MP_bgkBJV#Z8(77S --\mlIZ2)+U*5KoiVYc9U'uFHo09'Ira/?Q7qZ=4+/Xr!EkPBS1=hq`:QQ-0l"dAr5 -=tkR@e?E33reDAVDA0?8pXh.^MBn/`A,Lu!a^Y`hcZj-TY3HX<5nA]l/q%c% -C$@G+h>[6E^P.2P7-n9N:af]*dT(lFPaeIA*)013;Q=8DG.G23[#,=)Wc_U1Wa"#b -YXsm>>hYl'@T*scl_'&NUJB\P%6"u2K/RUE]U\Q"BF7`WpM(fITFl%%hpHj-683i@_+Qs`H&0nG66/ZaSl98H4O4>[F -Bb,^&B9aiX[k?G3EXcHLh<9Qd[EU.G9_-BR(T&%ZpU]mggq*cSaiK36EB<(A^%6GU ->T;'F(7I&5="RE%WKNdfCqPL6;Bs3%U*P7k%3LM7sEFb">Rr@]S\ -G2B&&hWhEfH(O6FDWiNrl;71,!MSP3@:ohpLDe>Mf'_/Qn-Gu(2a\Z`22ZU#38t-/ -0Zf#Tom>\i4Iia2A(t1i((]$g*hOY4pf8j@:bo\d:ICg@dm=FrQ@lG7+$&cJi`2]< -Csjb"Bik$e;on&p7qC1uP$0)OSQ4pg&C=&u[e4LnW[g'7tEeTiQuCL&s-43o9u -;u]08$-/V;R]>c$QU@$1%/t0V5ita,B:"bLd0(8l4]KELTVe[p?UV6=j+uH=2KJg(,@_Co:DW:ihR:P*pWE)TgAuD7'/W8p#)V>'IZ\*V0NBlXg_#o!=HE=6<#>@Gd<=nH -A6S4:KqUW%@qbH$dT"X>C6d_R/EJ1EYaN-lT2tFPbM9()6%)CB9Gf[tUQQ;rI#h"0 -cUL_ha.K7Rm(^Q7: -ZO>/[$b-4tT:FgORHbB_B\BkGVY0aZ(7Y>!>mWWq0?u8Xo`YcefdUiXZb/LN49V>< -Ra@US("GqmNdq-'9U6c#LK;:?kY"WVL=a2lm1QRsKpO;_FZ(8,n -0mZfh6NT/a)h8p\.YEIq`Y#R` -dWA'H&HOTWoSG9/?Y0[>.-[RB`)ZJI0[I[!-H@Xg;C6nJlu?%O1PAZ<`iLVPe"TD' -#_e$).YDW"3]M5.1;B4@&<<(-'K;D%M*")[pO;]Wo%,u]7o=s)'W!Qd,S130O&eIM -!+E7 -endstream -endobj -106 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -108 0 obj -<< -/Length 5072 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wj<9lJh.&\ZMoi,KH!FFR;?+NP^abo0\,LWp1I@C6>+Q=VX)P#imK#_M-HkIkUg -aVg5l.+Z5``F?1MFk*Nohd('T?0':S(EYT5\#qO^44dh"pVh9sPhrq<@^e)JmH37% -T5Aeaa7"rPc1_/!j7CsCD]A!dhR`KRk-(9A^M%tacO1t#Sq<8L'E0KUWrVl@]2tA_OC]"%.-aI/_?U*sBIi1.9XuUo.K9a<[jhZ8H -6,^tiR\sU,_VFPKbO`HO-OoaE0"C^=!93$o""7Cm_nXqNHD_TBB^!_NcaJ$TF>JYX -K-"'cXr\X%mV+]e)R6X"0e00W5!P(SlE8V7jKs4tFp@[qYl1fNE5Zf>EqQk)nV;R; -g\6SY3J_;Ep$(o?k4\')o-Z^9-hD,eXSD]j%sOCGqFZ1o)[Q0.lq_q@lN07frUfWl -O,@$.j3I\VjR$k/U14dNC1la/]$*pNdFkn"!.Z^ -'^U]Ml"pa3@##j'X-KHS[`5Z"Pus,Q"/W9o]9c.kh,V"DL0 -*n91AlF\ehRIEIC5[s$4a$MnK/D,SX@GGP,=.`m80:!f.XlTM9b.dE5:L3?W=or(OM_5/AUs?XcKa"XFL4+#aV7'7?+GJFT`]EQ3m -hQ1IR"$`5>8Z$[*lnf,[-UA]4A0@%601/O/kjm)GL5BUQ0#&TNB]2flrIP*'f%o7O -9/,ZqdBhrnL.bY@=b?if__0'lYg0qUTm9IrB3bN<.1-BA6)=WX8kD)a:7bB$08:Hu -P#_mSiSd*$+c&`=>UpD;=O3]+Ta2EFed$$l#VWD=+^nj,(;XV&dYrTd:B3\UNG4O6 -BN>SM[kE&lbW$"n_kPHq?5*YZ?Q"_[2n2VV16>-[[ -.,](,Pa?f)TmlB)377alrSWl9Z\bfNqU/Om?5[M)Bes/dh;g9Z38jC!YI4XIOc!CU -*kleEoF=Y0)qR'AWr?MO:+_'0ftm_Q:aacEoO/Xkq]Kml\o:bRE`n#++u"(^#R_%A -Dc'UJ5p\=1F<)+5i!2(Y?jc=f4MSsh-7N,kKdD[_@eI/*,[X_dIDh2/Bk/dG-\in^ -4qVqTb+e08XE_E=[d:@u>1L;_)kmWsW#@F(*nopQ+0_b?'2`OhaleqXA\ZQ'P[n\\ -=rfPBSC'NWU?KPHBRcg+d!hPj96.A!DeOH'#1B+].T^7pqCl$7c_7;m0O!Tr+5e;b -*0"CSjV>ocbG=@YU*KrcBC%pjfV-"eWBjq>.F@T$LkHO%']r494Aak%?#X?.]"VM) -_h2".NL"qaM,^a1?-6qH'S*LQZR4CW=Wo'#>m@3gSC@^JY)L65Opj3K6IHc.U",Ng -G,hg`Ti=VB:gB#+5HFkkISncl*c,Le=5Zhen],VOSs+N+tU3=)@3# -N)\]c'@fl"Q,m*,#(/M7X4!B6^0)eCDK/?L:EO3"ZB%mH?!poZH%kPHZfBf=IPs:a -XM[c51KX_-VbEA3Y9bj.2;WKIb4Gs!.G7]/c3>?t'VQ_LB3TLMNQY\=XGR/k*Drla -^#eaF$:9l2)RLD_)dakH?Kj<)80D3(EPN0:?mtAs!N3&t!N0)Sp`a13?H.,ukG%Xm&1E9oppJ)=q]"'+EHL$1.f;iAb\7S-IT#QkYV^?L4)aIMHX -V5gXBO&r1e_)u?XM>W)WK*Md@1pfoO_VDRT!Fb -'dEq)AUH+pg.l9.&XfbP7b/B9/3C7-B(li=qD+EIdo/Mo8"CY:>k$Q72HM))p/u1e -!k`g75W^06:)AT%_H('GFdqH,kQ[^PF1iLM^lWZ2e].j+AYO.0Pj -[^7_?W]i>N&ghf..kXgCM[-i80D`>UNtF2gjXl`\k[T&cKJFfK1/'(CC4dfU0[a=f -*.r>7IhXQrot,f!73P)e$;nduTnT5b+bZSUN-qOB"5KbgH>iD4&$EC!$`E%C9:&Y( -%&QY2.Pu+^l1IJjCs`C\$1H;9gG'`6]aW>LQc\YY&JGKXm*hb9>>N[bnu0EbYXcoJ -e%2F/,jh%3dUY]^PHkjX&1)o3&(PgX_s$3rn9@CQ$*"itp4hh+aZ9`/qsMs>8c7qC -h7,nD` -%2V]C@oUg.eudON=*Pd75DS6Ca*TMh90Q;c[,Qe[*+d+\]a"99TY[B:eSPZHc1hX= -\;qK%.\jfK%V^fk"V$0!*^o--F@%g;`-eI(Lb"d-0j(;!Qa752c'pktm]jjnq)Y/3 -rhpsH:[_TFAL!k1IG;)gVfG-RK'VL&/Hg,DN293=!NF/ZpDT\T@je*+"Z?jY^>)\u ->JcU@\T,)Hm9D3X5:Upn%jH(RAM=QiJ=9FJNiFO4%$km"Z;:qNRm!k@EUiFP,R$,, -plJp2]:12f._N#>oP<^WSn9JkMp#b%WR=KOnqsJ5"r*eM7"H0qbDdr=lA]8(p>@VQ -eUu!r`\Nq$JN:_3omdgGk@cSPVAPhW>"Ft=iVXa`@>E!p7q*p7pfX67h80b;Bc65; -Qg2j]]3$U_9k&;19G;M0)r4bk_M(msZZ5Oc\*_D#=Z(?5e(2>V9PuSN5rEloO@aSF -oYN^o#aUfCP>DW^Z8l%Ei\Kf7$;,&lOiCCJ\pXJrp&&R7nm&*%hUb_%-oGbtM` -Ro'ROi>t90L:m\;nlQpKdSqPSJa<*X=b$YelXgYS[i!:rRZXU8*Iqin$W*[2cig@b -l.)Qpr%GqsDanOk(4*U.DfuNB$?($Bi:8FXPZU]JHi?\@U.7A(MLd0;;#olibW&"& -`^+mN"hH[!;EUo5@P!.GW3>6nLkeB>+Bo8?QU.qh$dFhtXR:'GD^e[17BdX;5M^]S -P=%!jlA.e,WO+o5:4p.*&(=?B9NnADd[?n2,dJ/bBVZ'UK?5^"'e0g4iiH%7RFQ>> -(bAmfRK[?G*nL(q>,mElA:(rQp/7^mhN\R]$0*Vuctbu._XbNATS7#:U5/X,[j&P&A;\L-GHKm`,A$Q883E -U[CH*8\R/AP[N(Z#0S#GCtLZ/9FsW.t131Js\FbZ28H_/*.(R-gmY -Q$$!'LASW.O?"FC*?`cLXePjo&6oHiGYU22CR5XLSsqXlg5'TNpYW!rpj/c -Bfj1+C(tmdIJA3iqsO@9@Jd88%Y+6CEVf(]bL<'cdAqj`S::;;Z]D=-al:e;Y[(#Y -D^'[9IP!d-M`CLlnGM`jp$goh[kp!Q>nd\6>=\kam_A-b-bA4A=P!QI^IZku_-6]n -]@1csj5j_0$\`hR5"`2cmDo0Kg&Ki"7]0>$cI_7>mO77)p'3SL=rqWb496f+="(*,8SOS2iA5K$]`c``PhTP'Urr=5hgR\~> -endstream -endobj -109 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/F1 19 0 R -/T4 20 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -112 0 obj -<< -/Length 4063 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W"$bDtW(&\Rj>oZ_-DeO*C-$(oe\I]QW"r#=4VXkAWR_@-O*=T9A[54^ -?tKTFMQCH$Ajk]e2G[[<`H1mgff^X"WHq=ph_dN]mU&l,-0fbsHqL"):LF,#>Pc") -h",.T[/0T+:9tsJ2ZJ-Hg6g5bP*ITZ,_9\7Zs1S*aqG+PE9L8Rt^`LGo3KB\lND>j_>XPG3(q)$V%^gERS -G2N7H[Edun")fr`)+*8ZB=SMV\Q&[h9FhZ`[cE0,)&NDpcr%A:t(d/Jnn$/hIr^QXMRN/[=q4.fmg@ -KS8r0Ci'Gc*MW`k=1Q7#W9V=NK6qlPp^l.R!V -S0g["M/]:ggYqAEb^=LC-tGN/R@]2i67bjso#=[!49c -Sh8MCK101B:'gJ"e@uc8l1RuN+8jgGbN(<[!#uJDi"W76hV^Z:"&(]NEbKI&c:bFR -+.`Rr/gY=p@jmH-/'jl7(RVX@==Hu8ALZ?4Z_.#tjAX]k -4q;sNo.eLbJRH2))t."$=sZQ=R)`uJWJ(MGP`/_e7*)FhJ?5ufETbR5\+ZTiM;h0Z -">&&!)V6]`T8Mp&83[].NKpPTXarV#67hreE5WE$<1$K'3hh=V.+0B!l^(^0(\DCc -e=nlu\L;[!RqVHkSPE't6keh1WF4[+2_Ta>F/AqaM>3WJ]1V>j&#@K1Ug[$2\.gA> -8d@F%>*TZ.T=S`%P0pX_'P5OVq;8T;B7A_'-X<>ri`@c0GI94Bn:q`USPjaVV4Da@q_YMhc -+l>\:$OH,Z2uo)NdO^ZTAeW+a(,8'/q\/*;e%aiK;MhIt'a%-D=Mu^N)EuQc%_j1M5=2k`mXCmNAf:W6mG[b9Mi0 -E:+W:N#P[A]HqNDYs!;PUk'XS=WL#43M/?giZ"aK7g9r6fYn*!T*"uf7>e/X[<1LO -^m.)M;!:"!"U.YP;n1/@#p?7b@<,RqGdFg'*#VVrLB+A+8p79:H6[j%nEn'\Uq*E? -cs/8$A?m>/CUs[R`eO_pV,#'6h4.!%odKg(H:U1HOCsW#aY]$VY[Fd,f5Z8Okq2ZR -N#D@=ItMW;8c[^Jjda@: -]ct9%nKal-CI.X\3:o_!$^QXbO&KJ&E39fRCT*=*$jbN..#qmdJ6-c>`",UbaJsfmi!Rtb"Zto%$8JJEqb/i"D1?,h&2RRq^?q'ckY -Puf/=='DSE$%+Z.@.rAKQ*BWRHOBc4bJlR7kKV;[&*.(Y]:/oQa*DjIi?\tH-VFq@ -e,G0DH-=FtD!f>9U*IElYaqP)/AOAp9\-Xj-8mjq>^T8c.4cb";Ac`BNLcJ^5n'h% -nO!)oA]#3##"mmh`NiH9>N:2K&o7g5QL1&8$A:IdlG]SiVbS;')U@&Ur4PkSUU?)K -U`Ll(Ok+<0IMrVS7lDq4iM`+<((Wb_b1fbr35sLe$Qa$gg`7?U'f\mqBbmACEadD9 -=-TtKo>JgJ-p)A?^6el_BgDc@!QUbcY/(mO7'J;VgrV;@)FL3?;A2nX,Y)[lYhRCn -)j;baJu1)c2PH#3NnR^pHA_IIrWRp:1r78r\,P.<)dL57IKffaD&4anhiq7jfpP-^ -DB:F?j9q2U)RlftWK@TTVO(g.B=mnD.h[NCpnd`!5J'5+L$=ACl,E"CG"7Wq\4V.!ae"G!@t6WodtNp%$t?G'#MYdrEdPON -JrVT8"@]Y`CL7_#f/Rp-=i9[nE\RFMY![=@#qNuc[C"c:n+d6IMaNu#0;=KQ6#u9[ -HO);\OPhGVgI'e6Qh,Ce=HP]Qf:Fr(Eg(k]o'Qta,mrElN+beRVnln?gl;QlO=>AF -SJY1;+qbju'<7'j(U]'uU2R9FbILH`@]C$XgX$CeWl7`")dR6V2C'QV\a$&0R(DZD -11>?BaWb@h,n@DoF^NsUN'O,E*Q+C0d;e'RG\c^d$0Z@_>P+h5J*1hfM-RSJNJQR1 -qf1K]"6`l?S9PE,"$7,s)`[Ie>cso3S)')YM*]9'FFL]5+p&]Q.q+7^O*q(XW_Y -/;pP=.0hg -aG/=Vi[i\e3kQN8B?,!/f5AJiF?K!hZJF4ckF+B)[TU+S1(?-VKrb8Jlp]!$;h]bW -`\ihI2,kbfEWi=?Gu1WlBRN$g]BW19SRqj2PmM#\;_H/OG4=l.5.gd2e=_ZdlD8=! -/79]6+.n>K&MIFp)*[e"Jmjc*s+&B.d2S+h1!F2.Lr+i*h,]=)U\2nJN`0su,*=ia -ZmQ?;!Ep>Zq&1lDBoZkmk55*(jCRtV6n3ul[p:mP#Qc^phKokNO9jkg#Ohrc>T'%7 -&s,L9G^MUE3i*R85a]d&e%Y9n1mdia,l+!#V"b6AkX#$_jUaANN87`?_^i8qe\65U -M7A6nfR_/AZm$#"7(TFciu"(eZ_s.Q-#X=MEQ?MK2k`4o)"\SbgGPX^d@teIUhMY< -@1:s:M07d#-h3<-)VqV+RSr%dgc^aVb#p5T9/FS.B+n.A[F]5"PW+S=nMa=I<&LOB -a9,2YKQrYe(p".6[`cT7;1?tMFO;i5og,KHk\Z!a)oC;G[ukfPaQ+?]&f5=tF!Hq1 -i64@g-m#1'7g`+P4d -endstream -endobj -113 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -115 0 obj -<< -/Length 4722 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XEL?'!aM(%&>W`?7qt@&sr3M38X4!_JT!VeA$R`^RK.k!!h#,j/'V:^ORn[$= -I^2I^Vhr<_V`MF*8Eu=AQop]ForQj?*f%5:M9Dk7m) -J&Em@qnME:j*t,NrW4J/3jJ`g/5coEY1MQ%o?F/>0=bp1rJjP7JB.P&mLi!`@tgS` -RubQ&JiLm"b7-L82D&BQ?lG -Y2I@4Jd4eXj'AR1ML()Ma5Q9r3A#qX8-TB7e2>QgXs'8i%TDl)C7BOEC3*:o!f@N> -/A?t^!I/q0R*?cG``LmpcIKF@X7C_A\f61g;D(ieTRXWOlh'o^YG].^K_tL)J)hlu -aK4%SmlsM7hZ*G7=@b5ab_Vcb=d\N=hLjV.T`+5QPf'#m)a0"iYZ4`YZ7TMUm!Pq9 -Y/cmR&t^eVmBFV0;.FGsha#F% -QV$Su-c6"Q068ZlbifN&8_5TTas-CJm8Vcam2&4N*j#DBPA(<6?^3e4&n+YGA\YO3 -Ba^De1H#m1O"2nV_*uZ1WMK*DSJ\ir\Wf=?`Xo'(_LN^9]A)'.`6d"n#2d93V+$-h -SW1*qisIMBSK8\J$^$*FS!eB1/qcpQHKCqC>eYumO`B"c-e_o'N]3AB]3]D;_&Ynm -_/K89f,ND@"l[>g'0i!sD2tb+3j1j]d)SU]`ajQ;L9te`LH&g;$XW9q!)?/ECRTr3 -F:*=>aTrc.IVS#18K$#Eq"PgTg5&.O:Z'&gq_4"$Bb(Y6KS$<&E=&3432OBKj -eY_)&2*E9S)E*drNd&t"s)]n1_=^(Z2m`/Jr$jS98cLg.N8E?LDEhF3dHrUL5Ara` -`VeWL5Hjp,VablKYPpA)G;oAb[Umch93UJRd[8/iA'4_7ZPV8?1OX:Zd<?O1he%Q2-Abh%-)nqA#hf%&Ngo^I;hKbir-84Id -mp+]'U%`H]R]Ttp>D\1bpV#-:T(*2sZG%f& -G."F\il?t7T@LDfqr]2\!^OK5cU3p=7>..S5W*3TEc7^>@,g&f.i[iqMX7S-35$1+ -;d4^@/m0&3V]cQt+Og-\9iXZQq5[;HPHujqcH7n(G"1Z+([@KYn$HO+M0:^5^AlMM -c,osGF(=P6?(OO'0%[Q,"a>5iBP_RQX0q?%Jq\O;kBaTt2?eWR:Vf&qN]2H<.%[64 -4_#"0^p=[pU$%VgID;CULhGrs!:\ClPpG&KqS!+OQj\DKBN9!j6"WYs]J?Q'k^(68 -!`83=9'OjM&Oc&,k%LW8AuMY//_J(H[VZ3B:J&4l*F(2;]s"eM(:\8L7a&.-fLBus -HiITdL52h3.j%_\d0kML=@U['F9W3WE"j*9?oo/RB0Jjo#"biAh:P@76dOS+%`_!$ -Es7+.#:4U0(jY"&R^/?](*6UGY?\/"c#VuTgO.DKIb3"Z.!-T*#\]]e[E9(kBlf4s -C=o@6(EpBOY+?TC9/E*rSfMn++,P>Lfq8]Mb%Mfb1LJ>&lN%F2gN@8A>Q4g0cEn`G -E!;dSo,sEQ2XbIG$_ADi[O(HdR[:\R79No/NC!:IpDH$7MYY3O0l>V3? -ms@@3.ne6*\aCBC]XKfpJ`F& -YEe`JO,uP,QQ(RI..9&2&Q1:<`7)n-p;4?*nq7UJ2 -6drIJeKiTWTqR*32`>hR\Dnm,KbT?un"fVO751>tkO7a0,DL)<"@eE1$n)=PN'%W' -V7S_YKValGG;s%\>D7X8Wa,Gbm?WHJ:KUjI6W'_u9hHc=@eXANdTUem"1n^a_F=!f -m6giB!1+#[O9;>=+]>/-a+Pr=Z<'!k.2qK&)V@=&pSOefB2_.kk"hQ3p+,-Tp@CY/ -C3EoeBa_rKJa8^Wfd"5qRZ0Ya]5A[i\X1)tGJDf.e%>Tl?Z6oY?+% -91*\SraJT!N18bOmQ`Ge/BR>HE'VM -[U>+ZCoM6k%$Kc].Y-efIt6[&G -SWd1(5tHAhrl)6CX?mn94h>m"QsRLOSfoGH8*k&$P$+#r?=Nblpk$.hkSJO/rWTrF -6$ZWp#Ls,a)?:eU-#egEF90G'8qZ/fDETG>=,#g/ann:p9!7X=%S>)fK!bY:qf?\$ -Lh1S9<%/d21`a-CC@mT=EO:s;@Mp'$'oj!bqf&Pbs!np_5EpF3?4:sq)Mt'3rYg_Q -DT1[>:0%cGp(Tu_eD>#Qb[/L%Kt6MM=lWFg/%cTXSoRu?RnLUZ`+Pe)Q"3arP\%l@ -8?]I#>><-^;L`UJ+JFn]*"sWlIAA)%&-ERhi=2e1Uf^S*+uJEiombPnV71:Y#61$] -EnCH:G5U!0fP.f8MIAbG?7g@*S@GniY5S*Y8-3ZC8ulnK6[t9*E?!6%Q3hCl'O5q07W6"3 -UC2[6I=.03.K'=6*9FME\]>!=a`1rkc;cGtLB_[=5?kIMD`k!i?+?V68Pd.gK7#sf=GK9k-T]`gq%t";m#Jk;PPfcn9&"T.UKne0`mhBj -O3QoGC-)0N9KEPaH[*.Ro!q4RJ?qhaqhX,A$(X2Z88JM`!1D4/)@[\=c`imkHtij8 -q%kqf*!2j"NY&2"GV.f7MF&1BNNFgcgf -W=g`fH><`s.GLhAqBb1BSG0:VJN:%X2tbrS&7JjhP3HEL.N*j8P8T1RA^T#409NFV -n+WQ7fE*X?==d,^o?CBR"`*uT3e/T5gWu)Urr?,T@N+ik:?_:CFQ:'Y+ -29(d2.rRQ94]WCOK[=sRK.ithSAg@Q&;Y7s;q)Nb`qZGp2-BX)V)U>&8P_AY;=JL] -3\%6QVuBiJ"+4>3`#Ir1lO'TXjBTh/(nt4`8^QW'W5VsO#6;C'Yu#On^5'1]:a,"Q ->b+(li*,J?%m.2c=,V<#"jGIX86e]%:Zg9+6D$,YO-=Cer7ADR;?oHe,X+.*^)2Tl -El5.*\C`S:X)ML/-nDaoP,[tJ0O,U'I9#)70$KXB.Dj'M85o$<$jp'c4VEZ5(LOCLAgBW/\O58oj08WW=aLVm -INP2aJO@C$8uF5H,+W-b' -endstream -endobj -116 0 obj -<< -/ProcSet [/PDF /Text /ImageB ] -/Font << -/T3 117 0 R -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -119 0 obj -<< -/Length 2548 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X]T=`<%a&:W670FG1[;q'T]='Z&%d%X'.TF]G>Op>0bA0s(rP*?u^a)CEQZeV6G -<_ei(#fJl<^A6pHf?;.P1-VBZbO'nO;g(Lghba>Fj?Jfu'6^[o?'(9+io6<6oOQRr -hok\%'th,i3t2?:,UfZeq<@PMo%-<(jTRuL'XIXN&\L:l?%,o&,dlOEjjid\mg?H@ -'69\d5A"[G]QMZRjZ>fJ3q(5&dS_`aM*VtVSu!ecaip#/eS3+(]$oILn8hem\+q)Z -=t,_$Q)`G,:iET=VLIq6UtrTd$2[o$TkR+^,?M_!)'&Tg%`F43[s3;I"@VZoh/$7k -PW)?-HXgTE[$U':.imJA+(ApcLE<"3%o(^l%34/,js&)%PjV3gagh;np[WEkLMAR) -;8u?ZjlTrrY;)4XN+hlC-,+",G&%W0G+JUHl`[ -,51KlRegu)<]dERONbI?hl4CGW-AFT?LRK<LkZfc%tD0+1cmGdI9EqZ![BX/`\RXb5F?STbbu"SFkt,TfBPUF>_)!3 -\2FB*r"uQ:[`b^H4+LnIfqO`(kjJ&>bcgaE!lB6B93IZW@5]@OPq*!ceNM78),h4$ -I#h"H8CF8Tp@^8(H/jL)QJViOHOSR,1N6GcDm -Ya9h[;m3?cXct!0"r>7n`.*M#UR@U6J+H0(D_e4&XpgT7'70$9bCKnHob/f]?6TX'?q[1&c7LmC5q&cf4E_mD(n\74d -CK9N79jsKF5C'4LAqUIl4$2UA$TX/DJTGihDWqoQ^n[+MC$MbWB@YEX;D)V[^-d)W -@!>FrAPVlkN-g0om0sW7aT2,Dac/c[3FWO=)RRJV+nEo4>KI$<;sh"pj'USM6R#4N -Ya1YiQ2/a(SGtjqZn!Ni6LW6g]Ef0[M_pVDEk6tJ53`Fl$l"pq%WJs-W_U;F$4UtM -i],8V,EXG-3><8:BH+7P+!"C_09Qj`i$L5FJ[HkJ_LL`nFTTO<="L##%k2Zj,icCj -J3no\;!Q4GP1S.bc_0GJgf'%<,beU0aL$1=e##7pM,)'3.NZnbRqc2WX]<%6M55h^ -a\kMQdH;hfmq_fjl=,ukk7/8`+1bo@5aZ;kZXN"!8n9&[FK -+X$=c[i,7Q!4\I",hL#7.\K)&\YQJV`_6]Hi(EY];k)Jo4f5J?-_[P%j&:KT -(3^BZV^7!Y8gn3`ol;/e+Ls"G&oPdiP+G_okV4hDp[GfD3b,,dX5NNn_7>4dq0ii_ ->j:j3,XZKp%[PrO),1JTo;2L98q22j"j(aH8Hrn(LpMstOo]p/IC-"Qe8i.u'2JJh -575ESo4;NAF46!g67WeZf";NK[W?ONbVs[nh.Yrq.95e4Oio-[UcHY4`m5k/g,I'@ -n`1jeDe=Wa*;XjDZP7H=%8X0>Gc8-kAq>MK==D'^.Yh7W. -8VgYcb2&%`E12og*Qo]VN]Aap99nF -HY:bdp#TpeKkIF"b6[ZY=.>/*Y_J5eM88qG`2s)s%GNb9AWXfX_X*2_A]gTBoU&UQ -'T1]rGdE*[PjZqg8ZtU/8F^:feCtQug-P"5''"pqWnhCS4^rV0[rWuteaUakioUQ` -4ClF!%n9V3*^tpDbMI^0SP5^@'I"htd9qNregFk_#UId0[#s;_b>']e%\6FbG@/o+ -F"Ep3+mmW:`<71U^"P^9(![#7k8O1\DbW;a$"@IOha5GfX25QBStWYN)9Mh*XLG&Q -dReQ`-3kg=\R!q,=[01sS>hL?Q]$=u!(.o7_u~> -endstream -endobj -120 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T2 121 0 R -/T4 20 0 R -/T5 21 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -123 0 obj -<< -/Length 1945 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WR495ilL%)1&kaJFRq=O106j[Y4l[-.VZFm$3fKAt;&\FA.%-#Y\,Is`P>U8<^Q -7?J^tCl/qKmj"g(O1Y/,qLLaKcb&1%kX/d-Eq`P&hkE7Jo\k&L'b?YeqqjW$LPmq6 -a3O[0hIU'fa1lgE1OG.slonuim`"3/pGo@5U<%4]s4?ee>tIlN`I)FeVoO52m!gNi -gP9?&aj1,>7sTCsp.tN7kN?0F6F../KMqb[]ZJQh+M=NUo9oeL3p8_bIS^7s7%4NI -B><,0Etk5.TN-FU\#2O+F7Sd\,m:)])S],h*Y4gt]^#?$QYfie_CdR=KT\^W[S=!% -QEHGBUk6;Z**a02fut>7c!Ea(2XXNS;CDuXrHTf"OgFaXWR9GeDM->C6*Q7U6OX"; -Bj$$5!KCLV-Od+O0'.pF)d)NkZT#_>`7VGtn>XI+7q[Tu)?[eBR,qJrEpP%k`Ip3+ -Z^II98WZ`O$"/oG?Bs(RD_F`c"*).f>c5DLU3,p$>e'q:k:G16>ft5\fc:FfbTcst -WKoiFc$i@2Y_KnJZYCqAQ7("LamUUn5c4GK@Q3DM0"F]Vce2iP&0qfL.WLXQ(X?Ya -"=XXb$[3\r-o]Bu3TK*=T&^]s[3A$@'eq7+pX9ttc6eN"YM*sbmo*;MDW"Zrq!%j;2_J!L0`Tn7t!:2q?rJo<.nHc6g:iRH#_@p-Y:"=kA89ThXi,eU;TAUi1\JI3T(IE]/ -k0f<*D*a9A3\jH7gY5DiP'b7c7$U_?F9'qmI!C3\.t`+4FHJs83*O=NOQ>&*%,]:F -T]-8OO&oCbCFl_B1q5i^HK\CE6;i8th#dD-:J\=sQA$+8?9e2\R\lZUA31T!\sdIh -R^ds#(M1J,O1f$0j?R'R8%RsY,j*mk5uNt`$0p(+`l`'[0+S$VR!prI>p>=Ai;]K9 -9m9P\%4C&7B57N-U]G:6qi*Z9>tUS3m1MG:M.'M5GJgI=6@Wg6)b(0<[kYRf ->u%UMU"?;/7?n;3#rM(u'5-;3iuKQWFTkle+Qm61GWb_40X"g5@ -endstream -endobj -124 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -126 0 obj -<< -/Length 1104 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z,'ac>(?&A@rk/EME(Yk6pTA.I9,.EWf3Hijif2TVZ07^`Vb.0#lFmI%617+!D[ -Ak"$/Y'OCHl;bCn-FTeVDaQVC=C;2m%I!8JIgYB]LaE,Tn]h40es_'_!pshn5K@PT -m_%EFLLV,#i1tX]SVG>_UZFl.!!&f;nN4p>3uQ$K((A&O7"=:WkH`a+AB/jU:G%%< -W]J>4'jD\Glif;%^;PP<&S#1:^*u%?Ei&erQ?2&$d-mP\NEq\'fS@gC!-.K -@26Vq)'nHYnsF=[o3a;CnOV:jKSY?NE@Ydej]ThQ$B^qG_GO(Q#))!?(MjsCT_<0^ -l-9\n,ELNePgb4hSZlUi-cJrE@!Eun-N(g'o6O/j?WtaDjBkJ)HsPu[cd,Zld>Wa@ -#i9Rn;BF)^9%0Y2iG -B$6TsNoVr0KH#@]o*[WWL#!FX$C1J31ho>Y3`qHD#?YM0W@:'IVPpN%5%_npX[ufb -bf9Cp7TH0B,IYg2UB24*i9.^0%3oeA?gG'AP(0Z)Y`'?k)q#$4cqQia:Gmu8d:$%J$JTg=gdZhCid\LF]RQm -?=lgA/=1t$Tm;?'k.YfUa;"8]0pGBX(V]LY6SE85-&0C9V`cGul29i'r%?C]8./,$ -18P/u"gM0b,cVLFAHu;_IFTbe&h7F]5@t@EjRc4[\%5o/uG4^_*@ -,4biCLSGoimuaELiD\).!Nk/%d-&8H%=Vk!]%&V>]f:&%^#PrZpa*1S,t.U[`dpBcMFKC"Yer -8FAClX;'%TqnC/BRO$#"fmg!Y>MXHJCHQm=DIJ3einP)`>E<[LN6iF)4dL:TQF(&Z -Se)*%aq@0,pB6KASu^&*;*\0\injS/dqjRg>G+$nXf_RT.l5gdC~> -endstream -endobj -127 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -129 0 obj -<< -/Length 1143 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X]TgMY_1&:O:S=NU`A$"P^'MWUaMeISV9J-TSMe.L?SR&!a4IXAb0n(=,1=p7?, -4M*Crk007T;s)nHJWKbGkFjm_53i,Zi[O:Z.%MUBB*StCGM^TrDqMfdFjF4,s#k\W -Mp(J$Hc2;qdkhO4m'AY,2YlC1rk[L=KZk#p\D*4^\`L7Vi3'%7mES_ZQ?C1(";EZX0_7QOAp$5p>4_M0H^g/c4I#)lA^,-Z09$ -lJ1_T`$?flTF_YK+qna!(\qC3)VSgPj^N -'M2cd=!Rfo'%=]P>$rY'-cAdd3&Vjr1ujM37Nj="/XD* -i=HK@CofC&X>8]@?rSJ5,3OpCnJ)CFk`F5$$D"BSOT\^_p55\NF[2%RN?T@;1O)X) -L*5bl2(>X?drBNe3t#9p]boWe?[$!>T:!9);P9@^8$Z`n(BPY,>B&CB3Za[>0u$4l -rtS#WZX)mQFJuecT^H[BD-L)%P8=\O>BsrJYFOapK'ZhjlCrNe`UYAlN>'FADICQT -gl$pBktC1;*<=+Z1<]~> -endstream -endobj -130 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -132 0 obj -<< -/Length 913 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YPlgQ%aW&:N^lOSV4?D%^3cC6b-c9h8i+sT;h/=sd2Ah`N8OJso -;+0d@RH'\kA*9&ZXaF'&\t__pS)qRl40Y9IlS@9[;i^"!35mA:Qt1kjhq1AGh^W5.^r(O>_WF-miIB?h)+eLH -*#hs+#%I9%4^`dh -pI4bjAhDN]NLUC=_-E)-SAq9286gniEGC'#rQpT4P[LZUEdNXC&\:\3+f49+R:$ea -q.n'.RRdp<2g.V`N3f4_=X9fcN)NRlO&,.\Cc"\uY@[hi]siQ*Q#]Z;]nnF`(t6/l -1/m<]b",Y&e*%$D@%U4f]CV=EL\-*K+dGMpP3P'_P:JUB6LKV-$Fs0BK?oJ.Z)q'F ->sl.G@LuXLTHW!V%f:_4'ri7;%J'?qX(oZpa9JKP:]W6R#XR)XF0"#5G#_T$OO4]#S-Irj7eS -&,!8KeOdHGlD3Rs'o^mk_(C"rUkD14K*Ec"V=Q$tJ+n;78nNB-Y+;L$#$R-;a8- -!LJ:G#1ku&,!W+-_DQ8n48aT"%;h,[>`W)D)f.=*0>@.,!;YYr^A~> -endstream -endobj -133 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -135 0 obj -<< -/Length 891 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XEKgMWKG&:N^lGf,PNZ59[$nkum\#F)\W%g:H9.0]q@3,-olHhZr6)_4K[>I*bD -bh4dnAk%.t]UL,9TjMUu&45F[p0ENQ4:6/jV]ZKNnr'%Dr2k27oc*P4'72>]Dp`Be -`KLNO'^"c"!fPC]@_MQCC[/JWO8[7JaW7*,"9:\/6K&ah[uo&9f\LTF$Kg-"\X,/( -@sMJ@gk[cMU)WT;DN7Yk/9&:eBR,PJ"G7DSW[6ad1t<+&-;@aXWpH>#8Us5HW+.=[ -"UYkYFOr_jDF$7/+2=Lf3]cXMh2AZ?cqhe+b@4%a?.(K=[e3N3JJjCTM2BUHk,"kq -'X9'tS/ThrpVF#98T8!?p2f^=GMJ9-S:kJq9Oegm4r=J97Y\bZJ(L -P+=U%83CG2Ghu?L-pf`&07dZ*c?Q@=R?Pj[A&A<%WjS\$qc+cEL,eX@LHYiL4EL6W -re"sj3/qHt>Xu%p7"^:2R*fncW2buEPT6-<9.77rkU?97?7QK@!n#W9Cq'"H9\.)q -a?jDb]<:t/_D/J$B(k5+gkdH%OD`ZDY@bm\Ds&Cfgobe/Z^pf6-_LL!fkc6N#[NXRFB;QMkh/DUm+rGU -HrGSV:_SjCK#aVGPe2>m]Y=OKX^`B9~> -endstream -endobj -136 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -138 0 obj -<< -/Length 1333 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Xu\9lK&M&A@sB(ap/?)I"@6M3?fbV;7lt"fe'ZK5/L4"0E8.EZLq-s'CjU8fV&1 -[bINJ&1$=an]dOnqWD\gPjpc)B87Ap.@V"H^!_DLnqX#)@Irj/N6I?hVr)s$o4'0J -cM"T`00Xa(SnC@)V+:5n[eNg&q5MZi@Mm.i."@e#Mi1c62"h5!e6$?u/Ra)X^W]S+ -o(mU2nm4/\g5R>arOHd*D>luk4Co\#]V7-A^ke+7Gd3h3cPPrqY%;b:MncNU`dTA -Z6,p&kf^+ml-k=e0qKJ*EtB`I@M(4_#LLR+NkDpg^"M4%9dT(Sj1`k*5P#B[&7U-I -9mH^`LnN$aWU=]#pWm]en)#dKBI\^e]*NSR$i.ehoaD.E/NJEGL59Et76AriNTam^ -31/pR/5tc`ZRCiFTD*c7 -[Q.+fMF1a:R!K_?/F&riHY/l\"YD``Pd^0!8P5O[:h7b -j:o@bQdWLGe'ilm.RS:?SKD:2-*^bP:n$g`\:"pCa.$SM#-bh65N429s7Y2k^=J&!dI@/BO^NA%kE8(O#h#`;ck7unf -\NXJZ@l,[N\%n]<1NR&G6Rg`;iPAS5JndTf?aVXQa!^araFV>\2 -YMsDj%AjI6<39Tf:2*T!go)WL85UM5K6n$07`PB/!)]2G^!$k2/HVk.L -97S)`%tG_Y",Jr;&M.=>1p<*`l\ZNPYKDCW3,uc2TF[gAP2V-hnL.n3^RC>BGRp$m -kl8JG!'^WTh3DjWh+n'2[^j%iDDRq2,3+=Uc6K!oF/oA0 -endstream -endobj -139 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T6 22 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -141 0 obj -<< -/Length 1353 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z,'gMZ%0&:N/3pe=A/#t`t3c-)hM5@F.rqn\EVXh9OuYagVUCqmZXaItRMPm"^A -;(N+Y$842Vk&uJ$1ZpY(-?PF<*O;>S6Fu'es.TNs`6fhWl%6-2p>D%SBBT!_:NZ0< -mCop^na`R&\#5_^i:qcJ?-Ib?]X?qR`A:k28[KUn:q>Q1p`^/pq0uV?MRIt]ka-o] -?DM;(LqW6&F*E1RUuBDfY>&/l(,+[U:Z0_am[Vlfl^K3XRBqu$68,0oItYnM?FDhU -8eH9\K#k_M%`4V_3^\TN8j^s?n[V;GQKLKTWXt0tFVX61fCjrse>i1DCj/l^(K.=% -jL'1mQGmaViu%T@aM8[ChdL0-XuJ/66(Du=K^?`_W$^/m(0ouL<:%D[qrS&$]Ctf4 -rNpES(AIJ3>Np$`.0;^M83&"$%c#9m#6e.)]cn -E%+a@/PSD&m+UHP'qBsZVG!DRG_XD$b`S,.#Uqh0DrI0l)rG`G?Pm:#)b@"`p=803 -IOY05nK+9LY1c04>_-6J_h@V5hYHQ)-0- -fed+0].-&`a-%8@.6PC4-'9<7A(3lu'C.h`Yg?i$0r!\CW>Fi.L=lA>@Fo"HA$9T, -K,.0,BL*L_Z_0*:1(sL78>lIodcl+@D@A:(\Tq+27i,ek7S&iF5U:hm/ -^Ban#E5U6_:sgN.!Wl:5WAGYeC#9oT>V;l/\o3:jJZb/,ha5GMK4Eij#:k'P/bYNt -o'\3#R-4TgGS^i97rUF6_Lc^R!p]ED#)"=rZ`XUK+:;(hs!?+XTZAB^gf%U@5ThP[(4YN7FJR -SfPU#X0k?$@eEKQLJ*K0mt4#r"lg;XbJ/M-WgOi-,NI&@7SWtR(p&&,Oq=UAj'?&K -3%s4k(W8d`][)t_NuN/eN)<<:KZs#L(h_)DkMiakBV#RQB=O?OAsPUhRAL<"kgu=J -R),]Tql4>Q57>R@p5oSn,=!iti!oh~> -endstream -endobj -142 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -145 0 obj -<< -/Length 913 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y8cbAQ&g&A7>4_osS*YbOd=tn11*e3,>I<9o4tTZEMVOY* -W$QY2B">PGkJDQs@NYHcecR'`5%+C`Z%=\9Zdd;d*WkC=7h>AVn+#.VkjM!L/o#<% -#&h=`Z1h(JR9T38S'TsNM;.T#RMKC+a]RsiiMg`W)SW?K/l$AQZTiRZ\-O(A6Y2>j -M&YH[g-"m'-&aV`"!QZ^6l[k4\j,h>J;d?C6#'G.[9;Ch,RVUI",K8DJ->X!2Lpib -._\,=2Z/(PpbJ!u8N2>WH=YZ/2%d+"9UW@C>ts(f)b!"#+ceQJ(\ceG5dn&ac^f$6 -J=Qp$ZGs0\Xqsf$X7[LB7T!]:qIQXj1q+[b0f%(W(OnD6fK\gN:5ic>X&m>0;b$s. -SDDJhF.0r;lDCo0mRV_HV8rS#r(j0h(4(@n:6EY1EY??XT\+pf-NJ`$bVHtPq$4Io -99(\]iMCu2o-=+lR<0%kk_4RE6ZlFBD)jk&9i,l\5ApTu]'3"cXS(B%T'u36**F13 -NYtN4ccYSoqRS]nI%6Sp#KcCK77\u6gq6@JC2d*^#ojcGaRh=1o%TAWaDdBl4-RiS -Bn,!.SA!'ZQir'UhHdZ-%'[e:hb)8R`ZkJQP0ZF,JpV=i%tY$ -G`8k4PsIXA]=(Y!#^-oN0%1GLF\$/'g`7K)aQ\d]F@@tASN\e7JWi1 -[Q@[TqE_fAG(H:?N_LQD-VGIjbW@ruUo)->R:ao%qoD19mV&MQN-+8:`mqZ2COk`Z -#*@S8%GAmh+sor"c6hpgOia4P0F)p2iA@1L,8P@ZCZ544!*LT`DZ~> -endstream -endobj -146 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T4 20 0 R -/T7 13 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -148 0 obj -<< -/Length 2422 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Xu\bAu@I'&Dk(]UGRq/=CbP2*9JgS;A7f.cM]]B,7]S9=Q4/)Nouujn\ZPctEuP -F6i73Bg\#BI\&aZ\>gpC2)umop!Y1W&UKc.hpah)oIQojN7,%Y5=s0ZPKTFA3SX3& -\R&!n/+pDNmA:PPm-YEH(H97k0%=AJH"d]_`=2d34721,s0 -h_m9kLSQ@&*Q\PofhQb^L[fpMY?C;#L=2UHM.UfC)i8m4`(KFHTOb5P$N$^n53uIN -T2?84l&7a""e$2R!#h91-ZpOre4TGm+O#;RCP^@QI.KTQr*rG,]q[jDN&:I -roUc;k9oXY2+Elbqh$\d\TB4$2*b7^A2a8=.@hr`PZ;-7m?88[$SQ/l='6)6db8`= -iN\@W/'t*Emo?^!):("^47bBu*A6N'"]=N#l8YbLOr-,hC2r5+2V([(q" -b03>N1Is@fb9B41c0bJ]MOiaG0f/$eVX2Ea7Sb6jD3Ar2J)S/t[`>([^Scao^&Pa8 -=V0>`hm_FG2.*X$V=qgolnb<2imsM)$r^c-D"\TA>m<%6&+;OD)WV5dA8I9C -U]*;HF;$oSA_3KWZ5G"h+aH!=^sB$EX$NnjN3Q="GdDhUcQZIH=s72gMoE&0/u$L. -()@?as!0XER6k%H^TirtWYhCO8iY6(.8*aKqlaQKQcrFJjG[Qq^VG?=gj`[""$Ol; -/f([YCDarRp(W,+(!rIB=\pMN9-[SK45@E2^-+$GH.X-<,1"-oY_CBOW/!VM8&sN# -4Z.GeJl=W.fU&t$aQLnfWnpt[I1$Nh0t\eX$Ot0b6smY!-5&b7fUa;*TS1+[s,E1Q -q_UDCb6kW9m\Tgdk_-r\,Z]P$6(TeOdaC].qM;O-U3IH'+2E#X>BWUs/$Mp)k@G'( -qK&MWjnFFin)qHKPS^MKc-N:Q3^>WXLW4`Mh&EVs*]pkM*.V>(qQD,trs$dHf1`!;2M=IN.Sj:=^>^ -b]eL@3V21q%>mk^('0e1S@pcEiXVUp26h$G[>N!JNKI`X.RX.(mg7Mu/bgii$pJrc -Ria]!K=9=L8UOEXW,(rU<8t%:nZlJ.8.i[+I -=;^ikEdAS(V.BIS&Po/o55V`sgcPuS!RIDDcO(GbbIVe``:cjTm9jXjjS1(Y@l`h^ -[S':bD%l98`:?QP:sa9.-!\/UQ0Wfr\%Tq:6bSNB!r'kubjjJ@[Jm#BDc^tg_rj,O -kYI,1e\'I[*PpefBg1,=oA,bB<:RqG';*gIDBe\^f=g/o072;3lRUAmNA:scr1LZ% -q.%diV.UfNc)&i]0=Y0S.`@/"e^r,$b+c2":1!X?FMKHI"C'"'1T2)+XrKL-Q;`E) -et^o+>CTVi?6%7*7&;P&_[0uF15esLNk&hGpj^W$s#0#r -::L_"K.ujg1?-mK*0#n&6&e)M=\H:hh8TFtTN-KukjF+XNu+1;5ND^XO2:SqPO(1G -hSXMdEZN4gPe+g@0em%=Q+lZ\^KHp$*[U]SI"D2bU"alkK2QrYCLu_`0<;nhf(Y*F ->T[5+^Ycec>JER&I8[,Km9f]UmX'?U>I0c(i#fZ2VJ,WlYJa&kQT:!VP#Ze_NAL%n -VtLD@a*8X7VEq-bBB*ZID%XU)?Y7dK$7T*/qDi( ->(uRD%-L2:/r'u1qWd@jp?oA3>(pMkC+Z.dZ57qm"Dm-f\<\C!\@RIdCBZd8@e`P( -KB`]>TZj/8`9Drl3.@T5;/9!fK)#N:UA4XG[!Uc#QtOeq9/*dpF8jXbHQ5j9`[GDr -DW-LKMR@\.].)f(/T[P.2+5p7_EAsKH8BSCb:$#n"bePM=a73X:1_E!qOfQFHfE<3 -AG:p5&\%i2nAGsn`Kc43nf!2T2>&6X1P60C^H;Q,,(%D6Oi-GS`8]%s.NM++D#'M% -F7NL6(QRmgEDu]^^ho*Ygei/HQg\?jSM]YBB0Q<*OY=`oX\5V[N8GRs3hd;dcL0Vd -8psArPaN5"AFB]$U"/mm-iA$;G"U)oAgA1@qf=Ra8p2o]FdJkH,Y9'53+HL[H!H^G -@")?V=VXe3Yah'm!aJp=)^Ac"ioe6.=k&Xb#6:RGd+A~> -endstream -endobj -149 0 obj -<< -/ProcSet [/PDF /Text ] -/Font << -/T1 150 0 R -/T5 21 0 R -/T7 13 0 R -/T8 14 0 R ->> -/ExtGState << -/GS1 7 0 R ->> ->> -endobj -151 0 obj -<< -/Type /Halftone -/HalftoneType 1 -/HalftoneName (Default) -/Frequency 60 -/Angle 45 -/SpotFunction /Round ->> -endobj -7 0 obj -<< -/Type /ExtGState -/SA false -/OP false -/HT /Default ->> -endobj -152 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -150 0 obj -<< -/Name /T1 -/Type /Font -/Subtype /Type3 -/Resources 152 0 R -/FontBBox [4 -42 151 144] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 66 -/LastChar 121 -/Encoding 153 0 R -/CharProcs 154 0 R -/Widths [165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 113 -129 0 0 0 0 116 129 65 0 0 65 0 0 116 129 0 -95 0 0 0 0 0 0 123 ] ->> -endobj -153 0 obj -<< -/Type /Encoding -/Differences [66/B 97/a -/b 103/g /h /i 108/l 111/o /p 114/r 121/y ] ->> -endobj -154 0 obj -<< -/B 155 0 R -/a 156 0 R -/b 157 0 R -/g 158 0 R -/h 159 0 R -/i 160 0 R -/l 161 0 R -/o 162 0 R -/p 163 0 R -/r 164 0 R -/y 165 0 R ->> -endobj -155 0 obj -<< -/Length 537 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YjI]l&HV&-m/E$qO]L"T/-r43RJ8Xd3_Nh0Q2g^:[8q>/!XX\a!k=LX!A1B?T`+q+Y`_R65W' -P0%#0VbFN0f1O43]2tUH?`u5s;.=R6rABiDLkn=u& -endstream -endobj -156 0 obj -<< -/Length 519 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y9LYti1j&;Dj\&BRRiKDG`o0i1l@.M\&dJ-6Mr!/sI!@#c<\O-3$&fYNHMn'6b/ -'ihKr_5ArHn'8[t=fDd3bEY1i;Q4`J^6Hr9]F.^mrT@@eQZ@5Gr2QB\?H'>beYDbp -U:U#5U>"I28L:D!:4@Y>]nkfS3^3Ub2\$8sAV;(W&ZJ-$0Hi\I0G%g[2LlRb!,Ou* -g=V0o@Zs[G;SduB;#-_3T?,8+3u7#g -53rs0fo(N0;M8aS#@e[f-,eh.aelL#WC\Y:Uf3/R+R2ikqm -endstream -endobj -157 0 obj -<< -/Length 487 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]`0i#V?'ECs")2]u@*$N#rUi%\_9L/h-1*FEO!J$:5"ESUj*$n+rR)+[Uhqq1g -US]%m+OLU3T:LAaao@B+>`$!nM[Lup@P6_V.:+>#i)22$*?/$gI4:j3:+u'`;t0-V -5VLIOZ'/gi`u?1I<]l2AcgNf!g^:0+PN_C21$4V'5=&TTAiE;(ie`l#=mcmM-h7PR -`mTE$VW)E"LL^K+_q_M+6fK;`VmSGccWQ3`*Eeum+>q,9G[%.iCX.ZZ=[s-&Fp:*` -bH*qFl*sT'ukq*rCAE-Q*pu4X)s3 -bC@Ol4hAPgi8.uMkU2N31"jh9oF>W0FUSU)W3W'#6^Gf1rT<`g>]hFJYPi7kSC11H -&$l7*/K9F5G1^-34XX8A`6D:JI(7IM=g>$uGI(7-ra(rO+E!U)'#NK4J'IWQ3jacX -9(jR[iO2j;=7@U:1B?CoN_'~> -endstream -endobj -158 0 obj -<< -/Length 663 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YQT4),`i(rnL-0d$lc_WV'CXrOd0C;8WmQ#=qai84`$:UZj0fK$#Ns;=m$D -o#?SB/tt\lVoSP[?S^c:p\LQ?gg"W)Y4_Z2rQWEUdd1CkYKa\35.ibW*rE-*jR#h4 -*ctYQ]?d]2GIR;g[#qu\Sc8TRcZa[4W'b9._SM-OHNgV[+iY(*0`\aT*R&XkF!Pa/ -@M`GV&BYT1Uu&rm3Yp&c_?.\d!>^n'LE]n+';mk=#0p]0#G=N4p*!9iCmdD?i-;0[ -O?4_G_(Os6`1_gcQCIslb77@-TO"EFdP[./8b7dD3>UDgDhX&* -&N2_)Wa2@p&rk3aFb,:%qM)S9;PHjbTt2kBLpKn,2+49bM2$brL=!-M"BLj_WZ`-r -AS0,=qIsY]>SNWA/)\c5A.,BjA>H"TMnuJGg)rq)>[7m$=d\it\QmE?P0LkK%AaRf -RHZ2)c6t47&Zr6-:O2ET.-9AAUQhm=hD\OelJ[PVb_desZ`W)Oe=.**l6ZFKYfT[2q*k9'!70nD3r~> -endstream -endobj -159 0 obj -<< -/Length 331 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]_9ko;G'F4+T/hE&[O"g#(XcC!78k<-aMaF_l!Ko(IBPH&[BHG,;AEcE9S`e%l -cj1eQ#,7cOhg@*VUC?;G'>H:.8Oalj,^uGOO`'`jLAA0O-XVA3T=@G=gQ:hlmu9EV ->HF,9d7`?\kBm5[aU9PoE`[D0!MDr5S"RoY/4Nc;S2eY(looR'7#sBU:.H -*M!4D%7SMHG=\lj@5[:3;e7T=+&laW/tm[sSV\$KOk%2P`2Tp0Ih?$$>iY8QH]LSB~> -endstream -endobj -160 0 obj -<< -/Length 239 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X5co`$!pV&0"/4"o3ZdFK_$D+Ors/FW+7)Wm --r>GEW#mG;T2B?6:^g`.:G0WJlH'd^"W.5T\R>+~> -endstream -endobj -161 0 obj -<< -/Length 156 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)XPIfMh65b\19;PV_i74H1U -#57+U>csZ'JR!^+!3ooQT)~> -endstream -endobj -162 0 obj -<< -/Length 466 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Yi\0i#\A%#.]'W0ASu81jmZoUo*[8e7$IJ-6Mj!(I/(bjEf(PTHN.LSpFt[bKk7 -:O7VL$u*GoNh,g'XY!7U8onF#/Lj\)R9(n'Ub-b-\hM[B.5.f-Fkt6Qgc%!+"ZCNq@C7DJ -)Ks^L0lanB\=L]Ghr>2+L[-an1AU;I\.=%-M@;sm%'CL2;bBZaHX[*d6^&*Y*^8l% -JH4&E?AQ6\)o34R4n8Ke?jo:j0Ee%D6dJj%!bQ(3(I7g9&-4'V'E3@aIIJ&Ydr=Gf -4P#)W!/"eKCuDTq*X:-K#0.Wn.1;4m6NSHEq0U*P.nOH#+nK,j9FCHO=.iF-$\'RY -_&H5#*aLjRc7.l6+*pBoq@]Ibn@mEeDQ=IK%07im7uZb/<0?0D[8o#-f>o?81B=0/aiO~> -endstream -endobj -163 0 obj -<< -/Length 476 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z\u_+oY;&;Eh3_=Sk25[Qe0/gd&NOfY"m_*h'_J9pj\d5*m'O2<,\gd=H"cEn>A -"cP/j7S.:bdHSk^Ql4t*/J_eAN_^HX/f.ufM0m@:\^mMd0)+0J)QE1[& -`8"eGBTGS-ghc*t0Eg9a`C!bka;tDm]Ci -5G&n$BbjKVCbhFGq7b;HKi8K)9)"526OaMUZl@T")HJdg7Z=uL`6bPMA3MPQmQ,p8 -")tQR>"o"$X2m#)jguC>j*MeUlT68aEimW%X^%bICjj%E8aID\(X>8E9([V6T1+3+ -n/M?b!0&8FWr~> -endstream -endobj -164 0 obj -<< -/Length 304 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z][_.phP&-h&!3@rB#O5R[$-D;,T&-Gt,3=,<="5"ZABW:1UdIJ\L6B3,*l+aiE -[.GQ,T'Sdm^.H2elqZspP;++oATB0E3PViD;.m$OO)c+MM!Z_=927ETF&!hIM:;:L -K:jVoo'sG@iGp*A=r2LZ$6Z'0pLLqPR\Gfi6ksr7$j$rq,d9_)^c`\d%W%:D>Bn_D -hiXpn8@8 -*>S>.Lu8-AL?@)]rcs,A^Z*!R02#XCk5^[EE,k~> -endstream -endobj -165 0 obj -<< -/Length 608 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y:74`9".'Yn\q)?b$<&]>'a%V#T,-37f_e3ee1l2fUt)%n4$Gr-Rr8'n3N&AuOA -]k8fe[X,1VP8,5hIuM(8bMYGBn@jl*7lci*Im7t,[C -]0H;E4l?3g:\jGHf/K](meB_p4MO)Lj*.I?49jt\GWl!Y\hdiUK?(ot$V)E^'83q- -#K'.&Alta]0+9sOc@l@p8Nb%snE^a(im_KG`%c7JfB>l=n42:QI;h0j$:5DoK2#.? -$Q3FAO!0'%`7U]&F+7Wb:Uq3MJ'+l1K;Y#S7-kIpJ#X#q&S$'$S"cs2IGe -0)#m69T( -endstream -endobj -166 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -121 0 obj -<< -/Name /T2 -/Type /Font -/Subtype /Type3 -/Resources 166 0 R -/FontBBox [6 -23 38 68] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 102 -/LastChar 106 -/Encoding 167 0 R -/CharProcs 168 0 R -/Widths [45 45 0 0 25 ] ->> -endobj -167 0 obj -<< -/Type /Encoding -/Differences [102/f /g 106/j ] ->> -endobj -168 0 obj -<< -/f 169 0 R -/g 170 0 R -/j 171 0 R ->> -endobj -169 0 obj -<< -/Length 230 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y!@4UT%k'SI2/iADZ"mfJrMeI\cH<,`42.h<1C/JP>;S)l%>+f0lP^.If$.;%K* -bZjk0ktEb`-]cCH@:ig0(#Cn.P0>,nd@4PH`[le:ulEol<-O -?RgR5q"0(tYj3'@t3jMJKbO"73sH;48B -endstream -endobj -170 0 obj -<< -/Length 222 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)VnXE\<]B-^T:lK!>oS -^'@Jp9A_26=TM'=qC7^DQ)8SI\gT94s8S_-rr -."" -endstream -endobj -171 0 obj -<< -/Length 117 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W$an)CS]+!i>Mt6'=Jg3L@q2P=n,F_1YJ= -"";3dmhF]]!2M`*'hX?U;n5"r'^##9$I%[Rp#HJ@!Xo'q^)&O~> -endstream -endobj -172 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -117 0 obj -<< -/Name /T3 -/Type /Font -/Subtype /Type3 -/Resources 172 0 R -/FontBBox [-1 -24 67 84] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 101 -/LastChar 121 -/Encoding 173 0 R -/CharProcs 174 0 R -/Widths [52 36 0 0 0 0 0 33 0 0 0 0 0 0 0 46 -0 0 0 0 62 ] ->> -endobj -173 0 obj -<< -/Type /Encoding -/Differences [101/e /f 108/l 116/t -121/y ] ->> -endobj -174 0 obj -<< -/e 175 0 R -/f 176 0 R -/l 177 0 R -/t 178 0 R -/y 179 0 R ->> -endobj -175 0 obj -<< -/Length 286 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk`0lFin&-^EH'UGWT#Wih.`kdDX&kSn/5YA$r!%99]Up_R%[RY=TYbd8CIqEY. -+Zc^TP.ig7SIPs'06l+6kCL!! -ipDN;P4D,^hu#\=e=Glf~> -endstream -endobj -176 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y"+]afWJ&-1W5$mrIQ#i#e9&?0Xo5ttlDdE)Vi7gG%!n7XokO2/h%W7Oon)GN/[ -ZsW6IrQ.cH'N3.R#b&eUN:;ECi]'nG4Gd_kno?^"RUNEJ&Rhp+/I^(pJiLh0FM$C* -Qn:o#BLcg&V5"(4 -endstream -endobj -177 0 obj -<< -/Length 201 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_!0abc_&;B(G;@(b4#al(am]mGk!`?cc"Kae:>,G-'2Fm?e3J(h"i4'F3KW-Q; -JY-X_#iqpX_OMBm:*)&*Htk$3c9+g,3l_HjM"X*MUYV^^g3U6('QHdTlhuc^7EgDC -!=\^tCrBW-s-dUSO_^L9[&9k0<]i2MXLs87#*EX"QnOXHk8']jJEdNo&bl& -endstream -endobj -178 0 obj -<< -/Length 274 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH83srhi&-h&%(4g1?KZjTV=\Q1:I"3XKXZV,;=t!QikHt@,\V?7T`,:JZj%PP" -e.hcpq[YKh)\"Jh*F`)[']UmaXbHrMA%iCl(j"3U*&=!HN"ZKJfT.2CEsBI*3C+*? -ZG=rZ]RsaP6oiX*G9O#t2/re\:K_1CN)9;n6V)p3TGT0n8h"+)Tl_R!_R8COJuYLD -PSHq$[\E@0HSHNrAD@q-QX3X9h`QTt\-n]=hZT"A90RPPI3*;$8P4/!S^.h_/:ePK -#683".l%~> -endstream -endobj -179 0 obj -<< -/Length 392 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH80i!Be'F*J=>EDO2V1k%U!>a=tm+OG@WehE:>'U+U[*WJL=Dc0FelZl#$l>;u --j\-:B&8tA/:`eLJNs1X(6CeG6F8_)C^%urSl5R1ZaF+7@'tY9R@fu)Gm]TcI$=0s -!O=SDDtGB;2g:UMni4C3N*$l"Fl@gQlmBD'*L=MCQ?maWB&rKTcmAKPQV?&A&fL7 -Mk.4bf2H^XKkN'*UhNI<`UMXA'=S`]qXGAeWL593(j2NLnEZV%oA9QK^^`gh~> -endstream -endobj -180 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -20 0 obj -<< -/Name /T4 -/Type /Font -/Subtype /Type3 -/Resources 180 0 R -/FontBBox [-1 -22 49 63] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 34 -/LastChar 126 -/Encoding 181 0 R -/CharProcs 182 0 R -/Widths [48 48 0 48 48 48 48 48 48 48 48 48 48 48 48 48 -48 48 48 48 48 48 48 48 48 48 48 48 48 0 0 48 -0 48 0 48 48 48 48 48 0 0 48 0 48 48 48 0 -48 48 48 0 48 48 48 48 0 48 48 48 0 0 0 48 -48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 48 -48 48 48 48 48 48 48 48 48 48 48 48 48 ] ->> -endobj -181 0 obj -<< -/Type /Encoding -/Differences [34/" /#2323 37/#2325 /& /' /#2328 /#2329 /* /+ /, /- /. /#232F /0 /1 -/2 /3 /4 /5 /6 /7 /8 /9 /: /; /#233C /= /#233E 65/A -67/C 69/E /F /G /H /I 76/L 78/N /O /P 82/R /S /T 86/V /W /X /Y 91/#235B /#235C /#235D 97/a -/b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q -/r /s /t /u /v /w /x /y /z /#237B /| /#237D /~ ] ->> -endobj -182 0 obj -<< -/" 183 0 R -/#2323 184 0 R -/#2325 185 0 R -/& 186 0 R -/' 187 0 R -/#2328 188 0 R -/#2329 189 0 R -/* 190 0 R -/+ 191 0 R -/, 192 0 R -/- 193 0 R -/. 194 0 R -/#232F 195 0 R -/0 196 0 R -/1 197 0 R -/2 198 0 R -/3 199 0 R -/4 200 0 R -/5 201 0 R -/6 202 0 R -/7 203 0 R -/8 204 0 R -/9 205 0 R -/: 206 0 R -/; 207 0 R -/#233C 208 0 R -/= 209 0 R -/#233E 210 0 R -/A 211 0 R -/C 212 0 R -/E 213 0 R -/F 214 0 R -/G 215 0 R -/H 216 0 R -/I 217 0 R -/L 218 0 R -/N 219 0 R -/O 220 0 R -/P 221 0 R -/R 222 0 R -/S 223 0 R -/T 224 0 R -/V 225 0 R -/W 226 0 R -/X 227 0 R -/Y 228 0 R -/#235B 229 0 R -/#235C 230 0 R -/#235D 231 0 R -/a 232 0 R -/b 233 0 R -/c 234 0 R -/d 235 0 R -/e 236 0 R -/f 237 0 R -/g 238 0 R -/h 239 0 R -/i 240 0 R -/j 241 0 R -/k 242 0 R -/l 243 0 R -/m 244 0 R -/n 245 0 R -/o 246 0 R -/p 247 0 R -/q 248 0 R -/r 249 0 R -/s 250 0 R -/t 251 0 R -/u 252 0 R -/v 253 0 R -/w 254 0 R -/x 255 0 R -/y 256 0 R -/z 257 0 R -/#237B 258 0 R -/| 259 0 R -/#237D 260 0 R -/~ 261 0 R ->> -endobj -183 0 obj -<< -/Length 159 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"1fQ07<%p4/0Jup&1#shF1,9#j)CQG*!2]=l#L,0eRmP!+uI&/q$N&Kp&1Y<%^r_L%kUss)7o:i'69%"8*e\n@o!_@=1[ej8T3h -o+1kNp`F#_Q`DK8+;\Dc:Nol*~> -endstream -endobj -184 0 obj -<< -/Length 214 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"#%A5Z"]I42'LT#i/e^SphZ1SPeh^:P2#n92\Qhn$>l*Cd-AGe%*^D/, -IA['X"X(k7=.uFg1mQ857H+7Wq]GP3U#ZIS&+ZNX&*+fT8G`Yc-tED^&3reu_,-1d -6GsB7$-*#F)sSC-i?Stt:'.PJOUs>=gC#2)1&kb_O$`hSrdu?Hs0*/,ro=%!%jSVi -4h1X)!!<5)?IKh~> -endstream -endobj -185 0 obj -<< -/Length 324 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$f5u*+f&-cM\(*q^TK['acf0Juq8=l9k_F.HH5[CtJ]XOcnX@MLe\n'2BrY+5C -V"pHQbPVHa7ljI>2b3-o\ngQZl6"hb'G#;(WP,]!"!?Fs2!F(m3ie`_*9lVXqEW\f -(HVS&^@^ncWTV6>X>q..(!ec7EYCm>`+e4==Lm7Z9@#eG'O>=eEcY583\8W,d?dKT --5\3eeoSg#HBBMDV3Yi6OGVV>8($E*'##m$=%b:0Y-FD"`])SjMC-K=-E*uY0-kqo -9 -endstream -endobj -186 0 obj -<< -/Length 335 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;P5t]'\&-^Df#mM<9gq_DC1t,,&B@egeR"[5s4Fk!W<#",ak@T.,5!kPI6C5G" -h4)B9Ue(HaC3R>Q%A-jB>M`]WP;R9U[J78om>a+A(,bUV@eQ@,*k8VT\OFUsqnj0/ -V7YcKpWmL$?*fKti/+9KEn/K62G51S?7j'(0/AeiXo;g4'\*_IIuf`g<+bDeXqlpA -Wemal+h(d:WmaGO=%Uak6$+?f= -endstream -endobj -187 0 obj -<< -/Length 178 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"1fH(`="lO30Jud"1#shF1,K/l)CQG*!i>Mt'o^B///==h\XYdmoYVCP -9tBmZJ9"ok:'&WIL0XSH^'Z/TV5[^k/dai05O^mF#=<#FAGj7 -endstream -endobj -188 0 obj -<< -/Length 247 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:d4V!'/'SIVD-ElA6]F-,=U1-RN:EkLLiba,OMBiSEb?t#:!l<'2BdC(g7#/PK3YJZWtA<`ef@!H4nL]F6/[jom4.h --!r(i!(t$mj.LSco'l9k%o?gc$TiOZGc7S_?G8:hJ^loi@]CoZQn@inqk&>0PXW'] -b.?],+uZ`nm:7=GGt?J_1WsKLc]XL,2>AD!k-C9H!$=q4ir~> -endstream -endobj -189 0 obj -<< -/Length 239 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:d4UT%k'SI,N!jD,"^'eV'dHq!4_(>el4Fj]D:p`tYYEbl-KTm7gEKUL1'L$^! -c.eZ>b\3eAVaf-'kGacP>U7ENN-#Z4RDm[#*7%Mb#nNJ8&oK*h=R;?rbAQur]q<6G -oE"`;7k3"KRL.\&?3.VLhG1""1aL*t8*f5e/f'+0XS`(4/qiB/]M\EGrc;akFmD4p(ct)5P^~> -endstream -endobj -190 0 obj -<< -/Length 235 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V^h3srhi&02q(0F/_.k60Hhq1B67$DnBAnc3E=TkGf!hCP5Ln-D%iP&[hmdl`BZ -k'`t_!_Ol985kc$7H5E+fQ%"H3@2D:eBdB,_m2UOU+f'EZO3`'YU5@0g=,Z`\mi&j -B$&9qdXi&En28)4+!\>uhP-:>&rhR`*+\)T:p^4!G5sEW!.oOt)q[Elqu[una#V]K -3J[4;PVI)IFrd`&HI00I=HD2DO8'ds;E&p&~> -endstream -endobj -191 0 obj -<< -/Length 142 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"<\RT/0i9X0:e3>%.c`?>"H"'F!%DD@6No8/982G3/gjFIrG\DHQbE]l -F:)tf!)fE&$7/-;WEc#I$NL,Jr!ri?Z@PJU!s9*"8J&^7O%^b@d`r -endstream -endobj -192 0 obj -<< -/Length 172 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"1fMaY1fc:g;D9q*8290Tj8t2U!25N(:eo=J,RYl]F1If'\b*dj@U/aN -5Y3SVVZ:?56S -endstream -endobj -193 0 obj -<< -/Length 128 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;TaV3t=M@!/0=u,h'9?S7(6[ZlY&U,ZG8(;F0Leh+"0,YF+46e1>8r]qmMi%1]n0 -:(2:D`-Sr%c0BV=A#lb#0pQB)S$s%!gVcQCM&9R$dB_9N[+~> -endstream -endobj -194 0 obj -<< -/Length 125 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"";/X=g.3C+OK4HN8/it-\V:lGL'kKr5U&4TbK5r@59))oV=+F3SH>;r -%(Z!nI2,A38lN8_>nfL#5@E@kh]U7\%tPks!W*E-\Qh;.!kA:5!3k5r&c~> -endstream -endobj -195 0 obj -<< -/Length 176 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"/shbLQ[ZGrYrS/b -#>g:Nh^Q?D!D%M4.[1X4VK-sn./X;OIN\Up,6"gaL`^Tq"$_`h+:f\,fY`N"H5OKf -+%lH@KG2QPj5@i]0_7LRS7mWj>csZ'JR!^+!4@Y7RK~> -endstream -endobj -196 0 obj -<< -/Length 273 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.(0ogin&;B9X`Lfia&XWqS&hlpHJo7k.-G.eL@!>6ONHQXf1lfEb-n0tu@43t@ -2IA2&be3D@)d,c_o2sF/Y^kqqV_e$L0XQr5Ue=6 -VZ:?5+NMr4TqnVDQ-7WFiVt"ss8RSi6gt=/IK7=lJ@GW9) -endstream -endobj -198 0 obj -<< -/Length 285 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VGL0i#\A&4AIOYdBCN&75F#n:)-59-96dJHQ\m!(mS0eDK'*7nH4?152!%LPAW% -prTS-RGH\+KJrJrp?/+k_GdA9\f7_g=nZK63,K+c07"JCGmM#JRi?-WF1AgjSMoMF -G^oU8f't4t3<>3f![8[S`*j7W0T-2`2p3r-X2H!?@QG^b$(-P%$aBD`i6N:`#+rgM -JM!00GVFZH_)ro^&]2Q?2MTb6YZ?UcerNB>:.>kI)ibW:JfrfGf -(PuP;lh.4NqE4i=8ARj~> -endstream -endobj -199 0 obj -<< -/Length 306 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$e]hZI!&-q]_1.8^mO5P?c8>DuTSLbM;aFFC,%mV!MW61Y"ApG)/X<'/c3WA1K -`/pT8ht]Ikm:7H4>W's;ZFuB1_]R\%EO_.u::f`q1%>%bLS!fJC%kjs+N3s3kuJ_* -qaWZ=52Wlb'4"./-h=9*Q**LYNehc]6Rl+DalsY:fB>NC3&"]1!R(X2SP73$?_T7Y -0H)bjNU/0W5c%?VrT/R+TW_YE"`e28k`S6+Xr128^$old)>'OY;\jP9XMBW`.h!'H -jE,DS$[T1VOS<$sI69o3:P-"_7cF69TD<+"^CnLd~> -endstream -endobj -200 0 obj -<< -/Length 234 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk`YmS?%&-h'I%Y\-`#e_&$2Dh.4TdlEqd)cO>NXgrlNGmBE'cJo -o"iY%g^pm0%!20-_UTQC&g!^Ab8J9H.<1J1Y'29OU_cuCdY"SC/PfSm5p,XiHrltb -B^H@72n^=qDu4&)23T+[Y[^36&_k?BQ]Q(#2Do8$.G-@#LPY>-[S+]M@%3TBQ5&2+ -B!S"DHu&]C^RB\eA%FI_>1dUM_fl*G8HE)~> -endstream -endobj -201 0 obj -<< -/Length 275 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.gZ#7ED$jL*0)3DMl&`OV"+b_c/:.der6_uQC+ornj(#:A$qI]IMft(M!$rPg[ -&>GF,=h__\9$p4NT5=,>UrH;(e\iaO(+E"'7?mCRLKY/^`RZH@(dE -ZhdZsmiQnZkMh>sBn:951p0^+qtVMA+eo<;!c]=iOLhC2U-u,'WB,Zg2JlHBq?%@h -GCPQ:s,ZWaf+kmDSOoOe5U"9"6>_@"CX.hB4<8cH+3s)e5s -endstream -endobj -202 0 obj -<< -/Length 318 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V000i#Y@&-^Fc;HTC-8+9a`Z;Io:\$EAk6jb3<2ulcQJ=n2P>)qSe=JAA!H2%k9 -U7h!+AutOs$jYJ-+D75R^$IE5WT.(JO!sF,IurX%6Ou;nn7gtW62Dh82e[2X]"=2e -g[S>$h`dWW]Frb291$=M_X -IYf$?"]ij+RB4h17L]qY%S`4=9(_gk(01ckN!4t2^7UP>ap0_bp*?kL,UA5^,_q4>>+!19%W4o~> -endstream -endobj -203 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;N0abcO'F%r%8F*u$<=nNJkd@P*?>ib>OZ)b8rq?(KCnt;$t<*' -6,"M's%d`g+_mMqe.K\V4=E0VPk&CAEIrM:GfT/HO;j9CN)G`f?@g -endstream -endobj -204 0 obj -<< -/Length 290 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VGM0lDV/&4Hh$+AK14?nROK"IAE^a[maV=A#S5+AS?AQJG\qUN)M]![S$(T4+tb -'Me7XrA4'Ehf::V.HN"FZB40?%QPWAf]_?^Q>7qAF7iMHIX#( -endstream -endobj -205 0 obj -<< -/Length 324 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V000i#YP$jBI3Obbj=gjnnu+<)UWG,n.A8>JM&C(C_'-BD+PFj]rrC8#'j.H" -jZiMN.SM?6F!7k"bo@`:QURu+M6ePe&q`h"en?G4+\sVJqb[BdMh75)r["c#Eg'4T -MuGeZ(mM!b4q)a[(c!>i=kD&Tj,F*mMCo)?B`&[.s~> -endstream -endobj -206 0 obj -<< -/Length 133 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"";/X=A>tZ"aAp;mBE[CK\V:lGL'kKr5U&4TbK5r@5?u%OLeHV-.*&1Q -']?'#aJJ@iX&)\nR`aaVU@@.A!W*)s#'gE%#R%CCfRN[W+5kSdjm'r&a9 -endstream -endobj -207 0 obj -<< -/Length 194 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"1fMaY1fc:g:b]=W8290Tj>&Om$6(C\)?Jsl$ph0a1-(]Eacf@^>f"d? -9A]h"aeeG?i2g>-V=3ZL:f:8]b2ql^nAkM1rr_s"lj&n$&B+R`s2Y+'?3&O[e9:nm -mf.J,"N_5EJ)PhdFc,hseDNs7-+oY+AmL>^uhTpI/!T~> -endstream -endobj -208 0 obj -<< -/Length 243 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;THi0b2&S$q5dcOM(2koa.(AVCG9)$:n\mJr'S+7KsFJoOo5@7ptZp&KE08UjPW" -`D3L9Qt(skob'oOXb&VK'sSa$Kk7-caOYUH6"<0OZ)BqUaae2f)cRs)!M>G)(!IF6 -Xb=.U0e=`!+.Wp.bk`/E9jG?%qoh/Mq4%/'inZ_;/(2Lc&UE`1qP_FJ1U_[l/%CnW -"N-e`n8#l8*sC%g`WhWcI -endstream -endobj -209 0 obj -<< -/Length 148 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"<\Q@30JQEY[STLLj=94G0a%h%-l&G>hCKTKHA -Sm6hOJ,oYO5=r<~> -endstream -endobj -210 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T`q0b2&S&-NYD7(S+#YV1fBilFqb$6\:/#q?u]-n.DX!u9_9;t:&`$3^,VEcA:h -G.d!B1I6`s#%if\UXjO_gj1W+Yp`M04Ior*TZWDN,.FA6Srfu'1MB[(L%FQ7-TB*+ -ld)+J&h-sQ?>^'Bm%n:aAFa@'M1c<:jP#f++AEisMh<#^BfOoqiPqHcGp`p?neCV* -ZM -endstream -endobj -211 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`?_$YcZ&-h&-&'A.)!Ps&4;K8I,$ -endstream -endobj -212 0 obj -<< -/Length 288 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.h0l"Tk&-^E$,R6Y[?6/!F, -endstream -endobj -213 0 obj -<< -/Length 186 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"!b)gA"]I42'LT#i/e__;hZ1SPdPFkL2#n92\Qhn$>l*Cd-H9kUM++8-iJK06+Y3&K\6E0+I1HS/AqY!=VT!!RMj)#~> -endstream -endobj -214 0 obj -<< -/Length 188 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"!b)fV"]I42'LT#i/e\fR!5pbC1K;^Y!#!Da>Y^kqqV_c.7U5d25Ue=6 -VZ:?56S<,4-808;IORf)?c_s8NU#,X9e2aT);1O9`U4 -"'-%J/O:#9?C8k0D'sru^q^F*)]1g["sag*!g2Sbp#HJ@!Xo(>@-hh~> -endstream -endobj -215 0 obj -<< -/Length 288 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSX]aDV1&-q^*$@tS2,Btl7241,%"[Bd4JkeL[3]\ZM[u]*1nIZ`]9$^/Yf%CU` -OLlZ[Il!u/9kgEF(lDsJep'QWV)Y/n:=HJ6SoD:#1<&HJ7Urfj(.QLGMWBofk]))Y -0O5>JE6)9NU6sgl&.@]X3IhCd$5QC^'peq;MEbBqM2L226g)f[?f&_)GV^rkF"c-G -Tp>!Jp&tC'+BAJF+:C#XX5pG/LhkJrJ(*!5'4oq:1:SpmdJ=]E; -YABA[Yhf[F.3@t?!&KZ&+9~> -endstream -endobj -216 0 obj -<< -/Length 164 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^""C`$#"]I42'LT#i/e_/+hZ1SPe2((N2#n92\Qhn$>l*Cd-Dk&E*^D/, -IA['X"[anj:LAg=U=*!n:D\]e%.t\Zj;Ss&+#*1?0ZY>D@#'gT&W#cqpAb.1s3lg8 -?sk*JdaL?M,V``Hjm'r&a9 -endstream -endobj -217 0 obj -<< -/Length 133 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"#@\>K"]I42'LT#i/n8B6+3ZUo1K;^Y!#!Da>Y^kqqV_e$`a&?]5Ue=6 -VZ:?56S -endstream -endobj -218 0 obj -<< -/Length 167 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"!b)fV"]I42'LT#i/e\fR!5pbC1K;^Y!#!Da>Y^kqqV_c.7U5d25Ue=6 -VZ:?56SrOo5Mo%O:O34c"Jn:F^X? -!=8$2^a'!p#n[3]eoSBJEWpIa"p"!nr!*~> -endstream -endobj -219 0 obj -<< -/Length 257 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um(4UT%k&-_!SJ<<-\)sCNlo4&Ib"9*g""Kae:>$I>(iuh=_&=I -bQmUMDPAl]'T.g'1`Xn,^_90>OaS+bIR$&'YWLi$6#TED!554rd$q1N'VLeok]4BY -0UWT\GReH=i!a&pSj?GG5q3cWWE9O!9:Ha"ptp8(VCQd_D69kG%%if/_cJ-?bY<$0 -[rS5A-p--Ll"E`=VNf\\e7?"4O]6eLjoBE#;`*rXrO -endstream -endobj -220 0 obj -<< -/Length 220 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR;0b/e3%"R:T#Eg\ZiUm9KHiekY"?#]Y-9?DPEHKRkN(84bi_o7 -q?VM+4pO"f&,7"B]]ZJu~> -endstream -endobj -221 0 obj -<< -/Length 232 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_#0b2&S$jBI/%$eKt#k\@o9aQUbWIRA@,a^Ok0J\/dDN<9mEI\<.3t"@`/.?fe -jiIFXSP`*U4EaD^.3/k(d$e(g;Doae_`DftA*^AQP;QIE@gf>\]:`99%Ge2]'=oK8 -J:\X=1)2jX<""^la>r>:X,hfK1@_>!]]kWNf`,?jks+@,a_=E%.,.Z59bfKnd'Q*& -#CV;"pno1q/AG/520Ep#E/1Ut!&$Y#>Q~> -endstream -endobj -222 0 obj -<< -/Length 274 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSV]aDV1&-q]g$@s/_,P5;-CS4_;JfeA*5pma>*?>ibmA'>Oq?W)kU$(M]kb;Gj -5JmA_b@M>*P,5mhCeUUop(gGkj\d)HBMi7$pa$1U -endstream -endobj -223 0 obj -<< -/Length 304 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH64\ip\$jC$o/I&c-&aTlj#eNs^NO44($7)SD!'n*6,,g>d_6rDR3Pq"0U6t*Y -+<$\E,QH!ZVUGoioW6WgV)GG>eU6:tM^$<72WlrDi,R)tSu\Eb>HVkkibEgiV);?Q -S\DhN4`c+TQGX\ZTNN&):1g5!R>=D>1PSSdd#o*&A9bRL#.#T9'P?AYq%*,B'JXEY -2%W&'_,r[M-SdB/*(+s),?f?t7GNHj6s*V4jSG%'b9*U#j9+G9p^^.[;W:1XrA;>l -#YYh5"H_cu#uP-3!Nk8bIP0:3S":_sCB0 -endstream -endobj -224 0 obj -<< -/Length 162 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"!b)gA"]I42'LT#i/e__;hZ1SPdPFkL2#n92\Qhn$>l*Cd-H9 -endstream -endobj -225 0 obj -<< -/Length 244 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V0.3srhi&-h&%#m@+Z8(bA&DOtUP&/Eted)lHhV1kXdEjRu%NfZ"baLI-p0J!W> -1&ip`q&3a:ELpQE@'RXc!Y<@.du:P6@Cf!'B"6Wi<$9JRB-?mp!`:!tR"/!:%C7~> -endstream -endobj -226 0 obj -<< -/Length 259 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;O4UT%k&;K.W^kHLr#WijL\<'+j"b4<%JlWpX/M.[='B@&4:U3KpZj;[*K*e?Z -H&D'EJI0@V7#cVS@>n'B3t4[c,9DUWNDL/.`bZ/>8KcYn(dYCa"MnV+71DPg`:N6! -LLc.jVmiS0%MbT-8k!=!<7Mj1B:bsa?Rd7h^.RW3$h[3^<(LZ)XAs*nfpK*ap@_F, -L#5e8,ZYKLK\n1r[9]3Pk'WCnO-Z3>NQ0LPj&GF?ECVZL0Mc'cT)er#V:@p~> -endstream -endobj -227 0 obj -<< -/Length 299 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V/EZ&6C`&;E\Q"K&H3bIi@l"SWB66-p9=+_]s>k`o6)Tq.Q5g-/+M_(nI3EFq._ -#f?#=bfoM!s0%hh7Pi`;d,u49F8SCh9:T]UqoEK?#u87F.PO#KaYDUD$.IFR9bJ.% -])5obYkTOQ%UuU!#*Ej7URmn\<@=W+SKsVK`#o1CR4IHGO+d5h\PUk8=?05B-=\>M -)b>:`YjCVIm-39>iUG.^D*-t7paP#e5J:"T -endstream -endobj -228 0 obj -<< -/Length 248 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_!4UT&6$jPW("X/L>Tt,^Ia!tsKp]G[NFRfFskb..pmq=jVO3k.!BhYUF6"_?d -+F/_f>*)ORF>TcGSB_/l0Ug/NlPN@u)Z.D9MTZjM,=PQ'[M#:Cgoi+k0Ab+:rk)XO --4?>p!D$+-J$%1?^filR)CpU7d74Dd>r<9IB1>Qm0hp(a1fhhZji6(u3eqH)m'W/X -6#5!mWLu#VS^r1hVuCQ?qGdRmB+@[P]m6NcM=H,"! -endstream -endobj -229 0 obj -<< -/Length 141 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"ZrGD[:bXV$0Jca#1#shF1,9#j)CUsl!i>MtJW`8B3L@q2P=n,F_8qj6 -hZG:IV=,,VX8o%YI2,A38lN8_>ne1o)#c -endstream -endobj -230 0 obj -<< -/Length 172 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"/shbLQ[ZGrYrS/b -#>g:Nh^Q?D!D%M4.[1X4VK-sn-oCr/!\hFr-Q(c06TpAf?k4J'aMWfEr%R+84,isP -$mYb&#t>adE_M0#s$.4sq70`n\H9;A!s%NX/=H~> -endstream -endobj -231 0 obj -<< -/Length 143 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"/shbLQ[ZGrOXZX2 -#>g:Nh^Q?D!D%M4.[1X4VK-sn-op)#WQ;p#HJ@ -!Xo(spXjH~> -endstream -endobj -232 0 obj -<< -/Length 273 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH70i#YP$jG"mU0-JgNt>Xu6J.En5T4>;M%iKWE<)Z-fG2o"UWlYVKTmo^5(@05 -#L+c8bOuIuIc8,h3Y,:53e-I3Ddf]@b*O0p48$PXL[BD'?T`/,I8J,@h:&KMf(P1( -H2)]prm$p-81m.O^O_-0JIOU?CN9R-*]MP?2@GC)3[@I_3H7g<;*-c:/J.5/3>?U/ -cIJmT,&1#:aJ#T1,3jp55H:3&ebgQMU2>0]Np1V]3N?;]BU%pSq#H^(7ASc6p1uqq -!4kRl&c~> -endstream -endobj -233 0 obj -<< -/Length 260 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.gYmS?%&-1'-*J@Yf$-<]k)edd(:_h1ski;uIUP#:^j.@(aOaKL9%`N\E;!9AU -n.P/Lga-1)PkJ(W/5u@LSMf8cXrPY%.\1:r&Z7.F#*U9s@Bu^D-KT]Q1aZh4*r"h$ -c!&Z&Ve%(g7YXIili49N1NH -endstream -endobj -234 0 obj -<< -/Length 249 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:d4UT%k&;;L-#Y^F,A1jN0jp/L%J%ubMh1CMUmaq4/TdmM?$Y+DI[%/#I&edCQi!$^S@:S*gn,C# -f)ebQG_uMl&^V,h6tG0^o-2p,+/:b^U2Xg3#%r:8!PO1.N5-5D&H)pPcg>DBVVVIQ -9S4$.>c-K*pdi:c)7$Hm09clfUJO&Z0;QBfFl'KQi6MC2JsqD~> -endstream -endobj -235 0 obj -<< -/Length 275 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk`]afWZ$jZ87#>H"82u3R_K_&[unKX146mj'A*??u*\A=s1-p.Rk%>)(CPs#ljQZLQ\O1;T>3D7W( -N5%\Lk==JoVu2o#oR:PWQ4(q+d`$R9b-GPcF#%@dX3FX.I`2n -endstream -endobj -236 0 obj -<< -/Length 268 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VGL0oj+)&4It@YV_?#i4/h,!g,f^#o8@3/+$@W!%9:>"YK8lEg.OeV$i4-3##>- -NLiUhX?V4"[4J,>GpW,_Vi#tLeYoG;;X0<8B8Y`'2_C@$=Z'IPFi.T@c^U-!L;L>YRSh@C*K;iImR(iA.Rg+WO\,XWHgeEQiH - -endstream -endobj -237 0 obj -<< -/Length 213 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_!0abc_&-^De(4g1?KZjUA'/gK85ZD\15q'(QCNrhbN&S6?P4WVL&=$H860h-dN)\_F@@F,5mk_Z8'Pa$XeZcTu[)(c`B(P8jA#!r_+ -hE!jkG6$;c_iF~> -endstream -endobj -238 0 obj -<< -/Length 328 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V_T9hN>h&;@1,@\>W-K[^/^^C2`J^o1WVK!%4d\eJ*Xga1gYO4$OcAM8e&Y<'!$ -5o]YFl)K'uHF"D6+",4S*IOl-(+ -_pruVmr':D4C3md$744nT/:4(!=>Z/1(Tep-$h#hAoVP;HYYjOe/>%>U_2)U0__[I -58?j*FNI'QA8Y3insKS.1kFg3J5VC#A"QOm")?0^>nY_!#)m6)#~> -endstream -endobj -239 0 obj -<< -/Length 215 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bVl:'6==U1PHN1Y!O``'-mY?)X&%gk^nWO>V7C"0)]a^1+mtcTG3a,;h23+ -+d]p@Y,S)TM"%`\$I\8P, -%.%qrnH[DY%.&I/Uc_0MK0>U's,S<&,KKmP#8l)80X*Ji0HX\1AmbUbL(Qa=6m/d? -Y+AmL>^uhTq`NbW~> -endstream -endobj -240 0 obj -<< -/Length 178 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^""(Dp2"]KJr'LT#i/n7g&hZ1SPdkatM2#n92\Qhn$>l*Cd`hm#;*^D/, -IA['X"[anj:LAg=U=*!n:D\`bs5j:\s8Rip7f6X`+V58oFejNm$p\Y7(kAJ?^^2^h -!JpONDbpuM(`4+V)h -endstream -endobj -241 0 obj -<< -/Length 214 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^";:%0U<%p420Jup&1#shF19q%?)CUtW.%'39Jg>nXE\<]B-^T:lJrq@G -^'@Jp9A_26=i$1mhpYZ#Uo6,8bL8o=s8RTBs8W,WLYr^0#Rh@KaV+[l)#4+c0X)e^ -ruh7>cOdl'^E*U=`r@.A)?)i#iWJl_ru:;B(`;NW(k=.A`r?8\R/_YDi;`h4_>ZZc -X!^sk(LR6$$1%f~> -endstream -endobj -242 0 obj -<< -/Length 276 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFn^C%h3&-hXQ%$b&n!^c>ZZjjD%AALK<#=0^Z5TLjZ>r@\o8*M6X3f#NJM;[<* -+?pJkpZ:t>A7EI%#>tt@C\bbk&agO>[Vr"/"ZC]K=.HE>00#MX&uXdO6nG7d6;GSm -NiT.haG34H[ncUGn3M0hk"\mUad;+elC.qFlOpcZ,kO9)RXcZ)_n;k'@@]Yb_U.b" -RrChL`#J!??$+I"$$8HOBl_BYSZp\[)ZBCn__$Ueob##Q(l=uA&gC7QX@?R:mjcX5 -?L_e2:Z:"a~> -endstream -endobj -243 0 obj -<< -/Length 146 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^""_&,i"]I42'LT#i/n8rFhZ1SPeMC1O2#n92\Qhn$>l*Cd`o^P&*^D/, -IA['X"[anj:LAg=U=*!n:D\]h#58)s)&S_qL^"F\s53;l)Aj;.pjnf`*K:%lE4L:8 -"`aVJ!26sK.f~> -endstream -endobj -244 0 obj -<< -/Length 218 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR50abc_&-^E&;?WkR2oo5HmKO:X+9\Ej.0Qb8J6E:0$L&1Al4Hp3Z"2(Q@%dge -JcGNC8LLT":52;\:,VJR3`Dp/h,%TEc-EQE"$CNh -nWW\T/LoK$Er]ZiS>Z~> -endstream -endobj -245 0 obj -<< -/Length 203 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y:24UM6F&-^u.;?Wle#WijLCg]Oj@9#"8TToaY98aOeGE8&bGQ^YIEQh4`7rT)) -_OF+Oc%>8/RQ3;aT,i%gT/hbP*)@6G/%(u80ohCP`YR6N^LB^an+_?Y>fa*OjJt\# -I\E)o"]PO,9E_VZ%+tXReflf?AdRI+Qb7fRQ4bS+T=%a[IG7MSQo]!V!LT\fb!P`VC~> -endstream -endobj -246 0 obj -<< -/Length 250 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:d4V!'/&;>m9CbcGi?nS+^Z@u7'rZkC/B]T9EdR']d*0$_4"A0$,cZ-@s[/#TI -b^86WL!7KW`/;aW=ZK^#EF.j*a)c6!X#n;bb0,[KUZ;Sk>?u6WgonY:L\$K/W*poLV;P@PDYYd56`j!W3HPNK!je -endstream -endobj -247 0 obj -<< -/Length 278 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XF00l"Tk&4L5/&XZ$Xcs@i\A4/ttTYqBVJY_i;CmQaeP$0o8Nj;/OWC$CW:DSLc -6[%ECb^=%%9_7U$rl8m;S&RCP5M#\-$n_?EChbJ`LU4F[Q@%o(Ht,mop>a-D>'BB6 -kPP"Lh5^br#E2fM*ePE-J2iZ2_O"[R*Cb$)7?V#2UnWVI%(ugS!0]-fJlikf>NWs$ -:/88LXFF\1eqo7*6h6Eojt3(HV`?\"!.VV2HNc0&!k2]0i;Ydj,i6Z^gV$Xb9WIB\ -dndXe!)oTZ_u~> -endstream -endobj -248 0 obj -<< -/Length 281 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XF04`8,%&;A/-$)B$>&Mb.F[UEa0-C.1H`C2&N2ulcQJ=n2PRZHGQ\9)0TA\A"6 -P9NGa:YL)h2t*kS8LR6"01)qi@RE.DHtF>`1mD+=Vl1>qq\-/3%X);k%R*kP@(giN -LkG=uY*[n*dl0Q[Qi\SI(a,`E18>)L@j6QZZ(ek91rtn['F'9K5)Vp1#'o5'Kj#9R -U1[t$No$D]m:QNN4<=<'8Uk$0PWnX]>=Hf(=n?D:&5C/N?,tYtB/op@,a!ObdiSLB -Xig)]Du"_[O -endstream -endobj -249 0 obj -<< -/Length 215 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_"YmS?5$jPWs*"#hrK]WI1Y2oimiLhZFK:nD=TT0M>cIYRu8%D-/FGjjki8SDm -+!`"k\2dcr24\5iq,Gb,>Z][_XCi8DX`D'N'?D0GeRUR!,1GnE>`f=s^>BuE$7cmS -=!7l)6!ALU!fL@mp_KqX@%=l?PeAeAIK;S>)BXa[ -0Vrob4hV(#<3*5@~> -endstream -endobj -250 0 obj -<< -/Length 267 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UT3Z"a>+'Lf3!+hYfjnGRm?)[E`S:]kSI8?0%JQnjAiodj5?>O.nTra8A,nTeJ. -#\9;_&+4^J-I-b.1ED`!^[J%aX\9tWM8fdkNCu=lrDOK>'X'QW;QQjn=?J7EPbNWT -rU0.uoh$fk0=q7'Foc!A, -endstream -endobj -251 0 obj -<< -/Length 208 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSV0abc_&-^F3/HXDf&U#e"]:22Z(PiE9+_]se -Qp:).Z6De!XZVl/2NDYr+'>=8<_rPFb>#LTfEAPt.Oqe13MC:b>ETSYoQn7?(jU^!g]ot% -G5rZ'\c2~> -endstream -endobj -252 0 obj -<< -/Length 188 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bVl9>sec/Es6&HKbQnW67sAo,\R6)oF-:k5U&4TbK5r@59-V\9A]h"`MN#; -i2g>-V=3ZL:f:8]b2ql^E.IaK&2c.n&-EPsL`?Dis+:FP6R)P\aWEd2iVs-*fjN^Q -_#D*"JUmjc+!A]#rrJMb^q^3iq8'l'^^a=Ys8P -endstream -endobj -253 0 obj -<< -/Length 237 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTr3srhi&-h&%$@sXh,OAZ#o+\Q8L^L!j[.433Bq]42c-:9n*$JmNOE$T!+>EE' -5CYEX(4?U:iseI>Hj&qn39':o(p3sGq98d@8IF;`is<:2=5YBk4U0i@BDd4-:Il!u -#c0teKbQi[@mAeGCKm8HQ[0HI]0r_?[&@GTWmm]=OtEWV7^I[uZ[tZ3Ah0-B8rKh5 -@aZthN]j^S\oWRfKUf*.d6*1o$ -endstream -endobj -254 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH45mi3?&-h'ZL(@mY7sK*+dRP4`'!*2l6*315[;8^i>0Vu=UNcp./YZstO:ka@ -#QOhA"B4qio*#dIcg[Ud$phtfYG3.Q*;[nY"E=M"%YG>*'i3c,RlP6QOu6Q![j*.+ -1a4E'b(MOe't(?PBq"^gL^\]RM)'C_q0s\fO'\p4 -endstream -endobj -255 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$#^C%hC%)u3cPUrsI6Lt94QJS8W(An8X&9RIDeBpS0eZ3W>8*M7?ll_:uS;9O] ->e][t-"]IuV,G<03i,c,=#>d+Z"qg.6DIY%]\k!SkWgK2BHn9^MqsPlagZB,4jKFu -W.ZO?\:>G"$psa;/)KB<$YCia%>XO\X(8G,#C\*0r[Ft\ -ro^oVAt))bR4bV5]AuS.Q+FHOLmLTPH'[1p=.* -endstream -endobj -256 0 obj -<< -/Length 305 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTt_+MX"&-h(?JdZYa,@k+G]A;%L"Ym52fY`<4HiWgf\Di+LVYXbIPWhEo4Y.U0 -8]f+Ap^T*Jbb'2MF'?rdU87XKW[iBIEJnu$X)hJ@ejV#^n&meq)_@S[Y-<0?4Y50F -[o?haD!:2+pP-p5=jR@V!t%;G31X0.h(drCtLsi3btW -hn]h+CI)"oTS)g2".:6APfJjomi-Yk^B"=2M%V]~> -endstream -endobj -257 0 obj -<< -/Length 213 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;N0a[t:&;B'o>6r]&"QoiT/4lP#YUZ#,d)lHhV1kYOF0sbmlk(d#`,VBN(+/*t -+^Zs]9R"FRpX9B7k!>@-f'/76T5L3t@ ->%H@6HN%~> -endstream -endobj -258 0 obj -<< -/Length 224 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"/shbLQ[ZGrYrS/b -#>g:Nh^Q?D!D%M4.[1X4VK-sn./a,FrrE*!s*kmF_&s74lp8R>3(k;B$W[M[nV7VBK+O^&!/Cq-KYV$H!"V;5 -8:n_n(qNtTSm6hOJ,oY).hZe~> -endstream -endobj -259 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"1/Q?*:bXY+0Jca#1#shF1'\.).$tqTAb6C^E^1g/QcmL790Z[tS4h`A -.)i%O']?%mUca&?8r?5>\NF.3R[Y0D#L1LuY+AmL>^uhT4/rq)~> -endstream -endobj -260 0 obj -<< -/Length 223 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY^"/shbLQ[ZGrYrS/b -#>g:Nh^Q?D!D%M4.[1X4VK-sn-oB$Fs8S^B&O\>&K*Zf8_>jOb",Qa0^^_W=J;?G6 -5iNkK#`rQq1Oodniu12D!=#29*e9%gE#)Oa/.5M!!7ORO7tO)1*%h]ed'-u0&GE>i -"??W*\m2D0>_-.1!<=dW&@q~> -endstream -endobj -261 0 obj -<< -/Length 173 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+,:bY_M:bXV$0Xaq72,d%#j=94G2?X@*-l -endstream -endobj -262 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -21 0 obj -<< -/Name /T5 -/Type /Font -/Subtype /Type3 -/Resources 262 0 R -/FontBBox [-3 -23 101 68] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 12 -/LastChar 124 -/Encoding 263 0 R -/CharProcs 264 0 R -/Widths [51 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -28 33 28 0 0 46 46 0 0 0 0 0 0 0 0 0 -0 70 0 0 0 68 0 65 0 62 0 70 0 35 0 0 -57 82 68 0 62 0 0 51 65 0 0 91 0 0 56 28 -0 28 0 0 0 46 42 42 46 42 28 42 46 28 28 42 -23 74 51 46 46 42 38 37 30 49 42 60 42 44 37 0 -93 ] ->> -endobj -263 0 obj -<< -/Type /Encoding -/Differences [12/#230C /#230D 44/, /- /. 49/1 /2 61/= 65/A 67/C 69/E 71/G 73/I 76/L /M /N 80/P 83/S /T 87/W 90/Z /#235B -93/#235D 97/a /b /c /d /e /f /g /h /i /j /k -/l /m /n /o /p /q /r /s /t /u /v /w /x /y /z 124/| ] ->> -endobj -264 0 obj -<< -/#230C 265 0 R -/#230D 266 0 R -/, 267 0 R -/- 268 0 R -/. 269 0 R -/1 270 0 R -/2 271 0 R -/= 272 0 R -/A 273 0 R -/C 274 0 R -/E 275 0 R -/G 276 0 R -/I 277 0 R -/L 278 0 R -/M 279 0 R -/N 280 0 R -/P 281 0 R -/S 282 0 R -/T 283 0 R -/W 284 0 R -/Z 285 0 R -/#235B 286 0 R -/#235D 287 0 R -/a 288 0 R -/b 289 0 R -/c 290 0 R -/d 291 0 R -/e 292 0 R -/f 293 0 R -/g 294 0 R -/h 295 0 R -/i 296 0 R -/j 297 0 R -/k 298 0 R -/l 299 0 R -/m 300 0 R -/n 301 0 R -/o 302 0 R -/p 303 0 R -/q 304 0 R -/r 305 0 R -/s 306 0 R -/t 307 0 R -/u 308 0 R -/v 309 0 R -/w 310 0 R -/x 311 0 R -/y 312 0 R -/z 313 0 R -/| 314 0 R ->> -endobj -265 0 obj -<< -/Length 375 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH9Ytfs;&-cNu"j%JH,;:cia5I?p.[!^D.87,>!S#OaU\-rBH*;n3_Um`*$XcIj -DOd-6;`rlf04?cNoC!qZc>YPZ8\DiLNp/:T`UF.)b.hS6_M+cL6E8KOD]`AT6ZdrP -$IK"n+^/3C@LQ+_M9esNpQ2!jn`i4ee6XQu'_$<^kZ(4uI5#M-NF8_n)G?[gVdK3m -\YF2T,BY%)_0/NA5J>Kl]Z^ZL\i8%dFb\UHS*#J"Bc+!oq\j-94Ws8!lk`%Onsas@ -7B9^]0nmeMEr5>&oRbD;Y@VorhF:J)PoQJ#4:gHXofWd@V6CSYD3`(6n*LeYp -MLegu>5ON':!F8dPgrs:.]%,$\3gPIF1?tN!<>\Zf;S~> -endstream -endobj -266 0 obj -<< -/Length 386 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V00Yti1j&-h&\*eM%8A]qbPRtfA<:6>lSA3ba''aY]p5Tm>B'gp$U;G[R(,8Dk> -2@iZDcPH[XEZ)S^k=ba1C^Lgm9js8;@!2V91#+/SM5M$&B5SVXirsVH$/@]7A^9-8"EIJ3Ic`[jA56Gap0l+$L3C'E;*a/m7AZ-r6 -NbbDof!hFm+UaOnd:$+2L=r?5$2XM#Gi@?o>&2HK1\anLd#McSfb&!ZX?pKOYK!ZA -FP?LbnS@5#s"'[Wr1]2*F[bgTlWOb`ULja)d^n(Ta'J!IXjLl=^R)'pA@X"eLt8IZ -;X;%THf#jhi2u+TSeV'&2!27O+69jU2]K&C^SB+gI\-.Hr\FODjrHt~> -endstream -endobj -267 0 obj -<< -/Length 176 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY^";p[D/:bXY$0JlTs1#shF1,K#h)CQG*.%'6:Jg>nXE\<]B-^T:lJtWL; -^'@Jp9A_26=i$1mhpYZ#Uo6,8bL8o=TDT5n%m]o?)$3%,s%*1ir;Zs/H%gs6'ECruV=hqE[IJ\Qh;.!kA:5!!>;AW;~> -endstream -endobj -268 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;SV50b-H&(^A>j^JfM-B`#9<``aWK8=1@sUOfX2\fc:Io:D81''V!=j!*.7hR!]M -=t$5M3,_>*AtnlN* -endstream -endobj -269 0 obj -<< -/Length 120 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY_M"Ca_k"[`BG'LT#i/g(UT5g!!N:dN\580mA=3I,Z0LB@^joKC!c;h23+ -+d]p@Y -endstream -endobj -270 0 obj -<< -/Length 225 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSU0abc_&-^Di.kFAX,@iF"adNbH#XVL0$UH9RTU$@Nf#F3D:"C9%/k*i@@C$3C -GVf9n`FLtU=KkJ/Y48IL!pPqjd`5gkELcMXS=qbNmkLA"]]KR\Ek=SCAqRSYr<-_h -7+AMse]b<0Ha>(s(N:t:Al_eW,h4,.G,FKX.),FBVtM=TH?8924e0Y>7goHso;'i] -b5(4K'p0%O*(7"dY_1g5A@9:2~> -endstream -endobj -271 0 obj -<< -/Length 376 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$e0i#VO&-^EL/g>/m$Qs^J!03&(Lh`ad&h]9=iW)58!J5WW;Rl?2\;I$q^4rBs -Bl0\$P-ppM0a38Mg%g`b@RcYcP9Di7O&/c578#\K%Kk?Y -m#ULn[+P->p4mM';QM3le/%!T[6ld](CqpaBAm\P<]$,Ohk#gT!1_c*VG\6t*jCQI -kgkWO/JnVLT1L5eJo5=cig2V>jo"VO\.L1\JO@m"'H.F9rj0Q$fM8m'Mn<[^&`6Y? -^2I;4*4f(kTc02j0!As+&W2+@B.Q9KDfYfLIg5r`2`;W~> -endstream -endobj -272 0 obj -<< -/Length 148 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)\:bY^""9*LEeOV(D^cVVI):sW#_3L@q2P=n,F_:4W@ -hZG:IV=,,VXC0,Gn*-lL;H0+-jlrN/LB.hMIm@[m(_%/Y:M8#S[[-_R`-Om4%27oF -p#HJ@!Xo&kq2,I~> -endstream -endobj -273 0 obj -<< -/Length 300 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UU!Z"a>+&-1(B'S0urKA?Ai]K9QJ<$#]S?4i!Y+(/!D:pa4GTUl'[5Y->KH9^>1 -/M@J5Sbl21XhB=)gBf#=6Zo":/)[dkt4:CZR9o7pVX>P:?t]$b?P/?]t)iL(W2 -r3arngLLDa8Yss8>$C*G/_HTl;sN@$\\)opmHW9!k5bQdeZA0~> -endstream -endobj -274 0 obj -<< -/Length 370 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#IYtDr"&-1'?;B/Ao:WWHak&O_dFXsAA.0QdNJCDq5d5lJR>j3mF/GtJBIphZP -=>J1I-?+WgJ`MNUA7fJ_.WL$Y$;Zt4[_up7%g>'_\`VEG -OC*&;o$-P*(6I-,q"jRT#k]JV?`N?I@oXkaC@3$DhE0:9A1VLpEeZH?gc:.6%=&[P -,O3-/Mu#H;n[hGh[b#'VT!O1bn++)h#"]5;L^rJNPGfE/l03ie8'~> -endstream -endobj -275 0 obj -<< -/Length 323 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V015t]$['ZTYW(PT??&b7PNP8$(45ZKKG6!#*m?+Quu3o+r3.hu<6NJJBAG?KTE -IW'UBMG7LLb:kT25B0=KG_P6!]-T\.ZlrL[?g)ZU=n8<&mHKne2QZlSrp[6_efcJc):7+EnN:k0`b7/bd<` -N/%79aGm&ojGQf$Y%X3VB-CJ?;a\" -endstream -endobj -276 0 obj -<< -/Length 361 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH9_+oVJ&-h&=*1G*fI0A[9PYt_SSk,k.E\Pm>+$_tI;5<=9i-Y5K1`h%(I0>QM -2N0H(=]7j;^mFCA_t(.*iuEtM4C@#mJ`RN:$@%9T#%bJ!\TC\fO`-;-f[c/QE4(8p -Q>;S#n#rsG]Y;;X[uY1#YEATVL,,W-g=rWLW+ -endstream -endobj -277 0 obj -<< -/Length 196 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[ -endstream -endobj -278 0 obj -<< -/Length 262 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V0/3srhi&:i^K.0@uZ#al'6&n,8fL^L!j[.433Bq]2\_2IPPiXJe_#WqHa$A1FE -q_9WQr,Rf88ok=jApDPY!]&ASAl^q:EK]SPE/(BIFH824FKM/XXgSVe9>/0romVL= -M55e9-2l7'd3-NS&3)ue4VN,)R+OdL,T^8cl/BH8*X"k1-mnHAaX\qmZ$E@V6-R,$ -2UA$hHH,&h0!B=^T+Q".pN/]p7>80cLb.\4*RmP:8AldtN(F:U2=06_!)uZt -endstream -endobj -279 0 obj -<< -/Length 413 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V02^IlEu*5M*1'+7t&)^I)0D%Ef!WH'K@61?4&5ogs[SU9,%op#joI>sH)5eCS5 -q>'n6r?lfC,bImgj@dptN8t>dALs%AI#6N<9,$)NZs?tUniXeRq2MLt(-]kt@Gr7+ -@c@1B>/i,;n)``Qf.5$_,T+i0r04YjmFY1h,LMgUSlJ%g.YrK5pV\k^R^#2J80"=P -,.9nI-[(LfOlgQ$MYKh\//r%m#7ajRM*DYhU=_e.PKdcZ[;,s0_QpQ@#:^SD),!.j -+<.XH_HIT^Z#n2(7g9(7N64%IimtD3SAl]e['o4XTQg^Dkh-Bo5m+Q0Ml[p\A-oF' -IgU.?-T7Vn1N6&ST+l@X]_HfgZ$$7?^ZQ(TLM[rg`7 -endstream -endobj -280 0 obj -<< -/Length 381 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um(4&3^J&-cN4.3c=E&`O0`*n"riJejG=JHQ\m?n!Ni:cmL!\Pgci\V=1r5dk_G -AXK_C84$b^o8GMls6Z(B`!0;7Mesg7.=^N+LA-A(S'+c9,e1P#nQj8sB9?gh^;h"M -GE4[,j`1)=5!QbfH$LoJA0+"^(_!o>c%/"a^^@jiU&g$f""\X0NX1%rTnrbQJst_M -kZ);9mLcim0EW*LU`DM`"%3M*5)b0Ti*!E3U0%JH5WF9]%877PM+VML#ZY:E5uVH! -+mSU9B9Ygc.Qjo]LF:4E&K"&,B;'h6RoCXA(0L35#L?iN9KX$"M2+o3^`Q64'52\, -XjNM\-IDC^E)8G-LVR?jl!_e$HOc"Sli4aY^FT*nrttfJbecj~> -endstream -endobj -281 0 obj -<< -/Length 288 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um)]l&HV&--)^#,GK$#i#e55U=!Gb)]MV8F=n3BKLB.Pg&W14:7.baFJZOit;[1 -R.H*Z*4CRW@u3'uXjQS,]7MQc&uG-&hGq';\bl5W6Nb:Tg(K9%Sq>tkI`)SNk(8"I&P_W]12!r?;)BdtkW8QFCXt,seB[ -endstream -endobj -282 0 obj -<< -/Length 350 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V015u*,!$inZRquoYNisk2U'JMl/OaK$KKo)rpJ@]ird5>:E(dBXc#2WbCZ'\AB -%O%GmOEnsT*G?l0b,M,Q@k'"/:?]F--S0>e]98_[6=R7U4lW?Tm$>d6ZV(U5[^eSs -!jh$H?CkLGYW4(Cp26scm7J5s6H_J:r`&B03"Yq0"JK<08UQ_,@;Us[&KLC[Ak;[d -_Pa!u&&%K*LNH"ghCVhK*[Y-&V$m@X8-%D0:+R2jY`!b18dVqL>U2_ilD:1F\"K?2 -,(>T=IhmEIh$!2QZU\Z,I+Z/nZC=>:o&u$og33trf(W.)j -endstream -endobj -283 0 obj -<< -/Length 280 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V015>&jj&-hV,MhPkcKJs]LP?0#qJc,\J&@D!.C2'ATSTL0EV(>j;26u9E.8too -3I.dq)fU]1nM)^O9TaD9G&B7)$d6k^hC($&B61HU[H1sHmHKm:'r?t](R3e!N7-8T -RYC$e5MeV3W7nJ6I%?\N`97gM9ac%Ic"L__@u8dp1tJ6!BZiV85]`V8C@m9'N^.^F -9*"hE02=JPStgjp"aHgibuMi`=bI3P,c&nVOB,;71n$HNdNH>>ifJZ9)glD^$*p[1 -d'fYRqAoVHi`0^~> -endstream -endobj -284 0 obj -<< -/Length 392 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V01_+MU!(r5Zp*X91I"bbq?[*'ekJl%hlp)pl/%kp.m;"Q)Vik^Q"LJm>O."-[> -ejIOAf6j#gl!3UOPTFTtS#@8XmR9=Yf4-["`7]^].GgA7@U=rY ->3/\F?/SCeo;`P$793`pa+pQs;4ad&j-HqQ(mAb`%BH.7!:'b=55GDc'J(UMl"C8: -4'?k&n=RT7\h2o6cj"q1^Q;/t:&Kr!M=2$n!A8fHdipLT!.!pFO;R-Tm+Gle(\g_k -ODSAmC^o949l+W68ZW"mbD3 -endstream -endobj -285 0 obj -<< -/Length 337 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#I0hTAL'ZTYTMnj+KKZjTV)e!p5JQ9N#JlWpX/M.[=A%/:9>-RK7]As%H/k*kE -pYK[R"G\7P17A%GPI-:,\Dk%]e)R-aB1[sS2R>G]ilQe=q^5OU;W#HXUqYh5WRj)l -Z&uW2Nit*SO4%?&i&ua4oK/b^Gg']W"To/ZAkq\0:2DH),o:4<("6TkCt6H1cU;=1 -%+4R8d1?_@i*_@qLnt4IL2b?X75u"/'Ga-q#TSC?E.fHXs!#G>aMF"P,J>>8,J>=o -NdNjmEFe+NLOVn[?W%fZ*E%PfKH"KL;Ah6#6[%.ED)R(9&/d>&),0f;5V?9OQ1"_R -'ff".~> -endstream -endobj -286 0 obj -<< -/Length 202 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY^";:%0U<\Q7)0XFSH1#shF1,]5l)CS]+.[]E;Jg>nXE\<]B-^T:lK!?2[ -^'@Jp9A_26=TM'=qC7^DQ)8SI\g[LVs,Va2s8P;SKKP@#s8W-!%kpkA6@8bHs&"RW -+Q=OoE=bMX7O=Kh6oum7%O1[FLjrf!*ej@k-L=Tc&aR(6Af/>a-b*DE\H9;A!s%:VT3V~> -endstream -endobj -287 0 obj -<< -/Length 198 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY_m2-/']10-(e<\UjV8290Tj>&Uq$6(Bq)?M5W/4$RfL'l&5>Y^kqqV_e$ -AmG0R5Y3SVVZ:?5+Q_jg:f:8]b2ql^nGiMQ#6+Z&ru_pEs+,bEiX^XFLCl`^6p6M( -J0=j/L^.nY+e1Lt-P"%NAiS0J-eRA\5E,Am+@a$8)OOq9".\:ip#HJ@!Xo(aLRS5~> -endstream -endobj -288 0 obj -<< -/Length 278 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$b6#+85&-h'G/.+`f*^K;Y!]:8g6U:JjXjAU%?$QEmfnH0Yaqo'FAZoWF]ge%? -15h7/PE]N7hh1a^r"Ddai.PH(N[>_L]Er:Bj&h$:7j07T:blJX8SLZnMT7II*tj^. -0&B^%CsIh7ED+tH!uCrsAUs&gC/C@M`XS6"H*6*K2pE"RVKW!=PiVS!p1L@e[p13D -@EW,lN -endstream -endobj -289 0 obj -<< -/Length 275 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;TITZ#7E4&-h&\*fP!8H%Xl[5[kA27Y2hHTi*uF!Eqqs&8XnR@c4XZ]EiofNuk$# -cZ-hk=n;O/rE%2s6_31(A"dn6j0+1XjI2tac3oZ0RR;OQ[]l\QrPi)0]&jFL`TIm0 -;gmS4J)!<^Nq=mE7UFoEgOOlsch-4g#hjhaKI\[tQ~> -endstream -endobj -290 0 obj -<< -/Length 244 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`>4V!'/&-ZI#"j&S@J[p:46=XTd:EkLL+$aKs~> -endstream -endobj -291 0 obj -<< -/Length 319 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$e_+Fea&-h&,&&KHj%oA^?!Sn3fKjG0e"ns.hP7M&J'N>c/fe"7-qF^.sf>o3' -E=^6QJ$RgHEqgcFAEG98PV\p$RGl>JV\d!&oLc[1+gsDWc4+OHl'^Z;V2q,c9(,TN -FM>7sCl3RgJ,<>FEPmC9>m$ucje.j#S&eIfd9mo?4P7S!K6=9hh7]q:Jb<"Ih>5VF -Sg`npQdu\!BT'rFEY&ai"[sp,Fk-fd6tm0B[`i5nBFCW@)=e`YO$R?a`?Bfcp -endstream -endobj -292 0 obj -<< -/Length 239 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH60b/e3$jPX&(eD5WK\$S[mg2&^C*J:e:*)Y@*AffA&dGNCi?E4Cgb9oLQI3OE -?^pu\d!3ZeXl6hP=N^-ddZ#G$WL4B7(06aL:01%D$BH00$Fd=90\rp77^h?trHY)Q -bs:MI.ZId3BO$N(2*A7@O*1fUp7g$7\cd.#jLPnOl%U;)d^&c;!,Y[fR[rTM7l\q@3Kh2h>u~> -endstream -endobj -293 0 obj -<< -/Length 284 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;O4UT%['Ys6r6fBU<_0:I=[MER)_%3c&TT]UW7gDK!6*S>%UK8piOnK!jFXY8B -7$Q7NB(ug\8]]fZY_>Oc%GSq3Nu]#Q2QX`;pi[$.5&a2fVP]@E(%_R3B';9`NVF'd -hP?2j=MYi`S)"^/!A_Aa`*FU/n&W0`]%hB\9Z\Q*)jR5jd>dSFRF8]H='J37'amab -bHee&.UJt-?`)8Hg-j*5L;N/420J=odFI$MT8EA*0b]:;l/S3hAM7g:WF*`Q0TJS_ -Hq)W&0RtT7"ou!+YSR~> -endstream -endobj -294 0 obj -<< -/Length 304 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ta]0i!Be(^4;*>>4THEs2IM-m2VgOfY!B@A9"lcn-h+>-h`mL,Zs8"gFJ*1=%n; -K]^J=TAe$6W[l?%dYjjNWmiNMf0\>jX?"PuR`!;mDUOk1fsQu+CKX;RcTTBnO#L65 -eir<\a4FYO>6VYC0Q"r+mg7XX*l7[^kJX3*K;f/]N8;>NE^2>B, -endstream -endobj -295 0 obj -<< -/Length 289 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ta]0hTDM&B=6n'S0t=KZjTV#qjsb4;CO5B]T9Edc-,78LdB:'WZG;-XL3J;FnfG -eu['3Y?>K4mi'A$><_<(=LMl?d*\FYbBg6uHeREggcs2hVrj"69?e3SW7g!sF%8rS -bqIDHO47O@XG)I@JMQe[W$4m/Nqe9c*"t\M:5GXF8"YDE5KNJO_5Ub2A.EC]6'7-a -=,MK"J8lZM.,.#?0qcu7.%: -endstream -endobj -296 0 obj -<< -/Length 255 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;MZ"a>+&-h'K`PFD*#Wj]$S@aKA<"!=A[h*$1"!j1a&HaIKer\l`?V.K3f2-jG -9t/+$T37*%)*XpbTA_a'4Q)ZH24FglC4=S&9#eql^dH$4SX)t#o9("^eXVVmC*F6i -c-qJ+ -endstream -endobj -297 0 obj -<< -/Length 283 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFp4UT&&$jZ8;LI)c;?nS,F=ck`[quAea3dC^JFAR(^io'$c'JEAS!kNN9`h\\[ -FS5K%0t8pAL7lf;9anS`C36<+0K -endstream -endobj -298 0 obj -<< -/Length 321 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ta[0hTAL'F*J)"-1$+>:VKGckmF^XUM9F9/<1TtA3\"-8X$rj+8p[1GaW\]p*1)%_m[n1C;K8V7,o'L/ -U1/7dY"C1tC\@Dtr^cF1JeJ,r!?&/!H"9P.&X-lP3mgC9"9LJO%jRM0()mZhbb7;a -c5=//&/33JhC9=V8!$2dU;P#~> -endstream -endobj -299 0 obj -<< -/Length 219 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;L4UT%k&-ZH/$=TAC+`d\?T1Die;8FgeXZV,;=t!RpOM]Er#o6hliWWeX+uo#W -?9mAfCE>U/TYq6D$?_);Jm/B`ck8A'#d^51S#spVEW]d1>(W-r#t2LtTE8O;GWMF? -@&?J3eFfoqU;e.Yg+1h3,Be'!-ZDEGp%kc],1_&pqtIh$dKpg!4qr;r$K%q2;K\hV -NGA>n&BkQai&:Z(XI1j~> -endstream -endobj -300 0 obj -<< -/Length 341 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTt5>Hks(^9Cd'I;.HKUE2rOH?;[P#W/E9XO?jC:T$f4!P:EbInP,JnkeR!^fID -GWu+;Zb71@L/^@?I#Md7P)HaSieJ'BA" -mqscmYN/0d^:ZUcjAHF.MA-rT3Q">[)\$"pkH97-cl*:i*aI3l_.NofNN&!]i8E@7 -aOK -XBq>bbIM$/IpfVXOPPj]1Zt)>N(2Kup'ApX-p.>1G:hRS5h+&GF'$Q45R[2si[POa -ib&8~> -endstream -endobj -301 0 obj -<< -/Length 286 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$dYt>*a&-cP(MM#X:&U%JGmhRgWb!,?5AQo5bcYfnUd/Fj]0H%A]! -`NbVVEsG;./MmFn^l/]R4Q[U#,K$tP(IRY%/XeP$_rFsR$p;;P[%V6Nel)0sLoT_+ -Nq"r%r;!UFV<4A5P&2_S869!3Dk*&4n3IEWpNu_%^#-qur-8HiK,X`**S_(3-NtuE -/SZliJF_,fj=$;(]X021e>Z^H`a542TJpNgGLej0!T.W#%'E>P(ODYIY!!`o7D])C -3)cOW:8Wf$k&_RCeZZT)~> -endstream -endobj -302 0 obj -<< -/Length 250 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$c0b/e#&-Yl="j&S@J[p:4&P8ol:_P9O[.433Bq`omN#.,9lk(Wp#i?0?K][,, -Zb-6-Ym-Z\4Oe&@;4s7Pm]mgeJOZ=[Mi^#@^.FWKJ'qmZrf/N!ZbosljEl;=?<>6- -$CDNXjT(kK!LhMW<0.G]JN!hV(2J/ -(pUnR(9r/W,7\.&bs[qmO't>?X2/,ThHMUe560C!Eg6"m//OoT~> -endstream -endobj -303 0 obj -<< -/Length 311 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$dYtDr"&-h&#>:`I38(`4j9`d>c/oW;/6I:?c'L=am7Toe`*]Jr=#Rb9,\/j;ZnK:N[j?/];%$8LNYXC3t[ -F4TYbU/=0M#)2#H/Bsq0od:2nq'\a=nZP5[M6<#_6*-,*7hsCAQ!:heGHa11GK0s) -D*"o7')<0]ph2H>R].XO>Wq=aedGWnQq=b54ji-eklqIj~> -endstream -endobj -304 0 obj -<< -/Length 301 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UQdcbPj*?D!4I_9,na[`!"poGTV@DK.4IMM8qe:*&?b$JA<5Zs -KsdP@J0AW5nRqUbBX;bTGg<5ON3eJLKV)1hV.hPr_YK/RB;lB[V\`MN'L2.FVta;) -'JJmX32O-pj7g%UMMc0R[eN0C*u=8*KnV0-%Q."OjHW(XKH]Wd)tgR=BEU/ -endstream -endobj -305 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UKul.k@HR\!#R%b6:_U;ldE2QiV1hBS['Jab(^mK$L't*=(5-g5 -X)6]hk5SuO)2=O;35T3`8Vi--c4Ho9(h++d2Mk+?fUj9&&F;)G+]t->Jp]@E'4QsQ -bO#REJXru-XZSHhj@crZ923Sn<(ke=.G:1-Z2+tYp8g7DZ7;(sBS4mi\(hGhiA0ci -*'29aTsaY*b/,-oKfbBmkU6<:=:3]tDZIrkY)<~> -endstream -endobj -306 0 obj -<< -/Length 248 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T1K4UT%k&-_!W'S0t="QoiT/\\($S8on6E'@/@ktDWb -j$qJ%!dOu_g8G6?8eeeqanif@2]jD^I5i>*cdd;kCQTJG+3&\=aP"'XX"j\p<)H@a -n=gl`RA2)_B\IqWQNsIp.p]l]-r=q]bpY8L-E/QW4TL*ZGUE~> -endstream -endobj -307 0 obj -<< -/Length 233 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSW0abc_&-^F:KeQ5]i*8N+S$884&/Eted)lHhV1kZ:C1ZXp!Z#)ei!!#U#T5"M -HN8s_`I+'!,SpnN`\V2ng"oqU-^Ei~> -endstream -endobj -308 0 obj -<< -/Length 293 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ta[YtDr"&-h&S;?WlM8%[ckI*E`(T.sZ]Z -DMk[5Z\c[N^4H6,J(?6_j96W)CmSs2?nbJK>'?1eKE< -endstream -endobj -309 0 obj -<< -/Length 268 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$a4_hl"&-^u/'nU/n#bDFVP+i,F$iU1-#UEC[OJE<'`i`n5_POGHE8bR\kQ4Yk -`Nh/'RpaZl"7tB.IcR"LSeS7`l^Zi?>#SSG11sm32(^'ehEGXS;te@F7G19Wb%At@ -Q;Km:G-h(=HGMSX)ufo=gfJ!N[DH=29tpe$2(lT9_Q>b'78Bt93k*?Ul4O-;M!P3K -pkZa7OSn*s(E/qF_nnhVqS7'J]5n@Mi"aP!M_U=94!^s0%R#>c,Y/0IXQbFf"osS1S[A~> -endstream -endobj -310 0 obj -<< -/Length 314 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um'_+MU1&-h'G4Tso18'&>n-BY1=\PO$b6-thIJpJ,1oXlb=oU&^[o[)2\kmO;r -4Y6IlRl4)^&+dUGZhuU3\DR[#PWZ\>;8KF^I8X'bBTGcW>a@./o(#Q)Rdt*o.a%3k -7/?KFL5#JT^V>6SW4lgo+g:E5.*?rTT6OpacbX?>hHB6!]oXGpF?SBMV-o!WX)3Sc -e!`)@[HW"aBl%cuIUn"1@hg\2&0FaOCP1+E5j"8[prk&TNt2O4"7Ch&a!,%735DFU -`X[#hKKYF,R7)V31Xc?=S\<=! -endstream -endobj -311 0 obj -<< -/Length 286 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um&0i#VO&;B(F/lp\]oEfk-JjU7$Z -/M'*jK0V]nNV$$ -endstream -endobj -312 0 obj -<< -/Length 323 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U*a&-h&#$SG,ZDd_]2o^9eS,h51[n-VH3+$_C]'s0D<7EW9kM+(`\K.h3. -[TMsAp:LKE^1(aNk@][(1S4,>^>NJC7E1BK^!^FDY8L+P4?LmL:jdMbAOYiH:ZdmJ -bDam2m02[;<]BsUp@1Q$-"@%M9n7Y:Yu'9b7peS'I+bN<6%:c/^*i-H.tcM8gLG!a -"o'f5~> -endstream -endobj -313 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:c4fZ@a'LkSD!k4RDjDI5H&:_iQ5O_Q5d)lNjV1kY7(aXm4>>eA/NOXTiV[3+2 -G6c!(#/5-_-670O6gc6_O;%44Tfo4s).Qs,rC!/`]q\.od>HBb7=V$[ROkN6tfki4H44?%f.*(10i)75j@806";&:#4WGH^OZf;5Zd.La903o!iPoc -;(6t9]OkJ+YF3l+URAoTG9)pHlUubp1BAtD/FJK(nRtT#gD^#n$.(f4-%-!ud;Q)K~> -endstream -endobj -314 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U#s5n6.6'EtVr-+jo`lYe'9[RbK`@H@Jk=qL,*2I]^NRG_2p<`I,tW&7Y7"9,D_ -k$orB:#N<%-HJmL+?^GPa+b@m#%$K++gijbb+GD$R.(Lal?NrA~> -endstream -endobj -315 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -22 0 obj -<< -/Name /T6 -/Type /Font -/Subtype /Type3 -/Resources 315 0 R -/FontBBox [1 -25 135 84] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 12 -/LastChar 121 -/Encoding 316 0 R -/CharProcs 317 0 R -/Widths [75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 45 37 0 0 67 67 67 67 67 0 0 0 0 0 0 -0 0 0 0 0 102 96 97 103 88 85 106 0 50 0 0 -81 0 0 101 92 0 100 75 94 0 102 139 0 102 0 0 -0 0 0 0 0 65 0 60 75 61 0 67 75 37 0 0 -37 112 75 67 75 0 55 53 52 75 71 97 71 71 ] ->> -endobj -316 0 obj -<< -/Type /Encoding -/Differences [12/#230C 45/- /. 49/1 /2 /3 /4 /5 65/A /B /C /D /E /F /G 73/I 76/L 79/O /P 82/R /S /T 86/V /W 89/Y 97/a 99/c /d /e 103/g /h /i 108/l /m /n /o /p 114/r /s /t /u /v /w /x /y ] ->> -endobj -317 0 obj -<< -/#230C 318 0 R -/- 319 0 R -/. 320 0 R -/1 321 0 R -/2 322 0 R -/3 323 0 R -/4 324 0 R -/5 325 0 R -/A 326 0 R -/B 327 0 R -/C 328 0 R -/D 329 0 R -/E 330 0 R -/F 331 0 R -/G 332 0 R -/I 333 0 R -/L 334 0 R -/O 335 0 R -/P 336 0 R -/R 337 0 R -/S 338 0 R -/T 339 0 R -/V 340 0 R -/W 341 0 R -/Y 342 0 R -/a 343 0 R -/c 344 0 R -/d 345 0 R -/e 346 0 R -/g 347 0 R -/h 348 0 R -/i 349 0 R -/l 350 0 R -/m 351 0 R -/n 352 0 R -/o 353 0 R -/p 354 0 R -/r 355 0 R -/s 356 0 R -/t 357 0 R -/u 358 0 R -/v 359 0 R -/w 360 0 R -/x 361 0 R -/y 362 0 R ->> -endobj -318 0 obj -<< -/Length 264 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\YmS?%&-1'-*=B:N$/Q2+>H1Pu6<17BTT^IjNXgrlqJ#nmIR;'bU%'aPTp'R0 --P)BQjDlCeZRH%lEDm76:ZrMP'p[d(+Ob!DdO=&AGekXos$02M^Yon'a_jZnqWX=6 -\&TB8'c@L#NK"q9.:WM]6UAg2e=!i9">@f/]3Ei,]6@pF0JqCI@#KsmjIjAP_Cfl< -K+)5Wg6KnZLdFiPPYQkRCLH1\d(gHM3r6\,U26P'pcUA4=3G7K!NoAVj*Lc],OV$~> -endstream -endobj -319 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Vl*Cd`b&KP -*^D/,IA['X"X)pkX&)\nR`aaVU;-a3r1k!2Y+AmL>^uhTnuWK+~> -endstream -endobj -320 0 obj -<< -/Length 143 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[="mH)1]S.XjpHk*$7U^7Kj9?T5m%\Mcp5oR5o2p7kAiS.Ep8>]7Ci%R^nanZ -Z[s?e^8J/$8Ps1OQ`#bY&,uSNf`+0DrdTIgIfmT<#)7Ft";D*`!n@9N!nDA&H?'10 -! -endstream -endobj -321 0 obj -<< -/Length 173 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X="mH)1]S/cjpL5d$7U^7Kj5rI5m%\Mcp5oR5o2p7kAiS.Ep8?0R$_sZHN<0; -oUQ&R'b%YF4ae&;MFpgX4C&[#s8V!U*s@rs`#g]/"&(lYP7/T)",Qlk!$W:Wa9E3t -%jK^,2h9G>P4Tk9J.]T4Ll:>7p#HJ@!Xo),Al7.~> -endstream -endobj -322 0 obj -<< -/Length 380 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`A9hNAY&-1W;>njU/&X!N8gBY-t$9T'i6I:u&:mWdK>rP932ouZCbT_/!*uB>J -(>=fp1Xf$<0tH024'oJ^d_-(Oh2DRWpH4tk#C"bJkP<@BB@B#SnR/pi=u+q(iS"a< -S+#1ra4IA[D]E5fOIcM]M%u[1+oi2H"cjVt5`;J5eHU(^Yr/\Mjss,sUG++d9;@(G2E/%#0CY4Y=0_NBOKE,XF[bWNII"k5c;U)'I^]BHnCRPaK7^_bp4d/ -/OgGg\XoX@J?KIDXu<+)=]q#c6mX7cBDE3^4.Ab31B9'h7(<~> -endstream -endobj -323 0 obj -<< -/Length 385 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VGN4\j!N%#,dFLm02U81jo@3jaU?dK`p<(-Nk/5\+?(QFjm@2:V@W]8qRr`MjB4'8f]Vgi?c]:$! -11gLD^HTEi9Rl@?"*@'U5XB#cJ,sX:35eBYYS7uk$8)[*<1#Mu"")2.@_p/R!(Id' -Q9[[N*P`]8JtS%49*1^3/VOUBM(;%\J_EK@irY[3=>cQ[B-EUmau4Bsq_O5b1`*Z- -Q`]qFkKQ"7Ce\3 -endstream -endobj -324 0 obj -<< -/Length 285 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y",]o'Zl'EqkjKlEMD6LG6J-5$9dMRY1(6IcD -@9GZFb^?qe/>;[FDRbBh -endstream -endobj -325 0 obj -<< -/Length 360 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFqYtfs;&-cO`'q7n'XbCch"VeKMd;"kD'.HVfap1a9$]W`qS#pVG,FfbX\ac:0 -NR?`8.JR:0bP]8J[.-,anZ\%u=_pmoI8*Me/?t"BX;odC_sQlS=0,K%;GXQG.ED5)`KTN&OD\5[@*:T?$1h:+7 -+Xr!rl&b&EHBhB%QQ<3mEr\ss?+B~> -endstream -endobj -326 0 obj -<< -/Length 410 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSZ5>Hnd*5M(WL*g2P"F:(PN6fR5o$g&3':h793]^qrVVJ7Ckn,s31gp@]g&euZ -C]aDhOHaZV?!X[l*R*&=Z0P'V>*BKFe7N%?l/B9eB9g$@]TZhqb%K;TUqAXI89oTq -@:mqNYclCA2q$Nffa^$?+o5a+Si/'A4X#.")W=t_.,VF!fh"hiFtF9jUNnWXW!sf6 -("*5e&?4n24jk$&(/*t,AK2mo4%2g&&17:Nk@e95Oht'%F))%# -erIS72+6SM(CS -endstream -endobj -327 0 obj -<< -/Length 346 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_&Z#51J&-,Ns$qRks$+V-kJI5E&eT5+q/mTiEndVsu3`![@faYt9tf -.W1Z+K_9/ccb>TEc^8*P?`d0iiA$$>d&s"NDYBIW6XlPZ:WNp"&#_:?\+UKRq>M+- -Ll3;QI%NTq=JNGi0?0A0(JHb]N0o1pUN6ON;FFH_P$#>A(Ue'M**ZlClm2bn+LrV` -5H+!:&bm.Ec[Nh^3m#I,LPE-6:$ETAd"HB!pahhf=Ycm74g/6$:jN2$m0pX!E?L\! -8dUeO=4pe92T?0#s4P\;Fp3BR>10m&EAf--WI2a&3G5a8Y9gQlk_e$#-M#+^I5f>L -)`@l4_0H#2SeVV~> -endstream -endobj -328 0 obj -<< -/Length 450 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YQSYti1j&;FIj,*J9V6MpnHVB@1U//=8fJ-6Mr:`('80\a7.+!m!+0gh2cmUEeb -g+jH,$1e7GWEXfASTCFMJY]tp=VT/90$id!U75URVLV7.5rU,K6U+$:2hlo(U%l*A3oAVANj1[1j;b%kSjn4> -(2kOeY-9eJ@]'LR":h.`i+Ie\7R2,;:GcSn/_=VHNS(?Ug=,4q3u4[t#ZeA\'nmse -p)QqS>1%@ge079$RN#lj!OYisKUQ_F8f0&i:Eo6Hq(."#!"R8ImJ~> -endstream -endobj -329 0 obj -<< -/Length 339 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y".4`5m+'EDO9%$BDp,Od>4K%![K'2k8i@Aq[N3C&c_6_eaXUN$tiJWZYCnH6fo -99,qbWKo61J%u9'-du^%EG;TB"^`(UQgbHP2!pNrb9r.-WN!UlYUUdK@4!/NRNY4& -+)bg2`B0Ye56iUf.#(W7;ljWUrP6qobl+?'\f)`^c#E*P7-r]d\T?@e4BRMTFl/M1B/9/l%EF6@i2X?B'^dtX`*3nH<]hr/h.l6#tkrS7.\iI=sTSj&KF -B?JN5o/t#!O/:EK*/m8(@^Tf&b[R'^4O41BH`1Pe1Z[%Cf-26\_-@4d[NrbfJ5 -endstream -endobj -330 0 obj -<< -/Length 283 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSZ4UT%['EI'A6fBU[6JhsR/IL'#W![\ZFRfFskb.-U_2Hj5j9Qb^KZ*YL=2c"5 -OQ:`pq;WdE0Ys?[=VnCYf.$'Z5;7(t$[\EYgPKWF>K@2.Qe3BF4>g%KkOT:SY*e0V -J)!:D7V9j.=)#JPXVG?`LGU@bOs9-[-)i).L[+)%_COkJn>ai-rM]Uob^`cX,Y0el -I*.[>7W9<'#lUl&.*lmlZo8DHfm(=@VT -C$61'$ -endstream -endobj -331 0 obj -<< -/Length 233 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YjC]aDV1&-1WJ(%*O="gfj\P"hk^Ae9(T!S#L_WO%"0+/P%F0gk2n@^l\YLnb3c -Hq1^EW@;F]fHD!0*"P'"5n8#qPf4ogEG!]!"JpipLU)GPAX=Mk2fl?i?=S,g*^MGU -\/8)EaG=@t_MN#.__StB&1. -endstream -endobj -332 0 obj -<< -/Length 442 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Yi[9hp@,&;=nOEKXYL&a0TN&<-dm8k)Nc@A57_TIsM`F:Cb+UMp@%/-p+kcj"U3 -=j*Q8k_=CPjh3dg[$fb&e(g7C/^Ea)DVe'Tdq33M$bJFBl&:q+=0o#&qIn(-UpkGV -dd@!uV2+?]I_:0ER-NCO\jhKh5t9`3THAi6!*K,)fFb<7.h$gUNd1Uq#/Gu(j!lYc -Ph-T&3#6D)Q5>[;P%0)!gkD&Ad//\t=QkeNQEL?Q/gd/T: -q\]VLr8ccR2tPHNT"O5uSocclc94;aG,(XiFCrT@Kl>PaNA+q!53S&\4'$5pKIK7X -#`6\p"uUUf9pi6.R>n)fnmmrGlR@/:gf3FPHjp))"128~> -endstream -endobj -333 0 obj -<< -/Length 130 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z:bY^"!F[bf$R:?>6`ra.'-d[B.$/5=B;hJ=!$m_K\XYdmoYVD;N4ALCJ5TYK -:'&WIL0XSH^'Z/TV5[^k/d`"0@#p6Ds+>n$s8Pr:W0$daPKVL?/!(,m!$4]dPQ~> -endstream -endobj -334 0 obj -<< -/Length 197 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XW+<%q-&!Fg*`"UcQ/'LT#i/oq*u&-R#JoF)IV%=gie/shbLQ[ZGr\H/&2#>g:N -h^Q?D_2q=IdoW6=W&0d_dm\fg"PEbSs%a'`rsoAmar#ejAg/)90EsTFN.8>TIkV^( -i!b&_ir]MG!K;!u`b9lW(ncgP0ZFV?irG>6O+DkS!=InE@;rc'EWpIa"oq9Bp;-~> -endstream -endobj -335 0 obj -<< -/Length 415 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YQS]hZL"%"MW+36=f8+asH*UI06:WcWbZ#:,[]!030B"EXHRI?Zo^`t#!TM='G/ -kn%;KKDRP*M\Fh\Q3u?oKr+)mQ##)XI)g9f2[_+=BR=I,cAS#JgsqcV;n9aBhQ&?f -4l2:>]RHO"O0;WdDoqf45ilMs!'mg`BEUIaWqt5E7;u/F%Y?#8fEOE>H#[BJ-L>;' -TGJi"%+(r7%9A^-)`\'AS`%aH"1W*?/*2bD\4DGf] -r6(J5O`Sr0SMjrsNPK0`.V(pCLs71M4%g%i#p?RjAgUJ([>&Cp,S@uB3fVU9aC_41 -oE+Nb`[C[*!9YG3>Q~> -endstream -endobj -336 0 obj -<< -/Length 260 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XW/;D:p$!FcEM"UcQ/'LT#i/dhab&-R#JoF)IV%=gie/shbLQ[ZGrK`ROS#>g:N -h^Q?D_2q=IdoW6=W&0d_dm\fg!ri6"%qW#`=UYS%4IjCjs8NT@nUQ0.b5)?@#\O$R -@&Sjd%PZO&=W`0_@4ZjUlN`sQ#A>3<`JhY0a1t4kMh0#%r3g%F'Ucq#iCcQU4FjaL -+k4:-%nT7?cp`UI(tc`.N;m<;Gq]UCB4*F9,(g%,>2i[iY+AmL>^uhT(PNR.~> -endstream -endobj -337 0 obj -<< -/Length 371 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_&]hZI!&--*>)'[nr8+=1l,_f?7VFh";1*FEO"&MGk&Bm#k`PS*DiWV)LLgp:K -do?NnMMLDRXii_K[Ot3(EJ\d:1Fl1CNW1J*D>gM@ON65k#m3A/g/r9umn%KF^Kn -Qs68OjeTMMm$+iE4e9&F1>fj82#m<)e]4o*Z$Q+P$Y.F-RJK8K9$WjT`4U2a>`_mB -U)V\L6O`sX[psjLHgB@VLO[SKE>J"UnIKnT^JEK%=kQU9[Ba.MBeqd\Elc[GFD%T! -P?gI9R6:7NN]5P!Cnob7qCkTTiMM>7p`0@Z%rF3~> -endstream -endobj -338 0 obj -<< -/Length 437 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VGO0i#YP$q217N&47hOLY@%,@Ii`U]i#A+@3sIJSJ+hq@;BD)\o7jcHV< -pK+N+VQJ=br=[OL9mdVO4S995+qN^!O\a,#D^6";t+sg7_;,HGn#cc(pjX]#Ml90dIE2 -ir$\Ik["W1L&]LAR/bDd4(?t\[0QD^XnM('1-SL)K[3_daHo5qnth/c1jZdD%;;P\ -Al0?'*qMCp`JAll(:"FQ -endstream -endobj -339 0 obj -<< -/Length 217 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XW/;(tg#"_%iI"Ud\O'LT#i/dl/3hZ1SPeMC1O2#n92\Qhn$>l*Cd(<0VU*^D/, -IA['X"X)pkX&)\nR`aaVU2YV`#3ncigA_E:"sB-"5FD8!TtZ'u_YhG^h]NGJ:5=b..[HpZOt4TJ:lM`A,[U-aUDh)Zbr/[aCY@+0d0qh3T?Hg>es2S -PKVL?/!(,m!2_Muci~> -endstream -endobj -340 0 obj -<< -/Length 430 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSZ_+oV:(r5YS%[b7h(Ka"25T(e>[`_4=-?:e[-QbT:HI1jnGdBS+++YXA6N+WI -/_t$6O[K!R%>6r_Z!<-^.)f10[MuJSM3ih/oBdH60#a\%j`LT>0Kd,?IEh@2Z!Hu! -*gV&bJ%Q?scg(i+q=4.#lW_3`MR:qAVZ.Qh<9#8L4aV^YGL"QlE=X+\.s1^,$9Xd/ -K,\_8St%[,)7MS-GN@oAk,FYH35sa@N(_)@8jrY7Z$3R)Ik1X4BV@AbW2q2VoCD_,V*YhTgZ2n -`ndC@$>Ta`YjTSp1W75g]@iA7'(5HIjcM3.pP`Z,%uaL3O7kR3Ap5fPX]Z?] -)ujcCKWW\,h%#hQqL!`no)o"6!/PampA~> -endstream -endobj -341 0 obj -<< -/Length 587 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFt0lG`"'ZP,")?b$<&]>'aN[t<(-37f^`']&car6r?Qm"aVdtTJ%h*ackW.?Yo -q!gpdMq[Ak%tsG!&$YtumA@SJ(V8.()VqceqJ*'\2"F@!m?[N6?a[KDgf8c0dlI]`7gWGILc&X7Ua"$h*=Zrr`0A3q*"mC-'&,4@'EQ -!Go6h/;$Mj,u=mpZRjE2lYNHmrXE+c@9mI^f4>b91d[]Q,P2k0"@[pLbYYF.:'gG- -39#+&:_?C2S'WV$5(TbUW"X:3,6jM9W,,f@>m.a/?:(P0&C(?S%#eO7aae=B0H1TV -,Y_)^T\0?"!3k6'grMaI-,O4i+l!+V'(cS9V*_[#'Z/hn+ZmK4ENJL,Yq[_,.LHuU -!p0Jg!^gNIS7C3T:bU2K!-JbuKUWh`"r/)PncZ0*ZofL:9U_VHTLOU()!hTYJa.c) -)>"1n0['sE\3a="%Lf^L+^G$PL]g$f9?D-XTK304Z7OoM:aZ9N?2bKs"idbG(`p!h -h&-Kr9e\;hP@3o:T8!;hQr1j -endstream -endobj -342 0 obj -<< -/Length 359 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]^4&3^J&:e2Y/M'V[,K(CK4IRQ2dK1%1OJ(S5YU'Hd\+Ujp8')?@;FE85b]r,! -TqK8#`qkihq'@Och:gT&X6]+pCYp'*J8Q<28%)KY]r]+rI>;)=eVih':d'J%;!jil -D$*f -endstream -endobj -343 0 obj -<< -/Length 334 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSY0i#\A$ij*o*PUTcgjo5&crOnf7#:,Zr!;qr[";4opENY1_<1G(@L[#g? -a[a-u8D'UI3]*I+$=P].@Z+?/28NB6W00F-.,4jO?VWNk>5 -EV5(R:XQ6P)!9F9O\X+gLobtJ".nYti=i@3!@eB/71#NLi%KLQD&82~> -endstream -endobj -344 0 obj -<< -/Length 300 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X^80lFl_$q4lT#f%`V&22Bk!hub#dMAd:!mQr3ZlM6(BP4q9o20T4NueG1T5oPe -8Ce&u*^ip(eDI?<-#:'_&q]LpcNaqd/0$RR^A#_-Gl-Q=_pr(FkNWp6Y-tMEJkP\Z -hd8SigcUJZ6jptk6nLYl9@X00WWUd=JQ.1EeZM.`c$k]Somd5h%r,\P":0fo4:aPY3\YUE_K0cQiM,iIhR/5bOf -BjjKBpi!4&9l@:,Sn#&C5;g+6^B"=&V[mP~> -endstream -endobj -345 0 obj -<< -/Length 323 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YjD^J;[#&-hVWl4A&140msS!0X9p#ZIQ$&fHeR_ufua&g3S%8+WM:&Nj[(@a;]< -O:Xi387Z[grc=D(q..GJ=+!tfIEKftmn.o#3XceZ<*UH11+1?6")V5aDn'+NIOS3[ -Dmj:`;VkaMbOb$_[HHno2kl61!Pa0Rh_G%YN5u\rAdSMM4$aP -endstream -endobj -346 0 obj -<< -/Length 313 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W"]^J;[#&;Mq(;!F9.K'rjcF]EXn<2e:TQ!iSPJ<9j8/'4RJ;=Xu61ISeQcH-%f -JS"_bm`tjH]pF`FjN:-J9*k+Lq3Ai5_2Um,f,cqGO"YmZ\U'@Ajm%L5=,4C,nQaUW -H%5^9k5&+X7uE2Td0fJ57)/dFRcoqT;CcV9C',u_;YpNL:/d96%tnh6&iGIrLcmF0 -m+Bs%\-9"j!Yf!;O7E71.Yi"a((6#+=`X+5Rd^&-!0HL6L]~> -endstream -endobj -347 0 obj -<< -/Length 408 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.*_+MX"&;I+D:rjrs608?X?0QMEKYXTq%t^Cc$L6#kU?D0rngJd:*d]:sc6QOt -('MI\ksmLsbl84@2qVSpVrqj^4'[")ZI83QDc*+N"a4N/$1did9lC9m4C[45k*BMg -g"p)p8iOX.IXZ[XlJWY*?rHR#Y_9:qnr -endstream -endobj -348 0 obj -<< -/Length 235 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\YmS?5$jPXS%[A11&XjN_p5iV:%]Y+>#Whb]lKFo)>eq6BUYI)9lqiMiU[$d3 -Wu+D&I^18&8dVnr$(?fe-h)pig75N)*=3W2G&.\VCQ(1t-,p>)_Dkms8RSWdF?X"( -W+X%[aK>NW5k>!U%#j'E5WL[Zedtj^JV/f^^-g#^F1AIULQF$A6"EhpoMpZQ_=\29 -4X,+>hV`m6i/]8$^8A>+I0,pS>iU54=uY,^~> -endstream -endobj -349 0 obj -<< -/Length 171 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[="mH)"_(sd"Ubut'LT#i/gHIF!JkNkB;hJ=!$m_K\XYdmoYVE&bdm@/J5TYK -:'&WIL0XSH^'Z/TV5[^k/dhUtrr<#E;#gP+KDb`k%/aN2JUnghL8b3Q#O)?V-O1XL -s3JK2M>mVHrult3(`;>]0pepg=!/;e!"YC -endstream -endobj -350 0 obj -<< -/Length 133 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[="mH)"_(tO"Uego'LT#i/gC`HhZ1SPeMC1O2#n92\Qhn$>l*Cd7M]8**^D/, -IA['X"[anj:LAg=U=*!n:D\`b#Pe -endstream -endobj -351 0 obj -<< -/Length 293 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]]Yti1j&-h'N1)QQYr?BXjkFh8^r/;A_>[7SYjdD]HFl$fBk/NgT&+"!j -?S,O0Z<=cbO09@:mMqriT*(1,+dPu8ODK\,'mc!#@4Pg6V)H^;>n.`46q$\#Nrf!8 -@_XoWZ>=c;[FiXKU.^jf`#HKXaCS(^p:+d]irY$di$.T\!5e)b-.r6Z-PV?P,h-Is -'#H:Z0\'#G3sL#gkbJ+e!/$,dh>~> -endstream -endobj -352 0 obj -<< -/Length 229 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)\;\Oj!6`ra.1G^02!5pbF1K;^Y!#!Da>Y^kqqV_cnAmG0R5Ue=6 -VZ:?56SC4aK7/sb -B.s=\jp.!P-\fJ!lH'd^"W.5+-k21~> -endstream -endobj -353 0 obj -<< -/Length 286 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X^9YmS?%&;IB!&8p_WGV>_t@]EY+.[WNKaTkX4#=[hLdJ>8>KT7(kGY(F?`R-sA -L"q0gjM,M',FZt%V//h'dNQRcar):]87j[rVB"W-J&4N\Z6MBIAAo]cMTqYh9[oN6 -QeN,&K!]tl?^oG.A-i5rj3EUO/X2MS@A-mMW-Z%-P%?@@EgppCft0&#f_`R8_?i9iRlef\e&cD,^H/H8q_,l,ApV#TNo\TG] -`PD2hoaR5p\+gpCZ0rj`~> -endstream -endobj -354 0 obj -<< -/Length 310 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YQQ9b%1i&;@/PdSc2eK":ql0P2d(PF.&WPlkE.6!0VObu#HhQ562oFYgsjPur.k -bLCkreZ[tg=qji/h4[rD9 -endstream -endobj -355 0 obj -<< -/Length 217 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YjBYmS?%&-h&#*bS;2CGMjeSt;"p(&`kr -Ws0.:<"BEW5d;p%XQUqF>_['F63TP&<\6CKP*<((3W1@8a -endstream -endobj -356 0 obj -<< -/Length 313 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$#4\g_s&;Gs:OA)uN?nS+"`5UAGnu7H[-FBX?[ -BObVsm9iW/b(,n]=HoZZ'YBhF%:1ECPWDg6JogHV.tpcG4]GHAF!uMumk"H?dmeE8 -R+sgWX4(IB,?//)b^V62Y$P^E?7dK=?rMI/o0%R6!&+#jao~> -endstream -endobj -357 0 obj -<< -/Length 234 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR8-:Bp2We))kSU:G)kb.-EI5?;85!m7!V=>1O$;qZV -Dto&l+Rj$<-mhA-8Qo%JV7jelC4@(!P)pSThD)VEAd65?ZpM%Y'oHfj,Dj:=k^9u& -B]eC2_tj,rXi"I\o3iZ@hR(*SGRoD8$!Q8,d,F -endstream -endobj -358 0 obj -<< -/Length 237 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\0abc_&-^De(4ed@!ePIo>o29j,7%/_/Hi1g5t -YY[H4c1%+H9_/obI59=&P\;fSg1]9:[Bc%)+k+o'a]S!cFf8>O/ZP4,W7&YP1b(G^ -j5I@62^.lLEs3cmLq/$X;$o9!E'Ws6=55taImYRP26Jeh!PZD*I%b:B9.hD@L7o$$ -k0F'+%?pl.5kG%h&3j#WVZ^V%3aCZm!1of)=o~> -endstream -endobj -359 0 obj -<< -/Length 313 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#HYtDr"&-h'T.i,!RH\J]q!h*>Vb;DWE<%s$!eNJFd=t&*2m^O(V]h'7gjVB$" -bcW!>#WD:jr5JTXb0beJ\o:WNBN`]g_`+Yh=Y=Aj;K:qHPO\:&lNZqi<@-dO&n/M' -\0cuVF&*nHT.ejP&--8-!WI-A_ot3c0G?N3\PnRKRCJTKH4WB,XB1D8ng"][VUd+b -dAp%6ie'!$cVHGl~> -endstream -endobj -360 0 obj -<< -/Length 406 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSY_+MX"&-h&A4TpA`2q[0pZs2f>4U"jiHP#i1"03QRRX=\pkCKk.Ge>(ph?#NqQ^=[&"b6MeH -Er0ro.p]TEp?V>I9t,<^!)*p]AublWJHCtW.pP=_p>j?B*h-nb-dE;oEZk*mWmI:r -MtZ3dMeeAa83O7k;]V%[f:@./#Nuqroj7!N$Si`\PLuRdSrYf$ML+V,bd7GX']NSB -ac!Zr9lr?uKs!'g3X6u^Nm%,13&tUVEM&:+P2gS]"8^f27s;mlfu)4Aa,l9i:TkVn -OK@[*K/e\Y5?q$@kXhk=9q5AqN&&X6]/X4*aYq7'WH4ie-1f*>HZjUNR2SHM\,'8- -$ii9!X6o~> -endstream -endobj -361 0 obj -<< -/Length 347 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:e0i#\A%#/%K<:\H^,Su!>%oLt'4[>_D&kj8F(m3ZB0Xogg8*LUHG,Skdf,\7F -Ock)`jA4'Nh>#^mGd]R1lI*F)Gf7&PF"PGg7H;^0?=#j8hdQ3;gD6gpI_ok"FR'mI -\juenq>H?0SK@i()BbeRJ-MSY&5hM"/f7(ABeDu["&4eaAf-/PUY%@R>TS0g"9n`0 -&EK'+$sD:l.23u):XfWI0L6]nAq42r!MI2hUqKJsAi,>5+%GiUK^Hla'pRi888#.b -Q3pPDV5\*?`lX2jN5=#KT2tWX3Uk*H#9LG<+?kFS['&NNWg4c-/O?C68d0bFR/eA" -!dNV]1]@jaB]);k~> -endstream -endobj -362 0 obj -<< -/Length 387 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#HYti1j&-h&[)'X@rgb8*WR#p5d3/LqI8DXnd$*h6oj[_ -:2(sb90U>'r;XJT[7e-;VrsJm$[].ac`)4hGt+i->827'QLZANT3g'F;TY]Y1R6bD -Sk:p8=#O&MF_j$"V:^nT($KD;-+Qj1k_h:!Mn"KpZ=BlTh@!TK7k,.0>Ajb5>$QE$ -=;u8=*FMa%i#Mj`@hA]jePG8I-CW]/F#uOo2h+qaF-CaVB+dRls!_M/NKL2"/Q8A- -7DW(G-abo:-.ZdeF%0W-dRhM\?IseAWWQs"5\M*kTl)@QTY:X2"UrN!~> -endstream -endobj -363 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -13 0 obj -<< -/Name /T7 -/Type /Font -/Subtype /Type3 -/Resources 363 0 R -/FontBBox [-5 -23 90 68] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 11 -/LastChar 124 -/Encoding 364 0 R -/CharProcs 365 0 R -/Widths [53 51 51 76 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 45 0 0 0 71 25 35 35 0 -0 25 30 25 45 45 45 45 45 45 45 45 45 45 45 25 -25 0 0 0 0 0 68 64 66 69 62 59 71 68 33 47 -71 57 83 68 71 62 0 67 51 66 68 68 93 68 68 0 -25 45 25 0 0 0 45 51 40 51 40 28 45 51 26 28 -48 26 76 51 45 51 48 36 36 35 51 48 66 48 48 40 -45 91 ] ->> -endobj -364 0 obj -<< -/Type /Encoding -/Differences [11/#230B /#230C /#230D /#230E 34/" 38/& /' /#2328 /#2329 44/, /- /. /#232F /0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /: -/; 65/A /B /C /D /E /F /G /H /I /J -/K /L /M /N /O /P 82/R /S /T /U /V /W /X /Y 91/#235B /#235C /#235D 97/a /b /c /d /e /f /g /h /i /j -/k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z -/#237B /| ] ->> -endobj -365 0 obj -<< -/#230B 366 0 R -/#230C 367 0 R -/#230D 368 0 R -/#230E 369 0 R -/" 370 0 R -/& 371 0 R -/' 372 0 R -/#2328 373 0 R -/#2329 374 0 R -/, 375 0 R -/- 376 0 R -/. 377 0 R -/#232F 378 0 R -/0 379 0 R -/1 380 0 R -/2 381 0 R -/3 382 0 R -/4 383 0 R -/5 384 0 R -/6 385 0 R -/7 386 0 R -/8 387 0 R -/9 388 0 R -/: 389 0 R -/; 390 0 R -/A 391 0 R -/B 392 0 R -/C 393 0 R -/D 394 0 R -/E 395 0 R -/F 396 0 R -/G 397 0 R -/H 398 0 R -/I 399 0 R -/J 400 0 R -/K 401 0 R -/L 402 0 R -/M 403 0 R -/N 404 0 R -/O 405 0 R -/P 406 0 R -/R 407 0 R -/S 408 0 R -/T 409 0 R -/U 410 0 R -/V 411 0 R -/W 412 0 R -/X 413 0 R -/Y 414 0 R -/#235B 415 0 R -/#235C 416 0 R -/#235D 417 0 R -/a 418 0 R -/b 419 0 R -/c 420 0 R -/d 421 0 R -/e 422 0 R -/f 423 0 R -/g 424 0 R -/h 425 0 R -/i 426 0 R -/j 427 0 R -/k 428 0 R -/l 429 0 R -/m 430 0 R -/n 431 0 R -/o 432 0 R -/p 433 0 R -/q 434 0 R -/r 435 0 R -/s 436 0 R -/t 437 0 R -/u 438 0 R -/v 439 0 R -/w 440 0 R -/x 441 0 R -/y 442 0 R -/z 443 0 R -/#237B 444 0 R -/| 445 0 R ->> -endobj -366 0 obj -<< -/Length 237 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YRki;iEUP#:^nn@Pfl5M]Dp%M@'d9R/c -540%9E61V5M:'DB1)\9ln;6a'o.6\LBOm4h[QAM0F1RXLi,kqgS6"sD(f'C^>gCq' -f5gsr_BT*.:uW_MTc`*u*5TZ:GfF]ZZf)B?AC6VnQ)_;F=k1497b47H2kUD;Fpkl' -8DURYrp'H3SGq!!(W%k5~> -endstream -endobj -367 0 obj -<< -/Length 214 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q,K@1s"P1D>HV6`ra.'6>;R!5pbE1K;^Y!#!Da>Y^kqqV_c.k$7a(5Ue=6 -VZ:?56Sj5>Zn+J,B9G5PY7Crr<"Nr;VC7 -8c/NQ70i*D8fJo6Ig!k!-)'N^R/B_\g$kU7"AhXB/IYH56]2(-StWlLJb]9J,;RC& -lH'd^"W.4j`uSC~> -endstream -endobj -368 0 obj -<< -/Length 196 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q,K@1s"P1D>HV6`ra.'6>;R!5pbE1K;^Y!#!Da>Y^kqqV_c.k$7a(5Ue=6 -VZ:?56S/!(,m!+X_!1&~> -endstream -endobj -369 0 obj -<< -/Length 262 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z\q4UT%k&;;K6"K'9QS-s#9.]*XL"/ZX:nc3E=TkM-oH*%6''(>tV=lhXU%>_H9 -0$N>pk04=YVL;%SBV\qupLIi[b@sK -endstream -endobj -370 0 obj -<< -/Length 214 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U<%0b/e#'EtIc_\)U7!*C%r$0!qP=[Q*=L$"N8KKD=901I6ia]k)<$YVCd?JiFapX*95#T&kCqcLGUpsOsja93f -1$8`mXJp;LX:DTP++t)Q=AacHg"%SAO2)4YgD?b2S:M`?dfZ-)0piG6*pE+3$[6Ns -2d-p&U%\QG``eE~> -endstream -endobj -371 0 obj -<< -/Length 425 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:eYti1j&;F,/W8o76A$]MBdSqMu&=*YoA3ck&%fhOs+HY6GX^b]eLnV!akR4ni -LWIMcFoeuaOdn'bs186FS!JAr-i.MXX%HG@qS&1iZ5TJtda_;mN_A0dFn[:s[4H3< -23u2rY%09!3S1)Yl>-@hr;%Q%$Vf[j`M^roLPptMY9SCZkfkI&rQr-scMAQioM=2c -*nPaDm;\PAN(Q2g]0*KXLI=i`a;o(G[N&b2b`Kl4@=W:o#E_QUp#;#5(*8opedh&_ -Y7*9jXI,)%)b[gE"`@Gr)Z!uYX(]c+:=0o>-'Jd*_ -pP`sVD\Ul`'&,]]-THg>'E&Om4R.jETHU5NUsS6pj)CoXk.NW<\XZ'SpVmT5HdUN. -AHmp6KS'ci%3g(#bIRNl!3"8ES,~> -endstream -endobj -372 0 obj -<< -/Length 172 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W(n9_l.O=1t3I,Z0LFX2[ -Ep7oNV7?/g!h:!U*)BpqP+pB(/l*:;L]8=Y) -endstream -endobj -373 0 obj -<< -/Length 259 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wju0abc_&4Hs7@2b2g\UZ#0;+q^\$>q##jT3lZ6I@hbMNhGhhuRkPG_;506GBct -"@4Qka#:iZr&;M*47$ro.97LN-bONb8BPB44CR0:UAWaJ"e+ce.u3JFeAr,#;g-:6 -90St#HdX\S;W%a]W-jgQM@_f;";9Vn`'>.&Tb8o@22,tiL!Ynf0\kPVlh-/AkkmmA -CKg;6Y1]D#D4]O$'/jPN[Y,G#,8/U+8M)?Z+tLe[0)F]9.Es`PkqrHtJ**g~> -endstream -endobj -374 0 obj -<< -/Length 254 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wju0abc_&4K6#RN*Jl!DTj4d:sgSQpT0B"/r&MU3-g$P[5e>\V@p.UeDBucL*06 -G-[0G5.gFcoOA@kk,qU`@NGr''@ECNaQAF,l:!%aHbH1"V-q7lUgPMe"j(5t&I%Eh -O,)2MdKs^)#;/7Jgjog2JL3aZd:tdk4?Pmm!',#,>V-+uF(D3iqLq%Lr,5cTqhq)M -%/Md*9c"9%;nNR1D/SGu;afoXc7Un1.pKQkojnH8$C[j!Uuq_\&`Ar~> -endstream -endobj -375 0 obj -<< -/Length 167 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W -endstream -endobj -376 0 obj -<< -/Length 115 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[:bY^"<%p.10JZKZ10-q#j=93ldNDsS"[bGGPaS,>6?4]FP:)]G3)BpJ^5%:X -QbHCKZ[s?e^8J/$8Ps1OQ`#`C!s9bdic=_Q$KM6s!.PFh"9~> -endstream -endobj -377 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W -endstream -endobj -378 0 obj -<< -/Length 196 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)VnXE\<]B-^T:lK!>WK -^'@Jp9A_26=TM'=qC7^DQ)8SI\g[LVs8QFhOSE;r,^pjAOOsd@!Q>![^kmghiZOaN -$mM/!6p$34LD0S..hI@ra>*mLf38%*Lu5!"[ummbs3Co^>csZ'JR!^+!;ss57f~> -endstream -endobj -379 0 obj -<< -/Length 242 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_#0b/e#&-Ymi"j&S@J[p:`lQW#I5u"./dE2QiV1hBS9XkqrKHj;k&AH%[BM9gK -2Qta^B)W;Vm'G[8S-.$0k*)YmR7KMi%LnnqQC2^):m-u&Y_bnfA4.p#/Qn90[sYqR -cBPIKm2/)GMLhLAJK,0\j_.r4d!-s9a/Cad-,aALgA=\PD@b+(:VdoZ,Y\3]i:='E -4+;5&CmJ6kB/[ -endstream -endobj -380 0 obj -<< -/Length 157 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Vl*Cd7[@ -endstream -endobj -381 0 obj -<< -/Length 308 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH80hTAL(^8h0MhSq!,KsD#9u=oWJQ9N#JlWpX/M.[=PJq"S]i&Ao1?&H=2H,8k -h[>$<=Ni_JbkpQFVE><5-oLQl(#cm2-X0YWccbmT#cjKN4kcd8HjaP;))AbCrMl?Cf5(K/1EJ*(4eX*`Bihn -@t%n2O,WnQQlfGtUZ3`GoV*S -endstream -endobj -382 0 obj -<< -/Length 314 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ul=0i#YP$q4g:73jfP_Y=1o%EYK,["(OO,cE[&:f;h0HI?f8OgmsU#(pTdM"7f` -#8!Vs-e[DVp:/rLL0Hi%j*&=GbmuZp;q"<9_M6go=u=(o'C?"(m^VM[\e9k"h9@t3 -<"7HlIsHIsX0HHl&]hCo-]B7Y2EP?^(kh$EoO[HtiG,YXcdD -m&3s')90??%Tn\F?sY#MEh^)M@Vh"J\'iObEhHY5)?>nuj^J~> -endstream -endobj -383 0 obj -<< -/Length 229 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk_0abc_&-^G5c6Y4^cm28k%7CB/&@D!.C2'AT*BZX5A -endstream -endobj -384 0 obj -<< -/Length 294 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk`0i#VO&-^F?>c]bVNo7GJ36&t?V#V,\,)(mV!$t&XW&L\Rk"8)W>f5@4'$WnO -r%gP@84YQo:YMAern/_RFf)",?"c7I.bD^G<`2n?Bu`Q`oA"*#_m@Q+amQR8,eLII -AFnoJk)qS0I9FK_[9Rlg]RhNVWIul]TQ&n.9hN8=<^6;?#A,EKIoO6f[ -K?)mf`^QPCr.>78VNEr#%KOJbqRu~> -endstream -endobj -385 0 obj -<< -/Length 300 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`@5>K*M'F&NO%$f]/,NN,1dZBR@;?9&f"ABf.0I!n1,W;PZF)U%_ABYVXj,7UT -8>s_Xo!A;o\A$>#ep;YFoj!taT1`<[eM,']V=e!51U;Cn74Z?@[52FDacS1/.=#Jg^(M#B0#:J*HkA --fia$R+7;9/9_llL'>da9,Th-U^:rZT-&mb00H!-O7"D>0dTB/4i&ES_Z\<*3dq9[ -iQrI(EP[AC,Hrin/;94+\SgM+^'4QlE7GO~> -endstream -endobj -386 0 obj -<< -/Length 253 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSV^C#R#'ErHL6+Di6i-g/So+,_j($#qUe,rZ[6W%njK;5Uq3:n+]0AtIoh7b*_ -\-.5tDn(RDpcP0cp3AW0cfJQY>DE^LL?`Gni3>Le<2S=7.8IrfZQ#&b -endstream -endobj -387 0 obj -<< -/Length 333 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UT50i#Y@&4L5s,*IZ@,M3f_Ce.*4B`X&)85O:+TVMQRm6rJt>1oC4)l-/9q=D9# -+gu[EGl7U>RJ+M#D/2qnD7d5^D4bS9Wg\s//0!?8ea*m/05At:lG5BLWc$Hee`Q;J -euJ"RmJGYYZg+_F@K@U-#DUn33gE5?"/<[SZU_fa"dAu_L"c_$0ucG&rYlji%"]"Y -#,.^I[%d.;IYV'r7[+R=,^Hm*@uPHLi]'4t/k]S""d7`F&5<^^;a'q)/l7q5D%28] -k*&+f:oK4R;],NZ*J8^:XG@6t&=<#4D]'%S+)[a>3>JgC+jJ?8o$u64YO9s8!0"SSAc~> -endstream -endobj -388 0 obj -<< -/Length 301 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH70i#Y@&-^EK.4e1L8'"p8Z6:BnV$/,B+@/GS`)9L;>&$.Y@Qo[[6-9m=5%Esa -+T]iolkt0JgIp3j.q][HDPX=E=48*GSK@()OnQH=Re$AKgRbE8Bf`83[7&R=r^pq* -qE$_(hd<=s( -endstream -endobj -389 0 obj -<< -/Length 130 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Wg:N -h^Q?D_2q=IdoW6=W&0d_dm`6Ss+^B)H3S^%"L0'J-OsP5alVg0(!$Oq!;:8"HN~> -endstream -endobj -390 0 obj -<< -/Length 183 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W -endstream -endobj -391 0 obj -<< -/Length 303 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V000hTA\&B=7&'S0uHg1;n08Q^CW+TtgL;[?QP!4B2d79d*hV,n"+lnotn+Ef2# -52YG+OHk*QpWJXBJ&X&dQ\BqERCI<`.X94@n8kbmij=f2gg?*q]W*r<&6Egoj$.Ol -]"8Y@<4DG0H$e]=8c\JhVlO[hd^D_a[tu]U_;do'AJDd:FEg#*m6RVaf[c?QBM-Gg -g=5[,?"04rNt',BK*IB)1jAG(n5*VbX4sM>SQ]e]VVo/FC8nb2K(j^;CjP8]B7?dN -:kPP$eCMY'oNt;qU;XfFr*R1@pn%Ki!0J\0\,~> -endstream -endobj -392 0 obj -<< -/Length 276 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WSY4V!&t'F4,j%O>uO#eUNnTU**UTI)F]ki;cod6XN`*0$_<"@`U4o?l-B-H*hL -oLH[r:"'9c39O'h0qI8LJNG:!mC7)[V[6+-Y0JuIEemJh'LY#(Jg`^^0nCb1j7DfP -6G>b%72#9L_@TPa^U6j:'"+=.',ok]SoU[,_BJB`_&o?llho`n[sOG"n2td'c-f4D -c,gWujR?[cF_>3]FP`)JDHn-bQC>h4q\M9Jbi7Kf$AR.H3a!s?r;`F7%VZ1X7'Oqp -#bM+tVQ;rU~> -endstream -endobj -393 0 obj -<< -/Length 349 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X^9YtDr"&;GD631)%ROElC5(NIn.:'FQ%>58/5H%k8.\\l;4=%]^d2(nY*8J`Q2 -GBPlr!F)&lfU:EBG5fT=?ErPP$"kd6:AI)M7rh@VEm<5WVim8(DF<`AP$<*iP"SAD -ZG&N_P`k$`T:`P&<1Gap.`)uU(lJl;N@>eglf/m;,o/?B$bYiR07_':NMO^kMLjVn -Qc&!_:a'kS*Mjg]6U6.^Z1kF*XeMD+Lch+4eV*]6]%s""4^e6iPB:JkH/!'DrGFQ` -iA1o9K.uqEYi$`Cnf$k?;mR%7F^qM$a' -endstream -endobj -394 0 obj -<< -/Length 262 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_$0b/dh'F*J.#*QH7"Ps\;mW&h.R -;ne>?V>Ym(7tHAbZ9UFf@h'<:!o:)Q`AGVlYckq^8e$0/;?1(Y-/dm.JN7\__;"X3 -!kh!6T@b"@ACY("9[Ar;'>%(BVMi*A%FT'WpQ5o^hIkj8@W,%3?FNdFjfM,IgEmkR -qBnf4s6KS)pS7Vk0Gfmml]Nqtb-rD^Y#Wi,l\Tq7pR$]K\t3?,@0`t:!5]dhUA~> -endstream -endobj -395 0 obj -<< -/Length 248 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X;D:p$#%CM("Z%BW'LT#i/lOPKhZ1SPeh^:P2#n92\Qhn$>l*CdVIj*0*^D/, -IA['X"[anj:LAg=U=*!n:DX0=0T\f$r\<(*s2Q8^^S1Z,rs',#"$`1LK0oNh;#ddu -rHP:$+R1[fl9>o((kl^Z:s<>4&"$g6^d:?K?n,U]:^qc17fC+lI>#*K+8$134[u+T -UJT2`'K[QC+k.S>o`IND@#%,M4!Zl^;(4,!:Tcr8^]6D)3U6~> -endstream -endobj -396 0 obj -<< -/Length 215 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+0<%q-&#%CLE"Z%BW'LT#i/lP+[hZ1SPeh^:P2#n92\Qhn$>l*CdVM8@P*^D/, -IA['X"X(k7=.uFg1mQ857=bIJl;=O1%/0`$0\$,@W;dCF+R4M@R/-fVI\9MeYYkGi -;#fX>W8lO0s-QbI$H3LPr^!J)@#BL9$O)fJWJ'P(1CU=4=K2>mT`-[eK.(,4n7,:" -Y+AmL>^uhT]Ji -endstream -endobj -397 0 obj -<< -/Length 344 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X_$4\EXX'F4+6;_5RnNj.sRRRGA%#$(n+#[2KRh9nX;3e8lq<\P>HlidT0;M714 -1UASTfLhP/MDlXGj!*ZF$U-R\>Hg9RVjq)7B'_`t\N%hG_sd,`2AN&!Cbn\%&>F8f -GKDkAeLePL^2L!^@M*>+ndS'Ra<(%IeK&Ib.sFh3ADjCT5-Td,a=$?+=KjAG*,KB. -TW5od8P(aiP7GXHIZ'!lf6CS?-dG-W@.u17qnp*(9?Xk:iu^^F9XE73iKBQ=MJ\]K -BYQ7N5BAfaUSFFRERr`OT0pGDZ[^'^06W+2IDHL#].h9/~> -endstream -endobj -398 0 obj -<< -/Length 162 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+.:bY^"#%BA%"Z%BW'LT#i/i,j;hZ1SPeh^:P2#n92\Qhn$>l*CdAqjRe*^D/, -IA['X"X(k7=.uFg1mQ857=g#@_>XH;"$8RBO$WdFrr^LFs#8I-s8RY"#h)$\0jpa] -g0M(Z@I](&?Fa<(\H9;A!s$RQ=]>~> -endstream -endobj -399 0 obj -<< -/Length 130 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[<\R?(!b,XA"Z%BW'LT#i/gC`H+3ZUj1K;^Y!#!Da>Y^kqqV_cN(0p\W5Ue=6 -VZ:?56S -endstream -endobj -400 0 obj -<< -/Length 213 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z-G3srhi'SYM.'S5#KK\R%#j>"SpJZ.K@JlXKh/M.[=-fW,I(2bAb+D$GHj0c44 -"ZB_-IQ1rV0cM11Cf8PWhBd9>XH51!goqYDdY."=.SG**=[@?WM0-.oE^JJ4q0]d? -aj(a*;Sa15'`^H0?@PH9Tlu#;J)LJX-e.W/DWjGMcjt+d(ZC4Z7#/du7p!6"U!T#( -bq6'^4TM4hq]P~> -endstream -endobj -401 0 obj -<< -/Length 333 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UU!]h64.&-1WK;?WkRDifAJ:#[0R]>0th.0QcS&%**N'Wr"RE%dN(P<;1S'M$06 -+,`"o]&sFXZ!N-,aiid7jj)'=H$[G(MoDHl='474/M&gS ->?>7\hRUsnY8;#Y*<7qW+o1R83RJ*Qq2T,lOIDWKfr/DY%\t/jK:/`\VOhgn_c[I^ -3Li7$#;]@+4=K1)WDgi,*R*C6^&8K,c^Eqk^.Q?B?@=me`8(j]ek?CGY)L$CR@=ZY - -endstream -endobj -402 0 obj -<< -/Length 186 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z="mH)#%CLU"Z%BW'LT#i/e^l#hZ1SPeh^:P2#n92\Qhn$>l*Cd-C.p5*^D/, -IA['X"[anj:LAg=U=*!n:DX0="pXf$s8SilrtshsK0Vg&8>H16';U(BWW0K-&(mfc -.+A8'eGu9[^skS<0_L&1(]j@1%krU0K7O&oic=_Q$KM6s!'72h`r~> -endstream -endobj -403 0 obj -<< -/Length 319 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`Bbt>l=&-q\RKeCRq^-Ulb1l6oS:P#NR%YC;K!:!G.U?BI!%q8lpi1[=dkR4c, -4bOhg@m/m_ZS6lX_sUs!h2=:IA1P3dpmdp"I)@4q5.'_T/>CTiipd0g)$W`+@LR-c -$\QFs'h&sMGP&WGGfK*=!)f+_Ji=qW^/^l&rZo&JXA0c3P-\uAQG08kqUM:a7&9Qo -J`tIZ(f6VVn!pCgr,"saTk/VdUKXooSMF-HF/O9"R_('E0VU>[oi.dB&afPAJGc1L -f2k+.7q -endstream -endobj -404 0 obj -<< -/Length 306 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UU!0i#Y@&-^F;;HRu",K(CK,V67b+tXq"!XU=d!*`?OG&(>\+EF:uAWMp.7?l-: -PCcA75E.5mOo3+VYPaDV\G"n(^X`%qL77:?)0_FT^SppRICK+)Q7kGO[X@!\>OJ,$ -4V-qT5CT16[_;9#?N?33C0$6<,!-DK*AHZX!FSqii&_a)1@6`Oh%KYCfSFsL4ZdX; -g+aDA9KSFD%T`.P,R5iF6'?kc]HG>48m[V??u9_u^jXJQ -?\DkJkY`^o>cMIWW=6++'`qT$f_a5`gV3ahmC./?~> -endstream -endobj -405 0 obj -<< -/Length 321 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X^:4`5m;&;H5>imR,ukG:UeG4?Y$'Y@UMp?.$KUa&/@,LW -b(/D;o*0A_Dmq#.=Q0)_9nh^I^IgJ:.?I>8YhG=:F19I;fJSb?TID"5E>%?E[lp%= -2m7Hd?b`9p+;*:cp_]c.f[jEP][=g;4eZT/E_=7ZK.C,>,N;2,ptXI&QHgW\6mmM@+ooY26odlIEcEpiFH$P)0Oo3pc0 -I`9.48c286YKeU1e'rTd6$(GD1cN\,'aL-qF4T.F5(I,Fn*h.o^L<*\~> -endstream -endobj -406 0 obj -<< -/Length 222 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X;D:p$#%CLe"Z%BW'LT#i/lN>=!5pbG1K;^Y!#!Da>Y^kqqV_dY`a&?]5Ue=6 -VZ:?56S -endstream -endobj -407 0 obj -<< -/Length 315 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wka]l(\@&--+5%$>Gt,PYRF6:b\-85LQe+OR/!cn]bE_/-kP?R]2d,?8*DCltZD -[Gsp1ciL*engWao]`[o+gQ_$e5/K(\Z-T*01bSbHWnF8.Ie(3R%aY%;9nrK?HhjGHV7C#[@F)]b -+4ZeJkM:h^Zg+<4elkP4oW>Go?UKb$/IJ72Yc?U^^'=Z(2Jqj~> -endstream -endobj -408 0 obj -<< -/Length 330 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um'_+MX"&-h&q!Z'p]8'&>n[[";Q^oCcQJt@>ih4k3DcY;X%Fm4eup&te0H3bO( -\u^f\i+'hRR6P7X)3o;h9gqWR6*E;_A!)nVWhT&6Q_*^;L>*WqB.>Z1n"ka&p@3lX -9^;r[r:nuSI7l[AroOg0JK(i2@U_)\bAB1b*mGCD11QD54``H,k/F^OI&%E:o7u;K -7Q@Kb022usY;i4O'TgQOUms]m)8L7q0Y@D,-,IbBE6"!9A1@1`UN7bnei?T1'S[?H -RWG?5Z2`K)-ee5LqM`g7'$7L+Os+#Ri%>F6hDV& -endstream -endobj -409 0 obj -<< -/Length 198 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X;_V$%#%BA5"Z&N"'LT#i/lPCchZ1SPeh^:P2#n92\Qhn$>l*CdVNtK`*^D/, -IA['X"X)pkX&)\nR`aaVU2YV`%-fQ\rr3Gus+#4irr_up&(EQ9#LO(K)o;.Wqdq84 -%]986d/@AK+$j'O9`LG,7/r%hs$pc3\j7B(1[p%<+2HN=`2'qK4h1X)!!<5Vc@\7~> -endstream -endobj -410 0 obj -<< -/Length 249 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\]+)VB$jL*0'Tq0]KQmO=$_?K*"d$4q#q?,Z8dZ-ZA-5k!@Zdl\aqW5@4/%4g -RcT/s5Tj]#Z,/[hZi)Tan;6sA84 -c2DOO,(%NE[HuJ?K3Y)#JUSaC!$0;m?3aQc`js&G^'4QXKUkX~> -endstream -endobj -411 0 obj -<< -/Length 324 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V0.0i#V?'ZP,_*?r0C8+;_0+\c,k[R^QI1*FEO!EqsI,+-i=Yu`DakV\6DJTT'H -jl>#[MHsf80CgL6IriM+cM95.F3Q&pVjW,kJJ6GD)[RpXmd[dBf"uJ0ZsmgQ#.mDaGcG)+Vn`YSkhD/LL!=b6HX@*7"t$R22H0q$S[4/i -k$U9UH(ImnllqcTW+m^0. -endstream -endobj -412 0 obj -<< -/Length 416 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V02YtDr"&-h&%-Q[)4>.`T,cs3;9%LrQ^D8dc4s-%tN:pn(S$0F.h)VLnm($@kSX.g+-9#`/dI -4GT2V=aBEuAa7'n<%*`G(.`Nb2[4%r)EN8oB*(/lpqa/ri=gbIEbM4(B`JDZA+@`s]bX/Egb -`%H576QQu0MV'"3WfRGi;\:Veq<, -endstream -endobj -413 0 obj -<< -/Length 377 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UU!4&3^J&-h'L;FGOkNaQ2onlQLO=^"'7"VOcS!%99]:ab(Bm$/auM/-Y0(C6Q> -/&U!q'Vo\33>m,%J!paDR[R8uDOT9AG"pX[%tb&MqYV>GVIB3'fYbV -(#->n;lQM)2=GH*c`4Z64b32*H7_I8#V"bpdF*hL:9-aPBg3bf+!4@Vc[a/Eqh6TCcj -n+[)^SE0s)1Di.gCqPT4.J/-UZ_KN-CXmR.ma^b+*dN7I~> -endstream -endobj -414 0 obj -<< -/Length 313 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z-JYt>*a&-h&!?4kQ,#;DGZ#42J9>tSHQ@$0&3n-.,* -MW6&`m-T\':LGo`h_=ErXIG^7=HmmH?(.&?(NqUY\W6C#Re%NdnX11>B+N#,34m.e -Zc1acZ(.(Po=BBtipte7;'d7:DtK9O#`V:<.Bk<(%M]2e;2=ck5#;\@a<&kYB\Neu -G9\rXfo\h/kS8=Z3=,RQV5Oc9p!g2mil_F4a,!M%V!^AW[Z,P+5\`?1I(6'I",&R$ -6oCX/#OEcME#*C073hn.6p(AYM#V4GP!?cA-/\<.!3274('~> -endstream -endobj -415 0 obj -<< -/Length 121 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W -endstream -endobj -416 0 obj -<< -/Length 217 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)V -endstream -endobj -417 0 obj -<< -/Length 123 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)WgFRh^Q?D!D%M4.[1X4VK-sn-nm>Bi;^\^!Q&*bjm'r&a9 -endstream -endobj -418 0 obj -<< -/Length 260 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH7Z"h01&-cO#%#/!Y#eh*gCa\Mqft;2>L\?ET -T@YLjs!N6Hfc]r2,AL$Bf._I>q"m5Rb=q.#b+P#7AZ&+j"N+A;Pnh/i_G(P[>& -j&a?/-DqTtr+G`X:<+I:3_D'AhpCu_.h22f0Z`g8ch+9c.d^DcU[J3`UN+<_~> -endstream -endobj -419 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y"+3srhi&-h(2'S/RB#WijL\1uBO_$?>od)lHhV1kXd'FV+0UZ;\0;ojo]NF9P" -E/UpP@;#Sm=Q9BKltMEu3#^dO_\&VF/dF@n0^NSS$/5PU&dUB4`=OSr"MnV+71DPg -`:N6!LLc/#YoMrMde^?!T<+oPQTM0k0,7DY;4#BZm"m1K7-9HM(";GJ?>D"ueZeqU -XS%(IdAP[.Ss?@##1r!WD*l?i[@( -endstream -endobj -420 0 obj -<< -/Length 243 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk_0abcO'F*KQ6fBU[6Jhr'N$/?,I6UpBZP25tuBQh0l8 -q4-CF!,W8L'ggi5"ti<'5!k)Y6;Y%o-Pbo" -endstream -endobj -421 0 obj -<< -/Length 260 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y")3srhi&:i^K!$<=X7hIjbn0C"\aqS:)fo9CT -;R#tS).rXgM*;,'O;O!3%WEfS#[tY=+6*obU#[6#4[>0^\%sa"Do!snP1:6mGj,je -Vop.0)%r(;)%p:W`nIBjU!Qi7`thg5^!W%OWN`@FFAM!:qmretkc;Rf2eLcZ>P]as -nGT9X3H*S-E0%.WD-Y/Q[7d>bb+XF%h!#t%b#Oc[`L'X@?bnjY27s+n;lCk(~> -endstream -endobj -422 0 obj -<< -/Length 248 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH64UT%k&-^u_MSM&/_Ti3h:,nbXSl<#ZF@sqa -endstream -endobj -423 0 obj -<< -/Length 186 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY^"!b,XQ"Z$gG'LT#i/n5IM!5pbC1K;^Y!#!Da>Y^kqqV_e$7U5d25Ue=6 -VZ:?56S -endstream -endobj -424 0 obj -<< -/Length 326 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WRm4\ipL&;=ttYiI-$LcGIrLHlem!JqL]:iQK.6imM!=`L_59mhW@GpOu%2dWaU -Jqc8\CsBV<1JWGZ)V;O;Y&XEFlW\Sjg1SUBiAtg]GLT6J]R.#ddFPc@g%pjl>Hb3U -*4PI\]tV-Bf^[aJcNfQUU4AorPK.u5#Tb=\i)@2Q)(QD*bS;rg%p2aoi;Gmq -endstream -endobj -425 0 obj -<< -/Length 202 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q-&#%A6="Z'YB'LT#i/e^#`hZ1SPeh^:P2#n92\Qhn$>l*Cd->$NZ*^D/, -IA['X"[anj:LAg=U=*!n:D\_7bl<6E!JC:N-NAV -endstream -endobj -426 0 obj -<< -/Length 157 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W;_V$%#%Afe"Z%BW'LT#i/gCH%&-R$5oaDRW%=gie/shbLQ[ZGrOTCf_#>g:N -h^Q?D_2q=IdoW6=W&0d_dm`5fr;Rl*+S:4&JKQ.%.:U(Wk5PlEoRlu>+(gT?NR/ce -rsT>6&B*\qaVDl#(]\/@OI-~> -endstream -endobj -427 0 obj -<< -/Length 196 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY_m2-&!\Zr@#L1F%Sf6`ra.,86`SJV&TLK!'s%,tM(_:a%icbK5r@5?u%G -KM12).*8=S']?%mUca&?8r?5>\NF.3rr6p:s,RbFr\,H+6j+o,'PR:!^]6h')#jPJ -!/V*q3r$GjjI5p7L3c -endstream -endobj -428 0 obj -<< -/Length 259 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y"+YmS?5$inZ(%YZJ4KZam>>?f(K:_gW/d)f9a7gDKGG4W0mr^]8I@gBPj8XH0` -#PT@O,`kZ2'[kXjA4"b4NY,SOM/=5Q3$(LF$n[5jAf?:B,r#TSqh.8DR8\ci?IS:f -5G;DFEEdeJa$tH7k.^uY?^<>-9-r_p<5-;+kd*a`:!2$I>KP*e=GXcgJI'2ZYidX; -=f7BBNG%p/HfLMhLM]=.3ch`'fr@uU[GTHn5HGm;LgP\tMbB%6r!WR@1DRh~> -endstream -endobj -429 0 obj -<< -/Length 136 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)W;_V$%#%Aej"Z'YB'LT#i/gE_+hZ1SPeh^:P2#n92\Qhn$>l*Cd7YY1E*^D/, -IA['X"X(k7=.uFg1mQ857H#?[Ig-bd_>O_-.1! -endstream -endobj -430 0 obj -<< -/Length 235 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z-JYmS?5$jPW0-QZg_,;_'HD/&O[K;r;a5pma>*?>ibgWe,I&pt>L^p1ds0gu8^ -2\7U^pCe0q*DoG>PV&h)Bp7KsD'h:1@Qr"LONP&h@9I$E,+E!rP85M,@S@E73?8X. -/QNMl-7EJfB3K6q@_oa;+$L=-I<5jO>8%6_@ElOTJrWuRkgr,4%_\=IE?gP[FU.^" -[J(W/A`WmLeba(]dt#/aq?9VE>iKf)lcet^~> -endstream -endobj -431 0 obj -<< -/Length 194 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q-&#%A6="VUul'LT#i/e^#`hZ1SPeh^:P2#n92\Qhn$>l*Cd->$NZ*^D/, -IA['X"[anj:LAg=U=*!n:D\_7m/Iq&s(>a>_-dd!+9%?,P3mbos8QJns2Y-=&"EM^ -k5YJ6l9Q[grI79Zq&`![J4W3UP'M#/J&%(T?smn\?q)KR>WoV!\Gu^3++^$8~> -endstream -endobj -432 0 obj -<< -/Length 234 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;O0abc_&-^FG'S0t=KZjUAZXKs<;8FgeXZV,;=t&)OHF"S;7nC0ZaEOp*67Njt -`==]qf.K)DSEGWDcIVL -endstream -endobj -433 0 obj -<< -/Length 255 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFn4V!'/&-_!G/P)bt#gu=Y6n8e@Q51C@0sU4O*/,V6;NMoST1"=& -Z2':OP*m+:$o#VV8hc]B'];9n)5 -endstream -endobj -434 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFn4UT%k&-_!W/VGRs&Y'5B&s>L0KrAAd5q -endstream -endobj -435 0 obj -<< -/Length 174 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[;_V$%!b,YL"VUul'LT#i/n76khZ1SPdPFkL2#n92\Qhn$>l*Cd`eIap*^D/, -IA['X"X(k7=.uFg1mQ857H#?c%s\BQ#ODlcmEH(+Ef<68lkoc,eM7&5!TAMnr1Ed, -_uK?.)#sVk@qOHR5="fX(`;5!bLMe,O:*`BJJ3)j~> -endstream -endobj -436 0 obj -<< -/Length 257 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;SnC0l"Tk&-^Dm.MdbhN\GO*6sdt<>V4S76q+noHiQ6>MM.dk+bc!9X!m`e3eBs= -@_]s!(N3^\04sK^SS>3e?L(5H?MC&+\6;uods7e_PIJiWmZWtHQWpR->eX@[j`8%4 -cXl^N5Ms3tgq5&HE/N^e%%[#-j<(.e1!-%J,)T$Tj -endstream -endobj -437 0 obj -<< -/Length 191 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[ja]a>/shbLQ[ZGrOZAcB -#>g:Nh^Q?D_2q=IdoW6=W&0d_dm`6qj8].aikoH>)2ah*p`C(I!TG1dr.'@7ScO`K -605&$jU'oG+O'W,*fM';f`+2*VuH^K$D?DrJHi@YkAp7V$KM6s!6#PV)u~> -endstream -endobj -438 0 obj -<< -/Length 203 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q-&/shbLQ[ZGrM&DYo -#>g:Nh^Q?D!D%M4.[1X4VK-sn./[TSs.AgG"7uNs<:U:cs$)JBs"OKQa7paNArr,S -0M%ius22o"N$)[r)?0YSr;VnQrr7QLO+I:U@,DG>Ik\qGao;eBN;pFn4h1X)!!<5:8ZQY~> -endstream -endobj -439 0 obj -<< -/Length 240 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTr0b/e#&;B'h'I;.HKUiK!+D[\d$#1Z$XgFIfl8]s -2)\h3?Lb'&L,d%9KPHJ9'_`305fGj?W;%6"r%Yf.U_s;><&"MK^*#tu1Q3HtEDE;bIkrD'?sR7VTrAZXo=O7ri -endstream -endobj -440 0 obj -<< -/Length 316 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTtYt>-R&:i_mL^PZe8'(H*\ee-DJe0mVgd3tN+$_C]'a;5)@:?^M[!9R(`i:\R -1.B8DaVGpUo.fi<@gpT>#S&\Y3Qt:W:>lDmp];8.*u2r_F,mOabD"cD@ei))M^OY -fe,?ePMa@9OXg5W-AUSo#E`irK26[V8:&ggU -endstream -endobj -441 0 obj -<< -/Length 283 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$c5t]*M&-h&A>m+bJDd_`0g'7FB=+R9$>mS#f#>ga>'O@W0i3b%@V!eM-Qc6l" -RCIO(Ht4)VcO=I7Mq:%\b/q1VG^ed`V0-^Q5PB-I/,)iP*kC%HYi>(S>MQ?!0>qoj -hT5$+gEVcG6I[R9m^o6U#b[P*0Hmo?bQ4(uNkc8?JCORcbuW*W>MZhcos\h_8r#6t -3!FA``U[@7/`!rd3qK+k:g:eFAHoI$0\J,,,#X9MQJjLQ!dI5dLg%:7Dinh2apq:= -amI8Q,N&%K!542hAc~> -endstream -endobj -442 0 obj -<< -/Length 300 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTt]l(\@&-m/E)'[nR,PYTF)LTh1,[R] -/%3n#<\q7."pJdp95Epe3^&Mb8DUgPT0;A`QIL3KH$.u6L%EaaaQJU0p>AoUB;=hh -Y9t:;_72_4ET*@OJS -endstream -endobj -443 0 obj -<< -/Length 247 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;SnC3srhi'SYKX$fO!HJp..FX@Zr"-$/5^!,jVPdCr@]bA`DR4>_UP'U?ZH+=UW3m7VGU;lh\("C:I&m"rj"1!u -94NqH(kO^aP\>C6aSjntE'E33Wgt$@\0J^\gUQ\a8E:!2W)KF8~> -endstream -endobj -444 0 obj -<< -/Length 113 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)V,@^lj'*TUZKbQnW67sAo/>usLB;f3KUh?ZgSBL$Tae^'h<5k^&TjYg8 -mhF]]@*#25l)RWY<1:tkl(Yrn!rNUmbLMe,O:*`B-H$H8~> -endstream -endobj -445 0 obj -<< -/Length 112 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XW/<%n;=,@^mM+DIj;@`VQjASD,V<%uZT<%p)UZW'K@j`9qQdLQS_imRQt0]LN) -$?0$"jO3ep<@B:G:$(qf;.)WhHXo%$X!^sk(LR7%D\.F~> -endstream -endobj -446 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -14 0 obj -<< -/Name /T8 -/Type /Font -/Subtype /Type3 -/Resources 446 0 R -/FontBBox [0 -19 52 64] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 100 -/LastChar 121 -/Encoding 447 0 R -/CharProcs 448 0 R -/Widths [51 40 28 0 0 0 0 0 26 0 0 45 0 0 0 0 -35 0 0 0 0 48 ] ->> -endobj -447 0 obj -<< -/Type /Encoding -/Differences [100/d /e /f 108/l 111/o 116/t 121/y ] ->> -endobj -448 0 obj -<< -/d 449 0 R -/e 450 0 R -/f 451 0 R -/l 452 0 R -/o 453 0 R -/t 454 0 R -/y 455 0 R ->> -endobj -449 0 obj -<< -/Length 295 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V00YtDr"&-h&%.0@u"DfG:LGB#?/)nA&H'S9@LJ6E:0>4;<"q^?`C/Q420#7Mn^_^G\@^^$8"\;<.&,L9[r^baQZq-o<'PHQ;LOTAebdAh40"&@ -rr2b>UZ':GQRabZs%61eV0:\%FL1DFZsPWB#YbVH2+B6uT5M?$4rZ/i8EH[9hp4"O -;sL%QK5M11-g1aZ3_:n+P@1nB/hfl9J'3!+dd"\gFugT8!2n<^O_(nU0@@qL&Y(Z3 -q9&>-V%4E$"Hu8^\f9jirWW@N:a3.~> -endstream -endobj -450 0 obj -<< -/Length 249 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;O4UT%k&-_!G'Z)[e6KS?<`;HtM;8EruM:#L/ -^4eN4c:f3s^^3e(Ne_ZaksA7iI2pQnR>"NP%VNq)o(O-#jKGCJI^WO$8:J;3g\$#i -I*"Y8!M,YZeglh/B -=+[F45>rLXOD_7NY,=sGL\0n;^p.'TmU'1$K2t#"kWJpHoqDQ~> -endstream -endobj -451 0 obj -<< -/Length 238 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`@YmS?%&-h&`LVbWkK\d)M)\(e-W![,JFRfI^d6Z11#(3[<8pu>P*D4YR;61$@ -mXtPSjgagh;k03e!iH)1*6o\:af18`&]\lF[2!_qUdh2T8bZ!=>L`lqS'7Rjc"VR -cHN20(-\"II'W2[rb]6K@Q(H^Y`uAGf)T<96)4~> -endstream -endobj -452 0 obj -<< -/Length 189 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U -endstream -endobj -453 0 obj -<< -/Length 260 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V_T4V!'/&;;8A,h$]8joUDWYVkquOhsL:&"o4()QhD30t[f_TVN\mhk5g*mO$i: -baZ_e9i'(+F)TZcuaCA8AkbDF_ea -$<.%N*1(>j11t$!:Os-Q#e\M^p&H2:Dh4`\2?FE=Ts5g1*& -endstream -endobj -454 0 obj -<< -/Length 228 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um&4V!'/&-ZI#Kul1,5ir-Zr!:_fJss3'M,kZ_/M/e_'2RPSXLuOk07_joKQ4eE -K]7?tHd.IXoJ+<^JC+M["SVqe+AB<;0qMi8%X@$d*?e?([MU>6Q99`>eh[_"W"iXa -f)qs3;OPuU;kou%dal=IYoZc]%+C4]*NSIHDj@^rQ`7N$7EoU(UqI:Qg%Jlnd^^Zr -NC)Ki94mBbjlFZf==Dh;G6%Yr]Xe~> -endstream -endobj -455 0 obj -<< -/Length 316 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UoKmG/S;\"n"m*O1^;7;FtP+b7Gd?4ks -Rg7tTl$Y9G#kSdVdO2`U`&tVNT1mLS@"qUd8a)AnddN3%nKIEk2m5GZSl*.@k9te! -22^R8$^4DW]peDnh3P@C@AS(B,#?md\I,iIb]V!$-u]\blus?W;PEfo$^R1_Y-,!J -nYhb[kKn5N8&=>Z_F?cuqc%eQIV2]K>[cS$oS#'5U"?,uDU;\S'\G%dJ\)CEi")?o -$#?6m*<"s^+L'_kadT?qXKn+8gEP'pNu~> -endstream -endobj -456 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -15 0 obj -<< -/Name /T9 -/Type /Font -/Subtype /Type3 -/Resources 456 0 R -/FontBBox [2 -23 105 68] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 47 -/LastChar 117 -/Encoding 457 0 R -/CharProcs 458 0 R -/Widths [52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 79 74 0 0 0 66 82 0 40 0 0 0 99 0 -79 0 0 0 0 0 0 0 108 0 0 0 0 0 0 0 -0 0 51 58 46 58 48 32 52 58 29 0 0 29 88 58 -52 58 0 43 41 41 58 ] ->> -endobj -457 0 obj -<< -/Type /Encoding -/Differences [47/#232F 65/A /B 70/F /G 73/I 77/M 79/O 87/W 97/a /b /c /d /e /f /g /h /i 108/l /m /n -/o /p 114/r /s /t /u ] ->> -endobj -458 0 obj -<< -/#232F 459 0 R -/A 460 0 R -/B 461 0 R -/F 462 0 R -/G 463 0 R -/I 464 0 R -/M 465 0 R -/O 466 0 R -/W 467 0 R -/a 468 0 R -/b 469 0 R -/c 470 0 R -/d 471 0 R -/e 472 0 R -/f 473 0 R -/g 474 0 R -/h 475 0 R -/i 476 0 R -/l 477 0 R -/m 478 0 R -/n 479 0 R -/o 480 0 R -/p 481 0 R -/r 482 0 R -/s 483 0 R -/t 484 0 R -/u 485 0 R ->> -endobj -459 0 obj -<< -/Length 220 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z;D:p$;p[BW<\Q7.0XFSH1#shF1:@=C)CS]+.[]HnXE\<]B-^T:lK!?Vg -^'@Jp9A_26=TM'=qC7^DQ)8SI\g[I]K#]"n+Ga]a'9"&c)2SFX)L`^"k -*_:YY'D=->!LTej&dQ4jIi-R`Ba&s4&6>IWKWoV!\Gu^3Jd7?T~> -endstream -endobj -460 0 obj -<< -/Length 335 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;P5t]'L'S,-N>nl.m7qaNJD6[2T<>ZJ;6I:u&:mWdKB:TNRZ-H'aKIjG8M(e=? -L(Z&)ddi*Tp?-R&=j%TLY*HITo"BT-k\:tggpYgo]W1Mlp'J>3W`Rm(:d*egW-6L2 -Z@Qb8P!@k$%iF_G^m0V!S`)LVS61I[.Y/31)RLn+9VPY,.!!>tN(hHPq3\t\,IdMY -@^on,6s",X78T`G0/*g`c\Y+oL.5"6%Mq+EKV67^n;II$&s"1]^c[Xs*OU3EC\&oY -KNQ*WEE"ER`[Roi3fhag"XmOfiX,HL)+t(@SsH&5"!OR?C)&H:s-ilkn1_Wcr!i_V -endstream -endobj -461 0 obj -<< -/Length 281 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WkaYmu@>&-h&*#*N3e#i#f$5m`JqW/2NgFRfI^d6XN`4;s:?,;:kaC(")V&/Rp\ -(J<0R0:,'Di)6a<_0COo&8i&K]tf"Jk98+PrAn4-P9>l&7j,8:(PlnB_@VCUiT'pM -J6X'.o*8is[Ia/mT~> -endstream -endobj -462 0 obj -<< -/Length 210 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)X;_V$%#%BAU&5"\<.c`@m!:mrM`d3@H\ctDD3L@q2P=n,F_:4'0hZG:GV=,,V -X8o%YI2,A38lN8_>ne-kJFPjQRc4;H"-!9[2aHU<;#1]erXYbCd-(R.qE[8fq?%*' -_]GBJ@?6KK@/p6k1Aq2F++VcJ?lJ6TU1fp?K`23ik/6C),gp'c,8q7VnjLi0Y+AmL ->^uhTG`YXZ~> -endstream -endobj -463 0 obj -<< -/Length 355 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y!B92O!%DWd1,R$op<@T,R"VP*\!+&X7*rFZ -dj)OE%8f@4(+*&r2;r3K9p,s3CQU2`R:ZkZdTaBs/5lcYr!crs\H=TY(]4frn?Va, -E$qI+X8N(oK)Q:VZ&Bic/e1f#6Q11h,`%($Xio3>=BRJ>V)31="./o#^^ksHmC;EY -+#Uo2bM(^u -endstream -endobj -464 0 obj -<< -/Length 125 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)V:bY^"#%9:k1F%Sf6`ra.@h@Mt`&6+%<7!K&'$7[h:7b_eil#L,.5$%H -!+uI&/q$N&Kp&1Y<%^r_"U6*Ja%#tk_"ds0#UaQq%[X4D=!/;e!3U1jZN~> -endstream -endobj -465 0 obj -<< -/Length 320 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#JZ"h-@(^KOD"j8il[9L?]BTkuKhA!1G1dds35(G[T-jjj(o8gGME(RdLS7UZn_tu')3m#>pnXuT5f/Nog<*aj>camc*QGXLofJT]'(B>KB'7m -/1\cm]KC?h`QkV*.F;)kqf.Rr=/gWJ-\j~> -endstream -endobj -466 0 obj -<< -/Length 341 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y!B0i#YP$q21R0p8"h6@8e>!Al=,8..ta5_=jq!$qe^[n_sLUZ;\bVH@F)[\F:& -&LC@8DetKpnXn'c>Y(*c;DsjSYN2hH:Q?#^\?@3MQ\`JjIdjf.i^I>;iW12T[SOA1 -E`#'DmVDjJopqnC3_Hi@6u.FH-o5OnW53\R0Mi5rW(Ia(#Ft$Zac119)`3Li/TO89 -W$g)RfYF&IfA`*o-Ve%qZrldYr;c-e[WA)FBXJQhC&S+$T__HOgR)/MJ;&@Gh.^:9 -#G9X`L;Bc+0O>^nHA9hTa=Zb8Xm+BGlLpiV29eg"W#SKK/Xb$-~> -endstream -endobj -467 0 obj -<< -/Length 460 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wkb4\EXX'F4,1;FID(Q52gL!h,1hAII2,WaH0".hA;=Jr50!6F,ssZ8]l;;Pj_F -^97[e<&RjP@4R^aV,GK\K!-2,S1nH+JU[p6H8/AYJ:4MKHBDPIFF -/o5W^F#Mb-?+RsDq5sO=s*V9NPr$F)*BjNYB(d[ -_B7\BC'.WVr'>lgb]\eS6n%8Y)3>/.6ouS+i3j"^#i-KJA@2:9L%Ng=0j>IB9=lBu -TNP](i'Xh><$8k.%Z5Rj=b-f8(%+>5@I+jfW+Zq2S.=LCKt_"dK`Znsdd%dY,#ENo -b(.@L_N*"l6GXRK>"3;Y!G:R%#T&.I`CYm==%9)9"NQ0tEKjn_0mX!/%)FWJ%_AE" -1]b`K8qo9YnQN`S$hG;p--BU&Pc,9*,Fef]C.6=e-GX7cpB0c)DXZue!;!B8M#~> -endstream -endobj -468 0 obj -<< -/Length 284 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH7Yt>-R&-h&WS.HNjHNSIu5kj:+EM[V(\:pU+4b-^>-sH'T5$/jPO0I^]bDq'm -@Nh,uKB/ZK0\`6>D=fsSG,+H$4pQ@sG/m*Z)f72/1\1/fqbHF/[QCJW(eMDj\CMdF -GHW+WT.eXKW(jcWZNtKX!&0mVDj-Y.N8@Ca\?`WQj=L.D>5`Sc5I-GI5.acsSte"J -d'5Q@(HA9JWr*\3DkC/.`6r:#B5t203Ishj:,rS>"1LVC_-E3n -M+a>nG4I'=!rrWOSLa~> -endstream -endobj -469 0 obj -<< -/Length 263 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y",YmS?%&-h'V%#%p^#e_&$2UiGM6<17BTT]nZNXgrL[ZBRGoFW')"OB`ABL-SL -1ZTbe3W;[qLa%_UYK72%M.r`)O%.<)7*1PMJX/*[eiV)r$s-srL,1j,0O'K-(AXJ\ -LXR%1#r/Y'n=@/0rXfDU2(1ru:^A@4._lpL61Mo-I'/\Fn?jX>>WW9/ff#1S%]SL^ -RG]I*fb+^P0kE@&84>Oe0%9'K-&P[s*f:&C4Q$6(f4_QH'Y:30\"I/m%9/M-~> -endstream -endobj -470 0 obj -<< -/Length 250 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WRl0abco%#.\A4NR)Rcs/ijqMNYa5uk.ATT]UW7gDKGEC]@+8#m(#85@d --5=NmIY\"h47N_@W!6,*]k1(no$5h@=7SlN%Du2&4+%P=eHq.5~> -endstream -endobj -471 0 obj -<< -/Length 264 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y"*^C%h3&-hWf%#%p^#e_&$)J[5cnIO84@7's`V?8j-jVG7 -+Sf;`"MW%adZmM[>4S9W1YHJ+Ej"rbQ$uN7N^aQ"p;#^?e$\8*dlCU%NgCEqV-(h7 -FP1^i'p%INk+o2*o>(?\1(H9Y"YA%*PXGR$[YT%#@1?s<'m\Ct47\YOYc -endstream -endobj -472 0 obj -<< -/Length 262 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH70abc_&-^De(4g1?KZjTVY1^ZeL^L!j[.433Bq]4RnRaf(*[,*PORGT4=QgM2 -G!6=alr:ufb0YsP@OH1MHtI/93#7uU3\m-Qq\*U&-TeSfPEeV-A=L-n-XY'iE]\4u? -(>jk;ji>MXP@!]-]ts"`RV?Di]9\:XN@< -endstream -endobj -473 0 obj -<< -/Length 202 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR90b/e#&-^FS17;a8^g',@>TtI#C>p!U>'U+U[*WL2*fZq6"A5]mNl7+#cJlV" -B8ZM&.@E.iOiaVb9?qa)V=q1*75"1*3T%@?Ces%_[Q?XWXUf3hg%rBE+0R3lN;u -endstream -endobj -474 0 obj -<< -/Length 337 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W:d9hN>h&;;Vkf[($'#,X#G8S0a'7Ym!1Ag-B\"/nj/MXH/YBRQ+/6C(c-.::W8 -E$JIA?UOe)Wjc,Nc"fLKe\%llD>:XJDkYu2>P!-Xla''=i6uJooq?]mFrRGce3^RT -^LDTh*Ik_O^4cKSAYEOmP/o"(,<9dk650fUd8;V[))$lh90+LWGjKI8*5,2^kl8Uh -s3J$IC6kUjS`m3W,SHN%*-b%]AAW2VBH3Cp?gNa!W]$o:7]/:<)$a0=c?tnC.C1eh -J;#0W^d02%ZaY?(;DS8Dm@7uBa.t7p8&d;Gfi'iY0TgW06pTBq==C,a=1IM46hh]& -oT%S%~> -endstream -endobj -475 0 obj -<< -/Length 202 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+0:bY^"!Feu+"Z'YB'LT#i/lP+[hZ1SPd5+bK2#n92\Qhn$>l*CdVM8@P*^D/, -IA['X"X(k7=.uFg1mQ857H$JKIh6!19`9K -endstream -endobj -476 0 obj -<< -/Length 161 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-<%q-&!Fd9P"Z$gG'LT#i/gE_+hZ1SPd5+bK2#n92\Qhn$>l*Cd7YY1E*^D/, -IA['X"X(k7=.uFg1mQ857H#?cs$+a-Ik^m%_!q@)6Tl=h$3I&S$@p:g!J^U_W9=K( -s$*kV$k2LDLs+>4/!(,m!*')ST)~> -endstream -endobj -477 0 obj -<< -/Length 130 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-<%q-&!Fd90"Z'YB'LT#i/gDS`hZ1SPd5+bK2#n92\Qhn$>l*Cd7RgYZ*^D/, -IA['X"[anj:LAg=U=*!n:D\`b%0%2Ad1;!3Ig.E4?slGn>csZ'JR!^+!7[us/-~> -endstream -endobj -478 0 obj -<< -/Length 239 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;ZESYmS?%&-h&CMS^rjK\d)M)lSiM:_h1ski;iEUP#:^h0c@"-@#a7%&N-@:+h.) -OA!<[4#3<\<)P#RAlNJ*BKW';P04Q?WMW69fD^H2_dZ,*A$M14(A297o!gP_0=N1; -"Yjs51P:sEF<[Ld/V":l,t -endstream -endobj -479 0 obj -<< -/Length 196 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR40abc_'ElcS(&1L`Yl=d9]EQ4#k-:SK:&"_&\]l#dS0_IPJ>5Jt5Mr//O@QI@&'Ah?IgV9[JGB@#'5ctk!1]LS)Z~> -endstream -endobj -480 0 obj -<< -/Length 248 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wjt0b2&S$q4HELubC&W%S-bg/MO^<'VW0&kj8F(`>Rm2b312HA%;!.Y?-bKNO>; --i)M:r\&?8W1]P&]c`lp8`:D,a^R`NTOP'K`].;/2CK*399^A:Tr`H2;CKeUm^L4S -c&/$tM0!QfLtMf./-)mWBe.sPRQbn)jD0R^FhMG:$!sP3>;7`$':\i&2Yj47BZ5K! -Fn>S#`8Dnc$QReTE&E'^D;*"%>Tr,-^j2jE\2Lk;f)R%@Q`U~> -endstream -endobj -481 0 obj -<< -/Length 263 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XFp3sl$T$jPWsV@_1#KZs[B*HXQI"WuY$<<]iu;mD2V\`S!N6'olg3?\W7b"sF1.l>9(@S*V0JXjME@RclQmSB -B"_JHg1,[V&ci?,^^8)H"-=q`US8ScPf7E_1eK$kP*/?WaJ?VBlijM@EdeSuJZh<5 -[jLO6j`n57c(!H9@3Qp7Gp)150XSk7&7lXnicP?[>[NUX"-e7#rKP -endstream -endobj -482 0 obj -<< -/Length 189 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)V<\R>M@1sb=<(Jb).c`?C#P,]9@m*0_>lu43SBL$Tae^)^?u4,bmfA[4dWZ%; - -endstream -endobj -483 0 obj -<< -/Length 273 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;TIS0l@%I&-^Fc[Qp9nO2,!C=c=r/ZpKS5/W`Mg!t\'3:f;X=j]]r(Q5`Xu+?hTn -,*MV0q.oshHC7?d#;>%-i`nZ1ml:=fbuKF47;Q -lgVULFt"ii&Qb]>S;A4\7UMc-9"m?.JAVoi$om0`KEe`E!78ZW.F8Y9,SZsk4_^^g -eQ@;EMj8*M[]=Ei44:<-->b5%T;mCrSZL9dlV)j^,Md]d<`^.r-Cm%hp%.+nQJ_Kr -!//^PcN~> -endstream -endobj -484 0 obj -<< -/Length 197 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)V<%q-&;U@:#0K)c^[89CKj=94G2?F4(.%"0f)!Mn>ja]a>/shbLQ[ZGrYn<>: -#>g:Nh^Q?D_2q=IdoW6=W&0d_dm`6q&,ZADp]DF`J:nF5E7D5R@C&O?X#j%J#MY)q^SY+(/I]3fG0E5^B#4la^7`\H9;A!s&%ePGJ~> -endstream -endobj -485 0 obj -<< -/Length 203 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR:0abco$jPWs*"#h26?<10OZm^tWe,.#FE/,'UP#<4ld:$C*hd)!nm[KW34n5r -s.:TTa`GaQ.dS/<_H3Em3O-rj"m7\HcGns8Kr=:U:+4k"79OV4ZRpXPcc<(3^L9RX -2GkU(pe>CfL5(!mdT7K`AT5Xa>%8m>(]H4L"k7]q(~> -endstream -endobj -486 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -4 0 obj -<< -/Name /T10 -/Type /Font -/Subtype /Type3 -/Resources 486 0 R -/FontBBox [1 -25 71 75] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 12 -/LastChar 117 -/Encoding 487 0 R -/CharProcs 488 0 R -/Widths [54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 0 0 38 38 0 0 -0 33 0 0 49 0 49 0 49 0 49 0 0 49 0 0 -0 0 0 0 0 0 0 0 0 66 0 0 0 0 0 76 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0 0 0 0 0 0 54 0 0 43 30 0 54 28 0 0 -28 0 0 49 0 0 38 38 38 54 ] ->> -endobj -487 0 obj -<< -/Type /Encoding -/Differences [12/#230C 40/#2328 /#2329 45/- 48/0 50/2 52/4 54/6 57/9 69/E 75/K -98/b 101/e /f 104/h /i 108/l 111/o 114/r /s /t /u ] ->> -endobj -488 0 obj -<< -/#230C 489 0 R -/#2328 490 0 R -/#2329 491 0 R -/- 492 0 R -/0 493 0 R -/2 494 0 R -/4 495 0 R -/6 496 0 R -/9 497 0 R -/E 498 0 R -/K 499 0 R -/b 500 0 R -/e 501 0 R -/f 502 0 R -/h 503 0 R -/i 504 0 R -/l 505 0 R -/o 506 0 R -/r 507 0 R -/s 508 0 R -/t 509 0 R -/u 510 0 R ->> -endobj -489 0 obj -<< -/Length 225 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z-L0abc_&-^FG'S3e_joW,`OC5Xb<,`42.hA;=(5g\4UW&]*]Kkg7`:%LVdGE#s -H15GN[b*-B_hiJIG\D=BduMj]EYjp*b^C_;[T$GY929QV;d#58k9H!YgDM+,`sp]V -"*XpJ<^gKZ65]nc"1JgXi#8;SAUt2%$7L\`GpU1)SNZ`rSiZBdCSuQ.l0#5dh=Kbn -oKQ1fPmSG+5,F+4"[*%iF#tu#~> -endstream -endobj -490 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.(0abc_&4Hs7@2b2g\U_]$"RQ7f_%_K%*^D;/'Wm!iV"@9:7BU(g!^`=i_=-`& -'C:F^>O9/lIt'035'q_G.\?s'LH]W=g65G*X9\Uo4?]!W]q[8*GK!1:44@,K_o8!+ -EhbW:&#V!J'*`L8"f/pKE:=01"t3rnTuhh?+T^:^#9UcJBda&+4177[\Jagio+.1V -efQ_AIQ(>X._-s`M!/NOUissiX[QShO=I%;>t\o^b%VdAP.h"u?:b2l~> -endstream -endobj -491 0 obj -<< -/Length 263 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.(0b/e#&4Hs7PA)uXErfQK6aS((9r'JjaoeT=Kgohb$VJ]T.(k:f$XcIjpb'1/ -p*MFkbYMjMs-"<^m.!Vm/>kW'pu'SgUf:QR>t8U=[o(]2T-st:lrZjmX%"?HD!()I -#hOI;gl<($fEZ48!M2Od]R^,4,?0+ZXY`Za"*Yjk*^BqB1e#nlqCRug@5ZPhi>;+p -rh)@DHeJ -endstream -endobj -492 0 obj -<< -/Length 118 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[<\R?(<%t[U0JZ]`1/URsj=94G1'7k%.$uG#l2da*odgi@F1If'\b*cSN6Jg( -4VWF";h23++d]p@Y -endstream -endobj -493 0 obj -<< -/Length 257 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y"+5mi3/'ZP.3L%$uA_0:GKNBq;*=@"Qk>'5@1fqPE^$=1kniXoG,&AOe]<((S5 -i4!tcoB*5(*3eSALpc@nia#)FdK+P>)RCK>1)%)$8lAP+ecDb(N(>7q.>O_I-(du" -4f'q=/-**>"6J&:m^N9-$FDG.XS#D$NK6-'@l1on'"f\]l]m';-j8]B\^JS'q]"@D -f&-857P:1a+,dm_eGo)2/Id(@U6-_+M.8=6_+Zm'Z-,`1Ph,ID!"2Ki%0~> -endstream -endobj -494 0 obj -<< -/Length 337 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;UTu0hTAL'ZTZG[KsMm8'"q#PE=U3XTGPT.0Qb8J88lXZIT>,J.s'?Wrsu^gabcD -dRJ%N%.j;/8.Z3R%jpliGfesh-?cA(OkJ:-DGthDCp!SfgZ<-a:D2dg;)X-HG;`Yu -I&0=GDf3j;.WKHFpUfSn.5!1,$p\TKTJ@[ -endstream -endobj -495 0 obj -<< -/Length 264 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.h4c7*Q&A[hcF,A*E1l4[> -Ipiepqd=k,bj]3]J#'7@S+$YDr6R)mp>Yh8gbif\lY4CVf^*,gMR-?u-dK@RM)/I5 -e.X37kje/UQ#NaG?'eFeB9'He(]8.GK@\3Qb>4o]`r\'0@YtJ`0ZLn14cPCHZZ7TN -_^hUOi!Eo#NE(LkZ$a^V"l:uO'[N.SN&Fl%"` -endstream -endobj -496 0 obj -<< -/Length 328 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH85>&jZ'F+%CV?jhHNf\Gc9d2sO.^1Ci6I]E]`^i*W;r;#3Z1F^8ad>9h1<@&/%5Hu^aNp9U!EN(hWrfL7kkBGnmcEFUn -q -endstream -endobj -497 0 obj -<< -/Length 329 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH8:J/S[&-hVQ>njU/&Mb0L[M"J#$;Ui;&9R"7oIX>s\kX=g^ajQj2'VJjEEAk+ -F!a]$5=j_A8XT>E\Ke91n_O:.a)0!YNO^jJAj,N)]DY4eK^2jKl:lE?Xu=gu>a]>L -EQjEAqK%+qIpAKBKE2-.OTbe$^u08V`s,1f&T`fe-]?VGMog]ka'=Z(P@F%PF9%Uh -5sNG4pqP0/FMKhGHt&t7OM)>S!D/r.jc(PCQ6b]&i#3XoU^nuda@gtf'2$'1p?'eN$inean\"~> -endstream -endobj -498 0 obj -<< -/Length 254 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W#IbmK%f&-m0nK.p(U02QD^GS@/$%mcb4JEkd\W3\og-9[4X!dR]UVbK[Uc&[S3 -+2]YQ/q;JA'5^V7"C2O^(*(0\6uRNXHYhZ^'\i<]5mYI7*=n*_(kE:#VJ(Mm0(F># -llhmm;D"GM9>r9ilCoJs9WKaJC:pk`p*lDQQk,Qak#?Fn]r$r!)ma:UU9r\!^ZUf@ -H[FW.[p)>ps+W(8l.8W"-(. -endstream -endobj -499 0 obj -<< -/Length 371 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Um*Yti1j&-h'n1/th207[TJ!$m],KS`5'"i[fN$hk@'btm^oL25!@2c'BoEK]#8e.&H+>ZR6IgUt>_ -g:b@6H$aEb9WB'/o)/??eV+0WP"%AM@K]%d9gn%L6sDTcC6)Qf8V/TaVe?f70U@:Hk5!_tZ1, -'H@lb.Z@U=Ll!e,#SHU7klK!On?Tnmr#5Xiq97C~> -endstream -endobj -500 0 obj -<< -/Length 269 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y:40abc_&-^GE$GmqH#%fK\8MDl$"epSt"Kae:>$<=X0:os0"h[Bd@$r4_31G_] -Q54B.MZ)o0Ho;D[_ZBIY$p>SjE9"hWJk.d_N$RZbOpUFp,Up5R$mKY'&qQN'`or&E -cLH-=D'>Gm.@+On=]C]PoEWXaUi)J6YD"3-W6Nh6pag1*QmBj4=j2.b%Ha-ic5*h] -bHh)DH:bN(T2hLB^VBQ6Un5pM5A"dfB::m82!W)^QlOk&N2sZRQ[\T<^bg`kg]mh#HT_W~> -endstream -endobj -501 0 obj -<< -/Length 268 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;VH79o?eQ&-_!J$_]I"+a!gFTjtlcF`XXkr+r_YXS+n7-E)Big?`,ub72r8EI@1<&h&44^]Q6@3j\@#gc%pX,;BA -endstream -endobj -502 0 obj -<< -/Length 194 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Y")0a[tJ$jG"_>"IZcbQW*#2Me36.QE-TPm:,Y$UsBPU[:nm0AlkA^IbgS@'Re* -r4jZm3,kiA;k=.V7_4Ze>H2I!M*)9jiCm5q^Ln/LCH[f`[L8,VdtVemqh`aaJbKF8 -/qCBT!hWn2;6KGV4/Gsr,GQIc"2#'7KQC>Pd:;e*B^P9Tgb6$,[%m'ij -endstream -endobj -503 0 obj -<< -/Length 208 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z;(tg##%CL5"Z&f*'LT#i/e`:K+3ZUn1K;^Y!#!Da>Y^kqqV_c.k$7a(5Ue=6 -VZ:?56S -endstream -endobj -504 0 obj -<< -/Length 156 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY^"#%Aej"Z(4R'LT#i/gE_+hZ1SPeh^:P2#n92\Qhn$>l*Cd7YY1E*^D/, -IA['X"X(k7=.uFg1mQ857H'm:ru^SMoRRm2+ -endstream -endobj -505 0 obj -<< -/Length 136 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+-:bY^"#%Aej"Z&f*'LT#i/gE_+hZ1SPeh^:P2#n92\Qhn$>l*Cd7YY1E*^D/, -IA['X"X(k7=.uFg1mQ857H#?[Ig-bd_>O_-.1!<@-KO[]~> -endstream -endobj -506 0 obj -<< -/Length 258 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wju4UT%k&;:cq"K'9QS."QCB,.KL;8Eruilp&U^TLM6Oc-QJ*IBYa%,8P3a@3[D+d6n2?c3$=Khpi=(i -.%R\8Sr$!JH!h@Ki'U-+/enLjl<'XL1]nC^:nh*D:<+"%DGl"1:E2$lK%Ve/_tZHF -h.C81T6"3a-!]-:6[3dM#$kq*'1brCk1c5gYmo9M$bh+C(+F+a2#sTBgEZ~> -endstream -endobj -507 0 obj -<< -/Length 178 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+1:bY^"#%:F6',-'66`ra.@j<,R!5pbG1K;^Y!#!Da>Y^kqqV_e$7U5d25Ue=6 -VZ:?56Sp&WXD,4h1X)!!<4/]mr3~> -endstream -endobj -508 0 obj -<< -/Length 269 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;U$b0i#VO&-^Fc>c]bKlk+Cn!7#;37BR6&Zs0E3 -r:q*W.,ISnkDprqg!#VM78(&=(\SjA9iGR^Zhi+uH/sq1i`50D<_o$URb`)o/S+^*a/%O7ne.W$(>TAO?mW'!RQ4=Tetl -Ae5.jSfu]4RB<0!0G[o]I"afB'E8Td)jXRTo8XKCrhLLMWR"jP(21"/hR<9Z^B4HQnUJs~> -endstream -endobj -509 0 obj -<< -/Length 201 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T+1:bY^";U@:#0K)f_1K6n"j=94G2GaB>1F!&J4[Yk^O@[[YEq8;>%p(GCi6q?" -8oa)W"ZS"LEp7rI.[1X4VK-sn./a,@s$$_eLkZuqiIaDN#fVc&s8N2\+$faSJUsEo -MF$5Y_Ol\%NW1+#Dts>PN">hNrr5:_q>Uulqu?\XQiI)H_>ZYqK$2]./!(,m!<3GPkP~> -endstream -endobj -510 0 obj -<< -/Length 202 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR6YmnQ8%#*Yud^`ci0*%>;/kR!1JA`0n:b_rH;LkF#WE:[_YQ/boU3d_G'JKR4 --eZ7?Gg8;3Z/[$slq=Vl9kc*-X^"r$Xo'qI2XnrsJ5mZQL*h;mB].\m['4OBO'!s&=Hbg6~> -endstream -endobj -511 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -5 0 obj -<< -/Name /T11 -/Type /Font -/Subtype /Type3 -/Resources 511 0 R -/FontBBox [0 -29 81 101] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 101 -/LastChar 121 -/Encoding 512 0 R -/CharProcs 513 0 R -/Widths [62 43 0 0 0 0 0 39 0 0 0 0 0 0 0 55 -0 0 0 0 74 ] ->> -endobj -512 0 obj -<< -/Type /Encoding -/Differences [101/e /f 108/l 116/t -121/y ] ->> -endobj -513 0 obj -<< -/e 514 0 R -/f 515 0 R -/l 516 0 R -/t 517 0 R -/y 518 0 R ->> -endobj -514 0 obj -<< -/Length 333 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;WRn4\isM%*):XW8o6pW%S.!KsoF!,!A2c!tn9IJB,_2K"3mF,q`)5O>0+%j#BIA -M#fa6(\p_t5Q)JfE/u@Up?1);G\l:U\s@t1loX!p2On:On-"LIl?hl$W382bp#5TG -)lSN2I!p9eK]*Q#a;:)bWJZ+'Wg$W4N7fa3V(B0>LnBm-L!/Y:;P)jXg)DXY9KXM` -WI=rgX[+TX1!PV`#fRQcD_\FdlNBBL#%o\jZC`P1OfRQAJ&2+!DM@`9N%-8Ab6fbU -G*Y;3%$?Kr;MOC&FJO+EPYm=JM\2ojpTj(5'V/OpdBWKG,#W[sq*);,i!qpU!+DHjci~> -endstream -endobj -515 0 obj -<< -/Length 295 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YR<]kYG=&-1Vr*X&t5&Tf[ffV5NM6[k[L!q"JB82=djBkH\YoI,.kN?1bml"mmt -6_gmkd`:SgS]W<0W:[3<-<2HT.K$tRq14.hEij"Tq!NCC9nW7'<=8>a0SfJdF\A=g -5[U/81H%=8+bkqq#$Me8k2F9%K3%V;SsEC[F_t5ofc)n&Gkl#;BsSo!r_>EdoUEF2 -^/(gLjj -endstream -endobj -516 0 obj -<< -/Length 220 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;YjBYmS?5$jPXG6QqAK?sZ+ec??.M:_gW/d)cMh7gDIqn'Ut[I0<&qdWh*2$?m"g -+I@b&6HmH^rKd -Lj]`#>KE1;!.O/6m"CM!NZ\]g:&r-T:=o)re+RaN[kLAB&r$]2+\PXEM,406h'PPQ -ml:CC!Wom?\AunqYr-Kr~> -endstream -endobj -517 0 obj -<< -/Length 301 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V`A4g)XU$io4[%[F\G"FL4ud;,R6+n6f)iCP`:"2Gl5!.qa(%`"?;iYn)l5hHpR -qDh<++ -endstream -endobj -518 0 obj -<< -/Length 456 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;V03_+MU1&-h&E4V[UQ8'$9pXXU"<'W;B$+R$oPW#e*$'KcXMGj)t2?Rb!.Y7^", -e6.3ZN)mU(7IIJ:eG89Z+]&4q4Z0M]AhAGFo(@orUXo/sMLhJ-g(Q -H5R!T/V_EXO'110ki7_EgWPRsV-GN.R&l\AYs%ZU"PI9B[D>V[T/'1g9bn+V%5pfg -L>-gP%##>1`2-?U(nLC7^6g!enAJnRbRM&#+'.6l)G4moQ.S1q2ZROj>)<~> -endstream -endobj -519 0 obj -<< -/ProcSet [/PDF /ImageB ] ->> -endobj -6 0 obj -<< -/Name /T12 -/Type /Font -/Subtype /Type3 -/Resources 519 0 R -/FontBBox [1 -30 94 100] -/FontMatrix [1 0 0 -1 0 0] -/FirstChar 69 -/LastChar 119 -/Encoding 520 0 R -/CharProcs 521 0 R -/Widths [90 0 0 0 0 0 0 0 0 0 0 90 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 0 0 0 0 58 73 -58 0 66 73 35 0 0 0 0 73 0 0 0 51 52 51 -73 0 96 ] ->> -endobj -520 0 obj -<< -/Type /Encoding -/Differences [69/E 80/P 99/c /d -/e 103/g /h /i 110/n 114/r /s /t -/u 119/w ] ->> -endobj -521 0 obj -<< -/E 522 0 R -/P 523 0 R -/c 524 0 R -/d 525 0 R -/e 526 0 R -/g 527 0 R -/h 528 0 R -/i 529 0 R -/n 530 0 R -/r 531 0 R -/s 532 0 R -/t 533 0 R -/u 534 0 R -/w 535 0 R ->> -endobj -522 0 obj -<< -/Length 305 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X.k4UT%['EI'AKCG0JU$i':G-Q3?p]G[NFRfFskb.-U2b1&NE:=bL02T+fU!M6: -(PG[2"qnWqj -endstream -endobj -523 0 obj -<< -/Length 295 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]^4UT%['EI'U%`2FrKY@h->(llK6<,^lTT]UW7gDIq4^*op,BW9K)O%%Td[&l: -3#Ll>b:EDQHSkHC_b`JC']TH05+Ec):hI['SG5);7+e+S@6f#R#!c8L(!pJI7is-` -j7RFS!a?eHa,G)BA/WL",=a(t*R^&U3>!Eu.`o@9QV3Q@7nZ=Jgt!s69$<$(32WERAm>K[U&dYF=+=4>'*rX2"0<_32VMSc\tMNrrP~> -endstream -endobj -524 0 obj -<< -/Length 330 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;X^90l"Tk&4JOf#Y_!?VB=8a>Zr+`Nh]a -]>@>%2A54*gAQM5s4B>u>k>=3>P"rYc\fHYQE9Q!ErAtZSpW^[ZtQF`B3S9=OtA.! -DpMZcdD#2FBD4j^$Nn63+jXO;'qKVH(`_V?T>9Q=b7HG%QfUe61r'uKs.T`eMP-[b -@1oC\;cb?$re_lr$h_*)b>f+EED2GqG7f1Uq*0fQmT31$)q;$/d&S9GI28O.KPq(> -eAhgtRL@p-CKN3#2P^I/WU;clT9>[GLd'm6%S^cEe*b3nN>%6AULd)6qAfPh]PTe~> -endstream -endobj -525 0 obj -<< -/Length 361 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;ZETYtfs;&-1)1OPD-dG^gk-!t(O0_q5sNWJM<9BB9AsV1hCnKD9!s^BFReP(N$[ -ZO=]BU37:b?lhuYAnOo*R,SI6$tcDNdM2//Iam&>hkpHK@sEU -Q]fh>G'AZ\MCX('HF_YH3KcV`6QiErCuK#'1SC5QrEDN)d(hcZJdR%VmKHlam7,IJ -aW1`RQtRhN3ROn#.Z*!b+DKA-Q[ub>^/Vg?!1+"UD\mg@c%(+.r"XBChP9oVar^$g -)#sS0LN\Qsg.1p(Fe@WJl,Pk0)CDZa]cal`mSj9>G;f&>Q'49@E5c\s\ZaZPJ_/h1 -.OUkrU4=0A!7(++qP)?gqI9NE'@jS~> -endstream -endobj -526 0 obj -<< -/Length 335 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Wk!Yti1j&;D3JW,tZR+nl&"7#EKQ9*HRr+Mktu!+Q6FSaEP_AVh3PD\0>eQB/Y9 -6)A&-QMjs1J*uYfp&[;qn>o,Ai+g'**aZX*.!&s>3:AlJgZ&Lh,I@tp4(rOl"mu0S -&pn<4>C:eR5/VW!7&_@JHd`7Z=n8.7N?2gASnMje3g-m`:#J:]6;FkOASF_]_-"cM -NY9['HnBUUZW[sJ_@M#Fi9D#k&JXX9rYVLta!n[8kJ%9+mLR7nBP-:bOI\SA+?=Fn -OtU3ufJG6nd3K26IB&G%1&$*gC[^D#[Jk^+W3ll.=,bkc8-PH@1ncH:L[,Q?iG/EBQW\b~> -endstream -endobj -527 0 obj -<< -/Length 443 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;XF10i#Y@&4Ise&]p#n?s`ml;-&fmYdApK$7)Q0!,P4-Ji_SBL-'@>cuBI9+_?NZ -_p$cFLbqr49(LOhpA"ZU\ore.geh(]HHjcaW?67g;RCBjCKDOCS>>W0KAJG2FmJk9n)@NlcZFHtWA]ak.Cf/i@9ElAJ-hkcY!eR?fd6~> -endstream -endobj -528 0 obj -<< -/Length 265 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\]a=fq$io4AK9519i;sKaH7_H`&.AJf2[DJ?!:&d@kcC8WeOT-A*,d5AgR^?\ -io$\fL+b,%OEB2%aC!IB.0Qb!mSGA,+@=q&8SSSKN@NcSCKau-dI+- -kq^unktlXJ&#bh.PjkN`LP]=^ILZ7rfAO-1_oX3Bo%*1I!$^`\IKQ+9\A7tAa8s7F~> -endstream -endobj -529 0 obj -<< -/Length 177 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)[l#L,.5$%H -!+uI&/q$N&Kp&1Y<%^r_L&Zr.s8UF7s8P< -endstream -endobj -530 0 obj -<< -/Length 254 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]\YmS?5$jPXGK9519T`GBGD+ihe&.bdm*<_p\!-NB[FDa$EX,l6bFR3s'k,KHf -jQLRAqmd)cb;c5HgsK'K&KO6OT[o8.(Sahu_a)B'N,aIKT!Ut:/Q_/VgBE;p-QBX& -mjCep`7Ani0lmZ@6<=.p$@k'U##jQu:ToN468;Oq2dH(;;)V(XFD]]affJ2fT^tHL -UYfJ+^pU`k\S?oO%eI`ei3luY.RAO?b.[mA=XiJ@E0]>k?NU:;(S0L~> -endstream -endobj -531 0 obj -<< -/Length 227 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z-J0abc_&-^D]Mnh/rKUiKaZFGct+=asVW0IUD@O2jgYRibO`V(]?6HU"Y0q1K\ -_uj->#G5B%JYIt-c\R=(g+(R5H]#C36[HPd@(7A^0q:09L<41($:D.moBEPJ -1Eio;*H21j"9u(?il4J;!Uc]O8gg3LZVGIgAae%4ZIY6Jkq-CgH`idmN;;kH -endstream -endobj -532 0 obj -<< -/Length 354 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Ul=0i#Y@&4Hh%6uldTi4/h5@?VF3U]i#A+@3C?!(mS0e76G9_G,C\QROHr1Z!_b -BV+>]IqHDX>[iU14R]Mh_JP@[SU!$i+N5,*")]_Pd0*7KAiH,iO8WIT4-<4CHaq)@ -1t+U:]RRY_km!QlA`GZL#5Pk)OD -h<>NQ1*0Q`NhnEM;1mpS<\*IDCs-$6r6^e2:3X]TG=FXDOJF*`fCEJfgG$X9X^lVA -ZA'BF(>[b@k0a):!/4Sc1]~> -endstream -endobj -533 0 obj -<< -/Length 237 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;T)Z<%q-&<7!L%0JQG/YY[kFj=94G0a7t'-s0S$)!Z\5J4+E1Q]ie`I^jud0pfTZ -:l7p'.DT*&OA"K[=.uFg1mQ857H+:Hj8VDq(pY.eac9-q_]\t%O[$YB#;GrRM/30U -$m>*OR/F`""TK>n8>lh^S!9g+q1neG5C7MCO8]*.N;rq-K?,/-^qfpK!u0,T++WDQ -qhLi;kALQ[1aLT4_=:A%T?GcK/!(,m!1YL@h>~> -endstream -endobj -534 0 obj -<< -/Length 257 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;Z]]0abc_&-^EP'puucA1jN06rpAj;8EruI%D5S"Y7^7*Yu:r(c:/M; -f\"n/Dti^:o=#f6=$gU+@Kp:.=TuHLA+ZuUVC,e"cqKefL?!scKc%`,6mMEcfh_bD -PH!nmLG^G(5oB\OJ/]qX!_?2:G?";,9n?ebGFutCK7EfXWYoA(l;DZA]nQbs?as2P -DmY$NV)k;0=d1NgO#4$[r=ubV:m@k8132[R;3:[.B$_tJ-TpS4!9frYM?~> -endstream -endobj -535 0 obj -<< -/Length 462 -/Filter [/ASCII85Decode /FlateDecode] ->> -stream -8;W;RYti1j&-cN4)'X@J,M4XLBdg!Ga\i.r%S/9.UVb(PK%\gFCC*A7Q67noeu5ZPm`? -+o>cNk/89E_,stYm''[%3AG8Qo^63"a0rh]dAYkG94pW,+#X:@8#(5X:eMtt$9gq_ -lfa"=Ba5/f%NhEF'.qjk2D>G*LUY[NNOH'c't^n;HQ?tXd0@lFB/c\tX(]5??j11q -[o4m5"$4XeIiB)*>85jpCb/I^8n9nnoVCjR3)GIm;!~> -endstream -endobj -19 0 obj -<< -/Type /Font -/Subtype /Type1 -/Name /F1 -/BaseFont /Times-Roman ->> -endobj -1 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 3 0 R -/Contents 2 0 R ->> -endobj -10 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 12 0 R -/Contents 11 0 R ->> -endobj -16 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 18 0 R -/Contents 17 0 R ->> -endobj -23 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 25 0 R -/Contents 24 0 R ->> -endobj -26 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 28 0 R -/Contents 27 0 R ->> -endobj -29 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 31 0 R -/Contents 30 0 R ->> -endobj -32 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 34 0 R -/Contents 33 0 R ->> -endobj -35 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 37 0 R -/Contents 36 0 R ->> -endobj -38 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 40 0 R -/Contents 39 0 R ->> -endobj -41 0 obj -<< -/Type /Page -/Parent 8 0 R -/Resources 43 0 R -/Contents 42 0 R ->> -endobj -44 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 46 0 R -/Contents 45 0 R ->> -endobj -49 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 51 0 R -/Contents 50 0 R ->> -endobj -52 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 54 0 R -/Contents 53 0 R ->> -endobj -55 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 57 0 R -/Contents 56 0 R ->> -endobj -58 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 60 0 R -/Contents 59 0 R ->> -endobj -61 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 63 0 R -/Contents 62 0 R ->> -endobj -64 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 66 0 R -/Contents 65 0 R ->> -endobj -67 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 69 0 R -/Contents 68 0 R ->> -endobj -70 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 72 0 R -/Contents 71 0 R ->> -endobj -73 0 obj -<< -/Type /Page -/Parent 48 0 R -/Resources 75 0 R -/Contents 74 0 R ->> -endobj -76 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 78 0 R -/Contents 77 0 R ->> -endobj -80 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 82 0 R -/Contents 81 0 R ->> -endobj -83 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 85 0 R -/Contents 84 0 R ->> -endobj -86 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 88 0 R -/Contents 87 0 R ->> -endobj -89 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 91 0 R -/Contents 90 0 R ->> -endobj -92 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 94 0 R -/Contents 93 0 R ->> -endobj -95 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 97 0 R -/Contents 96 0 R ->> -endobj -98 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 100 0 R -/Contents 99 0 R ->> -endobj -101 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 103 0 R -/Contents 102 0 R ->> -endobj -104 0 obj -<< -/Type /Page -/Parent 79 0 R -/Resources 106 0 R -/Contents 105 0 R ->> -endobj -107 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 109 0 R -/Contents 108 0 R ->> -endobj -111 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 113 0 R -/Contents 112 0 R ->> -endobj -114 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 116 0 R -/Contents 115 0 R ->> -endobj -118 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 120 0 R -/Contents 119 0 R ->> -endobj -122 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 124 0 R -/Contents 123 0 R ->> -endobj -125 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 127 0 R -/Contents 126 0 R ->> -endobj -128 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 130 0 R -/Contents 129 0 R ->> -endobj -131 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 133 0 R -/Contents 132 0 R ->> -endobj -134 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 136 0 R -/Contents 135 0 R ->> -endobj -137 0 obj -<< -/Type /Page -/Parent 110 0 R -/Resources 139 0 R -/Contents 138 0 R ->> -endobj -140 0 obj -<< -/Type /Page -/Parent 143 0 R -/Resources 142 0 R -/Contents 141 0 R ->> -endobj -144 0 obj -<< -/Type /Page -/Parent 143 0 R -/Resources 146 0 R -/Contents 145 0 R ->> -endobj -147 0 obj -<< -/Type /Page -/Parent 143 0 R -/Resources 149 0 R -/Contents 148 0 R ->> -endobj -8 0 obj -<< -/Type /Pages -/Kids [1 0 R 10 0 R 16 0 R 23 0 R 26 0 R 29 0 R 32 0 R 35 0 R 38 0 R 41 0 R] -/Count 10 -/Parent 47 0 R ->> -endobj -48 0 obj -<< -/Type /Pages -/Kids [44 0 R 49 0 R 52 0 R 55 0 R 58 0 R 61 0 R 64 0 R 67 0 R 70 0 R 73 0 R] -/Count 10 -/Parent 47 0 R ->> -endobj -79 0 obj -<< -/Type /Pages -/Kids [76 0 R 80 0 R 83 0 R 86 0 R 89 0 R 92 0 R 95 0 R 98 0 R 101 0 R 104 0 R] -/Count 10 -/Parent 47 0 R ->> -endobj -110 0 obj -<< -/Type /Pages -/Kids [107 0 R 111 0 R 114 0 R 118 0 R 122 0 R 125 0 R 128 0 R 131 0 R 134 0 R 137 0 R] -/Count 10 -/Parent 47 0 R ->> -endobj -143 0 obj -<< -/Type /Pages -/Kids [140 0 R 144 0 R 147 0 R] -/Count 3 -/Parent 47 0 R ->> -endobj -47 0 obj -<< -/Type /Pages -/Kids [8 0 R 48 0 R 79 0 R 110 0 R 143 0 R ] -/Count 43 -/MediaBox [0 0 612 792] ->> -endobj -536 0 obj -<< -/Type /Catalog -/Pages 47 0 R ->> -endobj -537 0 obj -<< -/CreationDate (D:19990929133001) -/Producer (Acrobat Distiller Command 3.01 for Solaris 2.3 and later \(SPARC\)) -/Creator (dvipsk 5.58f Copyright 1986, 1994 Radical Eye Software) -/Title (full.dvi) ->> -endobj -xref -0 538 -0000000000 65535 f -0000301162 00000 n -0000000016 00000 n -0000000373 00000 n -0000284023 00000 n -0000292339 00000 n -0000294869 00000 n -0000165880 00000 n -0000304820 00000 n -0000000490 00000 n -0000301242 00000 n -0000020719 00000 n -0000023015 00000 n -0000242258 00000 n -0000270896 00000 n -0000273813 00000 n -0000301325 00000 n -0000023167 00000 n -0000033705 00000 n -0000301079 00000 n -0000176024 00000 n -0000203083 00000 n -0000223031 00000 n -0000301408 00000 n -0000033856 00000 n -0000036506 00000 n -0000301491 00000 n -0000036613 00000 n -0000039974 00000 n -0000301574 00000 n -0000040103 00000 n -0000042544 00000 n -0000301657 00000 n -0000042651 00000 n -0000045795 00000 n -0000301740 00000 n -0000045913 00000 n -0000048219 00000 n -0000301823 00000 n -0000048326 00000 n -0000049216 00000 n -0000301906 00000 n -0000049323 00000 n -0000050028 00000 n -0000301989 00000 n -0000050135 00000 n -0000054581 00000 n -0000305475 00000 n -0000304956 00000 n -0000302073 00000 n -0000054721 00000 n -0000059905 00000 n -0000302157 00000 n -0000060034 00000 n -0000064808 00000 n -0000302241 00000 n -0000064937 00000 n -0000070020 00000 n -0000302325 00000 n -0000070149 00000 n -0000073490 00000 n -0000302409 00000 n -0000073619 00000 n -0000077939 00000 n -0000302493 00000 n -0000078068 00000 n -0000082781 00000 n -0000302577 00000 n -0000082910 00000 n -0000087175 00000 n -0000302661 00000 n -0000087315 00000 n -0000091184 00000 n -0000302745 00000 n -0000091324 00000 n -0000093405 00000 n -0000302829 00000 n -0000093534 00000 n -0000095032 00000 n -0000305094 00000 n -0000302913 00000 n -0000095139 00000 n -0000098230 00000 n -0000302997 00000 n -0000098356 00000 n -0000101815 00000 n -0000303081 00000 n -0000101930 00000 n -0000104068 00000 n -0000303165 00000 n -0000104186 00000 n -0000108456 00000 n -0000303249 00000 n -0000108585 00000 n -0000112422 00000 n -0000303333 00000 n -0000112529 00000 n -0000127626 00000 n -0000303417 00000 n -0000127744 00000 n -0000130547 00000 n -0000303502 00000 n -0000130666 00000 n -0000132857 00000 n -0000303589 00000 n -0000132987 00000 n -0000134475 00000 n -0000303676 00000 n -0000134583 00000 n -0000139747 00000 n -0000305234 00000 n -0000303764 00000 n -0000139877 00000 n -0000144032 00000 n -0000303852 00000 n -0000144151 00000 n -0000148965 00000 n -0000173680 00000 n -0000303940 00000 n -0000149115 00000 n -0000151755 00000 n -0000172440 00000 n -0000304028 00000 n -0000151897 00000 n -0000153934 00000 n -0000304116 00000 n -0000154042 00000 n -0000155238 00000 n -0000304204 00000 n -0000155357 00000 n -0000156592 00000 n -0000304292 00000 n -0000156700 00000 n -0000157704 00000 n -0000304380 00000 n -0000157812 00000 n -0000158794 00000 n -0000304468 00000 n -0000158902 00000 n -0000160327 00000 n -0000304556 00000 n -0000160446 00000 n -0000161891 00000 n -0000305383 00000 n -0000304644 00000 n -0000161999 00000 n -0000163003 00000 n -0000304732 00000 n -0000163111 00000 n -0000165625 00000 n -0000165999 00000 n -0000165756 00000 n -0000165951 00000 n -0000166342 00000 n -0000166450 00000 n -0000166594 00000 n -0000167223 00000 n -0000167834 00000 n -0000168413 00000 n -0000169168 00000 n -0000169591 00000 n -0000169922 00000 n -0000170170 00000 n -0000170728 00000 n -0000171296 00000 n -0000171692 00000 n -0000172392 00000 n -0000172661 00000 n -0000172731 00000 n -0000172787 00000 n -0000173109 00000 n -0000173423 00000 n -0000173632 00000 n -0000173937 00000 n -0000174020 00000 n -0000174098 00000 n -0000174476 00000 n -0000174833 00000 n -0000175126 00000 n -0000175492 00000 n -0000175976 00000 n -0000176501 00000 n -0000176867 00000 n -0000177807 00000 n -0000178058 00000 n -0000178364 00000 n -0000178780 00000 n -0000179207 00000 n -0000179477 00000 n -0000179816 00000 n -0000180147 00000 n -0000180474 00000 n -0000180708 00000 n -0000180972 00000 n -0000181192 00000 n -0000181409 00000 n -0000181677 00000 n -0000182042 00000 n -0000182315 00000 n -0000182692 00000 n -0000183090 00000 n -0000183416 00000 n -0000183783 00000 n -0000184193 00000 n -0000184523 00000 n -0000184905 00000 n -0000185321 00000 n -0000185546 00000 n -0000185832 00000 n -0000186167 00000 n -0000186407 00000 n -0000186737 00000 n -0000187067 00000 n -0000187447 00000 n -0000187725 00000 n -0000188005 00000 n -0000188385 00000 n -0000188641 00000 n -0000188866 00000 n -0000189125 00000 n -0000189474 00000 n -0000189786 00000 n -0000190110 00000 n -0000190476 00000 n -0000190872 00000 n -0000191126 00000 n -0000191462 00000 n -0000191813 00000 n -0000192204 00000 n -0000192544 00000 n -0000192777 00000 n -0000193041 00000 n -0000193276 00000 n -0000193641 00000 n -0000193993 00000 n -0000194334 00000 n -0000194701 00000 n -0000195061 00000 n -0000195366 00000 n -0000195786 00000 n -0000196093 00000 n -0000196363 00000 n -0000196669 00000 n -0000197037 00000 n -0000197275 00000 n -0000197585 00000 n -0000197880 00000 n -0000198222 00000 n -0000198592 00000 n -0000198965 00000 n -0000199272 00000 n -0000199631 00000 n -0000199931 00000 n -0000200211 00000 n -0000200540 00000 n -0000200870 00000 n -0000201227 00000 n -0000201624 00000 n -0000201929 00000 n -0000202245 00000 n -0000202455 00000 n -0000202770 00000 n -0000203035 00000 n -0000203574 00000 n -0000203832 00000 n -0000204421 00000 n -0000204888 00000 n -0000205366 00000 n -0000205634 00000 n -0000205844 00000 n -0000206056 00000 n -0000206373 00000 n -0000206841 00000 n -0000207081 00000 n -0000207473 00000 n -0000207935 00000 n -0000208350 00000 n -0000208803 00000 n -0000209091 00000 n -0000209445 00000 n -0000209950 00000 n -0000210423 00000 n -0000210803 00000 n -0000211245 00000 n -0000211617 00000 n -0000212101 00000 n -0000212530 00000 n -0000212824 00000 n -0000213114 00000 n -0000213484 00000 n -0000213851 00000 n -0000214187 00000 n -0000214598 00000 n -0000214929 00000 n -0000215305 00000 n -0000215701 00000 n -0000216082 00000 n -0000216429 00000 n -0000216804 00000 n -0000217217 00000 n -0000217528 00000 n -0000217961 00000 n -0000218339 00000 n -0000218681 00000 n -0000219084 00000 n -0000219477 00000 n -0000219807 00000 n -0000220147 00000 n -0000220472 00000 n -0000220857 00000 n -0000221217 00000 n -0000221623 00000 n -0000222001 00000 n -0000222416 00000 n -0000222773 00000 n -0000222983 00000 n -0000223518 00000 n -0000223745 00000 n -0000224267 00000 n -0000224623 00000 n -0000224833 00000 n -0000225068 00000 n -0000225333 00000 n -0000225805 00000 n -0000226282 00000 n -0000226659 00000 n -0000227111 00000 n -0000227613 00000 n -0000228051 00000 n -0000228593 00000 n -0000229024 00000 n -0000229399 00000 n -0000229724 00000 n -0000230258 00000 n -0000230480 00000 n -0000230769 00000 n -0000231276 00000 n -0000231628 00000 n -0000232091 00000 n -0000232620 00000 n -0000232929 00000 n -0000233451 00000 n -0000234130 00000 n -0000234581 00000 n -0000235007 00000 n -0000235399 00000 n -0000235814 00000 n -0000236219 00000 n -0000236719 00000 n -0000237046 00000 n -0000237309 00000 n -0000237534 00000 n -0000237919 00000 n -0000238240 00000 n -0000238618 00000 n -0000239020 00000 n -0000239329 00000 n -0000239734 00000 n -0000240060 00000 n -0000240389 00000 n -0000240794 00000 n -0000241292 00000 n -0000241731 00000 n -0000242210 00000 n -0000242780 00000 n -0000243139 00000 n -0000244086 00000 n -0000244415 00000 n -0000244721 00000 n -0000245009 00000 n -0000245363 00000 n -0000245669 00000 n -0000246186 00000 n -0000246450 00000 n -0000246801 00000 n -0000247147 00000 n -0000247406 00000 n -0000247613 00000 n -0000247823 00000 n -0000248111 00000 n -0000248445 00000 n -0000248694 00000 n -0000249094 00000 n -0000249500 00000 n -0000249821 00000 n -0000250207 00000 n -0000250599 00000 n -0000250944 00000 n -0000251369 00000 n -0000251762 00000 n -0000251984 00000 n -0000252259 00000 n -0000252654 00000 n -0000253022 00000 n -0000253463 00000 n -0000253817 00000 n -0000254157 00000 n -0000254464 00000 n -0000254900 00000 n -0000255154 00000 n -0000255376 00000 n -0000255681 00000 n -0000256106 00000 n -0000256384 00000 n -0000256795 00000 n -0000257193 00000 n -0000257606 00000 n -0000257920 00000 n -0000258327 00000 n -0000258749 00000 n -0000259039 00000 n -0000259380 00000 n -0000259796 00000 n -0000260304 00000 n -0000260773 00000 n -0000261178 00000 n -0000261391 00000 n -0000261700 00000 n -0000261915 00000 n -0000262267 00000 n -0000262624 00000 n -0000262959 00000 n -0000263311 00000 n -0000263651 00000 n -0000263929 00000 n -0000264347 00000 n -0000264641 00000 n -0000264890 00000 n -0000265178 00000 n -0000265529 00000 n -0000265757 00000 n -0000266084 00000 n -0000266370 00000 n -0000266696 00000 n -0000267043 00000 n -0000267400 00000 n -0000267666 00000 n -0000268015 00000 n -0000268298 00000 n -0000268593 00000 n -0000268925 00000 n -0000269333 00000 n -0000269708 00000 n -0000270100 00000 n -0000270439 00000 n -0000270644 00000 n -0000270848 00000 n -0000271155 00000 n -0000271246 00000 n -0000271346 00000 n -0000271733 00000 n -0000272074 00000 n -0000272404 00000 n -0000272685 00000 n -0000273037 00000 n -0000273357 00000 n -0000273765 00000 n -0000274194 00000 n -0000274357 00000 n -0000274681 00000 n -0000274993 00000 n -0000275420 00000 n -0000275793 00000 n -0000276095 00000 n -0000276542 00000 n -0000276759 00000 n -0000277171 00000 n -0000277604 00000 n -0000278156 00000 n -0000278532 00000 n -0000278887 00000 n -0000279229 00000 n -0000279585 00000 n -0000279939 00000 n -0000280233 00000 n -0000280662 00000 n -0000280956 00000 n -0000281209 00000 n -0000281431 00000 n -0000281762 00000 n -0000282050 00000 n -0000282390 00000 n -0000282745 00000 n -0000283026 00000 n -0000283391 00000 n -0000283680 00000 n -0000283975 00000 n -0000284469 00000 n -0000284640 00000 n -0000284917 00000 n -0000285234 00000 n -0000285591 00000 n -0000285946 00000 n -0000286156 00000 n -0000286505 00000 n -0000286934 00000 n -0000287290 00000 n -0000287710 00000 n -0000288131 00000 n -0000288477 00000 n -0000288940 00000 n -0000289301 00000 n -0000289661 00000 n -0000289947 00000 n -0000290247 00000 n -0000290495 00000 n -0000290723 00000 n -0000291073 00000 n -0000291343 00000 n -0000291704 00000 n -0000291997 00000 n -0000292291 00000 n -0000292595 00000 n -0000292678 00000 n -0000292756 00000 n -0000293181 00000 n -0000293568 00000 n -0000293880 00000 n -0000294273 00000 n -0000294821 00000 n -0000295195 00000 n -0000295312 00000 n -0000295489 00000 n -0000295886 00000 n -0000296273 00000 n -0000296695 00000 n -0000297148 00000 n -0000297575 00000 n -0000298110 00000 n -0000298467 00000 n -0000298736 00000 n -0000299082 00000 n -0000299401 00000 n -0000299847 00000 n -0000300176 00000 n -0000300525 00000 n -0000305589 00000 n -0000305641 00000 n -trailer -<< -/Size 538 -/Root 536 0 R -/Info 537 0 R -/ID [] ->> -startxref -305860 -%%EOF