ࡱ> lnkq` @bjbj 5l6E#F F F V L L L  "`"`"`8Z`$~`^(Aja$a(LaLaLafff;Ɛ¡$hL MiefMiMi LaLavvvMi LaL LavMivv~| 6L ) Laa PK"`na,0At$5L 5,fv-gTvgDgfffu(fffAMiMiMiMi^(^(^(7"`^(^(^("``  r f  r   HERIOT-WATT UNIVERSITY DEPARTMENT OF COMPUTING AND ELECTRICAL ENGINEERING B35SD2 Matlab tutorial 1 MATLAB BASICS Objectives: Matlab is a very powerful, high level language, It is also very easy to use. It comes with a wealth of libraries and toolboxes, that you can use directly, so that you don't need to program low level functions. It enables to display very easily results on graphs and images. To get started with it, you need to understand how to manipulate and represent data, how to find information about the available functions and how to create scripts and functions to generate programs. During this session, you will learn: How to start matlab. How you can find out all the information you need. How to create simple vectors and matrices. What functions are available and how to find them. How to plot graphs of functions. After this hour, you will know most of what you need to know about Matlab and should definitely know how to go on learning about it on your own. So the "programming" aspect won't be an issue any more, and you will be able to use matlab as a tool to help you with you math, electronics, signal & image processing, statistics, neural networks, control and automation.Programming languages don't come any easier! What is Matlab? Matlab is a high performance language and software for technical computing. It allows Maths and computation Algorithm development Modelling, simulation and prototyping Data analysis and visualisation Scientific and engineering graphics It is an interactive system (all data always in memory) with the following key facts: The basic data element is an array No declaration (or prototyping of functions) required All data represented as doubles In script mode or command line mode, data is always accessible and in memory. Starting Matlab: To start Matlab, double click on the matlab icon on the desktop. The main matlab window with the command line prompt ">>" should appear. Matlab is an interpreted language. This means that the instructions you give to it are processed and interpreted by the computer directly, as opposed to for instance C: in C, when you write a program, you first need to compile it before it can be executed by the machine. This means that at any moment, all the variables are in the memory of the computer (equivalent to debug mode of C/C++) and can be readily accessed. This is a tremendous help to quickly debug programs. There is two ways to give instructions to matlab: On the command line, after the prompt ">>": if you type an instruction, matlab executes it and gives you the result. Through a script or a function, whose code is written in a text file with the .m extension. Scripts contain lists of instructions, just as could be written on the command line. To execute a script, just type the name of the .m file (without the .m extension) on the command line. When a script is launched, all the instructions it contains are executed successively. Functions are modular scripts that can take in arguments. They won't be detailed here, but you can look at the on-line help to find out about them. There are only a few data types in matlab. The main one is a matrix of doubles and most functions will only work with it. The second useful on is the uint (unsigned integer) type used to store images and limited to the [0,255] range. Bear in mind that in matlab, all data is stored into matrices. A scalar (real) number is a 1 by 1 matrix. A vector is a 1 by N matrix. The command line gives you access to the so-called workspace. This is the collection of all the data and variables that you declare during a session. Knowing where you are: Use the pwd command to know where you are Use the dir command to list the files in your current directory Use the cd command to change directory Now go to your home directory to be able to save todays work The help command: You can get help on all commands in matlab by typing (beware, matlab is case sensitive!): >> help command For instance, try typing >> help help And read what pops up in the screenThat should give you plenty of information on how to find information on topics. For instance, if you are looking for the cosine function, type >> help cos Note that if you press the "up" and "down" arrows on your keyboard, this enables you to recall previous commands. You also have a more elaborated tool for help if the quick command line (usually faster) is not sufficient. To start it, press the ? button of the matlab window. This should start the window shown below. For image processing functions, type help images to get the list of available functions and their short description. For statistics, type help stats.  In this window, you will find all the main categories of matlab functions. Under each category, a full description of a specific function can be found. Finally, the matlab manuals are available in pdf format at: www.ece.eps.hw.ac.uk/~ceeyrp/ and follow the Teaching link to the image processing 22.5SD2 home page or by clicking on the Go to help desk. If you press the getting started link, you will get a tutorial to get started with matlab. I recommend that you read it and try some of the functions and example. This help tool is very very useful. The lookfor command: If you do not know what is the name of the matlab command you want to use (which is usally the case!), the lookfor command is what you are looking for... very funny! For instance, if you are looking for the cosine or related functions, type >> lookfor cosine matlab comes back with all matlab functions related to cosine with a short description as: ACOS Inverse cosine. ACOSH Inverse hyperbolic cosine. COS Cosine. COSH Hyperbolic cosine. TFFUNC time and frequency domain versions of a cosine modulated Gaussian pulse. DCT2 Compute 2-D discrete cosine transform. DCTMTX Compute discrete cosine transform matrix. DCTMTX2 Discrete cosine transform matrix. IDCT2 Compute 2-D inverse discrete cosine transform. CHIRP Swept-frequency cosine generator. DCT Discrete cosine transform. FIRRCOS Raised Cosine FIR Filter design. IDCT Inverse discrete cosine transform. DCT Discrete cosine transform. IDCT Inverse discrete cosine transform. dctold.m: %DCT Discrete cosine transform. idctold.m: %IDCT Inverse discrete cosine transform. BLKACOS This block defines an output angle that is the arccosine of the input. BLKCOS This block defines the output as the cosine of the input. BLKCOSASIN This block defines the cosine of an angle whose sine is u. BLKCOSATAN This block defines the cosine of an angle whose tangent is u1/u2. Now type help cos to get details on the cosine function. >> help cos Note that if you press the "up" and "down" arrows on your keyboard, this enables you to recall previous commands. Creating a vector or a matrix: As mentioned before, marices (and vector) as the basic element of a matlab program. matlab does see matrices as other languages see numbers and can perform operations in matrices directly without for loops, which comes handy for image processing... Type : >> x = [1 2 3 4 5 4 3 2 1]; >> x >> who >> whos >> y = [6; 7; 8; 9; 0; 9; 8; 7; 6] (note that is there is a semicolon at the end of the instruction, matlab doesn't expand the result of the instruction) >>y' >> z = [1 2 3; 4 5 6; 7 8 9; 0 1 2] Operators: MOST OF THEM WORK ON MATRICES DIRECTLY! The colon operator: A way to define quickly some vectors is to use the ":" operator. Type for instance (and observe the results): >> a = 0:10 >> b = -5:10 >> c = 0:2:10 >> d = 10:-2:-5 >> e = 0:0.01:4.2 >> f = -pi:0.01:pi You can see that these instructions are of the form lower limit: increment: upper limit An other way to define elementary vectors that only contain ones and zeros: get help on zeros, ones, randn Try: >> g = zeros(2,4) >> h = ones(5,3) Arithmetic operator: These are the standard operators. (+ plus, - minus, / divide, * multiply, ^ exponent) Try >> 3^2 >> y' >> x+y' >> x*y >> 3*x The operators ( / , * and ^) have got a matrix counterpart (respectively ./ , .* and .^), which apply the operation element by element. For instance, compare: x*y and x.*y. Type: >> x^2 >> x.^2 >> x.*x >> x*x if you type ">>whos" now, you will see that you have a lot of variables in the workspace. Type ">>clear", and ">>whos" again. Matrices operators: Type A = [16 3 2 13; 5 10 11 8; 9 6 7 12; 4 15 14 1] sum(A) % displays the sum of the columns of A. >>sum(A) >> 34 34 34 34 sum(sum(A)) % dsiplays the sum of A A % Transpose conjugate (if complex number) else transpose. >> A >>sum(A) % Sum of the lines of A (columns of A). Note that functions can be % combined very easily. subscripts:    EMBED Equation.3  A(4,2)? try A(4,5) ERROR: index exceeds matrix dimension! The functions available and the toolboxes Type: >> help elfun % elementary functions >> help specfun % special functions >> help elmat % elementary math functions to see some of what's there. Try out some of the functions. For instance, type: >> t =-pi:0.01:pi; >> c = cos(t); >> s = sin(t); Important toolboxes are available in EPS: Image processing toolbox. >> help images Signal processing toolbox. >> help signal Statistics toolbox >> help stats Neural networks toolbox >> help nnet Plotting functions: Type >> figure >> plot(s) >> figure >> plot(t,s) >> figure >> plot(t,s,'g',t,c,'r') Type help plot if you haven't already done it to see more possibilities. Try and modify the axis, put a title and labels on the x- and y- axes Add a title, a label on the x-axis. Image processing: Do im1 = imread(peppers.png); % Reads and image and puts it in im1 im2 = randn(384,512) ; % Creates a 384x512 normally distributed image % (gaussian noise) of the size of im1. whos % Note that images are stored in uint8 to save memory % space Do imshow(im1); % Display matrices as images imshow(im2); Do figure(1) imshow(im1); % Display matrices as images figure(2) imshow(im2); % Same thing with 2 windows. Play with the figure menus and especially the export button that allows saving images and figures. Type help figure for more information. Do subplot(2,1,1) imshow(im1); % Display matrices as images subplot(2,1,2) imshow(im2); % Same thing with 2 images in one window. Do clf; % Clear figure imshow(im1(:,:,1)) % Displays R component of the image Do clf; subplot(3,1,1) imshow(im1(:,:,1)) % Displays Red component of the image title(Red Component); subplot(3,1,2) imshow(im1(:,:,2)) % Displays Green component of the image title(Green Component); subplot(3,1,3) imshow(im1(:,:,3)) % Displays Blue component of the image title(Blue Component); BE CAREFUL, OPERATORS DO NOT WORK ON UINT8 TYPE Do im1 = rgb2gray(im1); % Converts image to grey level image an Operators and images: Addition: Do im1 = double(im1); % Converts to double to enable operators use. ima = im1 + 50*im2; imshow(ima); % Does not work all the time %USE INSTEAD: imshow(uint8(ima)); % Crops values between [0,255] %OR imagesc(ima);axis image; %Recommended solution Substraction: Do ima = im1 50*im2; imagesc(ima);axis image; Multiplication: Do ima = im1*im2; This is a matrix multiplication. Cannot be applied to multiply images. The correct way to do this is: ima = im1 .* im2; imagesc(ima); axis image; Other operators / Matrix division ^ Power operator Complex transpose The combination of . and any other operator makes it an element to element operator. For instance .* or ./ multiplies and divides each element of the first image by the element of the second. Workspace and saving results: As matlab is interpreted, the data are always in the workspace and can be saved. The workspace can be seen as an area of memory accessible from the command line. To see it: whos To clear it: clear To save it: save name Do help save to learn more about save. To load it load name Do help load to learn more about load. YOU CANNOT SAVE ANYWHERE. YOU NEED TO HAVE WRITE PERMISSION. To know where you are, use pwd. To change location use cd path or cd(path) Do save trial Comments? cd H:; pwd; save trial; Comments? clear all; whos; load trial whos How to run the demo Use the demo tool typing demo in the command line. You should get the following window.  Today or/and during your (precious) spare time, run and try the various demos. I especially recommend to try the first 4 and the image processing toolbox in toolboxes. This can be used as a self-training tool very effectively. Conclusion: Well, that's you startedNow, hopefully, matlab should feel more like an help to investigate, understand and solve mathematical and image processing problems. It is also a great tool to visualize data. You will need to use it to complete your assignments. You will also need to spend a bit of time to fully discover matlab but the reward is huge. Go to the next page for a memento of where you can find help. In the next session, we will see how matlab can be used as a programming language. How to start Matlab: Press the matlab Icon on your desktop. How to know where you are: use the pwd command to know where you are use the dir command to list the files in your current directory use the cd command to change directory How to get help:  Or type help in the command line Or type lookfor string in the command line Or type Matlab help desk in the help window Or go to http://www.mathworks.com/access/helpdesk/help/techdoc/matlab.shtml How to get an overview of matlab: Use the demo tool typing demo in the command line. This can be used as a self-training tool. How to see whats in your workspace: >> who >> whos % more detailed How to save and load a workspace use the save and load commands to save results and data. see help save for more details.  Matlab needs to see this file. For this, it should either be physically in your current directory (type ">>pwd" to find out where you are), or the path to its location should be known by matlab (type ">>path" to see the full path; type ">>help path" if you need to change it). Go to the File menu and Set Path sub-menu to change the path.  clear a clears the variable named a in the workspace. clear all clear everything.      FILENAME \* MERGEFORMAT matlab_w1.doc  PAGE 11 Press this button j i A(i,j) t :;3J[\]%&j&o&q&u&w&|&&'(((( *******)***+*,*+++v,----....//o0t000h_cjfhlEHU!j? hlCJUVmH sH jhlUjhlCJUmHnHu hl5CJh_chlmH sH jhl5U hl6 hl5CJjhl0JUhl hl57KLftu\ ] ( I J N O e {  & F^ & F$a$>J@@@ <=`|}$()12 & F & F8^8 & F23JKu-uv8YZ[]^34DE<Ke<q * R R } !A!!!!"""""""#######$y$~$$$$$$$$$[%\%h%u%%%%%%&&&&&&&&&''' '&'.'5'<'='='''''(((((((((((()))()N)O)))))** * ***-*.*6*7*B*C*j*k******&+'+c+d+x+++++++,-,`-,P,v,w,x,,,,,,,,,,,+-r-s-------9.`.... @ ^@ `......."/,/Y/Z//////%040n0o0p0s0t000000000161I11111 2 2:2;2>2?2|2}2~222222303@3v3|333gd_c061C111 2:2;2?2R2~22222222223/30323Y3y3333333333333 4444444455666667<7ûӳӨjhl0J5UhmHsHhh>mHsHhhlmHsHh>hl5h>h>5 h>5h> h>h_c h>hl h_chl h_ch_ch_chlmHsH hl5h_chl63333333 444"4k4444444444 5Z5555555^555566666667=7>7{7|777777788#8/85868^`<7{7777788#8.868J8S8W88899;;;;;;y<<<<Z=|====>">D>>>??J@K@M@N@P@Q@S@T@V@W@q@r@@@@hlCJmHnHu hlCJjhlCJUjhlUjhl0JUjQfhlUjhlCJUmHnHujwihlU hl5CJh_ch_cmH sH h_chlmH sH hl hl5668J8K8888N99999:0;;;;;;;;;;;;;;;;<Q<Q<x<y<<<<<<<<< = =Y=Z=|=}===>> >">#>D>E>~>>>??I@J@L@M@O@P@R@S@U@V@@@@@@@@@@@@@@@$a$@@@@@@@@hl hlCJh],}0J CJmHnHuhl0J CJjhl0J CJU30PP. A!"#`$% fDd 4&1<  C AbKfP?Op'fDnfP?OpPNG  IHDR]WsRGBeIDATx^[mIrnG`hzs `>0"A/y'&`d/k ~<<OcaZíȺa ,slӖ%t'2+Vպ>kgee2~|W^ 9   pk?~ɳ"0<R͑L-   xa'dK-O>vN^Dϋcd'/t($L°Hç͟#ٶgO>ϟaz ohdɭB_A~O4s ڧ_4$ԧA{H&Hyrbdg#KLt [Oʂ7?krM;BW~&~?GFt% s'4F[vb[X/-O_gS_㇇I^g>"¹vb`' U EE,[0pFU< tFEҿvt{ѻ$;;PN)O+ko?ÿ"a}wchE:y4;/EItG+Y7-_zxjDxKǖ=/>/z3EW[=^Te3X]3ry/_'~o-?z|_O?'l?<~?/__YGTX ?I߷<_/[ce/h  p1TڥSu9*_zxxw^~gk˅>|/uoת_ox7M[\uC&Z+9a ,>:MO-o><T[O+;C]|vtXOκ1zlcGv>T}?{G_d嬛$?  %{K}僇_~_|Z~LJO?"OǼ{t-g~ksSų5F~Ajïs>o  pa#U3UC't#X{[vo ?\ Oa?ǗGUym+Eq4;7G,F/ԍcV48<Yy) $PtU?.𷻿;|˻?Ϋȗ'M1[@V 1]$1:4?.b:YQ?3[c~)~.YЦ_+ƏRϗ>}g e |'_ IEEEY/{>adTǏ~&CI,hG`"zq"-IT¦S G9/,n5:yf٫T}y`d'e#~ڋ[c|:n`dN?_ϔn*ҭ`w Vw&[,on"/$YF鿪{< _~韦 +[5=444M~i'/TӅϚr7{=OH| VZ%A@@@@@@`(8 @@@@@@`(8 @@x/U.7Ue pIofO!=.S I+~nGKѣG_{2twws^dCJZLFz\)y_Wxỳ<:Huwz^ ~H=3ZuB:4ޓ>~Xa!@`"!6NPm -tѢ FiW ޟ>Z~|/K Mc  7#0H'?K+~ҤZ-?M i[/RQe<v;]PUm籃RP+@: .lDSԽj=mtŕ:}%wnrk}܊ .Ҽߥ/;{muTɛϋz$_[dg:E~/s:EǹuE>H=<_C`d}>?2-#$۶ɼ]m|@k㚶 WDq– +}pqor}`bUTQ7WGK9ܫLy/2͓_ȷ~5mcj۟6SހyiԤ+7X{-751"Lu{!0O$8JqN^lwmUu}J^y+~O8h K?1xf+W2b${FV&\iW?5C }p5FH.T]cKwŢi:!gk p^pЪRoZ_=lYh G {y;cRE/V{OExᴥ -i%w/6PXRyg=g1VP4PK/ɂ˼loU9J馑uSaѣGM.H7ZU[!":5Ez6iשn~n4.i?TѱnY7Nițs|HY]I;+E@$,) pl(ǎ,:4 PWDsEEzYPWDsEn|fV(;>d9YK'#XMUeF~mOo|eNAL,f NI_;@@PO<  pm(׎/81\ @@NLsҷ@N<m `HޠQ̾Iò*X @ۉ `"b:  w e  pJ(ҧ ;D>)A@@EQ  $"}ʰh;ؿH/GUݙ}R.@`)Ap\Ezɞ7 }y2۝/0>xy,z~.,ܧy(( _a!!ߙ@> !   !p5QlSw&;(7韋=f ѯ]A:֓f%9 h8F;pyETH,(KBo]#_I8X2Ԅ!a{ŇZt(C@#=nekP!|OR`,D~ypU^^컬_bY\&,cY-/>H*EӀV pa~yGB8 !4Utu H´>oj}C,v>Ya}xJ8Qf|zV^=i/hMaT^R}N.>85xv7Q{TOzJuZ]:c,+n4io&zgtym,G/ ;5vx\[}5QiAA8ԼbM=ݼdS"۾ٵWb5ӷm2Ch$ݔmDh&I oF`amu]ۡ3n,{lUa+!C줽 [YOt줛}*xF8C郰  pm;Ӿv;;D>)A@@EQ  $"}ʰh;@C#) 4NZS:3:9iА,;H. uw,:c>'VWz$1P+%?|JEbY   D@q !p@@JEY   "@>h```- |MGG3/s,&U};   ی/4ޓЃ 4XvƙGF3t3t4$e?]}P!  [@ޚ8$$(P&@@nKsb(M   B7iNh  y64t0$A@@:"݃m@@@ O޷Ls %ȀPw.A@@ CE:C 2   I/_Uo!@@B?|srt=_UK/o)í eExX,lޡ/xQI=E+7y &2&mO&@@,2_&>i{=]~+t/uQ6QrgoXUC|{~tN׹/E5[DmS}b _ak{͐xzb 8   ;JF]]umoՅ$Xœo{` ;=   \H{   _GEz[hUPWCcGEz[hUPWCcGEz[hUPWCcGEz[hUPWCcGEz[hUPWCcGEz[hUPWCcGEz[hU6-˷>?WUU; \ËqhǒlϫQ8o`i/͓Ld/ζdGK۾'G c>p׈O`JAfy^L3Uh担L%P)R큼3L˟egŗ:-e:dkg _thgSeS%N*KW6O<=J"@ Mo%mrPg$P)ҴwM{,4®0L3.WY[ 59Y),qLTqhTbxo9E2HJ{OO;X񊞛>urS.n,^ .6OQz˽u1:\: ?WoH% tiFFONDuh_c7 ZUnUH'5qͫ z@\YY[9TR` gߕ9@gNݱOj&1r%wjR|N.hcDUIy KN^^/7I oSpREQM"9@2C ͒5\$OPYl*6b$W顶V=1"{;q=smf\-$ oƿ(1p)uN^nұ~k{$`?(4Ő%w"o*nZoz ;]TS73d1' Нq6. ˏe7$\}S̹dh{FS<O|fl0!!@`}enju}gJ*NK=\ EY!BOL5.\CkybS5OA)As/:3[S=i獀'烧8_ΓVn-4TUuwSyNUVbOJm&*iWqtq5a'dߑ'E{ew2*V#ӊ@նwoц|hr['F4_@gV+n(kӼ&nNSg#uIdV*GGDuKfhU>ȁ<3y=BH'.~uZƥ:Th7_$Pz{<݈Y,+55/@KhuJGyF3JSZNr!m$iUI ص!(Q mť<yRuQg^vQuQ2*=M|oOeЙ'3sW!g|#::#c\iNy'B+ ۑz)+jfbbd(Eq>˄/["ij5==rT|kd}],ޝ=oSbd~WGY{4{F=%Ycd&LPM G`J{ɕ8hn%J w&P$%O2u>̐RViuZ+db"e /g1UJ?SxM_G=޸h^uMrgQw{qm3'Hr)uӼ1NzQMuQUGy`y™1Cμb#&2<%Upظ{L~*{7,O p7UYT|56;OzUIU"Uo0SN-qZkxY+>=rSŕ]1JOGk4Q0U6dZ'-?TVդ3rwV{Xȍ wU`m'3DƑ5:pgV+nXk:Vv}ƞnlha%5ƱUH#~Զ/uT\v(t\y&O Fqbܚ?G m;tWu'xbv?͒S|%7oE7UU^l驢Uy+]Mֳ5zVo>ȁC#PqLɳ f5G0 M,鑒Vݟ)=b6 Bnl*dB`TwWs yF5,   + lZ^yɪE 61! ~k2tnjǍB+9L)T=ɾ1há1 *ޫ5wOy_mo3?y3x{K`J22΃pj͘O> 11uRiL5N){n3Kq<6Rػqây*`+ո$ShFB'E92:c? ~Guagjx.)y9An5Y*J1,'$_dSbPogs<g:#atj+5 !'%]ytPc+0)j*<*3_ek8lĴ;YzQ/rBjfH3ɕtJ2|Bv/桒#*A>{#dIjS-8xWC싯!䕆 |E~WA<%cFzI{vZq1 0 )q,Lbd {Ԩ4Aletper^i L)T7h<}6Ԛ<&ƷL`SP&=1TGa__9ud,R9IW>ߨSdv2Ƌx,'Ly ?'FuQUGE9Hh?P]>OIܱ]{ו*NcRܝyU^Ʋ4 ajʷ8m [e8nobٖklo ䷌L9/?3yXLrnSQd~.3J )&t-A|GMܔ\˕& @@ Cॏ>xW7.rCԼ>9]w^z.N1~Ld^Ž*d|&>ɌEWcLzi4 2:ų}ƣ =%XOOܻOG+ڐ([}qaU! 763:r{llU5˫"jN4B#8Լ@jFWX_*)MSu*{a,䑜 -8Z>MWA#[e'(jq\~g,7.GS`^ RǓ/^Kf$8+'/5o'#'fƩzCޓ_;N@a lG@=;4@@~gR7fyF']IXKB`Y{P    B`^EHִjXU(sRfT2gxig NG,iĮG`JF෿$AO23dIEy^ +$'660UZ+Ӥ yQW`~K L)'y6@s7^ VӽB p""-*;$OpZ|ɛ{ǭM~I7N4CLmYͭ j\۔+&+:7R]_bM,jU;U_S+3痺^_ i>ZGUG>ô8+{Rj4?20v6Ks*3^ \h$iQ?Ũ m<.0P&jqDC E FaP7q`Pp(b{$ 'ƫ#O#LpO^׭[4Af&Yi^+Ÿ/Oi)\jlo:n6jJ9ϵNkOwWGZW}Bc,}+t`Ln*̠Jmd[+ӞH6f~ԛyG Vk2ae9lڦ\j}z@H'MN:I=XNgb%k+YՑ!ԢUb; mCH{k~wL't7)X.؇f^FqX($L]M_$Ʉ%,V|~SqLfVJE'{z~ɼJk/Inǣ&E R&E{VT=d](;m؆UJ8 c\i,Kt&VOٗD^oS+=EgHr;Kf SBcXA^q2W9pȓo/soMCvi&56ta~w֤ L==ʃv[>r=c%:*s[E:kvOIlg:uhʘSG|ceZ#U o+"yLT|NNϔ6-q^Rn8I}2詼%od?lZ l^ɫqA(S7$ZL$㹉n e(=6uxKydTmTȳ*.Z ߜ"=zy0c{^+rG^7<&Gʫ_և?Nr_O,Vd eĂEXg0syS]_qScJZGZif{)D~!)[ܫcUuQPTUl;"Oq<^ BI&<Ο%żU-a lOvҹu*=®Iǭ~lW+UqIsn)Km&]8hկCb'8\ܾtS,rR]"r5m;Hl*kf3Կ`f[5E.x;VJI9-nfIؒ;iv{[y[=\o'j%x8ۅ=wm=p(c@;bQp쮋[\(>Ւ=Ut=r lS]Q5z򼗏Lա'9u "XNw&OѼS ]u*r ~*oq,i2 s z0O5-n;@\I#JM'\YO:,e ^'R?g=~Jw|׹l*䩩 A al29Ĭ!P^N~%W!$Ǘ8TG8mAI'}PW'9Nu}ŇUvVbOmgl4bܶxmDkOíT(RqׯJoboʓEk0; } 2o'Nߪ9OYGMupTKjAv9ZOO󳑥XDضo\>i\A I{)Z7C+#z q(<Wk|D[،;錟'/?.}vʆULdPzc5Y$_jq%k\O#@;i;xj>TXP/"&y^g|NmQW~IdNǜ2%iPܪ s1|~vfUO/ۏj<ZK`4 oj++IB3Td8yzZS0rϗEqٻ dEJb5~I2Jدq\з y8-v'"vW G qq({b'}"vt"a*TOyg! @;;D>vy^rbј 1EJJG`Ra{2@;8Nڛqe;Or\a!> ,zd׵P4Ǥb\ ~*O&Xd6Av}~V ߫N{ciZQ  NZQJ.$S]ezzXRi{*5XX3i~H\x=AڤM?:kT.{Ukqh b'M:ʻe=&=-$:-Ϝ@TEx%_TJl&'ՋZ8z׃ -.j/[;KSJ5ZA`/[Fxi`eLe)ev̓z)K,XUWj_U|f@ fb'ݱ#ir{͎NKIv5zi;={e"䆯x2OZmlDS 켓6{q'; U>V }pW|8: {5xM`zjS˯s-^ ˕zu;vWj!R%QGwz l) =۠6p6|=zq)J2_/O<9~9!PWq!;<|Dژ;i*{4WUą+zI^W:z*{_k"R[dt8u&v$WyZIJb>Jld_&IQs08ɇ G#Nh>dUw잯 p%GW&|ٗ;}=l}Kn pvGg ?줏 X  /8NZ23/yt?MMzΫk |xqmI{3]Orzȓ9Ucg3)M&=UU9{Gx48Nz=eҙ4˯ 2P62  p[rᥪ)-~5īcUuQ&K7.!nr>9#.*ǂ*f4*4<2Ejyy+gW|rȀIӾꢪ&7IР b(JcH jQܴĄ~`Ê{L* ^ U,A^yU^yy` liݩx UɝDUbïd_閴;*k..zytZeZ%zLOtP e%OJJ@ l*|bwyUN64SQTNyN-|eM^YH>XKdKy' uZvwbJձmwbe%8.+g ^y~dAnN`zE;|:ժIJ]yң>V')(>&Åo?ڐ .My%Ow]f*l2oVK^q:Z*؞;iAo.jrQETJ)/zW%tOꚛd4pYZoU{#W<,&JdTS<;.xO([b'}vrҗ̶@{}Y8:ȫ#'*l5ImyS8О> ':nth`'=-4*I[uWR|x%qƢdw9$)V$ 18''\V*ph*ataQOwhLZXXC mAv!pzL\6v\o4\}Aռ@XK`:{g@c%NϭJ3&XJ]ϰLq;ӮlN2 s/ b'Րw6M{1BMr`nXT.[*]vBR'lHZ61Q9ȟk(Iv;&o{s'&ErGnl$lO0qj¤[Rȟ|! 7'NCܺN !w[f>|Smp%ve'0úx4n`g)'b pm;3pg!ع @qfܶ8,Aن3zI۩8~U[:UwK%#Pym|N~ˌ_iq(U7/r?y&V1oIE0.O`4q*P?rxԱh)KYԥ_%))V$7 zⵆ\:tsЀ#w ND3;P ?H&NDoD#o* wNA@@N|;iyX_^7 6Y;cmj/cZmw M6#pܝ7Sj$砢nm*y6KtDw(`|U jLGeL z4 Z9lNFzcJo)   N*d:zgϕăK:-tA);.{=Z寑I/T^yYij2{1-!-veHafgAj3u+ފv_z0cdAN9Š`)"w* 5>1E=RU]! d?o>!9;!;rӑzfd3 ڑ֨_6'.IG^am;s!AyC|<ʞ$"Ϙ=Vw, h&N3NL}Xu|O:R.OgjM>#7藑EƑmsHg ^vU'N:wvq*N;Tû] )O$5t+;Ϟ͠xm΄;6ܖ;itEѪY5mo NCHҪ!R)KwD씮eR(n6YDEC) 8^|GTک4Ӕ=rʅ Vx8~eZj8&[ʘl:u4iGZ+)ojϏ!Eo=.C/*ܔ*8~=Mf8T AIӾꢪsqC®,Yhf_5OsEEϭS'f& k/)[KƎ8,I`t@67ţO]1T~@&勮ij3a-S!MI21v*=b=rZIkv3$P7'NClW}XiϨ(} |i͇Vrrz<<=}T H`tI: WMb%z؋^>;Cr,mHsL p@[TEWԤ>˳>>TQ]RpԬ tƐ<9h+%,&^&T)띲*K7fȑuj$WA6;w1m [S˔׸Ir顳PQ]ؙx@En->-9*GŃEŽ@i\xa6;`Oϼs;2 6 ZԸs/Jo}$z=֝Gp&)wM!TN;Ϧ7hZK!$5#y'A0{r~t v`<$Z_$3ܓ;i;5yG5I~ٝ:ē}*~ɩw&.Hd1 DN=3evĥO/:J^Iۅ':.\(<ɴzP/Dc;&֦y%:n'Md'1W1^EU¨qT`u@j%.tơI{yb'ǕQQ~S!j<=TGu!Is\,jg<;K~e'#WWs bdG:碿Ax]ˣuCj0Z1.;ay@`tнjYiV5L=w"[ B~.i+V%BA _{$mܜ✴b -vҞ+z2uVyysP Qs%韲TWMF[, pHv!T #N:32:Qjg|` Tg,? ժͣ8Ñ:Z4q/VsVJ'%Nڎ:"hU-Z^`l]R-Y`Rg WꑒVU1^թZyddqPF7qUP;l\ꕇ95^{ јMK|X2Jz[{xiGku3_v\LS5P[eq~b>Ȕh 4FV@{U / \BzxU,j-fN i(^d#4mЅPpb'2#~;‘Ru|k d RuϪ֛yNOMjJPr{X΋kO>.dLI^= Ƒ8^4j#kt׎侘QUsVR %L Lʮe@/7Ohnr2]$Ϙϐ@4qhWPTj1T3vHqCV||1NΦ+XYnN2Ne IOuiaUd=<.;1ۚbm^ 75ul7[r=qwHmc7p+CgCUAey'1q$h7F<]Td(fGS G]rwRFIFFmq=EÎx]Q$ /q&9Ά/mrSHUTő&2Iӳ6rr?3[ǵyu&Lϫ2A!"xVCLU v;=|IЅkc>A\UEXX)RI)H_ O"\|ɫӁ=_eur tE'8zU^[*3g뗍#:?xpt_M T}o i>\F S3y™ӳ +*mx~ySt/^8]%?0${6F[M O~T>'C8 BUM0~qV4lI@Vd^?Vʭ>R~N*xqH%̾|ṠvN͍!L*9;c$A`  _[wWk$ZwOgeZZh挆5CS|7sgT>W#Yc2 *tNZ=&b:-5$[,٧ggP<&u}E0QzxP$? "PqLa hլ-c1&M,ᩓ*iu𴫮;;byOϭrYGR"K|烷$yi[w|y|3Jsw:VzƯ:Nj4- o*Hcǧ;H*32|m/-uZgd,ҙ (Oi&    D^_+A@@2K.{Jt礧   4@@Jqw:@@@r'k]/8  W *qjIENDB`Dd B  S A? 2J`E\D-Ȁg`!J`E\D-Ȁ  xڕKAgD vJj!h#X`"X HR  !"#$%&'()*+,-./012345689:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijrmp `stuvwxyz{|}~Root Entry  F@ӮKoData 7WordDocument 5lObjectPool PK@ӮK_1071157165FPKPKOle CompObjfObjInfo  FMicrosoft Equation 3.0 DS Equation Equation.39q A=16321351011896712415141()Equation Native 1Table צSummaryInformation( DocumentSummaryInformation80El,FJc'XI{7o;fv @!rSQBdDhh ˹>RA0].8Kሱc9Rr}LG7_#nJ/4ě97 K͞ ؇!9b|3qMn:&{-jr5Ln:&{-jr~$?'؏٠Gf*mWZro$W.ۂrE:P|֦sG];s][!QS]7?#Ӛ_ZqBb~^9Y+|Y HUGu$\1_] WBHxvcŠV+xD^=p`֌Dd H!1,+<  C AbJbr #q笞u &inbr #q笞u PNG  IHDR8J:\sRGBIDATx^]u> ׎G-)v$*ge?YCqeF+rƒђL#8w|Lhڄo3b e!ѴpB8iU{nuNEuV[s/||d d d d d tR~GNBe d d d k |~WP}p+%%%%= |ⓟP}C K%%%%%PHĨ}@9ѓppD Ԥ {$9`|ƾ )0"-y#Re6e][ *2;4eڐ7easVƫaS}FӼ%dOFUTՖOO>/s~5gl'&H)m9G扭J*UKhlP/C2z z3oo@5U`~eΌ*U[@F6~+2V?g>9Sxd@%(^lgh3ҶHVD̨*`hja()ply|T-=騂Pހjw?k3m?OΟ_o9 Yp?ʟ_[?:>2̳:.›/d5Z&^C뿷|{{B"w[?|D }`?m&+'pc[ObUsޏGY o&lQ).dX ՇzW?}]ٯD'-8R +P SN0ΞT|s7qˎT~F_^ݽ`_?.ӏoߟB??~G~ 0F?'?\^#Οs?v1Ե{!~W:K K K$`XPWǿ?|/~h{{}T7(J?49Pg|gi\mO~]atwoԷ;ŷ;H*ؿ. |Uo]l+h U?۾OiD~oί],U}h; f#,,,)I(H.'c>}'E:\فV?hqS϶Y7dT^<*3S#rYYYs-D7.5@WѫwX?}>p(5  jU:UAz?p``¥bd)g ~^R1dTMð~>Aǟ!pUȹe d d LIKU Q~{>|? (?/KVWT {o<f kQ Z3V{{w;~ZZX%O_?<ϫ'Ƀ<%ߛ%%p$Pu7TK >WY0~ğ>yPE4ԣ?7ۨ螎L~kD'qs6gvA{=:S u?mO ę \PKU> uT# FGASͤf}Β {OUP)oWiCBiF ڸoAػ3c{6N"]Yn7\ toſlAJC29oJ[;h>@owMi~JCRӯ^2HBiw=TC+ndɳDrqS̨򦴏%JM@5SZmJG~7z_sZB@5r̨2dTl&/DVe_Ve_9+:V bMY(hÉ1~jtw)?7g%%%%%0jGue؝(!9o*FĠgA1 0k`\̰ˋerT8=Ec.h3Kϖ?爵G @k!gByu"%mP&Ue%0*F|q˹'Wa p PWYZsAx6) E,Jq>t-&'sl}3]CŋƨʩmPIf0!'OMĤ~⥦kHepK^x73\˥:PB$r.Wur"&!7cQdT@d Q=F*#1Y"b((KAeA[/&Zb"?t=ܶЩ"J s-Uc?ƨZ<">>LS-W,K 7\ԊSF0d5WD&'[yҏWX6 d`e@ ? K$;a/ RZ=O0Cujq)UӦ-4 2bqZ͞]Ԋ)BRE#R.f lY+<{Ɵ*&X3?Lb3pvnϓ4v$Ĝy"S_oC-mr)b>Mdgآ> \ mqqieeҥKϽGF(,?lp(2H_k5WR:Evb'ruxk~7wfID=hҪ, dTH3Wm+c Ƣ{ʌJWЩ#"Dy:ЮQU"䉥jX 2JUIdz?4kĎcj?DBǢ4IhyJUt:6E!^XԢծNr4]0!o1Pa0ՒZօmxSO=>CMI`ޏUR%2d Bg#Qv@ p y lx$R+[VLV^g),?ϲ `$OBbTәL0LZ?1Uv"*{FJ,R "Җ.t~sϝlln[ߩj #ULCoy֢Tm'6fD}S Rm~^Ǒp UFeCCBn'FS"T3M){24Rqh9 PDBc66'I~R>@D&G5 S4sv @)X{(wx)D %1@$±hJ`PLSW (* -aZUd1G&)pC«vTMHʆt*91ZEt& O g|(F?Vi K'THRE!L/:CG6ŌE60F*Wr?i@:)PKRi%j{Dx}f%0xR 0.T GevzۀD%a@ζ*œd!jVOSj"RqaBy &UOœCF(F7~} ~jVΔHCJDk''2*2@ U@HwsuYDTOۘR*^K0f hY$X \%5?=2j=d ,0 !NHaTgyRB܏gP!SRK-H2l TJ{§F UV>uyA[[[V?UܳZ tϞgm #{PiI+)Uyy/S)D!jJ9 v#KhdÓ@P TLqH\tio ̵ۨ˧d>u*TZa4WD -$.p%S%R #I[kZ^cJ9Uڨ$cF%A.mQ|LBNY݀#Yivy) '2'"&I$ǥ4Lf1>d;(mRϖO@D) +P(5> \z⾥ ?5~F|Bg`R{(%Up!%`qf 6q᫗`eXJwKmʖ\G<2^%u3R{KK.zwF+WzTBe8u˫i\Ň|2SЩv^J*5TBXT@\^]JQɵh{/>)dE3-fJ(wIK*0j,jE+T@Hh.?'oIzS2S+,.A_훤OQRvx`_5Bz"EC1Mp<>*e*t'2*'Niv2dM bmZHI4b(RRn,oȒ5DŽKIӄtF,Ln[*IިȟKS9 z?6ǞNnҏ%iz.vF LR'!,' Dngx2*JZph 4eP!qg'sД᝵_@e~ +U!0aqpHz>1A]ƥC!GN#6Ulvh5XC# BsTuFwc>XU4Js稠]7 c!NzR98˺MaT/%M3M` ˟VI@Q/zeO?[;Kf gVs}Uz1l=0\5PXe鉍2)nQA[Q6gtg!-2- QRӸhȄjGG6ه!:@/DbC&ƓBH4g0JpJʑ-~Ar#Ym]XsL/A=(q;5!2IwUn4,O ^I[UrT$A:C< ɔD*S}(`hRp̉adF|B aNP`ƥ BD .`-#S*>YJ'{X bYLK *A*tYsdn~xR0o+K;'@ Y}Y \*.FՋ~w5<] .➳}($}Q{R|pf$  A]J ع@TQ1f"2|B{[)jj,?jB}3'KlS(3D1*f  )%P(Λ&s9zZ1^^׉mqjmMXU%q)^"VFE2UrR<&hdU\P΀X0̴jRfVUUNj_l}LHylY11v=b"V,IXZfT`ᬔKJ4?)C_ _ GktߠOY~DIhs F/y:F2@3D*ٻo2:%7X'c`A'JAXs93U݀U6*SeBbAWi >'מNIU3|b'KSjۢ|ӽw3*m(}<ڭbJƴV*o9+vWcN%]*ca}A^ a]&i+TsT ooZ;Fwt X"%6*RHZIim_q)Uቁ-@BX~)mĭ+yZ/k+jlxJVqk2-}$GFgCvF`,1$a͊^W':M0}6&3Ј? Y*-;kun'8GGy"W@ &Y-!=hs+WcwF>~@FCD)"J \J~/Çbk *%ٍL0Ǎb uaTu qiQ*,VIQT&BGLFl0dT?D&?)F#٬S''>.,٨<9sOO!Œ;0I*? faȄ#eo1wQ#&1`rkޔzxKWԖ= %Q `Tszp숶(< :,7dtfTZīgm$JDѳd)FO>ȗHgR *x&O2 )X 41:0+Bë6p"OrZ&iJT yx <@B#ބrsYL~_ʯ %Xbjy7$(%$Rv(x)l_]y)zlCSN@O [k8]~S*w>|ZB[R G""+hүv~tFޏUʉkk,J"d|i|µv)Z A~UFXZ.u>P@K%RUg I{2wF):D|2R`Ʉ T:4 KU2J%&ȥlL`"EeQe)b(1"(bI|e2Yzv2u"4~Bo8xpb!ÏŷD xFeХŢsIaE+a!iTI:"zy(űk83/9[-^cȟx0% C$IL`TNt6WM_TϷߟ^iq)\( (cik0`QJuj>Tt*(z?j$PsrtO?(iڼU%t9p{үQU]'[ XHBL|c(;:IxIDq*:y.(\!)$z; gaSҔQ%C,v?vpc+<<N !\K%&1WqxohJ){,.xiٖ'ٖ@'v{s;tڎăM5<2McHV$ xS%a#[sI,ŶDKLlIZ6PH+)#>s4\p#& sl#%oʦ=* &3I9UU?oJv3ܪmSO,dԀl ˫/. i66/bC5wnq9't2X mtkpͷd3Bi#A(BcUdjeHDn/tY  .)mW-H/nKD|wCJn ZXХOeU.lCKthdd?0ŋӄBes0.eW]Ÿ!^1 z^Dd#I*aaÌNU`K-U!o*) ٪o_Sz\NW7 «@-n-C:EFU8^ז8 $^|,ʔ~EZOKOtz4|t)Rv ǫ؁)&>a Z%s'uF.ydd$@) ndNS$u-%w7h ?Lh[Q:f?F Z &<|9>3~{9R(Q j t ؏b9Pr1 )MR$ϖaNoQE Ll xRÞI_B~ d,nJ$4lIc w'`S' / 320s;bRmMGbgtywHTQKā"ҩfٽUgS:h5~O fCnaf:ܜo\8ܟTd*!RJ?MXrD& 0+vELIDԹsTl׊H@~X7ʽ;uLR橫sQk:e4夓aO2qbz"PggBZ {_ڢ]Jѵ9t󢚃bӺ"^Qhp4܇eɪ$RQ"FVDX@"s 1uq))Š:xHIs-U"(aT"iKS(mhOb)}&t- 'aչ9ݔX6,(6ūŗ\o1=Mܰ=;u[KjD-H-\ ]U!+Innm_?uyZ9ca{ zD=_8>83S*pbsxޓy>Gu />^^owܳ$ pUޠ.#t <}/m>/|0eTɍ:sW^ Ve/r鼹/wlVzⵖCw5mzve|M[H؊ˣ 'ø)G2>о,K9_2pZ:'X>/V{ʍ3˧!'VWϬ]: MwH׿V,aI" 2I6xS-'^|N8}fAO|7>V/;o<|^Z RTcWA iL=bL)Y@vgDކ=i>1Pgii)-'O>ì_[>,!`9OPJY,-14%@Q/wZtjAѾn2'; K߼h/*XʸΘK4̘*HǀDģ<;3у+\:o]K_WjlTߚ ͤʜ&T1յ./_ gCTHQ!FmczxO)X6 ?Vh4*IҒ؇8β1"+͘#8`mhe,cO)I¶ma 38Q+` -J1P1Sϕ@CbkJUNDw>~P)Vlv0pF' 5JX?:#8p^C|w R@8hf9_c@=Cم/ 妑!s'bÀZnih,f|9P%Pa)'Mtp0 3A(}h* ]zt{ȩB ՊU.E3E'=˲pŧ.z!5tP.mj:%ѫ$w^{_; ^ QJ;Gx^,ܷ wѲ_r홧֬EU"yҏaUR< @piqbX̵o_jv_.+x@D5`v(*!=S& 4!A*5 E&FJ&cdab1`>fbgse&Wح[gT L"DӵEBiƐ+iDDѵܔ',*\"\1Ftn Afg0),)vF\G  EE馺?*:Ha iM7(6(xVR ﶭq4*dɀT̥ftm示x v1M!1ܑ|V2`EJo >)2{ UHyBphBX|"'_bφ>P%q;(I!WʻACVE#ZI>6gy/Y{X}Kէ/\҂.U߃>E1k_H W1I Z5^?K&#+Cl7~ #G)d-P\ʺ]|M46U(M˿yt4A!m(’1N}`Q*'ӯUcg/޹ ?K4fx="ed9SmϓOf9'eD}aFJ"%^D,&@؛ "US$?<tz)O+r,"b@.4b'Q f9'FA9"%tê#\A< 0hF!^K:VN^I@ğ^)0"%9(STM]8kμZ]=PJ`S:}GJ|ߔix{_UR+WP%'A)d _h .7  %3PaݕHK/` Ps)f`?[Q"adNSL=JEdVX%>y Eec"@&˺"0* eB2eT8s8C!t!>}WoE[wtmcQ*J6<oh[e_CyX"DsK XSblf]$@M#ŠRWn_xX%{d(WB* 0vqGW1^, $YjC(` bCM- Nb>h f.]xR1߿+S&ʎG,*f@={4Q Tx0s/3X*H.22܍3<c"h=w=^x륻[RۦN8+TzfFb^ 2*&0^ǰ#m< b{[4\Ⱥ<4clJui]-`jiTF !qcAXyӓD ZA mUN`c Ϧ͓̣~OA U)_*)4إ?̈KM:)aӘ=`|Mt{DqndPG 9A\C+Dh1Šli#7ነ&"I)]1rXAIP%%#U0A疗8~DX۠|3AV~p H;[0f e*pSQaX0!*-lR 눁NղȃdA DI"%,;J Ɛ*;u}`QЫ34|b& 2HpAG]JR7(d.9jpGpیKq9D$ĝԘo*Hm~/&GC¨+L`1E$DQZ}IU隝B0^P {67wLxoT b[Rg?x dոwY&wÁiR1P?3\sx4;9ۼFSS8ȥRF%My3)24U~f^I J<@bO$Lc~4JAp퍙-rfǝr/'iBrnl߂!p՟S(8ZbKSxI/u- ic "E.U=l&*K3I8ȁc`aXD)N uMɓ$>{軲v8 iν %4HF"JLGj yr$N?^:19,*-k+q_0FlbT]5So`yRšNb۸K7^sӔwPU݁cRok&2}w}]5ԆĬllƛ7oYHᭊR 2ݕrmoo.ʧ@Z%{pw廯ݼw9 Z>tҌl |ZR|7iɫSunJw!F 0:"cD(E8q V(*hF#PBsLׇ|F%%A6 H@6M)Cՙ(9x|[r>6ȢH'ERO聲{7G&dT 3w(|W ?!HLQmWΗ㏮թ$2OdJΆRBl`&Ȥ gHQ&A^%;ۗ66@dڍ6k0YIo>SO^K^nyWu^k 6hK$\-+C[!D %bK+j WbHO.Rj&nJI d:Xp.`RuV{2B4PJ:(P?[,6vtgz߿φz,@@jF%-?7$ATeu)F9̍{g_[/vӛiv˽-#ݻAA&\r~ydC^>o]+qkO?xOQ8su֞x4c}ەg\y_vEkWhE>͕cip|]`.޳D,B(CQ8R;F("mTBz4x8P:'a*0' 8mO"[bXҧ' h2y"@0! P" R|*TN4jV"8xòDoSO-,֠uʲĦ[{p^VU{"^^^q(0*/ҼBTlI#Zd""? R"J]!BI`Q$O\m]y1@]EsC{d^.\0S8)B/*g<a}H +0*VA=:DmC`-Zovk;R7H K WR%&l _lc +7dC<wPY. S>bw4hq.@ T */k(i"D bA㧼'XhXEamTҀPԧD.!utfAz4{*ap|-azd)-LΤ0FX"RF!ght\I8ddtyܚ1 iik''Y| Q|NIz#=XCqx.R^Jݻ<+2m,2e"ʨHJh̉P Y5GA)EpVܢRU1-ΗNlJU,E嵾Cib 1HʱtofxFp68b $H $GMTL(_FVzFUCpt4wTQ(F$P q BY5|+i)Ja{p_YZUcR}U}AUÛ1.ckO޻}>!~o ,2|1Uu\ mP½rc1la4$Re}? 3>R|eRIa22#zmlX9>܁7ATA_Pap9#ZC "3SȖUґt$[CJ î^]ܥ+O'ZE_9zV!p{ ! R:,ysf1Ex-݃:2O}[npIA5b׍P˅Et g컍YP- Dbt.]s;MOӽ3 Aj峟xgiWUvp1j:%g2YTMaT7{ŋ7_| sJ%dK,e"JOtH]l@ UIY#G,aDa^%3SHD{tUPbeq^GdT|E:mQF @L"D! eO* T%|oB.a|AEQ&X*Uc卍ͯlnPdqw3-*Wǂ9~BDt1,R!헁4؄?D>}N|@$Ɂ!2hS[fJB^R@NDx łEOmZLOx?/ċ@<'d^z٧3,AovKs.N*6sxZ)~nJ 懦 ]%(yuiu~/ܹ^ d&8d+`mE=wQ$tl[Vc e@fipكOZÃC?mWW@STḏ Rnu߂VPJD1޲kcCb4x,8,Tpi!oeíXDDa7&YJ"~p;}hdGeXDjKWR}FlJ[wT>Xe^yP]8/&ty/AXŜH08|qЭ(HAؠG?UcLr/Te?ipĿBzԢNN& K'֓ _)aAGsMo= &=Я DrJT_h>toSk{bndž(g% #ad4F6Lj$x_ACOݜw!?x#?8ux pv_ f8 j\!J~H-KdA*i5] ]7/*>'^DOEwl~׳וguZ|BUkW[VjTCX++/_zڋ7OTL BV./r`k0M:#rLȍɘ8Dz.|\! mTX UP~٥ϟӀQcxID0+|johQP0"P,AK}2VFUwCvbI/xSez\'{ڑH*6RAP ,8c,jC@*ELZ iA-/V OHUUmtZ>m}E)F%Х%:%Y?c4ɶprb!}C"䃚V, QhA˟4_|y])kyRQ!g3A%J TT- lHfs{^zR*T`/ApNg<|:\_h 0@v Bөqꟍb0ri_ Gu]7F{_{[O*!p T+b x7AEA|"n,I& 2'IL0%*e՞BɅ4~#q/VWh.ąY j8*ř!SHZ" ~T%(w.NJ,ꨤDM- T(Qa]ʬSrI'7:JdH̫Ie7h,QMaK4 dž'b0N屶rKU`ʑ3 e[.e*$II` ys x/Dp;ԀNXOR%%XfԃW8+%*߄$=TkI ^aIU_|ϼsR;1DxZΪ *aT&V4^gWO_.ſv|]kPʽeQ剷zDa[.+aZWAv;PO[n U|^ H%UTԆi39\*{H& $á:ꟃ GS<}>P̂jK.}g=[J\'d}pFAW25 ybzx@2s&P _ [%Iތ3xg[_%]R38'Dݑh0dNWK ?1.Iʪ9 JFa*1a5{z8?>M6O!]*6\b q[0L"zɊZ%;*IX՚EE8w ڟEQ/IBӹޏk'擇7F\* ~;biPv3ȍ(Ѻ8BQ$U Y2™7lf1P}NxE_NE/yQ!Ԝ%J/xib)’(<Έ87 Seypw"uH<`ɽAg@T`xWc~Lrb.;^Q PaU!ʙ@ WH& eq:C!(N@. *ӇBKlN+d⊏~Fn-Djl#]IV`9q$t*ɁS c6oMf☆UV_ՃZ;RCȓ(\%ύp5L 3BQ(t*daoXƥxYÃ6l.a"J1@`Yt V(TJDCR34&o*NRG}mU K/\zϥZ OFFZӠ%׽? [%&)n~)TݷB+KOw0@V(%{ )#sM\|OxKS8)+B|OZ9餄4O\Kb:e{;0S+ b T8(wAzbvNɾ2t w]@j [\RA|@cUpUQmy04$GRQq0LglCeĞ `jҠp0 U:(E7P~%Ҙa)Y : P^{1CQ)9xc+ULUsB*wC&jd#bv]"MP~]?¤'"GH'Qвۇ_ʢ̟BZSF^UR+ ̍`]|,ʯ~}&@E:](TQ")&X#J'Ȥ_f:a>D)aTau2l0My?H$7QhbHnr)ʾT*P$zFEPIШd)F.Ya(H ~EQ㨄ZLaśrn0DY-$? l(l^f@T o#U؅;&bKs;hiz2mN D3,ƲCK)Q@hbz~^4D)H{Hd,.K{.=AKȒ~K*ɮTT]ƃ;×+DܔEB¢xr⌠9s#;vvo)7^G ]쀺-k`BFs@"A_- ˶`GŸKE<~Z$(@^> [:C#z깕g~~H;h>ZpR%'eD"Ur#21wyJ R!T/T`I$x|3C8YLc ?C[yI&Jw@u۷Q~QAijB^QvpW-ݕ)U:eOImKk}pljPp z~K/Fms&z?(\طpcڷxV"054pB㐪RK& HXN-Rt(Y~/)}6EaZAR= z >Plp~./4&~H~v #ĄaK'Ca?yWO{}`Vˢjyg}}{>CLMy/,^~p70ȓ%$h1`gy:fܑrcT$#48nk$!%ɩyz)IX57V=Pmݿ~W bQW -rsQ2&5PAlr5)b*.U*QtIFցMP,`g3WQ=`7D|(HLLc͔_ {ā"%`'90g2YH8NE%dőSwA h*L9AVbBzeɔ*8Ǣa j lz+j"HBg ׭ 9ܷ@VDuhvhOn,}`iT\qZ x`B'C&aTe՟KW@d#~axYp,Ʃ$*l$_ xPaLB~x=P1.J)- 8Ut%Ln%Afr_TH<@.4jݔN,?}##"MQI"UP sPś}Re&~2AJ ]Y$Y̤|¤DK BELlwyuܺƦ/L\-6(ML5TaR04"[͒6$>aebc&AUyN_ [ I"&pU)qR<+\>Xɫ*z?Qܼ{w{^1J%Hr>ҵ;$ UPJVQޕh9x}G^C|#y=y&)3[u@R@E Z K #U,dȄ$C?ꕳt\Z؉ݹsP$]Ly '^K%zFGajKWJ&Ov03=2K~ހV1z? V <)ž!zԚօԝ!VQ<[@47h/J' /8bO8]}ƨnb=q<`gRYt%Px بbل-!!xLDЂC=NGy`E;cV,b%J7=#?E&+^K/#=⡟^e;NA0 m`Ɇd(򖆋qss.1) 7"4/ܖ\eŇӃ¤;hb.& pdE y(qK ]EwTpW@KmN|{yTD;@l&ﲣn|щo²s]- D2 ,"\uU- b*>=kqi; `46^Sx`TKPڽy6|r HXx[Bnlp$"un5ܽTysU`3w;J{_z=Uآ#4pfk)g@{]H,>͐Ew;zO#O*'b!M vz)` ҋ7_\z,m|V69`0!6Qwô >-p(A,STbbLseFL &J,H'$ N D?h,@"%W'ȮPR1hG6I0 ˿dQq"{+o,dKt?|~ bE&7Ɨx˙3/.>PmC3N砯pi_- !,c}1MA HC:U8ɟixho./;uj7U­CBoŅ^oAf#*θqopfqaE7Ozq!~g:N n0200sggP!1V_ Z㾇+_8%"HJā/߹C 76VGϜy#f#C3eU|+??[<BhꅅH/ 8x|g _UѣGKR3%q_w'ng;;LmYcv =I'9onKs2Ƈ_}˨3gH11W7~/O=*J2|Ν蓽{v76xmcƗ_^O_yWs^^߲hrS7~9<귞~?}zi}x>(}qaggi@nk_B+ccvX}c2sDd_o|ugO;?w vQ?ޏݸGa>{铧 })?hϥ4Ya?^{ܽ/mlmuZ=Kx(Cvlgq[\͏ˋO]r O!{-gV1dl~kS ->#^ dN-}i2W|'ΟC|c}>~}܋p߼| "%{e4S`Á&-K2,p]8#VpU@=D]Hl!#Ɯ"<ԙDd @K'E}<$*{FNqLɐ_'1NK|>o{w󿀨wup^Y9굫򧱜H$O/I[pwmb JFWX98**1] 2JI k& 0GqNǁQW׮bFpkX}2P{LP4U>@IdrU y dy W է `! ^Ø`4Z/;q˘6WE!5ٕkk/ܻCԑO?vHb߆FRo^r#oZ:ZC EdKze7x적D'/^BN3l 4Ω+QesRQOp</հݖz5@dKJJdgn޺ HTΐמy(Gqw[ L+эk!Hs2AM&r&u~|~mV`ц;Vݗ7?" )G]G<~oZFuq:9ؒg*1^I@.nkxHIExIu.+[׋̫ZT(EMHK>ـ_x -)~XJPB)7lO?0,3R_:#Wh'UpIh2W ~l\ܻ k.Pұee$Ռh\fsLg%:(Ke5 f+cڂ~UUq)є(YyqW) qwBbJ˧0H{,nD$ZCA (IqDXKlAMQQdYR= )f9,& j~-q,eE<&0RO=gAQԓ"SW> 8aqVt_g gƇ#diA~}\[UPJH L9q6Y"O  GTp;=U&A,|2X;iWΞt[Vs˻?@%4_h%a>-LR a|1Jt\phy9L (@+dlw 62>R&]t|Wo Y( Hա!hYNPJL$Km\(ZRe&(V!xST?o?O>3O[9pI-XY8t[WW/mgO z'.Z܈!oᤘ.1)BD:=ΣP @q41'탖7E)%iLASoDI!Ou H;ŰT|9FEday[3`8񕯼կ<Jt}$z7yA44pF߿:ZS fVS"1ThbA@m(CJ E3i*S?\898|J )80P5dX.C&+1pB)H澾_'16|ǪઊO 2<n܇ hc#-pfKE(Q Jn9?XN,u3X8#χޢJN"T͝2V=tzO,㷼1/|3ӻxG!P ^FS'1A R 2;p‰o ӨA:Ku$@I7=|N,-ҝވ0¤j2(}1do:YL<"N6p6*iomOUӡn-`nt}]C-B.J?|{/9&(e0PI(٨T>hOLMH߀U 98ɨU`B8;9L$KY<*D5 Mu7dQ$?U# r NDbGyh`AՇ1^-C:d8ʤC{4JMO<VFr ]_%dOv=Hg֢WfsJ2,a9\9t#}lHU,ICdb9>pbK]y{i&uTu[,eEvj@)i 1Z}g3; "25^ <# b 1&ΜFX48c E' S,%NFKU=sJ{. @Mᕓ3(}X_{}S0UFRV#V>.(A5ewKbp N|e>;-g@ <%jA8^ğ Ezhf1Q')=bFRW:lL1FLOQTBQq_,^.4~"'RTH?ãFEF狋ajk7O6wmx/PlAN.e(%'{ч£zC!rTЩ @k^tOswVqBQzZ*`y_;*GbjgR?E,# ZWB\ۦ0(b,OR%$>Hj!DQnY1 xcxCԱADLhJIz:8< 'MJ=xcz4B<@ 0PJ(b A xJ8a o<4 ğ$~CK ٢(CO:=*@QT<pfEÁFg`^^H UL"6Z*ݖq((bC.6FELbjj ~E`g4aFV#!^L⚄w\JZA.Iy<0yS0 M{E&L,+1 ,) Do!7=qNO!J%[D07l=!&;>N> 7.lĪT@p"1JuTCa*2r.@۷ >AƥD@.3J!P w@~6ju{y@V`O"9o_%;+-J҃E=D sU\r&u3"'k82mO[w6 hn:{-òxI\Ɠ#3p(Ovt Xg,egРaQMr4h%ۂnU$,2!qb!쒆>xjzi"<^lnS(QB%lURA.tvh" ĪQT' <*T HfZKNA,/~7K*B)Rt3BJ:UR_ pYbHB.2=J3ϋwAi!>EC)^lfZ8ϐ8sALD1ED!spUK48@l ` +\ɳd$f/:(D7Ϧ-U"4}f<XDI5Ɛ]U4j3´.0@LbL#Z\q1H2|CVE?*c|^Z8! #_ mOnK]P' PdIJ{촀Q< UZ&J*fBy^B*H8`W!RffB?>~x-t"QjS ^)dQ8'Tf.=K˛"խMlBELwiš1ǙOG@qݾz<]OI'%LV%:9ЀgNJD\M[$C|2qSy'r.w9+ehLKBJp!AT`ϞX87˜nɜltg_Z0|(~B9Đ*xf>D7pUXկB9ij^d&HX&a# 2H) ? 1EQUzTK\ɍTY ]WFz~ LԀFx^ HU!2a=ߞ0@S*ҩZRT{J+eō83MEGHRQr01pA=rg0>E LK J|"$sX\qNJY#O"\ >& 2i'w'v{!O tjpȲd%%Ua(ZC S3C2R5N/=BK4; dB$vF[ڢCf N-Y4:JhO%K LL +G#%K{I(%OR)'T0^x"Io(9dg9RXb=UX[9)`*y˘eL,+ [bF`HVQgaFdNAMJʖ3%,%Ӥz񰢚BLV.i[( 8wz F H^e~=&8(+R$R.f8#V{}h +,0)mv_Nh+1Ɠ4[V(]r CW|&"jG {, K$I Dڱ̨xcws}dQŁ>v a)` U0F3B/8GE)y/%Shh_SڄZp (C#{FT#KPè jaz*Rc>Pkˈm 0O 8'â^'.eO|oSP[Eǫvt+j|BYpi 6z,RFb)$C fYs:6/aB!S> K 8Y Y'^ (ڿzOS'fg; ŰtHH Jf͔Wɀ%{d ZYÖ*J̬ş!^%&Yi T`vQ~ J'mj1{sq mi] SF%=DRUsx.Y`%4uxkF$e3xXP(I H3 ` Z*BQE ~$3DQ[Z]||=x<0AZ|M<3ɓ :xZ[9=^j?&M#Eןp@/ KTQ$R6DV0y6' HAdtxKD4Dlq\7CSzp" E/PtdzSiOLї(g UQ*GD&c]7 IzӐE|O%/ja*dSMȝ!" ?zDiN2#=  M> XGɍ\/E ǂacYp6Yjs. Gm)B'#U Y=UEч58)DȟN+~`uimaxM߁_o|QY4Gu>eZJq/WbmHSpB9^Ӧ«k{qr{I("(7 -Ӵa u2y|x $eQ ?2U!{LD"V *bZ>bg@1> eL:\$tPC!\ 8=#6(q^'pɑ"MD8ݷ,a-uĞ9EwQaQa8phg\Of>’!tq"ARV>g_*$fl Hf%l?J$:z^%E ..ft A;L)FRGpb<(JF]3+Y x=_uIi 7WT Tl|6R߰>ۓr&%: PղB>#X(nq<^e*E˧a웅TUUK:eJ3f AdK LH0 $ pڜx ~>H@C$LA1L oDy0z:v4\fCвCbBzX(JaIBِI@.ړ8Ip"Eje'% B:DPEX*4xCQAJxIelq;WajшuT)M%ǺWt >m/~P&^I" ٔoUm)9lW(+ 6֖`uLk@f^:|3+UE 2)H+,BaI)2'ZLU|{I9ɟ4 -9bUPʹiK@4/o@J$L/NzSQt"gLL \h#AHS%@v 3i{ h$āK!=ZP#$`&ٳ$UgDE_F'q6zd YҟFIHChɢN`Kx "VIMi"VDpu Ub)] Nӡ#g*3꥚ؒ.H#WCDjD%{0s_yznv(J\%Ja'Ja >H%#4r.AJ(Yo2h)mR[K4s)gXp -R3̿<*8RD)UND%퉠 tWв0EB='BKJ<^K@#p0iI|ʰI50m^4٨RpL7\(3-N^b,蔲(>Re oe ?LWw!1% ΄1WVD)DjqȄ&1R grwLJ$r&*R#I*w,B,~eei|.M|Tn9eBeDw緶W>43mE( R;cK#RE,"{ILLJLtgӴ|Qҳ3>(8!męDcLjjj ؃8j @H i0} *T<>x. W %>g*KG1LZ yN"ĚCА`EH3+VQ1WQ`Հg YY=#]a}UA>@QDW˟JT<='hؔ< gAdM!w;Y)+ l 3|+_!v?* I- i4;R]=VEZvD9!KvRԀf0lɓ*+QR+SSqbc4j$M T6 [-{j{7$!4~O/>?J:(f"2QGM-O%b}!nrȜx#I٢}T:3pD^A$HZLaa"h(b$LQ1L NLJ) D [iXc8g*+o@w %h$ 4^ Τea@<`I ;"AHrpub(_AkY&BAH|P 냠5,Gyiu f|BX4Dee T&g픇ETv/& pX$ћ8ijiVh)J@E:eT{:ϴN%? HKv3MOt 6\lkK5KnqU>Ub4)~ 0G&)2'8ׅ*%P?ilI{D Sy2HA|2%*@*k"U̼diF2~$(<cB HT򪡔v8[J~OVHg X$G>nNoCn@>*g4H^!$YhyxƃOՙ) Dje'y]ƻȔ{J3"E:b^ҩ%4'˂\%cKR'$$,` jq x4R &$3UƣZezIU 8 $"Tqb!̘/_qsqvWQ^έ|ba8*E6'у\~^BQ>!ʁS@* !*aQO"BEJyh C_`P~l45?&0&VI9v?CyTt3>hn&(RE9 _^IƆ Q?kcyQ0YY_^9U(Ӄ~8(1I NtמD P*0@ ?H\9om68YȮJ&(g[s.yR l*XHȥtPV;+Ƙ]$a)8{:4G~StR.iSI6E)Q%jS ?ZV@QqP>$Bb.zLH$}q6@"= 9Wtg$6$ E2:5Ě GVhg /-b[Q#fCEjjI{[T Z(&(%[cϜ$oD.&Wϔ:9l|Ǵ΅f;J1vϓ,aړTvlLR–XdZR*yRFPѪSѤ`?n/Tŏ}ލ>:SNLO ( p F E ) }xx@#n?<*>3D zl̝OWU|]1b5~ۑ@^O @ vM1Ȗ/^9&'j@XT#'?(!/<)ӒBafZsPd$XP#qa4g st ?D՜T[lN$mA&A`ð1O%f%#8R~C_ aX`"zTyay!!I(u49PUhY T%LiBgBioS jQG0n>GcJ QIc9Ͻ: =PK _?qZ@S*{zmy_E:%f_g HbS$vNrrai`c,܈!,OOpҟP=EBv(p|)d^D` ic ~l"Af$gL`XNĞhm(,!i[.#ͥi4\6R>Rj`@b ?_dA(Гe:E⹯F#]Lݝ~ޖ57A" EHR JLŝZT x9"xRʇdgӰܰ8 <$Esҋpyp8p OM|Z>J1,A)CIKF7HO$,\˨,`€!$4;b OSF.AF_`@E|Q[y{[ ;2$I9,jMI QXBp%M\zuʽ,G?B8qQ-{8 O’0⎻cL((& +:e%Xsبْ41YTQz7dqNfm"DIJ<,Q&MdHKS~h^B٘ 8;)1"V1zJeک J0)&Sz$=OLG ɒ^\ KޞDD5c֒U%PYGxsS@Τb(Ups)ˡ(E7 /|~3/3V јD<%^b P.PD]"&):j/+aXY_h7*ypM.i=R]_3^4;%ړ< '!>TAw !27=R3oVȃCQtJTjI?Z1*[]J:qy[tA2՟{F$ E;o Pʓ*@Q(Y @mQL&}*}HYأ]nǃ]J&衇͞H@m T&tk dtX= 8pMIz$L:j"^‘*\)R&O PY xOuc"M#O/XL?!Yod)P.ؠ^s԰ h#IWr%UI.ogQ B-JN4K#jC)ǃ+ #YQIGC, d8wV/?g.Jmx0m'-Y{T+e fTҩ&\*7!T&R{~zO 8WqkPmh eJޯRHFt/-01GaR ?aIRgBT"8BJ*)QBT$7!%Mڼm|GMbX(ePɘ!rp%"F4 ڈcj4ɜ+fdTR!Q(Sy|`nI00cjgh=Z9':hbT^Q+WAs5O"eR RȨ4}%$A0JX%=in7۸SyC~I"\U$:qđ!U%f'L۽/ PYGZ%JIJ{bdoN[8sPʲ2I:i#EO *,ȤY)nGzjeյ8sF6*O&3;3cDv&&OXT;'YMC3lu.OL&.e D 41*y*)!jPÐ!wp쒮ڝRhb RIFDwGdJ?BbUPXǔ2S(^J *ȥ~Ǚ$uD&b?=$FBʒJvt(]F#[!>V 2**AU?DZ`AKF-Oz&Q9>I0QQ$p%91LIiz?4g4ent*/_çWӀLe):d1Lq7,ؒxWF$>N|sw|? sC Tȇj5~׬,>P]?Y0hot)sYƒo+} ?ϼCʲ+N$s'zm6*;a77y틘S΋>a? l]9A=;zo-zܹY&G TNZNPY3nsi0*cnI/|'H7D;SzIY;USu9(#gT+`ʒ|ո}0QJ@~Y<2;o?8u;/묁QE\m^|9E} T~-E̯;̌=,sD|sCʗ_L&1՟?[ͤ6zwb /xUx趧zOn<;;%1՟V3=, j~4&Mڤᮑ/>f3B}(hǤ$|U oyc=wo[NL 83G Vd!a\-0x`la!P*~`uB;>hŨh2 T5Y3ibPAV{|zTvHkKdf\kUO+TYM|os,,CFUp)w{9O?iYtJ*^|ڮO+hI aļεH\-)@rWVچL9'oHmaR.Ql5jEܻrFJQiPv)QJxXᑃr + TA#tv+aT*S0C\4Re[vA7\Sx[5k^+RlNm'CVkD#%n >~}nUFЩX"2qfZ5ދ y᮱Cz_ &'ottld[7dkTnKy7ŽJG7jUmJ5m2 M3Af| Pݟ^5'bE@2ϸUWlq[9g.-Lm6o.:I.c)ՄLTCʣe<c oĉ_+Q1 hďewlԻj]So?L*^ޘ1'զL|T&QQT(RG4cyv69cK4Yo)UL ~MP|˼HTL-bHx, +BTPD\"+"E%iz}gԊ *ad{$KJ7RX[T/?RDVw-sH2s5׺EDC$Nz>~VgOUm'v]>nz_fsjcA>փx,U˖Tz'VpT<} Ի2 {بr)"Jj*nwR?DALN_mtQPv([ֽ;jg1Ed]d:C^rVݔ@3ǯRUj D7 HqwnV>*@UnHcFMn{#\Õ@3m)yRlt]J1- rC)za$_n~C)3i#)M\&N`R"(êS[^__C"*4]lpxrR՟ M dz(BTG_Lk8"۶Ϣt-$>v^'feQ&J?{b2Ԃe"$,KY[<ˡe9j "j!M|BYVɽ&a6ѦR9M7%Pgޟ:PWI!V5p؈u]HyRuQ  -4$:2qUmW &ū<؝ڦKbyrV3@7>K +*?o ? XUv򸑙w'0*Hy^Kj(GL# fce;푵N@MsǕ@ TlvvX^7! NYAm09n&J?vndAmR2,Qj-Cq|l]]>Mtzmϫ%gpK24ݔ@ GuBOavb^6qޠv^U2VGU6^i{5q>AdfVmUd#찧 ͵ij#ۑ tVMi(WPM>ϼꫯʡd3*$lzN9ۑjGGޒ̯iSZHpQ_#&6\P 8׭; m:ƲU? QG&+,jcNyD蠍$qKұA|$P* !&2mr`ȌjBΏW%2bPFġL%XuxƏ[sN}o+>>2M3acd>#0-eZ&;xAUd-%2*':S.XLTD12tO ,>L߲:lUϴygq f#顨TڲMPiF5Cmӷ@ " =҃JbvK`cd])HDI{1 1 ox$0{T 1 BQ~E!EE fIڏZپJ UaSSgAFZ_2MM_]?TFV\XN1`xPRVqW;R߮69 YގWQkdw'泵IU;]ōmpN/2*"&9Wb6OͰ .K\}Vl_R%Jj=_l_d#K>b*Z٦L9@Ȩ̽"Kg= zvA8r;ZUλ*jdRQU6jrr\+*;jg ɫKNAsI UyyU2=X[' JU9ָ噻dT]a\pK;gy:ҒaȔ =CmrE0s]"BL"Uڼ*V&PDكe-8fc\ O<Ȼ|/UfTi^TyQXO:cTf۟Ұ߁n8VM<V9+ TJl31ԘtbFuXd d d T%8Ua=g])Imv͘|jR}OfV -16F|np- }XL\j^ל[C[#m"yH 60i׶o?7auO%8Uudsؑ'|wfT jMMo(5Ò5FE͛-㵟~aFljyKm&4'VTVTK\jH(R^,϶Z͢c#ֶo5$8U*%j>kYWNQj)#uLfޱ$5Fe4jxWU.%j>Ւh_qm+lhڲ7XmϣZm24#dJ^貁wQqd c1h7 Yڤa*JPI[sjy]m/W99e=Ҍ76X&ιMH|X5FX)ƱOiӰNF)_UNZ摍 {bKTȭfm( m/-eT#w-ըU3”k* gNyV馆Zã-GLF]扵]Z6Y%̵eaxX/흕@iSڽ);vdSڑz6œ^m^M3Vv7oޜ̏]dQ}2C'+jYoJ{wd1jIX{dwMP2JS.IQ[Ac]<- T8v=/ 2fI_]ZJ 煏)#tUKdcTfTd <6x?iy̾C";7{wblvf tY HR2g@W;[=i,W6S.XKU<=#] {FXZT%w7ODU[Ser>h69tpVU]N] ͳp]>q72DMd :{9+Plj CƪCfUaXb1 srR&ki YɃYHKk~Ryꮯc1wyy\gUm6hwAc6kK<:?*i[p3ك9*>߰ {B|̪uEV.ϪFF&i[ƪϯCskִmv%ڬީ՝L&xSͶ*$EClUHk~3>"TȦFڶ&dY?HϙxSop7T]YݗmJ;.bo hSah`G;4J8nFrYY@9Sn5|0p4/˨^+Yݗ@c T=3.agU3F~\@v5k?g@7YT38?g@ ZUnesnYY& Tn;k_|-Ǽv|Vu['W?K`z?@fSZۣoV[ݠb&bz]g9w|V5{'f  tݟWwSe`̊ĎϪɐ%0{ tݟWJr䦴>}u`ʧ㳪ٿYD3 b*㳪c2djf ^ &۔6Sfߢ/onjoo~b1@9*U)Q٥@b{)m Y@7ybgUǧ!rMf,f:Ϫ:-\,y@ TܹUvus~YYA ~3;ݶk*|l#fqN'ߒwGR Z=/=+ѵY8ŏNYuLrx\ǵ^r@d׾QUbMsVYY^Fum*nnLvmrX:t|V%FŘ0iH/1<,*;I)-jS G'FKJOiȳ;i:P6)idن-hmEa<ֶa{*?RhF K H9,`?+jإj#ǎ*$%laXڋqX˸u-T ְìZVdob)T3oɨj.#1)5T$A_h崇Ԝ4$w.0U7omC }hdʳ㳪0dJFj$$3,#Wr~V:%P5t5j!};'>Zu:>jL#|ɧ! 1y!rK"aiFizKR%xpqkӏ@yf:e|m57:iiiNvٍ㳪a-bz2WVG[2*T _jQ9v0A}y^ RR-l -U(C>YOx”O~W_}W%0X߸yІN=fU9 5y?a/|'y"!c^U4J`Nո՜E3=f;*g:w2V(Jd T*̨uxl$0g@eZ.c4TdU+bs0]oA:ȽL]sT)MC 03ZNU7gg@uۛ%0׌*7n@HI>՘CyPLj h,v] l*mjՑekZN5Fe 0r&jLmJghy&r:$G+yVH%U-_im\aX[ظŞ5G{d:rV=zr>&;Rmd[n>{(qlfAF5nq 6e&V%%-zd-%2iَu u9Lo,a>fjYɚ-^=!})MCk&u9H{-= P짎w:ȨLۓ elQ?W}ƲfX]ls$Hc͠[J=m^lL*&MRȪ>^xIeT OWg%%08Ȼ\N|>4=&cxk[ TU3>12U(IA:+'>T-?"K K%}Gjq1qU-3Kh!ܼg5J~ TK/?KH's TU=^950_*X5UȨTysM:%~d@u^7r٪q<X(TSf d t\x*i-bI6`ZoLpfן-6[f5l4zNyC\;7b:H-:䇚:¨cG ?R10Vnص%lSlFs<3P]0*_֑YY, Tz]0jQ%h LC82!AKL"lk47Rj#_#Vm6i|>:w" t qupO| wQ1@kD=uIaVllt\ J"ЗZmIKQkU -^CMb-1xUgS#񛨭Zs7tKY_4AW8Mm,{J-+f2RSBHokS hܶ8nRUuxzƑ׷j2$p҈|A䣡<|d>]#<j७%Ho6:ܒ?fy|V1P閦A=R!$y8u MFզ MvX&s-&cUy*4Vf˚$hn=Ajqd@el띔سje#=#j %%0U PUku(̦e&$R^72LA1Uw-0If]nRy>8bJ)UHނK4 # e[̨ƕXN%H0&FI}Ut V!l̰-EՑYG.|iy̾??K 3})|yR@5cwqQuyr&OR3PM0w9h.r|H TэfSʎw!?%KJ TǰOr;kn,,)I TSj̶u.e %0$5vΥLsAfN42vJ 9YNf:v=יּ$OR3PM2ێwֹi.tI@5vl;YRY OR3PC'U;Yg%,c'OR3PPwTYYS@'sm;\4:K`$IjyD*c;Đ%p$Ijc#*Κ*K K`J$5Ք}.xgKBg ̃:>I@5hVexgs:>I@uzdC;YsSe d LIfRes)\,y@'ͪדּC~N@']lp;kn,,)I TSj̶u.e %0$5vΥLsAfN42vJ 9YNf:v=יּ$OR3PM2ێwֹi.tI@5vl;YRY OR3PC'U;Yg%,c'OR3PPwTYYS@'sm;\4:K`$IjyD*c;Đ%p$Ijc#*Κ*K K`J$5Ք}.xgKBg ̃:>I@5hVexgs:>I@uzdC;YsSe d LIfRes)\,y@'ͪדּC~N@']lp;kn,,)I TSj̶u.e %0$5vΥLsAfN42vJ 9YNf:v=יּ$OR3PM2ێwֹi.tI@5vl;YRY OR3PC'U;Yg%,c'OR3PPwTYYS@'sm;\4:K`$IjyD*c;Đ%p$Ijc#*Κ*K K`J$5Ք}.xgKBg ̃:>I@5hVexgs:>I@uzdC;YsSe d LIfRes)\,y@'ͪדּC~N@']lp;kn,,)I TSj̶u.e %0$5P6wZ\,,ڼȌ嗁j0jO~5Gm^|9w?8-yYnb/L W_y)="g{p qG ='7\!K8wX>;2P=V͟+s%p$~GwǤŨrxL:DƱ.UqW\[|TwFu̥%08Ȼ9f%3EvOƐ@1f d d d ^f/,,,,1$j aYYYY@x8b1:'7 y|:^sZ.ÉGT|d LIg^}yjLKl) f d d d ̍jn*4K K KxJ l\,,,@i\,,,) TdzsF榩rA2Pvϵ d8@չvw~pٹRe LQ)cg* T3ȇe)JChC *gt:]\,#J3@ PP3:=}w3t}ιs= @ \5";;m=&  m۶޼ @r    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_"; jdz.@k֬-,k7 WvZ[k`WurQ_ zcfǮ`Vzmsvկm ׈G 0bS?Ύ^^x G^sqss̯] vszHA_\16~K#ǟ1IF|?\{ekϺ&pv9&ÉH@bkGwp*Aoˎd|?sq߾{}=j܂hs<Θd4)7>.V>&7xw{Ŀ1rw}wxw!}?oC/Y>_o˟&~mm݋[)o?oo3yO_~_/q'_}qUVM?J\}lu,ͻ|+_qG&L@%(Ύ"/_cwoߺ=y`$O:?-VW^Y}=iK\_=f=u} ϸϸ\W)?o<[7"A-'V=q?`ߟ7k&'ᩋr[R:.7]5y R?|x-?]g>rZ%H5~U@Q 81u?l?n?M.tYgy} s'o8Οt+nZk U;vү~iej‘ؿR?~|v:yڹ ˗V>pDT9RwL./Mo-_Vs꾛6'8ܳ8)UIO+ģWŗ 0JuAո#;>9Knԧn"S{~¼:/jGsW}c~܁gqďxJqqxJ_*;[#:e㵵˪mzv?ھW}ᡗi}@/4bJƸ =﨓NU;w#D6t=xG=Ū]Inw]yryəA?'>N0w!rQ]Ns/-?y'QɎAO|Fjom*ѱZ?tF  >|';e>|^#.!ɎdGyD|Zc1aC犩=`N#߹1sֳ6Q m73?lQ;z1o3S{|r7/Jv$;Ɏk\Y%;L& ]I/I " е]7N{ T& ?9+. p@h-@vlMH  ;nJ @kckB@@fv4>gCZ0ȖMMqS%#%xS;Yӫݦ=`Kj_y-۽Ƚ15 .p(߭UgkF6;E4U; |% @@8; *#khG Rh SUL'Fª2@! ~!Δ Lav.SQۋUrk8ü83gQoۨDLyd@cȳWlfv@ dGr\Rum6]zY<Ψ!;Ɛ ̦@TvMF 0|N=GzU R8ieP V*G\lm;# Po;^@h%](-[BS if08!T#r*E(&@v,FMG *E(&PkvwMg;YFk F@`f)ug'gE6 C ';h|Rc;lJ@li<ڌKGUuV!N$ #Β%@6L%MiPE_+S}3.`dĥ%VYlz&$1(֝v]_mg1 AlWΘ5u!zg\'͉"I|bn͚C&HsYB:n۸ X#HM.?)~H]]A; PXF UsƶmDT'5yqU·jD]q[dA޼Ros|taUʤ.o"vSr_SpCz{=D^س{xg9ߌU<:ˎRk0tqկOG+$ؚ򂪨Z]ľk(n#YmRT]U2f%lyT2_D<6Dn%VeR_r? @FβcW4)oAM×W[Ȋ"v_*Ǥ_kgk/߷ώbD26E.WA :G͞(瓡NsC# Vv47:Uka2 ZNz8djT25ؾAՂjd CЭKs[=!z׿3QRjU5,{!@ʎ)xrR|^2xo2WD T8ʳU_kUW/]EKKⵚC۴.WV^֘[n#[qd.l@`ʎ+HWg5R݄KյָtkfG;~,_В{ޕqiˁSO^<ԘJT*08ejl/lê_j/2gۍQ%'qD>X&O&D f ί;{GE5..:ȿiT/#ZFL+;H2yc0YG5Qqʚ kpԟfʦ\qrt߉vW 2{*Nvj!_71άz٪*GnjG̋ӳ/m_&f憎ȍ Ɠ5<=BRhSۍ1TnqjKqƵV:`!7s _plʪǎ:{GrZ=W=wɇѿoɥ+e; ʵC\E̮J;&TyM^^Szld굑:c0{mU[ 5=G]\ƽkYՋiV9K<#t+ 1gǖ[z=xxz@҉6 1j-{8@Rj͎ziTAm0{m^#NO# 0EZ@`dO1DH ;& Ȏb ,`EGr @(ȣ12@޿ q ~s΄&@ $ś/#6 ЅcMkHvbh@`xƧ-9)j擈@-@v ? ȎÛ"Bq3@ E^XdN@`25'HT@Гbd$;?- 0=;$Hf@u.Co T@FJv9 ȎB|FT@:Rc^z#{O&@.qƤɎI\l P(+i|1kxFhL*qY] cmȎc[@vdU  ` P;&@0Y P;@ P;= pq#S;~bnNel-wwufvZ.־aSKeht2Nvns6փ/|!;6լn[Ϣ5)*fǦ:^װ{S ƈ'7[h>lm.RfU\g4N }`D$c3_I2O1'Iv /|p`ysZNG%-Q{E^N 4O# o0Q_7 !*n 55()16 L5BU]CDwˌhګ8\PNpM C;{~&<*֘;ymb3+8M'EP\c CLnҴH7pN: 3S v}~Nw>7hJ.=)sv O4jp]`GPs~qq:.exU::ToI'%jDYNMIP-nH#n*vCLߋ~{pGKp˦ CM1x 6X,TI76z]Bq}CwrU~’ka,"To\L,L/'1-_ ~!Y@pIsܑ\.$ͱ=z.>Ԙ^6-ǒheLxU{jܾj$;ȼZd1}3H7zz&q'2ccˤw)jp]-M#cPHZF^TFOx1(utI%5:0IÍsP-gYxZcǘԡWmpkGmJKM+ {UĦ|+uQަ7l6{0`c~ә)4`HS5s=O*s){B(32{h17-w!{vh+]̹¹qϖWpcb^[n0>M+61']4Z]`i:SCz> LSo:<:oܽxpUG9r^xxr3ҘHgLlCm_;t 'JzkΕѯjم?Tf :Te_.PiZm!f=[.citْο,+@)#ٳ9fki' QolYMPlɖ@eеc0zɗ}' rq>̚kn}nZkb1Ce؃?4UO it[aF. X0ѸR,B:BgÖԓj̀ns/NF'x[`>⡱Oح !̲jYKƎ ЕcW 0ՎK-^6u,É|6#-G/9-i; vМvߔ'AN$65Yo+g -Ov7^b<"b鮿L7=~ⷜqR?|j"r疤tAެ}P-=O/jյpvIM%azW!CkR2vT<:ѯ^^kiX4։IbHQ׳st"r`#}0&GهCm0#`еn^b2odx?q<Ӧkp2&:=& [ (F0O')9MEN{Ll\wʉ\ISYpxކjZlw#wqnf,cc2yj~<$-{t?L+vI X@ C`jcF삀- R]|T{ vX@|j4EF 0c#o⸃7g1#Kڑu )0ڑF@ O1ύ@,@8el yԎyn 0fj1.cCvsc/@1 P;yv @c{!Yq̳@ @`Ԏc]Ɔ '@^ cv26@<j<7Bg! P;湱 < @ O1ύ@,@8el yԎyn 0fAԎk֬1cCMڱ#^@Q;?Lz@@ A1M@fDqF&a"$P;&`) P;D3L@j,6EjG'ga"T-W$\dԿ@fDH$YO @_8t l X;R>b +_  Yq#'6@z)Yv  U;+] EuQt@/W8! S:  P;V:q У@_{ @Y`#o,< @c[#̂ jYf  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PcEE  A  @EԎM"v,M7  P;V4Y PHڱ4 T$@Xd* @!jBt PH"7nhFK 1+w\l6  1hٱ&b@Ȏ} > @}d挈@ ;-L ȎA"6@X7oٲE?$cSN 1zQ"Eve@dLbKcM 2AF1R@Ldg !@؇*m"-fk`qY\\ܹsgc"z@Im޿ #g{1z@` Ύ+w47|z  -DKz8$[nذA$Kn/w_@zOL2%=T8הcճ) @TOO*1d1}cz&f@9o QtiEHF( `׎vJ2nAf(_jg=}3 @*ɬd );xP3 @Wљ eGfA0jG;Aˎ"jGc@) xjGe~EJw{^ H2[?O}'[H{G;@"8 ʙB3AƂ q9ScQOpɵ煳cK@R)MjSvL$# ', ͎_qWZF@zP/IO}*G @HIv4?70 >u?y厫WeG;@M8@% kA@C`ՕUt@EOWoٲE]fMN-8Uy;;5^ C^YD6%Q-)P]M WV @`}w<Ǐ@F!`Ɇ#;Ħ5@@Q@m۶v׎(YP #pF1ބ+vA\I#^^ Q@FGQ64~oS#1#̎; Um*v%LH@,`ƴOR OpĆ .LbcߕUUIwe#dP& 1JN!@ R)5Fw4<ʪR6ilFȢD'5w0@R4/:c6;"t"L}G>yA/`*OJQJkHJ@J Heading 5 ^5CJOJQJkHJ@J Heading 6 ^>*CJOJQJkHJ@J Heading 7 ^6CJOJQJkHJ@J Heading 8 ^6CJOJQJkHJ @J Heading 9 ^6CJOJQJkHDA@D Default Paragraph FontVi@V  Table Normal :V 44 la (k@(No List >@> Normal Indent ^HH TOC 3 $ X  ]^ a$CJHH TOC 2 $ X ]^a$CJLL TOC 1 $ X ]^a$5CJ22 Index 7 ^22 Index 6 ^22 Index 5 l^l2 2 Index 4 Q^Q2 2 Index 3 6^62 2 Index 2 ^* * Index 1.(@. Line Number6!6  Index Heading4 @4 Footer  o#4@4 Header  o#D&@D Footnote ReferenceCJEH:@:  Footnote TextCJ.)@. Page Number: .8V    VVVVVVV "8   "%8 l  6 6 6 6 6 6 6 6 6 6 6 $p(,038,  KLftu\](IJNOe{<=`| } $ ( )  123JKu-uv8YZ[]^34DE<Ke<q *R}Ay~[\hu &.5<=   !!!(!N!O!!!!!"" """-"."6"7"B"C"j"k""""""&#'#c#d#x#######$-$P$v$w$x$$$$$$$$$$$+%r%s%%%%%%%9&`&&&&&&&&&&"','Y'Z''''''%(4(n(o(p(s(t(((((((()6)I))))) * *:*;*>*?*|*}*~******+0+@+v+|+++++++++ ,,,",k,,,,,,,,,, -Z----------......./=/>/{/|///////00#0/05060J0K0000N11111203333333333333334Q4x4y444444444 5 5Y5Z5|5}55566 6"6#6D6E6~6667V8888888E#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#0E#0E#0E#0E#0E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#hj0E#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE# E#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#`E#`E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#`E#xE#`E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#5E#xE#`E#ȱ4E#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#5E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#d !E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#`E#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#xE#E#E#L^ xxxxxKLftu\](IJNOe{<=`| } $ ( )  123JKu-uv8YZ[]^34DE<Ke<q *R}Ay~[\hu &.5<=   !!!(!N!O!!!!!"" """-"."6"7"B"C"j"k""""""&#'#c#d#x#######$-$P$v$w$x$$$$$$$$$$$+%r%s%%%%%%%9&`&&&&&&&&&&"','Y'Z''''''%(4(n(o(p(s(t(((((((()6)I))))) * *:*;*>*?*|*}*~******+0+@+v+|+++++++++ ,,,",k,,,,,,,,,, -Z----------......./=/>/{/|///////00#0/05060J0K0000N111112033333333333333334Q4x4y444444444 5 5Y5Z5|5}55566 6"6#6D6E6~6667I8J8L8M8O8P8R8S8U8V88888888888888000000000u0u0u 0u 0u 0u 0u 0u0u0u0u0u0u0u0u 0u 0u 0u 0u 0u0u0u0u 0u 0u 0u 0u0u0u0u0u0000000 0 0y0y0y0y0y0y0y0y0y0y0y0y0y0y0y0y0y0y0y00000000000000000000000000000000000000000000000000000000000000000000000(0(00(000000000000000000(000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000y00y00y080y080 y080 y080y0y00y00y000y00y0y0 DDDG0<7@@!.15 2R $=' *-,.03568Q<?@"$%&'()*+,-/0234@#")"+"8: '57>AG!l ,2$LdꥍD@ ( iў \   3  " ,f D +`  S"`B  c $Do ]!` N   ]!D +`  \B  S D"\B   S D"\   3  " \B   S D"V   # " B S  ? """"""48 ,Ht xHtt ,t ) E Ht u u t) I&<tnfndn-nDe n\j!n,(nH)n|h 0'*3+3+8 3+*5+5+8=*urn:schemas-microsoft-com:office:smarttags PlaceType=*urn:schemas-microsoft-com:office:smarttags PlaceName9*urn:schemas-microsoft-com:office:smarttagsplaceB*urn:schemas-microsoft-com:office:smarttagscountry-region?*urn:schemas-microsoft-com:office:smarttags stockticker Ԛ$TZ/5>Dci L R SVQWkq~ $'{ RZ}DJw| ), " !!!"!$!%!'!8!@!"""""###q$u$$$$$%%%%%%<&D&`&d&&&&&&&,'2'''4(:(t(w(((((((I)O)))****++ + +B+H+O+R+~++++++++++++,,,,,,,,,,-...//////////////000!000401122U3[3333333Y4[44444t5z5 666 77]7c7J8888888u  uz{HQy(_oq} (@P]j #$13KN   !!(!,!!!" "."0"7":"'#)#########$$$$$$$$$$%%%%9&_&`&d&&&&&&&&&"')','3'''''%(-(4(;(t(w((((((((()$)6)>)I)P)))))))))E*N*******+ +B+I+~++++++,,E,j,,,,,,--"-#-&-Z-b-h-r-..//////////000!0$0(00040 11113344Q4T4 5566 66E6H6~66677-828J888888888:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::D""6)I)))?*~*2+@+x++,,///0$000y446J8V88888888888","6J888.r.)G5[@ȦY%.FxŌoRvh _,zqvh88^8`o(-h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(hh^h`o(-h ^`OJQJo(h pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo(88^8`o(-h ^`OJQJo(h pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h PP^P`OJQJo(oh   ^ `OJQJo( _.r%.FG5[@zqoRC ],}_cl>66J888@\\amethyst\ps1331Ne06:winspoolHP LaserJet 5Si/5Si MX PS\\amethyst\ps1331 S 4dXXA4PRIV0''''\ \KhC3A,\ IUPHd [none] [none]Arial6Pdcp?GEMRP\\amethyst\ps1331 S 4dXXA4PRIV0''''\ \KhC3A,\ IUPHd [none] [none]Arial6Pdcp?GEMRP,, ,,8@UnknownGz Times New Roman5Symbol3& z Arial7Tms Rmn?5 z Courier New;Wingdings"C Vh\&HdfHdf''x. c'x. ca"V24d663VHX?_c2P:\TEMPLATE\DPTCEE\DOCS.DOT22.3SA1 - Matlab starterKLceeyrp$      CompObjq