ࡱ>  @ Abjbj za9kkk8HkkN2toDqqqqt{vvDͱϱϱϱϱϱϱ$RҵwWt^twwqq{{{wqqͱ{wͱ{{30qho ^tݥkxc$ 0N$^6y^H^eTCw"ew{}wwYCwCwCwGlJ zlJ Excel Functions  TOC \o "1-1" \h \z \u  HYPERLINK \l "_Toc224909709" MATHEMATICAL OPERATORS  PAGEREF _Toc224909709 \h 2  HYPERLINK \l "_Toc224909710" FUNCTIONS  PAGEREF _Toc224909710 \h 2  HYPERLINK \l "_Toc224909711" SUM  PAGEREF _Toc224909711 \h 3  HYPERLINK \l "_Toc224909712" MULTIPLY  PAGEREF _Toc224909712 \h 3  HYPERLINK \l "_Toc224909713" DIVIDE  PAGEREF _Toc224909713 \h 4  HYPERLINK \l "_Toc224909714" AVERAGE  PAGEREF _Toc224909714 \h 5  HYPERLINK \l "_Toc224909715" MAX  PAGEREF _Toc224909715 \h 6  HYPERLINK \l "_Toc224909716" MIN  PAGEREF _Toc224909716 \h 6  HYPERLINK \l "_Toc224909717" COUNT  PAGEREF _Toc224909717 \h 7  HYPERLINK \l "_Toc224909718" CountA  PAGEREF _Toc224909718 \h 8  HYPERLINK \l "_Toc224909719" IF  PAGEREF _Toc224909719 \h 8  HYPERLINK \l "_Toc224909720" PMT  PAGEREF _Toc224909720 \h 9  HYPERLINK \l "_Toc224909721" SIN, COS, TAN  PAGEREF _Toc224909721 \h 9  HYPERLINK \l "_Toc224909722" COPYING  PAGEREF _Toc224909722 \h 10  HYPERLINK \l "_Toc224909723" FILL DOWN  PAGEREF _Toc224909723 \h 10  MATHEMATICAL OPERATORS The mathematical operators used in Excel formulas are similar to the ones used in math class. Subtraction - minus sign ( - ) Addition - plus sign ( + ) Division - forward slash ( / ) Multiplication - asterisk (* ) Exponentiation - caret (^ ) Order of Operations If more than one operator is used in a formula, there is a specific order that Excel will follow to perform these mathematical operations. This order of operations can be changed by adding brackets to the equation. An easy way to remember the order of operations is to use the acronym: BEDMAS The Order of Operations is: Brackets Exponents Division Multiplication Addition Subtraction How the Order of Operations Works Any operation(s) contained in brackets will be carried out first followed by any exponents. After that, Excel considers division or multiplication operations to be of equal importance, and carries out these operations in the order they occur left to right in the equation. The same goes for the next two operations addition and subtraction. They are considered equal in the order of operations. Which ever one appears first in an equation, either addition or subtraction, is the operation carried out first. FUNCTIONS In Excel there is a help tool for functions called the Function Wizard. There are two ways to get the function wizard. If you look at the Standard Toolbar, the function wizard icon looks like this:  The other way to get to the function wizard is to go to the Menu INSERT -- down to FUNCTION. Either way you get there, at this point Excel will list all of the functions available. Upon choosing the function, Excel will prompt you for the information it needs to complete the function. Mini descriptions are available for each of the cells. It is often necessary for you to understand the functions in order to be able to figure out these descriptions. Once youve learned the functions, though, it is faster to type the basic function in from the keyboard as opposed to going through the steps of this tool.  SUM Probably the most popular function in any spreadsheet is the SUM function. The Sum function takes all of the values in each of the specified cells and totals their values. The syntax is: =SUM(first value, second value, etc) In the first and second spots you can enter any of the following (constant, cell, range of cells). Blank cells will return a value of zero to be added to the total. Text cells can not be added to a number and will produce an error. Let's use the table here for the discussion that follows: We will look at several different specific examples that show how the typical function can be used! Notice that in A4 there is a TEXT entry. This has NO numeric value and can not be included in a total. A 1 25 2 50 3 75 4 test 5  ExampleCells to ADDAnswer=sum(A1:A3)A1, A2, A3 150=sum(A1:A3, 100)A1, A2, A3 and 100250=sum(A1+A4)A1, A4#VALUE!=sum(A1:A2, A5)A1, A2, A575  MULTIPLY An example of multiplying two numbers, such as 235 and 546, using the PRODUCT function would be: =PRODUCT( 235 , 546 ) The answer of 128,310 will appear in the cell where you type the function. While this approach to using the PRODUCT function works, it limits the usefulness of the function. A better way of using the function is to type the numbers you are multiplying into cells on the spreadsheet and then enter those cell references (the address of the cells) into the function. For example, if we enter the numbers 235 and 546 into cells C1 and C2, we would write the function as: =PRODUCT( C1:C2 ) The answer is still 128,310, but the advantage of this approach is that if the numbers ever change, you only need to change the numbers in cells C1 or C2 and the function automatically updates the answer. For example, if you find that the number in C1 wasn't 235 but 230, simply type 230 in cell C1 and the function updates the answer to 128,580. This approach works well for instances where you have constantly changing numbers say on a monthly income statement where the income amounts get multiplied by set numbers to find deduction rates for taxes, pensions, or medical benefits.  DIVIDE To divide two numbers in Excel you need to create a formula. Important points to remember about Excel formulas: formulas in Excel always begin with the equal sign ( = ) the equal sign always goes in the cell where you want the answer to go the division symbol is the forward slash ( / ) Use Cell References in Formulas Even though you can use numbers directly in your division formula, it is much better to use the references or addresses of the cells containing your data. If you use the cell references [A1, B1, F2] rather than the actual data, later, if you need to change the data in either cell, the results of the formula will update automatically without you having to rewrite the formula. Setting Up the Division Formula As an example, lets create a formula in cell E1 that will divide the contents of cell C1 by cell D1. Our formula: =C1 / D1 Our data: place the number 20 in cell C1 place the number 10 in cell D1 Division Formula Steps To divide 20 by 10 and have the answer appear in cell E1: Type an equal sign in cell E1. Click on cell C1 with the mouse pointer. Type the division sign ( / ) in cell E1. Click on cell D1 with the mouse pointer. Press the ENTER key on the keyboard. The answer 2 should be present in cell E1. Even though you see the answer in cell E1, if you click on that cell you will see our formula in the formula bar above the work area. To expand your formula to include additional operations - such as subtraction or addition - just continue to add the correct mathematical operator followed by the cell reference containing your data.  AVERAGE There are many functions built into many spreadsheets. One of the first ones that we are going to discuss is the Average function. The average function finds the average of the specified data. (Simplifies adding all of the indicated cells together and dividing by the total number of cells.) The syntax is as follows. =Average (first value, second value, etc.) Text fields and blank entries are not included in the calculations of the Average Function. Let's use the table here for the discussion that follows: We will look at several different specific examples that show how the average function can be used! A 1 25 2 50 3 75 4 100 5  ExampleCells to averageAnswer=average (A1:A4)A1, A2, A3, A462.5=average (A1:A4, 300)A1, A2, A3, A4 and 300110=average (A1:A5)A1, A2, A3, A4, A562.5=average (A1:A2, A4)A1, A2, A458.33  MAX The next function is Max, which stand for Maximum. This will return the largest (max) value in the selected range of cells. Blank entries are not included in the calculations of the Max Function. Text entries are not included in the calculations of the Max Function. Let's use the table here for the discussion that follows. We will look at several different specific examples that show how the Max functions can be used! A 1 10 2 20 3 30 4 test 5  Example of MaxCells to look atAns. Max=max (A1:A4)A1, A2, A3, A430=max (A1:A4, 100)A1, A2, A3, A4 and 100100=max (A1, A3)A1, A330=max (A1, A5)A1, A510 MIN The next function we will discuss is Min (which stands for minimum). This will return the smallest (Min) value in the selected range of cells. Blank entries are not included in the calculations of the Min Function. Text entries are not included in the calculations of the Min Function. Let's use the table here for the discussion that follows. We will look at several different specific examples that show how the min functions can be used! A 1 10 2 20 3 30 4 test 5  Example of minCells to look atAns. min=min (A1:A4)A1, A2, A3, A410=min (A2:A3, 100)A2, A3 and 10020=min (A1, A3)A1, A310=min (A1, A5)A1, A5 (displays the smallest number)10  COUNT The next function we will discuss is Count. This will return the number of entries (actually counts each cell that contains number data) in the selected range of cells. Blank entries are not counted. Text entries are NOT counted. Let's use the table here for the discussion that follows. We will look at several different specific examples that show how the Count functions can be used! A 1 10 2 20 3 30 4 test 5  Example of CountCells to look atAnswer=Count (A1:A3)A1, A2, A33=Count (A1:A3, 100)A1, A2, A3 and 1004=Count (A1, A3)A1, A32=Count (A1, A4)A1, A4 1=Count (A1, A5)A1, A51  CountA The next function we will discuss is CountA. This will return the number of entries (actually counts each cell that contains number data OR text data) in the selected range of cells. Blank entries are not Counted. Text entries ARE Counted. Let's use the table here for the discussion that follows. We will look at several different specific examples that show how the CountA functions can be used! A 1 10 2 20 3 30 4 test 5  Example of CountACells to look atAnswer=CountA (A1:A3)A1, A2, A33=CountA (A1:A3, 100)A1, A2, A3 and 1004=CountA (A1, A3)A1, A32=CountA (A1, A4)A1, A4 2=CountA (A1, A5)A1, A51  IF The next function we will discuss is IF. The IF function will check the logical condition of a statement and return one value if true and a different value if false. The syntax is =IF (condition, value-if-true, value-if-false) value returned may be either a number or text if value returned is text, it must be in quotes Let's use the table here for the discussion that follows. We will look at several different specific examples that show how the IF functions can be used! A B 1 Price Over a dollar? 2 $.95 No 3 $1.37 Yes 4 comparing # returning # 5 14000 0.08 6 8453 0.05  Example of IF typed into column BComparesAnswer=IF (A2>1,"Yes","No")is ( .95 > 1)No=IF (A3>1, "Yes", "No")is (1.37 > 1)Yes=IF (A5>10000, .08, .05)is (14000 > 10000).08=IF (A6>10000, .08, .05)is (8453 > 10000).05  PMT The PMT function returns the periodic (in this case monthly) payment for an annuity (in this case a loan). This is the PMT function that was used for the car purchase in the first example. There are a few things that we must know in order for this function to work. To calculate the loan we must know a combination of the following (rate) interest rate per period (NPER) number of payments until repaid (PV) present value of the loan (amount we are borrowing) (FV) future value of the money (for saving or investing) (type) enter 0 or 1 to indicate when payments are due. =PMT(rate, NPER, PV, FV, type)  INCLUDEPICTURE "http://www.usd.edu/trio/tut/excel/gif/computerled.gif" \* MERGEFORMATINET equation goes into c7 =PMT(C4/12,C5,-C3) C4 is the yearly interest and since it's compounded monthly we divide by 12 C5 is the number of months (# of payments) -C3 is the amount of money we have (borrow - negative) Note that the rate is per period. If we have an annual interest rate of 9.6% and we are calculating monthly payments, we must divide the annual interest rate by 12 to calculate the monthly interest rate.  SIN, COS, TAN Excel has most of the math and trig functions built into it. If you need to use the SIN, COS, TAN functions, they can be typed into any cell. If you wanted to find: anglesincostanREF=sin(REF)=cos(REF)=tan(REF)00.001.000.00300.500.870.58450.710.711.00901.000.00 1800.00-1.000.00format for degrees formula = sin (angle * pi()/180) the argument angle is in degrees format for radians formula = sin (angle) the argument angle is in radians To calculate trig functions in degrees you must convert them - otherwise excel will calculate them in radians. You can type in either an actual number for the REF or you can also type in a reference from the excel spreadsheet (like A2).  COPYING Sometimes when we enter a formula, we need to repeat the same formula for many different cells. In the spreadsheet we can use the copy and paste command. The cell locations in the formula are pasted relative to the position we Copy them from. A B C 1 5 3 =A1+B1 2 8 2 =A2+B2 3 4 6 =A3+B3 4 3 8 =? + ? Cells information is copied from its relative position. In other words in the original cell (C1) the equation was (A1+B1). When we paste the function it will look to the two cells to the left. So the equation pasted into (C2) would be (A2+B2). And the equation pasted into (C3) would be (A3+B3).   FILL DOWN If you have a lot of duplicate formulas you can also perform what is referred to as a FILL DOWN. Often we have several cells that need the same formula (in relationship) to the location it is to be typed into. There is a short cut that is called Fill Down. There are a number of ways to perform this operation. One of the ways is to select the cell that has the original formula hold the shift key down and click on the last cell (in the series that needs the formula) under the edit menu go down to fill and over to down A B C 1 5 3 =A1+B1 2 8 2 fill down 3 4 6 fill down 4 3 8 fill down Cells information is copied from its relative position. In other words in the original cell (C1) the equation was (A1+B1). When we paste the function it will look to the two cells to the left. So the equation pasted into (C2) would be (A2+B2). And the equation pasted into (C3) would be (A3+B3). And the equation pasted into (C4) would be(A4+B4).  Excel Functions  PAGE 7 -./0LMNOefgùæuj[jJ[?[hjmHnHu j}h2UmHnHujh2UmHnHuh2mHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHu$jhXh20JUmHnHuh2h;5:jh2h;5:Uh;5:CJaJhX5:CJaJh&2h=5:CJaJh25:CJaJ d =  Y : $ !]^a$gd2 !]^gd2$]^a$gd2$a$gd=aA~A    Ѯѣx^ѣMx jqh2UmHnHu2jhXh2>*B*UmHnHphuhjmHnHu jwh2UmHnHujh2UmHnHuh2mHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHu$jhXh20JUmHnHuh2CJaJmHnHu      7 8 9 : B C D ^ _ ` a b c d e f ¹Ÿ”x¹^”M jeh2UmHnHu2jhXh2>*B*UmHnHphuhjmHnHu jkh2UmHnHuh2mHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHuh2CJaJmHnHu$jhXh20JUmHnHujh2UmHnHu        7 ҷҷxҷ^ҷ2jhXh2>*B*UmHnHphu j_h2UmHnHuh2mHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHuh2CJaJmHnHu$jhXh20JUmHnHuhjmHnHujh2UmHnHu7 8 9 : ; < = > ? [ \ ] ^ a b c } ~  µ§§yyhµ§N§y2jhXh2>*B*UmHnHphu jSh2UmHnHuh2mHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHuh2CJaJmHnHu$jhXh20JUmHnHuhjmHnHujh2UmHnHu jYh2UmHnHu          2 3 4 5 𶩶xg𶩶M2j hXh2>*B*UmHnHphu jG h2UmHnHu2jhXh2>*B*UmHnHphuh2mHnHuhXh20JmHnHuh2CJaJmHnHu$jhXh20JUmHnHuhjmHnHu jMh2UmHnHuh2mHnHujh2UmHnHu5 7 8 9 S T U V W X Y Z [ w x y z } ~  ׻רxg׻ר j; h2UmHnHu2j hXh2>*B*UmHnHphuh2mHnHuh2CJaJmHnHu$jhXh20JUmHnHuhjmHnHu jA h2UmHnHujh2UmHnHuh2mHnHuhXh20JmHnHu       3 4 5 7 8 9 : ; < źӂy_źNӂ j/ h2UmHnHu2j hXh2>*B*UmHnHphuh2mHnHuh2CJaJmHnHuhjmHnHu j5 h2UmHnHujh2UmHnHuh2mHnHuhXh20JmHnHu$jhXh20JUmHnHu2j hXh2>*B*UmHnHphu< X Y Z [ d e f   6 9 V Y w y λ谡xf[WPLELELELE hYK5\hYK hYKhYKh2hYK5:CJaJ#jh2h;5:CJUaJh2CJaJmHnHuhjmHnHu j)h2UmHnHujh2UmHnHuh2mHnHu$jhXh20JUmHnHu2j hXh2>*B*UmHnHphuhXh20JmHnHuh2mHnHu < \ | 1TgU_`) [$\$gdW5gdW5^gdYKgdYK & Fdd[$\$^gdYKgdYKgdYKy  %&1R^_+,ntqrwx}~0123=j~h&2Uh=CJaJh&2h=juh=UjhYKUmHnHujhW5U hW55\hW5 hYKhYK hYK5\hYKC)-W}$hno$IfK$$If$If & Fdd[$\$gd. & Fdd[$\$gd=gd= & Fdd[$\$gd=gd=gd&2$a$gd=gdW5 [$\$gdW5[$\$^gdW5oqrtw`X$IfK$kd$IfK$L$0 0634abp $$Ifa$K$wxz}qi^ $$Ifa$K$$IfK$kd$IfK$L$0  0634abp}~qi^ $$Ifa$K$$IfK$kd$IfK$L$0  0634abpqi^ $$Ifa$K$$IfK$kd$IfK$L$0  0634abpqii$IfK$kd$IfK$L$0  0634abpqk$Ifkds$IfK$L$0  0634abp$Ifgd=[kdQ$$IfT0$ 634apT]WWW$Ifkd$$IfTFDS e06    34ab pT]WWW$Ifkd$$IfTFDS e06    34ab pT ]WWW$Ifkd$$IfTFDS e06    34ab pT"-0]WWW$Ifkd$$IfTFDS e06    34ab pT0124=][SNIDIgd&2gd&2gd&2$a$gd&2kd$$IfTFDS e06    34ab pT=>#$)06: F H P Q Z Q!S!!!C"N"""-#.#/####[$%%%%%%%%%%%%%Իh=CJaJ h=6] h=5\h=jh=U hYKhYKhs hYK5\ hshYKhYKjhYKU h&2h&2 h&25\h&2jh.UmHnHu<%mf8: H Q \ |  & F dd[$\$gdYKgdYK & F dd[$\$gdYKgdYKgdYK$a$gdYKgd&2gd&2\$gds !8!b!!!!e".#0#8#w$$$%%%% $$Ifa$K$$IfK$$Ifgd= & Fdd[$\$gd=gd=gd&2$a$gd=gds & Fdd[$\$gdYKgdYK%%%%kcX $$Ifa$K$$IfK$kdR$IfK$L$0 0634abp%%%%qi^ $$Ifa$K$$IfK$kd<$IfK$L$0  0634abp%%%%qi^ $$Ifa$K$$IfK$kd $IfK$L$0  0634abp%%%%qi^ $$Ifa$K$$IfK$kd $IfK$L$0  0634abp%%%%qii$IfK$kd!$IfK$L$0  0634abp%%%qk$Ifkd"$IfK$L$0  0634abp%%%%%%$Ifgd=[kd#$$IfT0$ 634apT%%%% & &;&<&e&f&&&&&&&&''A(B(G(H(M(N(S(T([(\(_(`(a(b((((((((( )))9)<)*************** +!+@+A+e+f+~++++++++++hsjm?h=Uj0:h=Uj3h=Uh&2 h=\ h=5\j(h=Uh=h=CJaJL%%%& &]WWW$Ifkd$$$IfTFDS e06    34ab pT & & &7&;&]WWW$Ifkd %$$IfTFDS e06    34ab pT;&<&M&`&e&]WWW$Ifkd%$$IfTFDS e06    34ab pTe&f&{&&&]WWW$Ifkd&$$IfTFDS e06    34ab pT&&&&&'Z'][[VQB & Fdd[$\$gd=gd=gd&2kd'$$IfTFDS e06    34ab pTZ''>(?(A(B(D(G(Ckd[)$IfK$L$0 0634abp $$Ifa$K$$IfK$$If & Fdd[$\$gdsG(H(J(M(qi^ $$Ifa$K$$IfK$kdE*$IfK$L$0  0634abpM(N(P(S(qi^ $$Ifa$K$$IfK$kd#+$IfK$L$0  0634abpS(T(V([(qi^ $$Ifa$K$$IfK$kd,$IfK$L$0  0634abp[(\(^(_(qii$IfK$kd,$IfK$L$0  0634abp_(`(a(qk$Ifkd-$IfK$L$0  0634abpa(b(c(d(s((($Ifgd=`kd.$$IfT0$ 634apT(((((XRRI $$Ifa$$Ifkd'/$$IfTFDS e06    34ab pT(((((XRRI $$Ifa$$Ifkd0$$IfTFDS e06    34ab pT(((((XRRI $$Ifa$$Ifkd1$$IfTFDS e06    34ab pT(() ) )XRRI $$Ifa$$Ifkd1$$IfTFDS e06    34ab pT ))))))XPKF7 & Fdd[$\$gd=gd=gd&2$a$gd=kd2$$IfTFDS e06    34ab pT)5*******Ckdd4$IfK$L$0 0634abp $$Ifa$K$$IfK$$If & Fdd[$\$gds****qi^ $$Ifa$K$$IfK$kdN5$IfK$L$0  0634abp****qi^ $$Ifa$K$$IfK$kd,6$IfK$L$0  0634abp****qi^ $$Ifa$K$$IfK$kd 7$IfK$L$0  0634abp****qii$IfK$kd7$IfK$L$0  0634abp***qk$Ifkd8$IfK$L$0  0634abp***++ +$Ifgd=[kd9$$IfT0$ 634apT +!+.+=+@+]WWN $$Ifa$$Ifkd:$$IfTFDS e06    34ab pT@+A+S+b+e+]WWN $$Ifa$$Ifkd;$$IfTFDS e06    34ab pTe+f+t+{+~+]WWN $$Ifa$$Ifkd<$$IfTFDS e06    34ab pT~+++++]WWN $$Ifa$$Ifkd=$$IfTFDS e06    34ab pT+++++j,,]XXSN? & Fdd[$\$gd=gd=gdsgd=kd>$$IfTFDS e06    34ab pT+++J-K-P-Q-V-W-\-]-d-e-h-i-j-k-w-|---------..+.,.-.../.4.[.a...//////////////////005060`0a0{0|000000000222222jYWhW5UhW5CJaJ hW55\hW5h;jcKh=Uh=CJaJ h=5\h=N,,G-H-J-K-M-P-Ckd @$IfK$L$0 0634abp $$Ifa$K$$IfK$$If & Fdd[$\$gdsP-Q-S-V-qi^ $$Ifa$K$$IfK$kd@$IfK$L$0  0634abpV-W-Y-\-qi^ $$Ifa$K$$IfK$kdA$IfK$L$0  0634abp\-]-_-d-qi^ $$Ifa$K$$IfK$kdB$IfK$L$0  0634abpd-e-g-h-qii$IfK$kdC$IfK$L$0  0634abph-i-j-qk$IfkdkD$IfK$L$0  0634abpj-k-l-}---$Ifgd=[kdIE$$IfT0$ 634apT-----]WWN $$Ifa$$IfkdE$$IfTFDS e06    34ab pT-----]WWN $$Ifa$$IfkdF$$IfTFDS e06    34ab pT-----]WWN $$Ifa$$IfkdG$$IfTFDS e06    34ab pT--...]WWN $$Ifa$$IfkdH$$IfTFDS e06    34ab pT..".).+.]WWN $$Ifa$$IfkdI$$IfTFDS e06    34ab pT+.,.-./.6../]XXSN? & Fdd[$\$gdW5gdW5gdsgd=kdvJ$$IfTFDS e06    34ab pT/)///////CkdK$IfK$L$0 0634abp $$Ifa$K$$IfK$$If & Fdd[$\$gds////qi^ $$Ifa$K$$IfK$kdL$IfK$L$0  0634abp////qi^ $$Ifa$K$$IfK$kdM$IfK$L$0  0634abp////qi^ $$Ifa$K$$IfK$kdN$IfK$L$0  0634abp////qii$IfK$kdO$IfK$L$0  0634abp///qk$IfkdaP$IfK$L$0  0634abp////00 $$Ifa$$IfgdW5[kd?Q$$IfT0$ 634apT00(03050XRRI $$Ifa$$IfkdQ$$IfTF4C e06    34ab pT5060K0^0`0XRRI $$Ifa$$IfkdR$$IfTF4C e06    34ab pT`0a0r0y0{0XRRI $$Ifa$$IfkdS$$IfTF4C e06    34ab pT{0|0000XRRI $$Ifa$$IfkdT$$IfTF4C e06    34ab pT00000XRRI $$Ifa$$IfkdU$$IfTF4C e06    34ab pT00000n11XSSNIA & FgdsgdW5gdsgdW5kdlV$$IfTF4C e06    34ab pT1112222 $$Ifa$K$$IfK$$If & F dd[$\$gds & F gds22222KC88 $$Ifa$K$$IfK$kdW$IfK$L$F 06    34ab p22222WODD $$Ifa$K$$IfK$kd Y$IfK$L$F  06    34ab p22222WODD $$Ifa$K$$IfK$kd Z$IfK$L$F  06    34ab p22222223333337383_3`333333333U6V6666666777Z8[8888888#9$9F9G9X9Y9k9l9~99999999: :3;4;=;;< <$<7<8<E<F<S<T<hbYjrhbYUjjhW5U hW5y(jdhW5UjhW5UjdhW5U hW55\hW5CJaJhW5J22222WODD $$Ifa$K$$IfK$kd[$IfK$L$F  06    34ab p22222WODD $$Ifa$K$$IfK$kd\$IfK$L$F  06    34ab p22223WODD $$Ifa$K$$IfK$kd\$IfK$L$F  06    34ab p333WQ$Ifkd]$IfK$L$F  06    34ab p333'30373 $$Ifa$$IfgdW5[kd^$$IfT0  634apT7383N3\3_3]WWN $$Ifa$$Ifkd{_$$IfTF2 A e06    34ab pT_3`3x333]WWN $$Ifa$$Ifkdh`$$IfTF2 A e06    34ab pT33333]WWN $$Ifa$$IfkdUa$$IfTF2 A e06    34ab pT33333]WWN $$Ifa$$IfkdBb$$IfTF2 A e06    34ab pT33333@5a55]XXSN?? & F dd[$\$gdW5gdW5gdsgdW5kd/c$$IfTF2 A e06    34ab pT55556T6U666*7U77 $If^gdbY $If^gdbY$IfgdW5$a$gdW5 & F dd[$\$gds & F dd[$\$gdW5 77Z8\8]8k89999#9$IfgdW5gdsgdW5[kdj$$IfT0 $634apT #9$9(929(""$Ifkd3k$$IfT\b weee ````(0634abp(T29<9F9G9"kd`l$$IfT\b w `(0634abp(T$IfG9I9N9S9X9Y94kdm$$IfT\b w ` 0634abp(T$IfY9\9a9f9k9l94kdn$$IfT\b w ` 0634abp(T$Ifl9o9t9y9~994kdo$$IfT\b w ` 0634abp(T$If9999994kdp$$IfT\b w ` 0634abp(T$If9999994kdq$$IfT\b w ` 0634abp(T$If9D::3;5;=;0<1<3<5<7< $$Ifa$K$gds$a$gdbYgdW5 7<8<:<<<' $$Ifa$K$kd&s$IfK$L$T\%\g (0634abp(T<<><E<F<H<J<.kd\t$IfK$L$T\%\g  0634abp(T $$Ifa$K$J<L<S<T<V<X<.kdfu$IfK$L$T\%\g  0634abp(T $$Ifa$K$X<Z<a<b<d<f<.kdpv$IfK$L$T\%\g  0634abp(T $$Ifa$K$T<a<b<o<p<<<<<N=R=\=c===========> > >??????????????@@_@c@u@|@@@@@AA"A)AHALAUA\A_A`AaAqArA!jh=hU0JCJUaJh=hUCJaJhbYCJaJ hbY5\hbYhbYaJhbYjyhbYU hW5y( hW55\hW5CJaJhW5>f<h<o<p<q<.% $$Ifa$kdzw$IfK$L$T\%\g  0634abp(T $$Ifa$K$q<==== >>(???????}}}rrrr $$Ifa$K$ & F dd[$\$gdbYgdbYgdbYgdW5Wkdx$$If0$634ap w$If^wgdW5 ????' $$Ifa$K$kdy$IfK$L$T\R{> (0634abp(T??????.kdz$IfK$L$T\R{>  0634abp(T $$Ifa$K$??????.kd{$IfK$L$T\R{>  0634abp(T $$Ifa$K$??????.kd|$IfK$L$T\R{>  0634abp(T $$Ifa$K$??@@@.% $$Ifa$kd}$IfK$L$T\R{>  0634abp(T $$Ifa$K$@_A`AaA|A}A~AA !$dgd=gdW5Wkd~$$If0d$634ap $If^gdbYrAxAyAzA{A|A}A~AAhW5h1vhUh=hUCJaJhU0JCJaJmHnHu!jh=hU0JCJUaJh=hU0JCJaJ) 01h:p2/ =!"#`$%n^Zr%@_٢eQfPNG  IHDRrH sRGBZIDATx^}%U}^n/׷WvYTA)RKl4h+vA QU:.lkٽ<{a.d~2s_;>\@4DeqMY@߾̳TGfN%k{ g>am {*xLy \^eUbqVUX,vdV;ǰ)0MEAn{|k D8VsAԨI"|sgbjOpߞO :=;߷=9A[`ȹ#ɜBCiQ@zpo۶"GkU;as=W9S8 Ins$e >?U `ݲ-h MWyA]w>sHK;"o#u"NDps;\H g."l«c9ۃ\ìG( ĉjbBYI@\xjG1Dz{I( 7d~/d`AiJT+C@ lDs/fBm֢iF^8u}U.Y&ժL*A 1eIk6Qɸ3fH0@2o`Z1ը[z=N 2רRLhTuHDŀ4=IjYxHQ Kgf6rj5KOǜE0, H{⎪M89kQхj8 `zE29Z:^,D0dR3a7 ֈo8ܣ+3>m<[v_H^` ܞ~.0pop_`~`g oآE%f$c1m)12V/CЈ gnܷnIКQ*4M 8@s8C) &iRFBbD\&Sғ\]U0b1d[/ K4\N)F&-5Z+JMVUٲ . 3q90 w6uYlaXxdlz͇ H&) ~`tFyy]bL-"yA* L4rzmř9Zu0"rT(M=+/7cbLnc(#HW6+/RxZEVשVX8 A r'Mxes2 {pXCcQ+"/jbbovv6v QGe6جC%ZElWW#L?a'`6 ihR꺎Kp9'fĀ~.lڌ1[w鞅!y#R7*hݑ._)纮`H0`4JeJI'"\aR0iS3efLl +]1OVH|S+ YJQKt* ܧR)N&py'eD}r=uYgUKdǤ(ѨR,p~2f ̰?٬U`L14,3+V ۗߟgݹP>cF=W'tOĜqw]T*\-'LLeZbNǐ25Mb2nDf*{q7Ta{36P`׃ CzI]Q \Tɘd2 Kg ʍfNɈ# %2%織e$.dҒ 6˾w1J vViXPhRAy$mzLpu:|\Tv/$a|~аv%`L&apsQ ن LMM̜r)9%(n7nҗ_q;@*zA==}ꩧ* M3+tV ǯ`ɔOg,sbdlwhVbٸqΥh<穧b}{7e`Iz[11#Z;xi#o]|L/)P̿_ }3KFѠ( h\$|RsGR~k_K7G?/ƽv=ߴiӟr9C owuQ؏Gul|f̍crz!{,Y(w b}HE@5:`RXn (1- b(V@.`aYؾ l3vnPyblٱİ,s~P,n裏Zu@ws CiCxe2?33[*WMw"%>9vp# QuٟZqc~<]ү}߽S3*`E6l b\ gO뮻.L[,5 ۽@G>={b} d*uirЊ'&0EUK5a/Hg5]h>x-o~_埿m;?ʆiS%˗O U*EQk%GC,_ -Ӫpj`~Y' Ċj,h78<iQNBGdXu}Ħ mvFydGx&FEB}q]&q4>n|a/c-BȅE#t-UYj괢uJ< :rQwyxHo3pCwu)2DH  hl9iZtvG `͚}DP6l?PEHhR墦Z{p?bccc`eRL;bOWR)ӳE,oo|c@oRBrn 0˒^Q˴E H(c b/O2lWة Ju\\aד{׻ޅSZ6D:[nCoēfaؑ;">ԙ] Aǭsd 5[=^o=`cDzi }^lW e@RUıщO</v\%Vk@HbT^0wYјhy!_@ )\*YPu=66U0{o~Ch}{{{sӳ}}X?::"Mā14Տ#TAaC uCr8h6\׫^u"zPG\4ZoP _Wa,pM F?я~ʫ<@s?lisߴDq;t7}o~˛t 4f ̺kτ`4hqoD_ .|}44-GL6Jg5=aWǞA8aCs0 '㡇k#'@'rr=OLM 7 >x_E y떙YQ`p}apE֒tTڹsqzORT- Y|įr\-՛ s%E]UkT&FHx$긪\YN(S:QHW{0kFY0voQT^P/NP(lٲ+}c?z{L|skXP3A%л?{zr^x@:6BUz%t`Sԓ[m J[,TkUQb@**s$**4֙<((,GӔ'7n׿޽׫>-Up[4+J@ L6߀{sRQ%P$`H48o>`a.Mbw]yU 8 @": oZ[.XvH?4ԩv2Y)2AصsOFI+n0.Iɤp-[xw. ^ǰb`D,>-¦ݢTjlټ;"q/8/\@>Œ)̖!3+aȎ0YPb2ؾÚ/^_}p9{ pXO>A^mf4tk}3RSc{+VP}س%LU~.r4 KT~$A^UحB/k):Nr0m۶;T!lNv dn;&R@۷l6TC3/ u$uTXgϮK+l0q9j#bv~Ž{ƻ%X-#2n@SÎ 0ӫJ[l'}Pma1dj.\h` {RAR'6ögP+l۲TQJЊ8{wOArM?k.a*nXzI-hh2񀿐@85M%1|6;;2(_2K(2aZC 6mOP?I\ CNQ^z'> (}ρ#h&qcu@ײ(T0f5HOHaR?[kSf7lltL'x xK@|]@(2@XV\ʕ5Z caƱyT:vQKq!atr+*,E*k U 1hXY;{UY+z3ŨH7ls^7B E|H3g0IwĂ,(zNFsA  `Zp$g S<:nǥ┺ +{(TN>t,hxzs2o`ŴA@$Zk8>B<. $eg L)DQ :xn[LvܑE?!"yMiɲSC>13]:! cQ3+6gdЉA`(Wܝv":6upCa0m\01?m:P6l螌 Ԃ\aj1 /t lL[gN.T`_&hah<]ل. -n!%o i䆉0* \E;=2[~羽t\&9Y|>d%U3f7ΪJN EAe]08vL?f`'7&1Fa2l`~ -"`h RA]@2gBkgi >Jf&b1g3fsqv6mik%x Qo;! IÐG %n#bI<7 svovM1o:4G3 ϽC~uF%XP9!1'p, 6X.n s`{.4##l3%'׺\v](Ibs]QԳqZba?kE3WNY1's܂0/#n5X&lW sDJ EoҌ<0 h\(` sEb xcZTsZҙ?xUi/M1  i 16k1Ԭs)搬`XjaR;EQ2cgEA+6JsgUe® 3JuH`C YpDCݮ`ݐz`$@liG5 d- s(R p-8r £j,}F@@8B\"KJ?ha! S7 TG-R(ɾ03$G.\\}_ܰ FGǎ?hȤnP TՋ2=ì)"Qg?٩΂ |͛7oٲ>hc/@GGDx~EH8|77[8cz 4?Gepv߰d¸XNk9l j ^\~9OoE.t$-_ _]{ iDmpa(8#bL; {t ,7p@DH啂//ح`#tXU#"Y 3`(2 PC偭ȼ[f Rd&0.-E!Cq?80r+n.LnG ɭ1*y׎L`2 {A,?iѹ f2s@^ E6Ry[Ìn6|EXt̻!`\F|hЏH$1* xK.^A:a~3<O}__1mLp?Wal?AbWсx[{HĆHe5>t@y Gs=]/i,yĚK4UO 'Ix m+Z2Lo~qߝR89cC]G6HE6ey dIB9N"8F!Y7u5 }-~ӫ^G5bIT9d_'5Fq̪<1^wvk~rr d}8]]9l%ٴN&E! "SN@0ټzJzrp-܃"}{SyxrlIh;,E%F!ĺ/⽔hFXs'^x/YSΐbٺeFT^Q8d5"d\ lG2$-odhшe_y]{t^\x3OuRz]FܢӐݩ3Yw 0cBE]o`!  fIꫯ1';pX[N_圱@ԏd9MBFGnY弈r1 Z:4;œf-fQ!oG*5]FY|}YԆo!4JË}mيm\.d,X 89ԔeU,}@H-f>> ǯK.1ݽFH{ f2Sp#qY؉9t1&oiD @Ca$w|Aӫ~` r vb dRP5 HUC+ɔX\r' fwШ?tbp yܽLF,(qE#*Qt"4":,p0ETōaZ # Pp? 8Ņ@3p e%,7 #jC-ll#Aǘ Kkf1*A( π*~ ѝ{lGՎ,da4l T4+ 4E.{M p jEn^Na#@ 'եa_h.&# H^CPҰX(dBz\tb,ГxN[ M['nG_`g~^NA;`O,F`tzЭY56Vb >h ߛ'ըIetKf&jDx|z/QUP]m{sv#1=6JhF%1KrN>vz 9ZM3ݠidz 'r<@բdo 8(hCȚjčDqAOsɑSyoVi(_.jk{սOݵ}NJw_&0m9OKjQT*x,EFD(>єٜ8AC#S._{"KiÔceY}v4v=h-Xз{o:02ۏ|G ٞ1-D&&G^D 7|K:h$l,]'~1, ,Lڎ4Pڶ5xEnVbP'7ҕk/[sig6_{=@cCXf{8yl`5bSY_Ē gm̞y͉Db=q/k9X<:n݁P=Tn֙ny8!vҸڮ3.J%%퉅%uets>j""4*n+<sԡV<~VJb(B-7g=[fgnAGg8qw|05W잇6xދ)54ҸIk7t#2a#4ym3~^36렯r l[C42򖷠ŐO"N];Ȏ\"A1c+̢=6*e ۑQO<##| gX],Y09%o-rM#(Z;3FK.a\QyX`)HM9u2˛; A)(IlUC@;9y9N6 Z$K:Y(|~Ogp!XJdn|ikQ::ۇ-U|שT}?~Ịp#^)K-*ZPK:`UaPXg"sdy_q, $~e^&+|w!sj{8Oآ_|޻oL>N2?@@R-v Ǜ '-7wuݷ'(ةE~nіA EA!𱩣QE oX9^ p f~Vd#|12?I1m.z1)qI>}/ Vٵe7ue9O׺';N ߥq# t?wmX#5L_tEAP,H0@$'[94Z>D8=AJ'.1aoiB7鄜LPcI`@3Ȁwn1$e%+[>h5E%B }#e-dVhL9c]$"_ΐquED2su}eƽD<ӜZ}cǭ??&2> {'PfB/W(1}RPG/oRJ{~,\ׂux»& Rӧ|VVKKGvlJQ@c_)4ck}9Z-#?&X{vi}ٶ,vK,dթ,Q9gށ0O)C>A퀉)<,EY?lPz{)(~EsunaN&zi:a-BL+&=_qtGc?@8M҉nDӔ|~&GhI3u@QԹ@+҅^޴YE;wsvSr g*ƆRz ]{h̳&ޙl)ݱC#M g)|*ɑ^ }ʒsa6`@'fcb超oD=&q Ҵ0BãxrZo-]yV<欪-ĪNQFp QF|G|FG'Z b0/ RsG'(.KwU?g?=^Ẅ́W3Vw/cHhJH | <?!irvBR@kfIG.<<7i} ԑv2%DZ eG9##L+q)4˙FaQgK^&9N:3_Bg~4eB[C@926tR8LmXT6ߕ3Gn-Gk4b1(U82,A>?o'0 <9J0xa'jMϐ =Y8nj*U?ydq82w1#5" D;A&+t#q4R zcIG5.RgV4 8mP plB$ @c '[=O8E0xvR̗|;"Շ{tzxA9aa[x ^(ww{1 7@*Jc:mC[W+2P'ģR'33oZ-h ;#FNڝ : \6MeQ0ۗ>"ёi{j;I=tsVlNJFLc:6=. ]F<+gZȹC|k iFǚ`OyB<}*ۮhR>!\Qpw"x6ws+ ^ᔚeTR85oJMj{]RgM<'Vs}i( |%O7O"6Qj- Y>Pxңhqh]4 fDzrSc_ڰw(#?Wj`( Ct8I*#wNeq9،~`=ҷnƳ&"AQiS,֛)I⁴'v )V쨴mL/ZI 2v\CtSy({m-4n,(4 u A.dFj3c2'>U=F@u7(} =^!=Ru‘&ԉ% x?߾l''ջ}J%6 ZZקLZ`$MyS%t˔L#65KI'cy[nA0"tSHn&P٦4z=/̺$ KČ9êjD]pyXI5(sY_"Ebp" #qsT!mVCY\?ާ|->' ]HS:6>s]ooM 䮝<\άލ_|kٙW{H!ݾyFs/˙GwqsK_#dNt3=W}=_R=NJ^jܷǒN)We5|kt}?>A&no^_"75C}ղojTwg~%_ ^bN*z.<lf&^th9<1E>T#*!ǟ1e<4J+uyw|nև=3Bth-`2j62W]{i5?ll {?}9'.]q[I]-=rS^w̫/. z5`_C/N0uv꛳`ɇ3GSxs*E<- Lz;ƀ~pvrRڎeӷnu-Ox݋9=z{ף>Y;f(yO%~ӥuEהzzi|Dɬ/1UΡϞɑ?|S5ݴ1J=@u^^iLc/#h(]hfg'+2iFfZB Es3mODJKMWW*#JJ2 5 bWP3]mi YcbZ^K ?^yT%]V̒l.Ȣ&G=]CcoK۶]-duҧo-*;'C1Y W_='/N<̇bGIf.75.#7 ~8y;2QW 5&H.u;'o| bI:H<.t` 2!Hб=+&DfR HK]pK?]̦LXW5C0 2<9cx̍aG(Cf{e19 -JRݑn4Ev"Tkvo>6ۃSvQL7Sqzn9N%̖s(zjV͂=-i6E;W_I135^CItRL{^!\]h*Qaf+I'7淈Z9(EG]۹1^3+wVmW譑 |;T?0Xɗ#dsT旼qϿOvo] Ij@\ыZc:Wo /SG}qx6d'Y<9E3jQWuvV2O{ɫ=94L굸USsΑ _]v^B|b{g"piz'CW1urVC3H+~緍ԿE OKE#jW|ĩ~+~{:U\tPLfѧKrz:Ȟ{f'${7&~s[ϒ%C҈}rX.]qgI}Kժ-Hw݈k-<Խy*w a ,h#:4-48?&ʼn,2a{m䳙xnew3#~z/]4}C=k'o¼7' >2Sڵw[,BA0eӸFA.\׳v;W=~抨0wL2E߲ſcA6.p!ߓzٯ4yjv}1+I?"vxqVND99n8?9۶ vu5;zygMD3I-D1;ͻ܍׎ǖ% C_+=2!t=K<9HM}M,~*7n^=b*IRC.?L^Gϝ^x0 hC!x/D)gě+ .'#<2P;h-=#1 jB,.>1q%!HWhU0;1r/O65.v l4ZC[+3r"~4yU3Z")D# 3nOn5YQD څͩ5vhRH&ɗأ<͚! Y x7)O% LHOzlO;51nNsxw  ?j "9 BnIdAe~Ce˵W@LP rx,9m>"4WdbϢM4ul *%>^*d^dc-jWHS/<}MTX 4s[FL.&'XsҜISZ\_~`SDph/xQGz zR</r]mz\Ah4C+deܠ,5j B۞\4ѭx3ʕuV'Sxj4Inز=wXM2[]-ZL($#Ec爔qy$pG 2,tD<`" DǢ԰dm*S]{nkzs|~ą_+G# oEeNz)N,Fqn婾zC 8L/#h+fTƿsiO]"iX誆/gAk4[4nx9cÑR!zv$6hT4TI~dr1?B1ki E1:Q%Zt)CWA<%8SB]%4ͷy!iM=sF dڈ:"^v?sf.5E8GM"՜?>1/*>Cowc7nxoѳQ<1!;|<8"Lf*g584{̍SiTj1;Qn!ƄD\"N蔣{eQkyrEU?y}>dMN[H,wx/|헙E^OoN= 9&KڿǐUnMwܼ޹m]<Y[k=׻8kbwm̦zzn%sr_х9aT1͟ ndF*DEu&",d;nБs9;Mri-$ \X|mnU]sLnY(T-/Zө\2-?=JqnR.̙3 m 5sV/srT$U҉Ra|Z$7X;}zp8UGaUU߭'?Io㚺y1)~0y}pĖ2G*;]Zʻl"[tE'JguN&)HhjeiWV;+,}.92Byej}ޗINZT<m01+.'skDJXʩ%"۠6(}A3.i\bQ[$[W!,d:lyU9 y#>mR4g*Fz5d# hO*(dUzT29*T!k ^ 5QOHęH=(I ޻a,c"  yʯAٸozpCMGb }uz ޴Ëۢn_+H`ۚ8 &=Lm(r]})5]I܊ݨ&ztj,v%X $4t^NxŽ޽Wq:*'0C#$~i<{75ք3̎*ŋ-Cz`AEzިrem+5XZbjGg핋8NQ{-nxRƓh< "myZ=}ԉ)Rf<5.F'(LɉGTyf+1T\D[L6ZZCLCɥ]Hb(C\%ΰRR,&1ۃ)r?A0GٚecYēEᔢvp/_n'Շ3uP|.l {<+#X fJxx3D-_}xiUEVڟHO| ̜(UxJU+ǕP [[d*_vj! mJj RYxD)unuo( '\rTfрZq4@Vg ]Sr9uSlO.ֿ;al zѱtqVQvґ W}UqsBspul-IJ+'K¦A;:&c~Px~Llڧ-h#h9s|K͇s(BCEuQZ Ct%S]`s덗 /CԪI]L!,3iO.ah=u-Yx oߢĹ㼀aFIߪGپb[j/y5mgH 6AE˼VВ% :#WX㦴;aZmŬ\ݼ|X=xtx3JhN~Cq煇DmR==:zkВ%;RYnZG/׳c)Hd=?ytrȗ&U5W>1B0e{zpAV Pl~@ Hys^$v`R['8b-8$j0W.Kqb*wlba=:(}=VŹh1 ּ̣vxcϚػO{L'BXGiaIENDB`nlOmXrYdIgPNG  IHDRzsRGBOIDATx^]|E۟+Ko${ Mz"bTB `QQAЛtH#$!\ss아KH}nvgfiOg,( Ɋ)"=tO`Y6j|h_ jj×wy+<㕕gdzx[uSxFgs=\Hxأ[m!/d׊+/dɳW"/w$J>Ž8-jSHѥObH[xTCZ) Yo_oz0j`1>j rA+''9VUT hF|5@̳}i]x FVו0 \S3_Οޜ|ω!VUJ5@9uGF]ܱ`u=Ү8xFA2E]jT~NuG| `0ZpK`osM0yʈmQ-^9$" }Ujw2\3t k,u'O rdو/v,ձ&c lGZ-اy!-1?N! 2{ٺUXzїV޷?\Q oSOj2 fT2- >wU+tjQ&,֢vYQ.Gw`KV ߾J}< ^8>ſ 17}!!%'u{] J=ˑ#鶌9߄&ë%Ħm٢cdJG: 7Gϻa'z:~b@n9{)SY(|VQO|J-ť(Zzmg/ej[EҺ±])ɧ6m|jzbNINVU<&'F]xf,6}HÆ0DE@*OZPȊϞ{J0İm&3K/Ʌ\#[W41"}oQꮫ4)4Iq Z :FяG  m޴pm޲e#mš9}ΐ9O=5t9;EØֿv8K=C&AWx^:9/%Lj6<hrLp[a e[ׄ x9R$xܺKi,X31:GVskþյDmت#ҳrn7mʐ]M]|zvkmZukӢMO^M;h{Lk{ h) >NW#Wgb4{9~zFnlpj^j>dW *Qj(MF_HKvUӺYxD7oom".2Li9T T`^aVV+P+"FX/^+=٢]?-X۹!Vj!"ILhӵa *LXS6bǺ9yz7;~Ti:;u\?VOHu.s7OvMta_#㺸q9̵IJTуKYطA=R M"^FokAZם+ =r|DCE-U᣷nZ/6h`x񅣝e4NWwRK#r)lhU5ZEfR:_,%".AGҩly* [O{ʟ B^ѣR4ʀrs  V[;SgڴWX7hISZߕ7.-3=6$cOR:x蚨tp<`%c";S+KdI u"MF$8Pm'%ŋBR%<<dEhc\!A])T%M&ҺUrT*# /ӉW^1 vɋFVR}"[v٬4MoW]ߪl V.. TremjuZʆC*eޗ7ĵ4>Z5>R4lq҃a6BQg/l`q_ ǩKE1KB`5r o߰Oad37cT7a̽|dᆯ_f=ڻٸ.-ʁ,C{ٻt8;N-.т%vzL/n;娘`_)A99B/:pT,P(&$qb|Lm^F~?߱+a+X-fUve=녇l(ب)!ktDb593/*m)Dh]vN7$X V/1 &q\P(Rs;\+uRdG0ȳK][9r>YeSWig",:'N+Oli×Kם)J %$Ȉ}$V8.buʱḎ \OطbַVMj%p N\yYP[MRN;,UɐʟPM6dVڷE @R E]&+~ fma OXlqŘOlNU#Aʒ/ȳ (DҮ ,A,:9S?ʾ9 WIȳs QO++ݞ%l(Nu 嘝Zt$ؐ0' .9MqO5طf P1_U by%23G[ Im_!>eAZ@zfsDHP!7q~|m@Kwqq) %RJJqkٕkXք"R(041n=E*`ıi\=*=^=3S~;DMO_;{v*UB$/G˥ RS%fTttQ«"ndau%@r)uV.訧\]M 4/}́e܊ndiBLC}dŘ}rҊ\A~3_t]o9Qi}ޤGO߾6;{0|yEFFZێF^ҽ5ؔ^ ?W7^%[g`y)b|!~BvvLre}goe]aT͢bV Sig~=gTٖp횶W|Zߒɾ?r%MĜR+`_,91kwbOuo..+N"[]9-? \mT];PϦE3Ǎs3ksclP +Zzd6FxߝSvK( QS B$%Q MЖ3'N ltylGQepK̳Yh\[J2: zC51Io²#*͙ЗP .O U*)Mr]W-$_[;Nzt#͛]Eߊ(>F B`f(xΥ{C\[ĪIVA+F/L: &2gXa=C-"}+0  kr:?n  .3`O6qmelj8A,6zen2r4}Z1+z: B%.?տ$BgЎTmHĉy6yEB}!06[q[!l8D[[hu"eL&LwQĞm"af]-8rJ',q?-&~`Gc%;пgR'K9xЛ^:f'55un͚!,QQ5jW C4 !0&^`,D2 CKw18,5&76= ő1t@g2hm=Gm=>-p 9C;",HcI,UBK+4f1vjoB Ҏт&VS#s+w߱z֋ǾO~Ue顒1ttc{_Wiɱ> W1dHPIF'&G^%,/Z"#^c/)H]_CU0_y\NтֶQɖ5r-R399/pV%7%젰H6 y]KӷyTR<[ |y֊?o>=ھ6ZQ`Y= eju-ݨX'\6q"+gYvZr!O+j4G?0Fb|f6.F i)C&>2sG_1& kߏ.سFF_ r&N驹ۺ t_GXAD}Ԗ [e`}UapC^Ak]msھnRRP}OlmbP%O>Y uf5ҳ-)7IH ؀ΔIZxم?ԇ6/nSuMZ6z=hVsy1GDyeE۳Eɹi2:@Y }<n36Kaaa1ti9-ȁ88$TWT TR_68g5^+ 9q6)j)>lRFFո72uvH/+榧%ߊK4uŕ+c²hl[9q.I>ʃ6-9#y3 *g G/]eI"aov F4iҗ1gxy|TlDnW p#`f !S@x*VˆB0_ !K!"oxwG_RU†2|,w.$.4%ޤ{pJ6&dR`ϽB{{"mJ]dRwO\hS)mPS>e.{QK؆>H|,><<s R6U~'0.Hܿ[O\E7;Am: Op |K.ϣ#؎~' m%Lju]$=&( wʋ\=q_qғ9][a/=:Ց ֝⧽ܥ x#3gG]WF%>'MЈ1^1L!n<8zI:$2&eGC(<$ԗI"B;/ډGoiS^4ktgnd^Xǻq£kW<{C8r† _Ecܾ['>9ұ-sa,=Q$2~ol1` ,Y>[o.AmoN%_@G\lEW!/8 B҈i*~`%/B+Zo8LG'h'I b.W&@ܹ]Po1A^:~ZG43u8SݤJ e^D#03/K;sv<ђ͔kɟ~gc/gۈiJl*z#[)tάexw,yS;:rfϞUS3%5ړV'܏ q>u+sv*$_B`59M!^;Eu>ϝ\N"˅rVpahe/Sn]֜੶5S?ְY[s-9<4*tM_z8sY#o0Wa n91x]%D\KKR9LRleBEJL `HU8P͝F ts+X̶F: Gc{B̯4v fNzrRb"n1'B$,Q[N)Mw }2-ƢIyP w#rQ~+|b`QB߮XT ־iKN 8 HuRh{'0ȻxSN'Ѭ<#_t뽽 y$_chig;}Z>`J)ly'd%#$œ/x mދgI@}ʸЈFz'4滍4c z>1x+.Or.hm%H|y.,e4GΞ+1yA\&%~B hP mOGB-G~mM}髋?ِH}4}OH{;xy0 fH & a"5 ~|( .Mhv_q\ncuKpR7\, +9`jV6\*.)Wߘ^…S&7=+FEIKY=׾Imf);$s3UBwdTib7]|ǧt_0JEbDW{u|BxFhap񸑄\/RGo""貯ȹV-JXtE3Y[nf@&

Wn8#o N0!p[(bw_V$*nNzPԧ]|5RbvF\5&p]zPR5B"R`=HGT}0K,E骆ӛYKLOqX1C&]'yLm6i$kZjHAό8uű#~z䳍U(ׁi;w{# zMrH:ӡbBTJ/O~";:Xzk+oزFTGg}CwP9&2}$xjR 'kCE!twuQК|6>85\Kw+[> Q&F0-8qtOcI_2kQau_s 5õ`;ϙyzvMu#dDBhDֳiOwЫ)47U䶏GfXXq;)YeeҐP1(Q5dTZumゼ$&i5hfݽ]]pN/o:vڗ׿i7ፑ|Ɠ9ʫi8{rc<p3HLL_5w_=xwmvi:^9x)Fpb5t_U[4r0uyܗK1VNjUg+HFQO#-`YzILaջɜwʎK~=w$8*N: >ӈ+"L.Bnj)NLzV?(:zzb .njU4\q$Psa|WRFmkyBe-5^g2]Cfc qŎl3'@.&ی/[ZT'1dT 0L3tBH'l+tT"i|_6Tl{u8 S'it*\%#?bMM<2S$S$Mpgv-_CA *J_!ptx ~%Ft%!.:ɃX(_τ+?嵷\\z3*e EOIن[<[$:3s yBaݐ!:A sg3!sbC]Uc6BHd?'IQFuB#y5S6۟fs }Z(0d'ނV DܞeS<}zVܢ`;ߛ ;gbͶ4o&z]~w1/!2~J]˟J<##^ķF+i8< A&Vfp*F`5x6iNj3{W`@\($KWG1It|Cٰ<D~X#훅bU$\@=\Z|. "Y@dr:1Ϋ98Th:˸MFκu\#x^ՓUу7CitE,Y\Iw$}V2~gQ =0ٲZD7V-Ϻ ui:ܴZ] $v!xE;׆dy9<%b.Ն̤k z4a)MցFXCarƍI˄\)ܫUtqeYO *`5N8 HItAmHVv+Y m0?~Di`nӰ` ʙ D2S!yVPɡ0K3!39K06iB G%l,K;+:_#"`r ~0,Kw]ZC65` ObOtlto ! z>YQmGt(h!Ţub l WL׭+Uy,A<[- aE`Q>??:uWk{wXL\\}.®#y6rmi ̜>rO)?#r"+Xwrl׬ T1/աӫ kJ56zd0<ҷ3ޜ=vD^ hfsr㌺/O(G2Uu ^ʹsS%7SK\B!ϜM|w XЖyƅjL5pXSS>nO' l1d眇@ a rlݜ_W3޹y8^9Gw;ְЌNӆIY !Rt_Е39=mEO9 e3wYؾ}Ċz̠ncu{NFcmKG;\ R&.*;LaLA8Q sqf}p*8 `NW'ݹZP !!u}NNFN Cp6ĿB^5]d_ VW%*B˖$$=Q +ZJl )~ gMpf7k%$%'lw gq ŮoK~||)osF6.^p89 )>wFu #0Hȭ, ?Nq]EMldPV]qٹ(H˳ǘ,gRK{|VAH&*#hJ- +* ͽ*!Rae׊ `]>: ooZ*"^J E[Rnj{60uS4yp<ֹyuc#I&8$趭͊;w[?Ty\D\rlUzktƥ~Sn&5kٰCM_e6\=Cݮ/ J!4: ߢ;|cu hWu\*RRw"|Xia=8p-ϼT2C@.l oesi ;Tf 9f.n'uV͢-zBvB`?ٷˍΩ)flmRɖuUSyAyx䝲Нu4 \,z@vىaKlN7#QQse}0Wu)9l*XE+Sϯ_a ^ZK͛֨mw#C/Zs$L_βf1ٱ8t{bfþD,6k |9׬$ 㤇;94?FwCY6dI 3WR%" Z@MeP_;iߴeϾ55Z4謺ۮȰtcM4[G*G 3pv~ pzio$d$S$k" F0D`1|,8+B}_-bEGi`5&;9>tnVÉ(g [c9<Z%H&KP+U8 _H\LL'bۙQw(JPLJt Q+G?\! !r:Ɠ #pͬkiF1ab ơt͐.e6][c~~tdH[Xał६̵~СĽn*᫴Jj|Z}DžNvY=$RKռX0> p45I)56uJK\+\N0͓'MQjEt-#c^|w t7nT*)~-)H@1B^F fPD2,.yS4O.ețfԵGA`l7""Ã|-fgnJ.B[6SgcP|[o3)ESi%RJazHp\/AU)XqR;Er (6 h/rQHlvɃRn)f,мWV*SEW . ngezvL9IR,& W*A F䇯n\N^MP*i׵{߁}NMYACZuzxЇʮ~6,za)&ûՊ-듋yfk.e /%K]~c)nrfҕU+2rvo1\zjQWiv;5 ן>B ꘉ7o`2lS5}/8uS339lDw,8M^Ԓ9qtߖ.^ܬZ{zO7d3u@B-Zˮ^1(k40 pLüwD`ރ-!=).6+JB"%9ĺ"%R*Tw8!)J19PT7:oʭr]ܔJ9Z* yh@ﶕLgƤ^7GԱqhN,k)Cz5 6buvo Df?~*Zo7_]ӉUYV-)۬X1bJph5Ų!T4 Q0kr-FݟYIc<3*Lܺڵf~[r6.ۻWr!$&Wc,# HG?R.` AN6}wb[`7#/d4 QeU @P䲓u0tW|^|[OAd8TZï 0L6,؟SvQFc-#`FT)PiPgC٤4:~gy/+"p,P]+OwAs'؃˛eHv#DW~+yF?3zd*Ӌ7wmCQU) K).`%<#:nq< BnrϮO~82_ϧ~ׯ׋4rUVI*2%bŊēo=x9wѣo0wy'I]?~< >4|Q$'ooIsBnA~fd4شy /#F|gϞ ٦NڴiS}Q( Ξ5>$wҤI$T*;;Q7vh!Ov./?_hu}{j3a偀ss|믿~뭷&&&W|lLVVի ~+qyyyQK_͎iCyϞ=~w„ cL43g/^qWo.]?vXYxc?{*;/_lvtTJr+_\lbcc% +,$͘pWz'w!)Xz}oJ)1MNNHF ~ۻw7|CZy7voOZ8_{d)*NYX)yګjDCWD@L6M3dW;***r tD&w-6V@,]ٲeNTv|ee3t4ovMDZW03gd[f-gpx" +Wfs\?i!rULL>/Irf>!HxVȑ#t O8I5:_VA&7nL͛77}ǂ'!43*8\$׽uI `تUVlܸe˖`NpdeթVi]̵vy~?#ņLc[g\w,̛;+Rb!l,nL"' 1ue"7 \[եz[Ǖ-_-{ѢE T*թݺ&%k|\99ذܾ}BJulA%$'DHxR6}=٩CW1>22Is|!̧@:m-L>zݯ^7N5ʨt׎ ě,ok>^(K.n6J}n:5XkjU|լ?Il{ +{Qmں^ ~}PΟ?p!-KL~21ѷ.w6_94jkvNWSǎΙTC47wErZ sT6/RMA1`gԩL T6B?ԤV7lP S>>)  ;e^[X֪=!}1XMzg]FVlP))Q~u=֭]ŋW,~Cj3B:>_el:u;!iM ?Z>\e:u,/}߲<E[nXŚLqV{ETϳ޻vu۷B{? [? P+&E^(:֭^dˆ"kgq9DulgOKg^؄֣3竏>"Y#Iƻn!ٶquL8BYsHUlZVlg3Qbrp\899ٛ6m2jțoYϢyf{EiZ̨WIo~̙PX9&'mڨ}TdF|MX5:KcGеߝj >|ĸ|H k( z{vmοYO,JER qQ*kwJ&hnRc05xi} WW6ôDtU3{g5plaM¸?x5fqz28YׯJnn GONFX􏶭[m4d bRb%'Bks _i"TzY>V{- VSK)T,M׮ Duy i π/TO:m޼y7x#6W?nLvyy¥zc|I>cdٹsgsQﱉ ]Jsr=T{},$ҷr6FLFx|nkzzDom $<477࣍x/ox#קo @aI6S0< @LB5:p@=r^4˴HhFpsj'3) K#7?x}z@o0.֭իT(aO%T( ,L SiPbb)S-x\zkn:>y\ex>  b1q%g_mGְaC2Ȫ29tPzdU3YgA'5kx=|xiԩ/!V?vLHV1.e$N{/uk2w~zL!:|x/2/|_E܇\wCN39 _roӇw6gWܽ[!gYt\<=zD)šP"t O;06Qw7b`]S gK3*\o c,Ga뽅|\?`#$  0tK8.۽[ZPrjna Wy' ?k+W_n(p|S-Јwq(|܁y֪Ō-|{Җ0VmAC2s7:nM;9q/}`2?A./ap{%CRvB]*4:]1#u!ᖂH^YhD_gzv0wfvm3fx1pl)Ԣ,Buȼeh yʀKb xeR=; pP@$Bh2J*ibT<]l!nm Ehl&LZ!~rq`aÆ>]v|@kΞڵ 9,ǹ'0N+\ԍW ^(eddRŻ nt_mz K'K(f9y#sDHGZC6l]wXcQ}/+(|\1-<Șnd8q@n(^3gFBn^Ts+!efxСȵK,r7c/ O _cħL2ƅԶHMϥsUWZw{2ú,'T޴Ȅ{k' n&1wܸq7j1+:~!+6a` Q8Dx@ݻב:- Bza9wwbv, OIuk%\6r.^*U:v '#`T)w,W׿{%oD6.1컍 d XnmX5k\ ,,67Mp,\?,ҭZ`sZ!lQ!~ko{wHFs®(.xEoݺu{5a¸sgOM\_: A{#\a'g$xG['OB -w˖Ӧc>~-xK8|qK'C.y:tpjk֬- 0['~ [() 7d5Ķ\qjղML wvazVѯe0Kߘ@fDbٌ;!+[Ҿ)UNJLY1pJIl]bÇLU}eQ+ ӴYQx2 H7n;:8Dq:̱*Tw\zK7WSݾ]xHwG(Rs2O7Zl"$/4' B̈CB-s7['>]TzBR-[iݻƭPA26ymƎu#j~)۴/Pn2wzۂ"ҘV#;$ @Rm,1í1pv)9c4 ۤS'fA%-!2vA\@t\l׷8H ?`ذܪ)6k+3)kPY#|Hf O:=;WOJ4Bѣou8hHtA PPޯ+5‡SVP{_(K.uu¡Lj*{Bܐhi,z"V-z հPT)!w`8G*Nt}dRR-K[+|Y&|V%R2+-`m9-!|X't>tmf|9(B_A+4Dy "l)*bP z>6y7{,6O08`->y˿!Sʥ;D-4?=Ei7HˣJxtQy%2E/z`ཨt" &\i z#]GCx87ƍnJaOqo'4eA3~S1ٿ_!!Gsd;Dp7US0H@:s$D.K!C媫x~hB{pn!wԴ v98`R0e@ QȈw|CIB]" Fb7^yއCOxr0#a3JY4jK;#YfMo9ѐm -s߫Bh]ĉJٲnBO w<{s_P,"o+`0 $ܶWfegc _)NBݤ$IOxV';:YD-kn5P[(1VTu;#/‹?5Au\ "bk^tK=Q6:)HT_noJyK _Vt#  VslыiBO!Ƈ%YB_CaC%D.$yMdwyMLbw}5<ɓQ"#$3Cu%T_DamJi\I#7NNCI>8ϛ'|gp U([j.nR [nHtG)L;Op-+;MR4~%U^yEhơ6+[/ 2&Ucg^dAo>aǮ6Bx  (e>Mu׺;N0a0<%o2;rDE kx6.2=G ‡Vp[4u&#hׯ^.3O=y|dǙVV2y' ᰕD3xC>B>2CFظh\uiq5+Q\ocǺc4'GpS0DAa]-{om#N>1N>e݉e=Nnlr;bIENDB`Dd!<P  3 3"(($IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pTDd!<P  3 3"((Dd!<P  3 3"((Dd!<P  3 3"(($IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pTDd!<P  3 3"(($IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pTDd!<P  3 3"(($IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pTDd$<P  3 3"(($$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pTDd$<P  3 3"(($IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pT$$If!vh55 5#v#v #v:V 06,5S5 5e/ 34pTDd$<P  3 3"(( $IfK$L$!vh55#v#v:V  06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$IfK$L$!vh55#v#v:V   06,55/ 34p$$If!vh55 #v#v :V 6,55 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pT$$If!vh5p5 5#vp#v #v:V 06,5C5 5e/ 34pTDd$<P  3 3"(( $IfK$L$!vh5 55p#v #v#vp:V  06,555/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,555/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,555/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,555/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,5/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,555/ 34p$IfK$L$!vh5 55p#v #v#vp:V   06,555/ 34p$$If!vh5 5#v #v:V 6,5 534pT$$If!vh5n 55#vn #v#v:V 06,5A 55e/ 34pT$$If!vh5n 55#vn #v#v:V 06,5A 55e/ 34pT$$If!vh5n 55#vn #v#v:V 06,5A 55e/ 34pT$$If!vh5n 55#vn #v#v:V 06,5A 55e/ 34pT$$If!vh5n 55#vn #v#v:V 06,5A 55e/ 34pTDd$<P   3 3"(( [Ddl E\   S 8Acomputerled b۽OoXW5B=dkn۽OoXW5B=PNG  IHDRklPLTEέsss1{bKGDH cmPPJCmp0712OmIDAThYr0 IO @rx&U*bDqILxmZ?8]f!5.x*/֯6}T-ygQ,3sۦoG6m %c)Jw$QJ"GQ!L27+ZRY:^9 Kpe0l rv@:f}#P-hvW@w9 HDRUxye|F.XC )P}Y+JVgҒ+pz`2 ՘D(oW^Qg%Ӕ t i!dg;QO=5wG2Zr{47-LOTՕQKPOVRн7d(="Yș$^U^ne;Q&_R!vDU0#؞P8틓"_i7*PWwB hRx2B{@O4䂫d['U_m٦nނ_?r!SmTIENDB`$$If!vh5 53#v #v3:V 6,534pTDd$<P   3 3"(( +$$If!vh5555#v#v#v:V  ````(06,55e/ 34p(T#$$If!vh5555#v#v#v:V  `(06,5/ 34p(T$$If!vh5555#v#v#v:V  ` 06,5/ 34p(T$$If!vh5555#v#v#v:V  ` 06,5/ 34p(T$$If!vh5555#v#v#v:V  ` 06,5/ 34p(T$$If!vh5555#v#v#v:V  ` 06,5/ 34p(T$$If!vh5555#v#v#v:V  ` 06,5/ 34p(TDd$<P   3 3"((4$IfK$L$!vh5575-5#v#v7#v-#v:V  (06,55/ 34p(T$IfK$L$!vh5575-5#v#v7#v-#v:V   06,5/ 34p(T$IfK$L$!vh5575-5#v#v7#v-#v:V   06,5/ 34p(T$IfK$L$!vh5575-5#v#v7#v-#v:V   06,5/ 34p(T$IfK$L$!vh5575-5#v#v7#v-#v:V   06,5/ 34p(T~$$If!vh550#v#v0:V 6,534pDd$<P  3 3"((4$IfK$L$!vh5535)5#v#v3#v)#v:V  (06,55/ 34p(T$IfK$L$!vh5535)5#v#v3#v)#v:V   06,5/ 34p(T$IfK$L$!vh5535)5#v#v3#v)#v:V   06,5/ 34p(T$IfK$L$!vh5535)5#v#v3#v)#v:V   06,5/ 34p(T$IfK$L$!vh5535)5#v#v3#v)#v:V   06,5/ 34p(T~$$If!vh55Y#v#vY:V 6,534p@@@ NormalCJ_HaJmH sH tH \@\ bY Heading 1$$<@&a$5KH OJQJ\^JaJ DA@D Default Paragraph FontRi@R  Table Normal4 l4a (k@(No ListB^@B = Normal (Web)dd[$\$4@4 =Header  !4 @4 =Footer  !.)@!. = Page Number4U@14 YK Hyperlink >*ph.`. 2TOC 1CJaJ9 Jd=Y: <\|1TgU _ ` ) - W } $hnoqrtwxz}~ "-0124=%mf8:HQ\|8be.08w   7;<M`ef{Z> ? A B D G H J M N P S T V [ \ ^ _ ` a b c d s ! ! !!!!!!5"""""""""""""""""""""""## #!#.#=#@#A#S#b#e#f#t#{#~#########j$$$G%H%J%K%M%P%Q%S%V%W%Y%\%]%_%d%e%g%h%i%j%k%l%}%%%%%%%%%%%%%%%%&&&&"&)&+&,&-&/&6&&')''''''''''''''''''''''''(((((3(5(6(K(^(`(a(r(y({(|((((((((((((n))))***************************+++++'+0+7+8+N+\+_+`+x+++++++++++++++@-a----5.T.U...*/U///Z0\0]0k01111#1$1(121<1F1G1I1N1S1X1Y1\1a1f1k1l1o1t1y1~111111111111D223353=3041434547484:4<4>4E4F4H4J4L4S4T4V4X4Z4a4b4d4f4h4o4p4q45555 66(77777777777777777777777777888_9`9a9|9}9900x0x0x0000 0 0x0x0x00x0x0x00x0x0x0x000 0 0 0 0 000000000000T 0T 0T 0T 0T 0T 0T 0T 0T 0T 00  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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00303030303030303030300 0 0 00000000 0 000 0 0 0 0 0 0 00000+ 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+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+00 0 00000000000000000000000000000000000000000000000 ! 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 !0 !0 !0 !0 !0 !0 !0 !0 !0 !0 !0 !0 !0 !0 !00# 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#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#00*& 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*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&0*&00( 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(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(00+ 0+ 0+ 0+ 0+ 0+0+0+0+0+0+0+0+0+0+0+0+00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X00X0000300300300300300300300300300300300300300300300300300300300300300300300300300300300300300300505 05 05 050 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 <\|1TgU _ ` ) - W } $hnoqrtwxz}~ "-0124=%mf8:HQ\|8be.8w   7;<M`ef{Z> ? A B D G H J M N P S T V [ \ ^ _ ` a b d s ! ! !!~#######&&"&)&+&,&-&(((((((+++++++.*/U///Z0k01D2233=3o4p4q4555 6888_9`9900 00 0 0 0 0 0000000000 00000000000 00 00 0 000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00 00 0 0 0 0 0 0 0 0 0  00u 0u 0u 0u0u0u0u0u0u0u0u 0u 0u0u0u 0u 0u 0u 0u 0u 0u 0u@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@0 0@0 0@00@0 0@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00@00 0X@00{@00{@00{@00{@00{@00{@00@00{@00{@00@00{@00{@00@00{@00{@00@00{@00{@00@0 0x@0 0x@00@0 0x@00@00x@00x@00x@00x@00@00x@00x@00x@00@00x@00x@00x@00@00x@00x@00x@00@00 @00 @00 @00@00a 0\ @00 0 @00  0\  0X@00b 0\@00 0@00 0\  0X@00xc 0\@00 0@00 0\  0X@00?@ABCDFGHIJKLMNOPQRSTUVWXYZ[\]^_`abdefghijklmnopqrstuvwxyz{|}~~A#-.Nf9C_abd8:;=]b~48TVWYy~478:ZeU...9 X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%̕C!Ob$QVsEcj΋W{\b$r%@_٢eQffZ+Jb$mXrYdIgtOb$Υ2%$u"@&(  J  # A"`J  # A"`J  # A"`B S  ? =9#|T0"$ T$T _Hlt224909821 _Toc224909709 _Toc224909710 _Toc224909711 _Toc224909712 _Toc224909713 _Toc224909714 _Toc224909715 _Toc224909716 _Toc224909717 _Toc224909718 _Toc224909719 _Toc224909720 _Toc224909721 _Toc224909722 _Toc224909723bU 40!#/&(+]05359@ ^ <7!#5&(+j0<359.D/Ob009e0099*urn:schemas-microsoft-com:office:smarttagsplace /&5&[&a&''''((7(=(b(h(}((((113161a9}99# / OR[' '(^)-.6.:.11S9V9a9}993333333333333fCb;b8W~8e`9a9q9{99fCb;b8W~8e`9a9q9{99>T)  j o|ZrG\T $A{ %]XVD̰)UDbjMCRC΢&Z@a 3^c_Z;ka`{| %ebF@}*^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`.^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`.^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(^`CJOJQJo(^`CJOJQJo(opp^p`CJOJQJo(@ @ ^@ `CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(^`CJOJQJo(PP^P`CJOJQJo(c_A{ % %e@}VDG\T )UD;kajMo|  &ZCR 3^>TohYFbx* WfddWfJ-4$'>*5r'7FddD; )=eA:]CKLWfdd#!*P&APD;ddc4Y@`D;ddUz&2W5YKXbYbg1vs2j=;.hnoqrtwxz}~ "-01   7;<M`ef{> ? A B D G H J M N P S T V [ \ ^ _ ` a b d s ! ! !!5"""""""""""""""""""""""## #!#.#=#@#A#S#b#e#f#t#{#~######$G%H%J%K%M%P%Q%S%V%W%Y%\%]%_%d%e%g%h%i%j%k%l%}%%%%%%%%%%%%%%%%&&&&"&)&+&,&)''''''''''''''''''''''''(((((3(5(6(K(^(`(a(r(y({(|((((((((()***************************+++++'+0+7+8+N+\+_+`+x++++++++++++U..//1111#1$1(121<1F1G1I1N1S1X1Y1\1a1f1k1l1o1t1y1~111111111111041434547484:4<4>4E4F4H4J4L4S4T4V4X4Z4a4b4d4f4h4o4p4q455777777777777777777777777888_9`99       @)!)!(!(!9@UnknownG: Times New Roman5Symbol3& : Arial?5 z Courier New;Wingdings"qh}}|0h0h!`24dD9D93QH ?bgEXCEL FUNCTIONSBonnie M. SimrellBonnie M. SimrellH          Oh+'0  (4 P \ h tEXCEL FUNCTIONSBonnie M. Simrell Normal.dotBonnie M. Simrell2Microsoft Word 10.0@F#@]`٥@||mݥ@||mݥ0՜.+,D՜.+,< hp|  hD9 EXCEL FUNCTIONS Title 8@ _PID_HLINKSAZ1V_Toc2249097231P_Toc2249097221J_Toc2249097211D_Toc2249097201>_Toc22490971918_Toc22490971812_Toc2249097171,_Toc2249097161&_Toc2249097151 _Toc2249097141_Toc2249097131_Toc2249097121_Toc2249097111_Toc2249097101_Toc224909709  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry FtݥData  ~1TableLWordDocumentzSummaryInformation(DocumentSummaryInformation8CompObjj  FMicrosoft Word Document MSWordDocWord.Document.89q