ࡱ>      RbjbjVV A<<OJH83tlf)))lfnfnfnfnfnfnf$hikfff))f666))lf6lf66Ya)@:>.`_(Xff0f_hk0kPakah6ffP3fk : University Interscholastic League Computer Science Competition UTCS UIL Open - 2011 General Directions (Please read carefully!): 1) DO NOT OPEN EXAM UNTIL TOLD TO DO SO. 2) No calculator of any kind may be used. 3) There are 40 questions on this contest exam. You have 45 minutes to complete this contest. If you are in the process of actually writing an answer when the signal to stop is given, you may finish writing that answer. 4) Papers may not be turned in until 45 minutes have elapsed. If you finish the test before the end of the allotted time, remain at your seat and retain your paper until told to do otherwise. Use this time to check your answers. 5) All answers must be written on the answer sheet/Scantron card provided. Indicate your answers in the appropriate blanks provided on the answer sheet or on the Scantron card. Clean erasures are necessary for accurate Scantron grading. 6) You may place as many notations as you desire anywhere on the test paper, but not on the answer sheet or Scantron card which are reserved for answers only. 7) You may use additional scratch paper provided by the contest director. 8) All questions have ONE and only ONE correct (BEST) answer. There is a penalty for all incorrect answers. All provided code segments are intended to be syntactically correct, unless otherwise stated. Ignore any typographical errors and assume any undefined variables are defined as used. 9) A reference to commonly used Java classes is provided at the end of the test, and you may use this reference sheet during the contest. You may detach the reference sheets from the test booklet, but do not do so until the contest begins. 10) Assume that any necessary import statements for standard Java packages and classes (e.g. .util, ArrayList, etc.) are included in any programs or code segments that refer to methods from these classes and packages. Scoring: 1) All questions will receive 6 points if answered correctly; no points will be given or subtracted if unanswered; 2 points will be deducted for an incorrect answer. Question 1E What is the sum of 71316 and 79A16?A.EAD16B.F0016C.F0416D.FB416E.EB416Question 2Bint x = 5; int y = 3 * x; x++; System.out.print(x + " " + y);What is output by the code to the right?A.6 15B.5 15C.5 18D.7 15E.6 18Question 3Bint total = 0; int i = 1; for(;i <= 5; i++) ++total; System.out.print(total + i);What is output by the code to the right?A.5 5B.10C.6 5D.6E.11Question 4BString name = "CalvinLin"; name = name.substring(3); System.out.println(name);What is output by the code to the right?A.CalB.vinLinC.LinD.lviE.lvinLinQuestion 5BString lets = "ABC"; System.out.print( "easy" + lets + lets);What is output by the code to the right?A.easyBDFB.ABCABCC.easyABCABCD.easyABCE.easyABCeasyABCQuestion 6Bdouble a2 = 35.125; double b2 = a2 % 10 + 2; System.out.print(b2);What is output by the code to the right?A.7.0B.7.125C.3.125D.5.125E.5.0Question 7Bboolean p, q, r; //code to initialize p, q, and r boolean s = p || q || r;How many combinations of values for the boolean variables p, q, and r will result in s being set to true? A.8B.7C.3D.1E.0 Question 8Bint x3 = 7; if(x3 != 5 || x3 != 7) System.out.print("A"); else System.out.print("B"); if(x3 != 5 && x3 != 7) System.out.print("C"); else System.out.print("D"); What is output by the code to the right?A.BCB.ACC.BDD.ADE.There is no output.Question 9Dpublic class Critter{ public static final int NORTH = 0; public static final int EAST = 1; public static final int SOUTH = 2; public static final int WEST = 3; private int dir; public int move(){ dir = dir == 0 ? WEST : NORTH; return dir; } } public class Badger extends Critter{ private String name; public Badger(String s){ name = s; } public String toString(){ return name; } } // client code Critter c1 = new Critter(); Badger b1 = new Badger("b1"); c1.move(); System.out.print(c1.move()); // line 1 String stc = b1.toString() + b1.move(); System.out.println(stc); // line 2What is output by the client code to the right marked //line 1 ?A.3B.2C.1D.0E.trueQuestion 10DWhat is output by the client code to the right marked //line 2 ?A.0B.3C.b10D.b13E.null0Question 11Bint m = 5 << 3; System.out.print(m);What is output by the code to the right?A.0B.40C.125D.625E.32768Question 12Bdouble limit = Math.random() * 8; for(int i = 0; i <= limit; i++) System.out.print('*');What is the maximum possible number of '*'s the code to the right will print when run?A.0B.1C.7D.8E.9 Question 13BSystem.out.print("X1"); System.out.print("\"X2\""); System.out.println("Y1");What is output by the code to the right?A.X1X2Y1B."X1\"X2\"Y1"C.X1"X2"Y1D."X1""\"X2\"""Y1"E.X1\"X2\"Y1Question 14Bint x = 2; String f = "%" + (x+x) + "." + x + "f"; System.out.printf(f, 9.109382);What is output by the code to the right?A.009.10B.9.109382C.9.10D.009.11E.9.11Question 15Bpublic int manip(int x){ int y = x + 2; x /= 2; return y + x; }What is returned by the method call manip(5)?A.17B.11.5C.11D.9.5E.9Question 16BString stars = ""; for(int i = 0; i < 10; i++) stars += "*"; for(int i = 0; i < 10; i++) stars += "*"; System.out.print(stars.length());What is output by the code to the right?A.0B.10C.11D.18E.20Question 17Bpublic int other(int x, int y) { x--; y++; return x * y; } public int other(int x) { x++; int y = other(x, x); x++; return x * y; } public <*1> start() { System.out.print(other(3) + other(3,4)); }What replaces <*1> in the code to the right to indicate method start does not return a value?A.staticB.classC.finalD.voidE.nullAssume <*1> is filled in correctly.Question 18BWhat is output by the code to the right when method start is called?A.85B.135C.256D.266E.There is no output due to a runtime error. Question 19DString st5 = "Texas"; Object ob5 = "Orange"; System.out.print(st5.toString()); System.out.print(ob5.toString());What is output by the code to the right?A.TexasOrangeB.Texas7911497110103101C.The output will vary from one run of the program to the next.D.There is no output due to a syntax error.E.There is no output due to a runtime error.Question 20BString sd; sd = "12 A 13 B 14 C 15"; Scanner sc2 = new Scanner(sd); for(int i = 0; i < 4; i++) sc2.next(); System.out.print(sc2.next()); System.out.print(sc2.next());What is output by the code to the right?A.BCB.12AC.C15D.14CE.There is no output due to a runtime error.Question 21Bint qq = 4521; int zz = qq % 100; System.out.print(zz);What is output by the code to the right?A.452100B.4521C.452D.4521.00E.21Question 22BString s = "ABAaaBBAAbAAbAAaBAabbaa"; int val = s.toLowerCase().indexOf("abbaa"); System.out.print(val);What is output by the code to the right?A.23B.19C.8D.4E.-1Question 23BArrayList ds; ds = new ArrayList(); ds.add(.1); ds.add(.2); ds.set(1, .3); System.out.print(ds);What is output by the code to the right?A.[.3, .2, .1]B.[0.3, 0.1, 0.2]C.[0.3, 0.1]D.[0.1, 0.2, 0.3]E.[0.1, 0.3]Question 24Bchar[] lets = {'z', 'A', 'f', 'a', 'A'}; Arrays.sort(lets); String res = ""; for(char ch : lets) res += ch; System.out.print(res);What is output by the code to the right?A.afzAAB.AAafzC.afzAD.afzE.AafzQuestion 25BString tc = "Facebook"; String part = tc.substring(2, 6); System.out.print(part);What is output by the code to the right?A."ceboo"B.cebooC.cebookD.ceboE.eboQuestion 26Bint[] pts = {12, 5, 15, 10, 12, 7}; int total = <*1>; for(int it : pts) { int temp = it / 5; switch (temp) { case 0 : total += 1; break; case 1 : total += 2; break; case 2 : total += 4; break; default : total += 8; } } System.out.print(total);What replaces <*1> in the code to the right to initialize the variable total to zero?A.nullB.falseC.ptsD.0E.More than one of the answers A through D is correct.Assume <*1> is filled in correctly.Question 27BWhat is output by the code to the right?A.4B.8C.11D.24E.42Question 28Bint[] ref1 = {2, 5, 4}; int[] ref2 = {3, 2, 1}; ref2[1]++; ref2 = ref1; ref2[2] += ref1[0]; System.out.print(Arrays.toString(ref1));What is output by the code to the right?A.[4, 2, 5]B.[2, 5, 6]C.[6, 5, 4]D.[3, 5, 7]E.[2, 5, 4]Question 29BArrayList reals; reals = new ArrayList(); reals.add(0, 12); reals.add(1, 13); System.out.print(reals);What is output by the code to the right?A.[0, 1]B.[1, 0] C.[12, 13]D.[13, 12]E.There is no output due to a syntax error in the code.Question 30Bint val2 = 2; int val3 = 8; int val4 = val2 ^ val3; System.out.println(val4);What is output by the code to the right?A.2B.8C.10D.256E.trueQuestion 31EWhich sorting algorithm does not compare the elements being sorted to each other if the maximum value of the elements being sorted in already known?A.Selection sortB.Insertion sortC.Radix sortD.Heap sortE.Quicksort Question 32Bpublic class Sample { <*1> int x; public static void bar(int x) { foo(); x++; } public void foo() {x++;} } // client code Sample st = new Sample(); st.bar(st.x); System.out.print(st.x);What replaces <*1> in the code to the right so that the instance variable x can be accessed by code in all classes?A.finalB.privateC.publicD.voidE.protectedAssume <*1> is filled in correctly.Question 33BWhat is output by the client code to the right?A.0B.1C.2D.There is no output due to a syntax error in the Sample class.E.There is no output due to a runtime error.Question 34DWhat kind of graph does the picture to the right represent?A.a directed unweighted graphB.a directed weighted graphC.an undirected unweighted graphD.an undirected weighted graphE.a binary search treeQuestion 35BWhat is the cost of the lowest cost path from vertex D to vertex A?A.5B.10C.14D.20E.There is no path from vertex D to vertex A. Go on to the next page. Question 36D// pre: t != null, t refers to a // rectangular matrix, t.length > 0 public int handle(int[][] t) { int total = 0; final int LIM1 = <*1>; final int LIM2 = <*1>; for(int r = 0; r < LIM1; r++) { int temp1 = LIM2 / 2; int temp2 = 0; int temp3 = LIM1 * 2; int c = 0; while(temp2 < temp3 && c < temp1) { temp2 += t[r][c]; temp2 += t[r][LIM2 - 1 - c++]; } total += temp2; } return total; } What replaces <*1> and <*2> in the code to the right to set the constant LIM1 to the number of rows in t and the constant LIM2 to the number of columns in t? <*1> <*2>A.t.lengtht.length.lengthB.t.length.lengtht.lengthC.t.lengtht[0].lengthD.t[0].lengtht[1].lengthE.t[0].lengtht.lengthAssume <*1> and <*2> are filled in correctly.Question 37BWhat is returned by method handle if t is the 2d array shown below? 1 8 0 9 1 6 0 1 5 4 0 4 2 2 7 1 13 2 11 5 13 13 4 20 0 1 5 4 0 4 A.44B.59C.94D.137E.There is no output due to an infinite loop that occurs when the method is called with the 2d array shown above. Go on to the next page. Question 38Dpublic class Structure { private Object[] con; private int size; public Structure() { con = new Object[10]; size = 0; } public void add(Object x){ insert(size, x); } public Object get(int pos){ return con[pos]; } public void insert(int pos, Object obj){ ensureCapcity(); for(int i = size; i > pos; i--) con[i] = con[i - 1]; con[pos] = obj; size++; } public Object remove(int pos){ Object removedValue = con[pos]; for(int i = pos; i < size - 1; i++) con[i] = con[i + 1]; con[size - 1] = null; size--; return removedValue; } public int size(){ return size; } private void ensureCapcity(){ if(size == con.length) resize(); } private void resize() { Object[] temp; temp = new Object[con.length * 2]; for(int i = 0; i < con.length; i++) temp[i] = con[i]; con = temp; } }What is the best case order (Big O) and worst case order of the insert method in the Structure class to the right given the Structure already contains N elements? Pick the most restrictive set of correct answers. Best case Worst CaseA.O(1)O(1)B.O(1)O(N)C.O(N)O(N)D.O(N)O(N2)E.O(N2)O(N2)Question 39DWhat is output by the following client code? Structure st = new Structure(); System.out.print(st.size()); st.add(4); st.add(8); st.add(6); for(int i = 0; i < st.size(); i++) System.out.print(st.get(i)); System.out.print(st.size());A.104863B.04863C.06843D.10486310E.There is no output due to a runtime error caused by the client code.Question 40DWhat kind of data structure does the Structure class implement?A.a stackB.an array based listC.a queueD.a linked listE.a heap No test material on this page. Standard Classes and Interfaces Supplemental Reference class java.lang.Object boolean equals(Object other) String toString() int hashCode() interface java.lang.Comparable int compareTo(T other) Return value < 0 if this is less than other. Return value = 0 if this is equal to other. Return value > 0 if this is greater than other. class java.lang.Integer implements Comparable Integer(int value) int intValue() boolean equals(Object obj) String toString() int compareTo(Integer anotherInteger) static int parseInt(String s) class java.lang.Double implements Comparable Double(double value) double doubleValue() boolean equals(Object obj) String toString() int compareTo(Double anotherDouble) static double parseDouble(String s) class java.lang.String implements Comparable int compareTo(String anotherString) boolean equals(Object obj) int length() String substring(int begin, int end) Returns the substring starting at index begin and ending at index (end - 1). String substring(int begin) Returns substring(from, length()). int indexOf(String str) Returns the index within this string of the first occurrence of str. Returns -1 if str is not found. int indexOf(String str, int fromIndex) Returns the index within this string of the first occurrence of str, starting thesearch at the specified index.. Returns -1 if str is not found. charAt(int index) int indexOf(int ch) int indexOf(int ch, int fromIndex) String toLowerCase() String toUpperCase() String[] split(String regex) boolean matches(String regex) class java.util.Stack boolean isEmpty() E peek() E pop() E push(E item) interface java.util.Queue boolean add(E e) boolean isEmpty() E peek() E remove() class java.util.PriorityQueue boolean add(E e) boolean isEmpty() E peek() E remove() interface java.util.Set boolean add(E e) boolean contains(Object obj) boolean remove(Object obj) int size() Iterator iterator() boolean addAll(Collection c) boolean removeAll(Collection c) boolean retainAll(Collection c) class java.util.HashSet implements Set class java.util.TreeSet implements Set interface java.util.Map Object put(K key, V value) V get(Object key) boolean containsKey(Object key) int size() Set keySet() Set> entrySet() class java.util.HashMap implements Map class java.util.TreeMap implements Map interface java.util.Map.Entry K getKey() V getValue() V setValue(V value) interface java.util.Iterator boolean hasNext() E next() void remove() interface java.util.ListIterator extends java.util.Iterator Methods in addition to the Iterator methods: void add(E e) void set(E e)  class java.lang.Character static boolean isDigit(char ch) static boolean isLetter(char ch) static boolean isLetterOrDigit(char ch) static boolean isLowerCase(char ch) static boolean isUpperCase(char ch) static char toUpperCase(char ch) static char toLowerCase(char ch) class java.lang.Math static int abs(int a) static double abs(double a) static double pow(double base, double exponent) static double sqrt(double a) static double ceil(double a) static double floor(double a) static double min(double a, double b) static double max(double a, double b) static int min(int a, in b) static int max(int a, int b) static long round(double a) static double random() Returns a double value with a positive sign, greater than or equal to 0.0 and less than 1.0. interface java.util.List boolean add(E e) int size() Iterator iterator() ListIterator listIterator() E get(int index) E set(int index, E e) Replaces the element at index with the object e. void add(int index, E e) Inserts the object e at position index, sliding elements at position index and higher to the right (adds 1 to their indices) and adjusts size. E remove(int index) Removes element from position index, sliding elements at position (index + 1) and higher to the left (subtracts 1 from their indices) and adjusts size. class java.util.ArrayList implements List class java.util.LinkedList implements List, Queue Methods in addition to the List methods: void addFirst(E e) void addLast(E e) E getFirst() E getLast() E removeFirst() E removeLast() class java.lang.Exception Exception() Exception(String message) class java.util.Scanner Scanner(InputStream source) boolean hasNext() boolean hasNextInt() boolean hasNextDouble() String next() int nextInt() double nextDouble() String nextLine() Scanner useDelimiter(String pattern) Computer Science Answer Key UIL UTCS UIL Open 2011 A11.B21.E31.CA12.D22.D32.CE13.C23.E33.DB14.E24.B34.BC15.E25.D35.EB16.E26.D36.CB17.D27.D37.CD18.A28.B38.BD19.A29.E39.BD20.D30.C40.B Notes: The clause "Choose the most restrictive correct answer." is necessary because per the formal definition of Big O, an algorithm that is O(N2) is also O(N3) , O(N4) , and so forth. 29. The compiler will not convert the int to a double and then autobox the double to a Double object in this case. 33. static methods may not call non static methods in the way shown in the class.     UIL Computer Science UTCS UIL Open 2011 ( page  PAGE 6 "#@ANQUVW ` x ^ĵyhWHhchrB*CJaJph hch ;B*CJaJph hch 5B*CJaJphhB*CJaJphhch1#_B*CJaJph#hch 5;B*CJaJphhg5;B*CJaJphhch B*CJaJphhch B*CJaJphhbB*phhch 5B*phhch B*phh!ih 5B*ph"#@AVW ( r _`ij $   Hd 1$7$8$9DH$^ `Ha$gd $d 1$7$8$9DH$a$gd $d 1$7$8$9DH$a$gd $a$gd!i^_ij"67:ᎊxlaYH hI \hI \CJOJQJ^JaJhI \CJaJhhhhCJaJhhhh<CJaJ"hhhh5:CJOJQJaJh hch CJaJ hch 5B*CJaJph hch ;B*CJaJph%hch59B*CJOJQJaJph%hch B*CJOJQJaJphhch B*CJaJphhch59B*CJaJphj!"#$Hfrkd$$IflF* )U   )    4 lap yteZ $Ifgdh $Ifgdh **>^*`>gd :<ADFMPSVY\_behknqtwxyƶ}q}bShhhññ~rfrrfh wCJOJQJaJhF|CJOJQJaJhhhvCJOJQJaJhIYN $Ifgd kd$$Ifs4ֈv! bx)A  )4 sayteZ $Ifgd I[fob xx$Ifgd kd$$Ifs4\\ bx)   )4 sap yteZ $Ifgd  $Ifgd dkd $$Ifs4Fbx) )    4 sayteZ 2345]dghkqruxy濭~rrrrrcZh<CJaJh5:CJOJQJaJha:CJOJQJaJhBPRST]^_buvֿ갞zn_hhh0CJOJQJaJh.-CJOJQJaJh?BQR]TTTT $Ifgd kd0$$Ifs4ֈv bx)T )44 sayteZRS_`bvxooooo $Ifgd $Ifgd {kdt$$Ifs4\vbx))44 sayteZxobo xx$Ifgd $Ifgd kd~$$Ifs4\\ bx)   )4 sap yteZ   QSVX[]^淥uf[hhh5?CJaJhhh5?CJOJQJaJhwCJOJQJaJhLVCJOJQJaJh5?CJOJQJaJhhh5?<CJaJ"hhh5?5:CJOJQJaJh5?5:CJOJQJaJheZCJOJQJaJhN3CJOJQJaJh@BHƼ΄rfƼXhp7CJOJQJ^JaJhhhp7<CJaJ"hhhp75:CJOJQJaJhp75:CJOJQJaJhYhp7<CJOJQJaJhCJaJ h9hp7CJOJQJ^JaJhp7OJQJ^Jhp7CJaJhhhp7CJaJhhhp7CJOJQJaJhp7CJOJQJaJhO^CJOJQJaJ" $Ifgd dkd#$$Ifs4ZFbx) )    4 sayt  $Ifgd wkd$$$Ifs4h\xbx) )4 sayt  $Ifgd wkdw%$$Ifs4g\xbx) )4 sayt  $Ifgd wkdL&$$Ifs4^\xbx) )4 sayt  $Ifgd wkd!'$$Ifs4^\xbx) )4 sayt }ttt $Ifgd  $Ifgd wkd'$$Ifs4v\xbx) )4 sayt4 KLxobo xx$Ifgd  $Ifgd kd($$Ifs4\^ bx)   )4 sap yt HJQRSYZ[adeknouz{}~znz_PhhhDCJaJhW>DCJOJQJ^JaJhW>DCJaJh|CJOJQJaJhW>DCJOJQJaJhhhD $Ifgd kd1$$Ifs4ֈx# bx)?  )4 sayt>{ $Ifgd 9YrstofYf xx$Ifgd $Ifgd kd2$$Ifs4\^ bx)   )4 sap yt $IfgdW>D $Ifgd dkd 4$$Ifs4Fbx) )    4 sayt KLvwx|ʻynhxhHCJaJh| h| CJOJQJaJh| CJOJQJaJhHCJaJhHCJ_HEaJhHCJOJQJaJhH<CJaJhH5:CJOJQJaJhHhalCJOJQJaJh>{CJOJQJaJhhh{ $Ifgd 1KLMvwkbUb xx$Ifgd  $Ifgd kd7$$Ifs4\^ dz)   44 sap yt q $IfgdHwxy| $Ifgd hkdL8$$Ifs4uFdz)    44 sayt q]TTTTTT $Ifgd kd$9$$Ifs4ֈx dz)T 44 sayt q]TTTT $Ifgd kd0:$$Ifs4ֈx dz)T 44 sayt q ,xooooo $Ifgd $Ifgd {kdt;$$Ifs4\xdz)44 sayt q+-.V]cdgopswx~ǻǻ~rfrh$$Ifs4ִx# jdz)G     4 sayt qYN $Ifgd kd?$$Ifs4ֈx# dz)A  4 sayt q $Ifgd ob xx$Ifgd%kd@$$Ifs4\^ dz)   4 sap yt q $Ifgd  !%&)+,2569:;=>GIJM{|׵׵׵׵׵צ|p|aYh{h q.rstw~ $Ifgd q $Ifgd dkdI$$Ifs4Fdz)     4 sayt q <3333 $Ifgd kdJ$$Ifs4ִx# dz)     4 sayt qPkdK$$Ifs4ֈx# dz)A  4 sayt q $Ifgd q $Ifgd  $Ifgd q $Ifgd  $Ifgd QkdL$$Ifs4w0dz) 4 sayt q# $ tk^k xx$Ifgd  $Ifgd kdM$$Ifs4\^ dz)   44 sap yt $ % & ) , / 3 4 $Ifgd hkdN$$Ifs4uFdz)    44 sayt 4 5 6 9 = @ D E ]TTTTTT $Ifgd kdO$$Ifs4ֈx dz)T 44 sayt E F G J u v ]TTTT $Ifgd kdP$$Ifs4ֈx dz)T 44 sayt F t u v w x y z %!,!7!8!>!C!S!T!Z!!!!!˼xpxaxUaxpJxphuhuCJaJh HCJOJQJaJh Hh HCJOJQJaJhuCJaJhhhuCJaJhhhuCJOJQJaJhuCJOJQJaJhhhu<CJaJ"hhhu5:CJOJQJaJhu5:CJOJQJaJhuh>{h qh qCJ_HEaJh qCJOJQJaJh qh qCJaJh qCJaJv w x z ~ynee\\\\ $Ifgdu $Ifgd  $Ifgd gdugd q{kdQ$$Ifs4\xdz)44 sayt  &!'!xobo xx$Ifgd  $Ifgd kdR$$Ifs4\] dz)   )4 sap ytfX'!(!)!,!8!9! $Ifgd dkd T$$Ifs4ZFdz) )    4 saytfX9!:!;!>!T!U! $Ifgd wkdT$$Ifs4h\wdz) )4 saytfXU!V!W!Z!!! $Ifgd wkdU$$Ifs4g\wdz) )4 saytfX!!!!!! $Ifgd wkdV$$Ifs4\wdz) )4 saytfX!!!!!!" "O"i"""""""""""""""""""##0#2#3#4#=#?#@#ʾzhzh"hhh&xooooooof $IfgdE $Ifgd $Ifgd {kdNk$$Ifs4V\wdz))44 saytfX %%%%%%%%%8&;&=&>&?&@&h&o&t&u&x&}&~&&&&&&&&&ǻǯǣǔzrzfzWzfzfzKhvCJOJQJaJhZNhZNCJOJQJaJhZNCJOJQJaJh&?&@&i&j&xobo xx$Ifgd $Ifgd kdXl$$Ifs4\] dz)   )4 sap ytfXj&k&l&o&u&x&~&&&& $Ifgd dkdnm$$Ifs4Fdz) )    4 saytfX &&&&&&<3333 $Ifgd kd;n$$Ifs4ִw# dz) )    4 saytfX&&&&&&&&YN $Ifgd kdho$$Ifs4qֈw# dz)A  )4 saytfX $Ifgd &&&&&&&&&&&&&&&'''-'4'5'8'='>'A'G'H'N'R'S'V'Y'Z'\']'ŹsssgsXhc5:CJOJQJaJhsYCJOJQJaJh6CJOJQJaJhhh^JCJaJh'A'H'I' $Ifgd dkdq$$Ifs4Fdz) )    4 saytw' I'J'K'N'S'V'<3333 $Ifgd kdZr$$Ifs4ִw# dz) )    4 saytw'V'Z'['\'i'j'l'''YN $Ifgd kds$$Ifs4ֈw# dz)A  )4 saytw' $Ifgd ]'f'h'i'l''''';(<(t(v(w(((((((((((((ǺǮǮǟ~o~gYNBh4aCJOJQJaJhchVCJaJhoICJOJQJ^JaJhoICJaJhc5CJOJQJ^JaJhcCJOJQJ^JaJhcCJaJhhhcCJaJhhhcCJOJQJaJhVCJOJQJaJhc5CJOJQJaJhcCJOJQJaJhhhc<CJaJhc5:CJOJQJaJ"hhhc5:CJOJQJaJ'''''(=(W(Z(\(u(v(w(okdt$$Ifs4\] dz)   )4 sap ytA# $Ifgd w((((((((((((dkdu$$Ifs4Fdz) )    4 saytA# $Ifgd xx$IfgdoI ((((((((((()()))+)1)7)O)Q)R)[)])^)a)c)d))))))))))))ʿ||ph\\\h29CJOJQJaJhcCJaJhhhc<CJaJ"hhhc5:CJOJQJaJhc5:CJOJQJaJhhh CJaJh 5CJOJQJ\aJh CJaJh4ahcCJaJh4aCJaJhoICJaJhhhcCJOJQJaJh4aCJOJQJaJhhhcCJaJ$((((((<3333 $Ifgd kd]v$$Ifs4ִw# dz) )    4 saytA#())*)+)O)P)YP $Ifgd kdw$$Ifs4%ֈw# dz)A  )4 saytA# $Ifgd P)Q)^)_)a)b) $Ifgd $Ifgd Qkdx$$Ifs40dz) )4 saytA#b)c)d)))xobo xx$Ifgd $Ifgd kdHy$$Ifs4\] dz)   )4 sap ytA#)))))))))) $Ifgd dkdPz$$Ifs4Fdz) )    4 saytA# ))))))<3333 $Ifgd kd{$$Ifs4ִw# dz) )    4 saytA#)))))))))F*G*q*r*s*w*****************<+A+D+¶{rfZfhPU^CJOJQJaJh]OCJOJQJaJh]O<CJaJh]O5:CJOJQJaJhxhNMCJaJhNMhNMCJOJQJaJhNMCJaJhNMCJ_HEaJhNMCJOJQJaJhNM<CJaJhNM5:CJOJQJaJhhhcCJaJhhhcCJOJQJaJh29CJOJQJaJ!)))))))YNEE $Ifgd  $Ifgd kd<|$$Ifs4ֈw# dz)A  )4 saytA# $Ifgd )))) **F*G*H*q*kbU xx$Ifgd  $Ifgd kdK}$$Ifs4\] dz)   )44 sap ytA# $IfgdNM q*r*s*t*w*****hkd~$$Ifs4uFdz))    44 saytA# $Ifgd ********]TTTTTT $Ifgd kdZ$$Ifs4ֈw dz)T )44 saytA#******]TTTT $Ifgd kdf$$Ifs4ֈw dz)T )44 saytA#******++++D+xoofffff $Ifgd]O $Ifgd  $Ifgd {kd$$Ifs4\wdz))44 saytA# D+E+F+o+p+tk^k xx$Ifgd  $Ifgd kd$$Ifs4\] dz)   )44 sap ytA#D+E+o+p+q+u+{+|+++++++++++++++++++++++++++ ,",=,øsghACJOJQJaJh,xoooooo $Ifgd $Ifgd {kd$$Ifs4\wdz))44 saytA#=,>,?,@,h,o,p,q,t,u,v,y,{,|,,,,,,,,,,,,,4-5-6-7-9-<-J-׷׷ץysyh]UhZRqCJaJhjh-CJaJh^\h-CJaJ hpCJ h-CJhhh-CJaJhhh-<CJaJh-5:CJOJQJaJ"hhh-5:CJOJQJaJh3-;CJOJQJaJh}neCJOJQJaJh,?,@,i,j,xobo xx$Ifgd $Ifgd kd$$Ifs4\] dz)   )4 sap ytA#j,k,l,o,q,t,v,y,|,}, $Ifgd dkd3$$Ifs4Fdz) )    4 saytA# },~,,,,,<3333 $Ifgd kd$$Ifs4ִw# dz) )    4 saytA#,,,,,,,YNEE $Ifgdz $Ifgdzkd-$$Ifs4ֈw# dz)A  )4 saytA# $Ifgd ,,,7-8-w'Okd$$IfsP0z)()4 saytw' xx$Ifgdz $Ifgdzrkd<$$IfsF6 z)C   )    4 sap ytw'8-9-<-K-N-]-`-k-n-x-{--------------- $Ifgd $Ifgd gd/K/ͼͰsg\MhDu5:CJOJQJaJhhh<CJaJh<CJOJQJaJh<5CJOJQJ\aJh<CJaJhhhDuCJOJQJaJhPCCJOJQJaJhhhDuCJaJhphDu5CJaJ h<hDuCJOJQJ^JaJh<hDuCJaJh<h<CJaJhDu5CJOJQJ^JaJhDuCJOJQJ^JaJ...........dkd$$Ifs4Fdz) )    4 sayt< $Ifgd ./// / /<3333 $Ifgd kdǒ$$Ifs4ִx# dz) )    4 sayt< /////K/L/N/O/ $Ifgdz $IfgdzQkd$$Ifs40dz) )4 sayt<K/N/O/P/g/n/////////////////////00 0 0 00000ؼؘwk[jhD)CJOJQJUaJhhhp<CJaJhp5:CJOJQJaJ"hhhp5:CJOJQJaJhjFhDuCJaJhPChDuCJaJhPCCJOJQJ^JaJhPCCJaJhPCCJOJQJaJh<CJaJhDuCJaJhDuCJ_HEaJhDuCJOJQJaJhDu<CJaJ"O/P/Q///tk^k xx$Ifgdz $Ifgdzkd$$Ifs4\^ dz)   )44 sap yt<////////// $Ifgdzhkd$$Ifs4Fdz))    44 sayt< //////7.... $Ifgdzkd$$Ifs4ִx# dz))    44 sayt<////0 0zzzz $Ifgdz{kd$$Ifs4v\xdz))44 sayt< 0 00000xooo $Ifgdz $Ifgdz{kd$$Ifs4\xdz))44 sayt<000Y0`0{0|000000000000011111X1Y1Z1^1_1c1e1f1g1h1l1n1r1t1u1v1w1{111111港ޣޑޑ{ޑwhIMhvghvgCJaJhvghpCJaJhvgCJaJhpCJ_HEaJhpCJOJQJaJhp<CJaJhp5:CJOJQJaJh$hp<CJaJh$hpCJaJhpCJaJhhhpCJaJhhhpCJOJQJaJ.000Z0[0xobo xx$Ifgdz $Ifgdzkdy$$Ifs4\^ dz)   )4 sap ytPC[0\0]0`0|0}0 $Ifgdzdkd$$Ifs4ZFdz) )    4 saytPC}0~00000 $Ifgdzwkd@$$Ifs4h\xdz) )4 saytPC000000 $Ifgdzwkd$$Ifs4g\xdz) )4 saytPC000000 $Ifgdzwkd$$Ifs4^\xdz) )4 saytPC000001 $Ifgdzwkd$$Ifs4^\xdz) )4 saytPC111111}ttt $Ifgdz $Ifgdzwkd$$Ifs4\xdz) )4 saytPC111X1Y1tk^k xx$IfgdML $Ifgdzkdw$$Ifs4\^ dz)   )44 sap ytPCY1Z1[1^1`1c1f1g1 $Ifgdzhkd$$Ifs4uFdz))    44 saytPCg1h1i1l1o1r1u1v1]TTTTTT $Ifgdzkd$$Ifs4ֈx dz)T )44 saytPCv1w1x1{111]TTTT $Ifgdzkd$$Ifs4ֈx dz)T )44 saytPC11111111292J2~ynee\\\\ $Ifgd $Ifgd  $Ifgd gdu2gdCI{kd$$Ifs4\xdz))44 saytPC 1111111]2a2v2z2{2}23333333333Ź|maRA| h5CJOJQJ\^JaJhCJOJQJ\^JaJhCIhCJ\aJh5CJOJQJ\aJhCJaJhhhCJaJhhhCJOJQJaJhCIhCJaJhCIh5CJOJQJaJhCJOJQJaJhhh<CJaJ"hhh5:CJOJQJaJh5:CJOJQJaJhu2hML hIM5J2c2|2}222222353Z3`3t3x3333 $Ifgd  $Ifgd333,4G4H4xobbo xx$Ifgd  $Ifgd kd$$Ifs4\^ ez)   )4 sap yt33334 4(4*4,404@4B4G4M4U4V4e4f4l4{4|4444444444444444444444ؾxh<h<CJ\aJh5CJOJQJ\aJhYh<CJOJQJaJhhhCJOJQJaJhCJOJQJaJhhhCJaJh5CJOJQJ^JaJ#hh5CJOJQJ^JaJhCJaJhCJOJQJ^JaJ)H4I4J4M4V4f4g4 $Ifgd dkd$$Ifs4ZFez) )    4 saytg4h4i4l4|444ulllll $Ifgd kd$$Ifs4hrw ez)  )4 sayt4444444ulllll $Ifgd kd$$Ifs4grw ez)  )4 sayt4444444ulllll $Ifgd kd}$$Ifs4^rw ez)  )4 sayt4444444ulllll $Ifgd kdh$$Ifs4^rw ez)  )4 sayt44 5 5ulc $Ifgd  $IfgdzkdS$$Ifs4rw ez)  )4 sayt44445 5 5555585@5B5C5E5b5d5e5h5i5n5o5{5|5555555555555555555˿wwwlwlwlwlwwwwwwlhD[hCJaJhD[hCJOJQJaJh:VhCJOJQJaJhCJaJh<CJaJh5:CJOJQJaJhCJ_HEaJhCJOJQJaJh<hCJaJh<h<CJaJh<5CJOJQJ^JaJh<CJOJQJ\^JaJ* 5 55555 $Ifgd  $Ifgd UkdL$$Ifs40ez))44 sayt555b5d5f5h5j5l5tk^LLLLL$xx$Ifa$gd K$ xx$Ifgd $Ifgd kd$$Ifs4\^ ez)   )44 sap ytl5n5o5q5s5&kd$IfK$L$lֈ`)  t044 layt $xx$Ifa$gd K$s5u5w5y5{5$xx$Ifa$gd K${5|5~5558&&&$xx$Ifa$gd K$kd$IfK$L$lֈ`)  t044 layt 55555&kdq$IfK$L$lֈ`)  t044 layt $xx$Ifa$gd K$5555555$xx$Ifa$gd K$555558&&&$xx$Ifa$gd K$kd$IfK$L$lֈ`)  t044 layt 55555&kd$IfK$L$lֈ`)  t044 layt $xx$Ifa$gd K$5555555555hkdr$$Ifs4uFez))    44 sayt $Ifgd  xx$Ifgd  55555555555555C6D6E6F6G6^6_6`6l6m6p66666666666677"7&7,7.71737O7S7ÿsssssssssshbh/CJOJQJaJh/CJOJQJaJhhh/<CJaJ"hhh/5:CJOJQJaJh/5:CJOJQJaJh/hKz hIM5hhhCJaJhxhCJaJhCJaJhCJ_HEaJhCJOJQJaJ-55555555]TTTTTT $Ifgd kdJ$$Ifs4ֈw ez)T )44 sayt5555D6E6]TTTT $Ifgd kdV$$Ifs4ֈw ez)T )44 saytE6F6G6`6m6n6p6666~yneeZQQ $Ifgd/ x$Ifgd< $Ifgd  $Ifgd gd/gd{kd$$Ifs4\wez))44 sayt 66666667,70717O7d7h7i7777778 8 8.8R8z8888 $Ifgd/S7Z7]7d7f7i7k7777777777777788 8 88.828H8K8R8V8k8o8z888888888888888888888999$9(9+9/93969?9E9O9Q9R9S9T9V9n9r9s9999999:hhh/CJaJhhh/CJOJQJaJh/CJOJQJaJhbh/CJOJQJaJP88888899$9?9O9S9T9n99999999 x$Ifgd< $Ifgd/99:: ;;xobbo xx$Ifgd  $Ifgd kd$$Ifs4\^ bx)   )4 sap yt :?:F:G:T:_:{:: ;;;;;;#;';(;,;-;3;7;8;<;=;C;G;H;K;L;M;N;T;W;X;Y;Z;];^;_;`;b;d;x"hhh/5:CJOJQJaJh%h/<CJaJh%CJH*aJh%h%CJaJh%h/CJaJh%CJaJhhh/CJaJh/CJOJQJ^JaJ h<h/CJOJQJ^JaJ h`}h/CJOJQJ^JaJh/CJaJ);;;;;;; $Ifgd dkd$$Ifs4ZFbx) )    4 sayt ;; ;#;(;-;.;ulllll $Ifgd kdk$$Ifs4hrx bx)L  )4 sayt/.;/;0;3;8;=;>;ulllll $Ifgd kdV$$Ifs4grx bx)L  )4 sayt/>;?;@;C;H;N;O;ulllll $Ifgd kdA$$Ifs4^rx bx)L  )4 sayt/O;P;Q;T;Z;`;a;ulllll $Ifgd kd,$$Ifs4^rx bx)L  )4 sayt/a;b;o;p;r;s;ujaaa $Ifgdz $Ifgdzkd$$Ifs4rx bx)L  )4 sayt/d;n;o;r;s;u;;^<_<e<k<l<r<w<x<~<<<<<<<<<<<<<<<<<<="=2=ĹĹzĹĹĹrjr^Ĺh%h/<CJaJh<CJaJh%CJaJh8CJOJQJaJhf@CJOJQJaJ hl`Dh/CJOJQJ^JaJh/CJOJQJ^JaJh/CJaJhhh/CJaJhhh/CJOJQJaJhhh/<CJaJ"hhh/5:CJOJQJaJh/5:CJOJQJaJ#s;t;u;;_<`<xobbo xx$Ifgd`} $Ifgdzkd$$Ifs4\^ bx)   )4 sap yt `<a<b<e<l<m< $Ifgdzdkd$$Ifs4ZFbx) )    4 saytzm<n<o<r<x<y< $Ifgdzwkd$$Ifs4h\xbx) )4 saytzy<z<{<~<<< $Ifgdzwkd$$Ifs4g\xbx) )4 saytz<<<<<< $Ifgdzwkd$$Ifs4^\xbx) )4 saytz<<<<<< $IfgdzwkdV$$Ifs4^\xbx) )4 saytz<<<<<<}ttt $Ifgdz $Ifgdzwkd+$$Ifs4d\xbx) )4 sayt%<<<3=4=xobo xx$Ifgd`} $Ifgdzkd$$Ifs4\^ bx)   )4 sap ytz2=3=9=@=A=G=Z=[=a=h=i=o=|=}=================B>c>{>û~wfWfWhD[h@9CJOJQJaJ hD[h@90JCJOJQJaJ h$T(hn4hn4>*CJaJ&hchn45>*CJOJQJ^JaJhRh`}CJ$aJ$h<5CJ$aJ$hRhR5CJ$aJ$hRCJaJh`}CJaJh8h/<CJaJh8h/CJaJh8CJaJhhh/CJaJh`}h/CJaJ 4=5=6=9=A=B= $Ifgdzdkd$$Ifs4ZFbx) )    4 saytzB=C=D=G=[=\= $Ifgdzwkd$$Ifs4h\xbx) )4 saytz\=]=^=a=i=j= $Ifgdzwkd$$Ifs4g\xbx) )4 saytzj=k=l=o=}=~= $Ifgdzwkd$$Ifs4^\xbx) )4 saytz~====== $IfgdzwkdT$$Ifs4^\xbx) )4 saytz=======>>2>{sn^^QQ & F$IfgdD[$If[$\$gdD[gdn4$a$gdc$a$gdRgd`}wkd)$$Ifs4\xbx) )4 saytz 2>B>e>?*???R?b?~????? @!@7@S@f@@@@@ & F$IfgdD[ & F$IfgdD[ $$Ifa$gdD[ & F$IfgdD[ $Ifgd`{ & F$IfgdD[{>>>>>>>>>>>>??=?????? @@@XAAAAAAAAAAA?BBBLBNBQBVBdBBBBCC CCC.C/CBCCCeCfCzC{CCCCCCCCCCCD9DKDLD]D^DfDgDqDrDhD[h@95CJOJQJaJh@9 hD[h@90JCJOJQJaJhD[h@9CJOJQJaJhD[h@9CJaJL@ A&A4AAAdBC/CCCfC{CCCCCCCCCCD DDD & F $IfgdD[ h$If^hgdD[ $Ifgd`{ & F$IfgdD[D;DLD^DgDrDsDDDDDDDDE6EBEYEEEEDF`FsFFF & F$IfgdD[ & F $IfgdD[ $Ifgd`{rDsDDDDDDYEtEEEE$F&FBFFGGXGGGGGHH2H:HDHbHdH}HsIIK!K)K^KcKpKtKuKwKKKKL~hD[hFCJOJQJaJh@9CJOJQJaJhD[h@9CJaJh=0JCJOJQJaJhD[h@95CJOJQJaJh6HCJOJQJaJ#hD[h@90J5CJOJQJaJ hD[h@90JCJOJQJaJhD[h@9CJOJQJaJ-FFF4G5GXGcGpGGGGGGGHHDHSHaHbHcHdH & F$IfgdD[ h$If^hgdD[ $$Ifa$gd= & F$IfgdD[ $Ifgd`{ & F$IfgdD[dH~HHHH I0IQIsIIIIJJP?PDPEPHPIPNPOPTPUPZP[P^P_PdPePjPkPpPqPtPuPzP{PPPPPPPPPPPPPPPPPPPPPPPPh]OCJaJh CJaJhPCCJaJhuCJaJhGLCJaJhm"!hYCJaJhm"!hYCJ$aJ$LOOOOPP$x$Ifa$gdo x$IfgdoPPPPE3( x$Ifgdo$ & Fx$Ifa$gdokdl$$Ifl]ִ~ sh]RG"<'    4 laP PPPPPP x$Ifgdo$x$Ifa$gdoPPPPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 laP"P$P(P*P.P0P x$Ifgdo$x$Ifa$gdo0P1P2P4PE3( x$Ifgdo$ & Fx$Ifa$gdokdv$$Ifl]ִ~ sh]RG"<'    4 la4P8P:P>P@PDPFP x$Ifgdo$x$Ifa$gdoFPGPHPJPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 laJPNPPPTPVPZP\P x$Ifgdo$x$Ifa$gdo\P]P^P`PE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 la`PdPfPjPlPpPrP x$Ifgdo$x$Ifa$gdorPsPtPvPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 lavPzP|PPPPP x$Ifgdo$x$Ifa$gdoPPPPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 laPPPPPPP x$Ifgdo$x$Ifa$gdoPPPPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 laPPPPPPP x$Ifgdo$x$Ifa$gdoPPPPE3( x$Ifgdo$ & Fx$Ifa$gdokd$$Ifl]ִ~ sh]RG"<'    4 laPPPPPPP x$Ifgdo$x$Ifa$gdoPPPPPPPPPPP^Q_QlQmQtQuQQQQQQQQQQQQQQQRR R&R¶¶¶«sshWhW hPChPCCJOJQJ^JaJhPChPCCJaJ hPChNCJOJQJ^JaJhPChNCJaJ hPChkW@CJOJQJ^JaJhPChkW@CJaJhPCh5H;CJaJhPChCJH*aJhPChCJaJhhvCJOJQJaJh{$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap yt $$If!vh555#v#v#v:V s4)+555/ /  / / 44 sayt +$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 sayt $$If!vh55555? 5#v#v#v#v#v? #v:V s4)+55555? 5/ / / / 44 sayt>{5$$If!vh5555#v#v#v#v:V s4   +,5555/ / / / / / /  / 4 sap yt q$$If!vh555#v#v#v:V s4u+,555/  / / /  / 4 sayt q $$If!vh555T55 5#v#v#vT#v#v #v:V s4+,555T55 5/  / /  / 4 sayt qB$$If!vh555T55 5#v#v#vT#v#v #v:V s4+,555T55 5/ /  / / / / /  / 4 sayt q$$If!vh5555#v#v#v#v:V s4+,5555/ /  / / / / / 4 sayt q$$If!vh5555#v#v#v#v:V s4   +,5555/ / /  / / 44 sap yt q$$If!vh555#v#v#v:V s4+555/ /  / / 44 sayt q+$$If!vh55555G555#v#v#v#v#vG#v#v#v:V s4+55555G555/ /  / 44 sayt q $$If!vh55555A 5#v#v#v#v#vA #v:V s4+55555A 5/ / / / 44 sayt q$$If!vh5555#v#v#v#v:V s4   +,5555/ / /  / / 44 sap yt q$$If!vh555#v#v#v:V s4+555/ /  / / 44 sayt q+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4+55555555/ /  / 44 sayt q $$If!vh55555A 5#v#v#v#v#vA #v:V s4+55555A 5/ / / / 44 sayt q$$If!vh5555#v#v#v#v:V s4   +,5555/ / /  / / 44 sap yt q$$If!vh555#v#v#v:V s4+555/ /  / / 44 sayt q+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4+55555555/ /  / 44 sayt q $$If!vh55555A 5#v#v#v#v#vA #v:V s4+55555A 5/ / / / 44 sayt q$$If!vh5555#v#v#v#v:V s4   +,5555/ / /  / 44 sap yt q$$If!vh555#v#v#v:V s4+555/ /  / 44 sayt q+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4+55555555/ /  / 44 sayt q $$If!vh55555A 5#v#v#v#v#vA #v:V s4+55555A 5/ / / /  44 sayt q$$If!vh55#v#v:V s4w+,55/  / /  44 sayt q5$$If!vh5555#v#v#v#v:V s4   +,5555/ / / / / / /  / 4 sap yt $$If!vh555#v#v#v:V s4u+,555/  / / /  / 4 sayt  $$If!vh555T55 5#v#v#vT#v#v #v:V s4+,555T55 5/  / /  / 4 sayt B$$If!vh555T55 5#v#v#vT#v#v #v:V s4+,555T55 5/ /  / / / / /  / 4 sayt $$If!vh5555#v#v#v#v:V s4+,5555/ /  / / / / / 4 sayt $$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytfX$$If!vh555#v#v#v:V s4Z)+555/ /  / / 44 saytfX$$If!vh5555#v#v#v#v:V s4h)+5555/ /  / / 44 saytfX$$If!vh5555#v#v#v#v:V s4g)+5555/ /  / / 44 saytfX$$If!vh5555#v#v#v#v:V s4)+5555/ /  / / 44 saytfX$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / / 44 saytfX$$If!vh5555#v#v#v#v:V s4q)+5555/ / / / 44 saytw'5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap ytfX$$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 saytfX $$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/  / /  / 4 saytfXB$$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/ /  / / / / /  / 4 saytfX$$If!vh5555#v#v#v#v:V s4D)+,5555/ /  / / / / / 4 saytw'$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytfX$$If!vh555#v#v#v:V s4)+555/ /  / / 44 saytfX+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytfX $$If!vh55555A 5#v#v#v#v#vA #v:V s4q)+55555A 5/ / / / 44 saytfX$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytfX$$If!vh555#v#v#v:V s4)+555/ /  / / 44 saytfX+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytfX $$If!vh55555A 5#v#v#v#v#vA #v:V s4D)+55555A 5/ / / / 44 saytfX5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap ytfX$$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 saytfX $$If!vh55555 5#v#v#v#v#v #v:V s4)+,55555 5/  / /  / 4 saytfXB$$If!vh55555 5#v#v#v#v#v #v:V s4)+,55555 5/ /  / / / / /  / 4 saytfX$$If!vh5555#v#v#v#v:V s4V)+,5555/ /  / / / / / 4 saytfX$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytfX$$If!vh555#v#v#v:V s4)+555/ /  / / 44 saytfX+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytfX $$If!vh55555A 5#v#v#v#v#vA #v:V s4q)+55555A 5/ / / / 44 saytfX$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytw'$$If!vh555#v#v#v:V s4)+555/ /  / / 44 saytw'+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytw' $$If!vh55555A 5#v#v#v#v#vA #v:V s4)+55555A 5/ / / / 44 saytw'$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap ytA#$$If!vh555#v#v#v:V s4)+555/ /  / 44 saytA#+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytA# $$If!vh55555A 5#v#v#v#v#vA #v:V s4%)+55555A 5/ / / /  44 saytA#$$If!vh55#v#v:V s4)+,55/  / /  44 saytA#$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap ytA#$$If!vh555#v#v#v:V s4)+555/ /  / 44 saytA#+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytA# $$If!vh55555A 5#v#v#v#v#vA #v:V s4)+55555A 5/ / / / 44 saytA#5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap ytA#$$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 saytA# $$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/  / /  / 4 saytA#B$$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/ /  / / / / /  / 4 saytA#$$If!vh5555#v#v#v#v:V s4)+,5555/ /  / / / / / 4 saytA#5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap ytA#$$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 saytA# $$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/  / /  / 4 saytA#B$$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/ /  / / / / /  / 4 saytA#$$If!vh5555#v#v#v#v:V s4)+,5555/ /  / / / / / 4 saytA#$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / / 44 sap ytA#$$If!vh555#v#v#v:V s4)+555/ /  / / 44 saytA#+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 saytA# $$If!vh55555A 5#v#v#v#v#vA #v:V s4)+55555A 5/ / / / 44 saytA#$$If!vh555D#v#v#vD:V s   )555C/ /  / 44 sap ytw'$$If!vh55(#v#v(:V sP)55(/ / 44 saytw'e$$If!v h55585655555 55 5 ^#v#v#v8#v6#v#v#v#v#v 5#v #v ^:V s)55585555555 55 5 ^/ / / 44 saytw'kd$$Ifs w  >!#z)855^),,,,4 saytw'$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap yt<$$If!vh555#v#v#v:V s4)+555/ /  / 44 sayt<+$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+55555555/ /  / 44 sayt< $$If!vh55555A 5#v#v#v#v#vA #v:V s4)+55555A 5/ / / /  44 sayt<$$If!vh55#v#v:V s4)+,55/  / /  44 sayt<5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap yt<$$If!vh555#v#v#v:V s4)+,555/  / / /  / 4 sayt<D$$If!vh55555555#v#v#v#v#v#v#v#v:V s4)+,55555555/  / / /  / 4 sayt<$$If!vh5555#v#v#v#v:V s4v)+,5555/ /  / / / /  / 4 sayt<$$If!vh5555#v#v#v#v:V s4)+,5555/ /  / / / / / 4 sayt<^%Dd  QS0  # Ab$),})$_n$),})PNG  IHDR ivsRGB$WIDATx^M]UIiH@>HLfډ|:Q!}̄q` ˀi01~ 8$4ؑvgĤ]s9}w޻?^{}]~}_  4QBBBe(({P`) <((({P{ӬԘ  <&e(pY1 xLfD)PNRc2(RSÝfF˧׌ыAʹQwEv/][;mV\_+%h <|W՝}_IYS;g/6YFboI`'`k: Gl4z xD\o߽w+m#w/jvQ?u`&KC+@Gؽxbq#HA3jeR8tD!h&4̴)$` (?ߞü(t3NSr |'?O4x"GF>췿O~G믿F6_)42l=A>W_}jumk 1tv$Lx g,BrHS(eI-&81M]xB=3)h'o>I / nG&z_GͤcNi D loqx$ 77 ewDjJbLgJbQ1)L#\!q~qk4,B/(e>C8 P:*yC2EMנeI׿u! sֈ<.O.<0p~$ q.$BdȲ qNdN([`㉣F@xQ} B,rW) $tnJ7aC^6;OJQiY)zmaykZ|0D?|s8FDVĵBN"B~ I%C)DmQ:OciS)aOMB*ڤL -RV>7uV᭷d]N1ӌeccC48`Ih6J7 k/\ካ4k$v=&]_9M#))WԵ , cjԏ#.H́"S%=jĩ#8~cǎ!JٝHy}u8~) #Xߊ;0:Tr/+)_z=(ܱUa&"ט+yh|[R+x)Gump0$fdn.EC 6bm<# Ɇc,zaQ3Nx`F%׾Eߦ+iPH>w8ȿkP%zȁF @( )G4AH QʆNDSJ A ぇR@*憉6wxZK X£Fn"qpI]H2h>><ԇmcQ/;=5x'OM2IF!:{S!A&u Y&)h:{fz@-_ {;!Qj&Jҵ%m<[BUX{Gއ e~ifUŞ^ ^<(s~ϟ?7aðC| #D5kk;{}h@'-3)(k?UŮݔE9w)f^a@螏%\39x}Y8xW;p qE"AL9]xPo"VmZo[m, UL0 +hM"V-C-nȩgLЀU@<_E5Hxp#=.PvuM ٨^#nk}!hbYÄ7rL-)Equszߒ=CYDŽ!==*{xkv6-uEKtoW\鍘N/20rB`^:d!].*vt:/; !5 ЬW?Tcpl9 (O]k=N82W=ΜRD@.+5"(f1NmZyZd7u+GQ pϣW3tOMSE]uZp]Nƒ|?7GQjg{p\>V]BaCo.4,(P}|-QqM@ĄYa捜@I`-`.y-D(2<} `Fffk[;͕ԇ0Q"|RLBpYM omxG$ pn•4|hc_><)ޢgjQ RVl0m(N;>&k W&_Y_ c |رQ)bMr)c&F஦KNOX,!(d؈Oy-拘Afȋ5P'UF?*sjo1ĮvoqӀe #߆p5b#>yS |"kS}OE.QVH7a[r6,i؀ZtT 7[nP95cK.0Î jN]M%y[`Xy-yCbr,guق ʿ$S,u܍ڰZTCiå@|I:z9Ci6\¯6}{AOHŔcDN7AGrUWcB Y-PdDQ󜘁ɎBYcbo^ 3."=r\9R5=+QvZ .."A_|TSv{ ju+I9ZN!=s﬷y@/=^xΦ;zB0ا*d Yw߄ǿ6O嵐|TG|ie.b'<$W8⾱boI}Z Ay3^+&o:#xA;`Q󈬓m^ &1'>][8e8ԭG8X{3Wy-5eʮ8崙!$@mFHcyׂ'ʮI#J>\FÃk7rHE^{mE#Zg<7 7߄(9{ y/w)(RG=[_6BZqxteע,Jxe^6.1"cT"#2ifƝ%w\=O^SsJaD.}{ Bʊyرc{ -CS{Zb[}ΝRWvgA.k9s"&eJʋe-kL%wHX\H#K:(I@:ð @E:".Tؠ)6Ra/]8hnyT6i*,1S(,9&Ħ:-YEqYtxjpye=*e zfZ@e*DWѨ"&LJǀvsUdhܣx͆N4( e ܻB$Aw9aսJi692<ۭ9_L3 D;Me"<,kV*FZي1snM$iV9,=uWd!$]V΢x4x䙷[’Wfm2opFplD$V懬#_;N@Sw wvՊzu]A@1 ˃yp[z`" <2-ղI Y]o8^sucy6Os0FURx2%o,1cG??Vl߻DYDc]4o-,B<"MzK{/sALDqGcQ :NG_f&UfCិax t|?7vv)* D-o~¡!c޽tnGܚ_uӼϟOjZNwyGl i9MEuG:8(v_>Kx`OsvfY:͹^!YE;.b=@b1Px힧 X2LKݣFS.ydwR[q=D(<|vc.fi3,CO"7]'C{SNag5VГ[8-8;ģ8+aqzF~ {gFfVn@ Ȍ>$ WHc5cĄݛڤvsMWLJ|{Ҍ6}˿ߞz6%Ž@YmnR=,7=l6Ee*ΑV%I\YUDX` Či'hi Yj8̤}<IW۔;JDq'LJ琷rxVc6W?9oW@ҳ(n I!}琷;j˒C)֟ZrW]?dT¯5. mb-!<@i`&o!=c)Gfj;hZlDbCK('1ʖǞv>55(SjQm au˔М1Ztn4$4K)?w^ <:VajKMUy7G/wȑR;4z~}05D]0o(˒VT/^l2)@d7Jh5 Ս>@P!ST+p WE%Ήb4aQ&ANRH}8"HYQ3Ua|o1uIlQ!S*A#.SMPoehpF]=SJTXSѰ{P4M^|tЮ{ 5V@8,StIōQhr F4ݜ~e6\$Lu0dxΟ?Ł3@!C0 <ȈӟTմJ'ҭ**f,.m,&$[Ots+p8Yn,LW:ancw;0p ߃)@hzkI.f@xQXG`rpGWZ%+{\%pN=p罴s[m]>6\kugs$ f:ƺxt,We#dշ[_Zl{fYݽxtmvwX%DuQ\<SudkX-'S=/:pz?UۥΕ+WV>3f?nZYP_1S_-ȎDz^ PX%q lpU1K[񎪴r"e)uN[ٳgRNL/p'qs| I,nh+][Yyp&n mzp~*F%VCs~|EzBrߗ$N饯٤XS Y)a{a*%䛓'O:Wvpqfl/5fYpS/E:}Vȓ52~g^HtY*\5!2V?OEph5/%[Y8^ΓDNя&0MȣGXG&Ձ _MtG i==GяSqr^e`%)bq477Tb7)xHY'^oOACqޒ ǣK|(ViG EoNi;}gRW"Q&q! jFebWH>#w+ ~{2wyoƢpGO6)2]t[Hft]`4W$Rʊ2/bHNwA'jNtlÆJme@鶆^OB6mF@]=\)ƀ@Zp3Zd3*ucTB *O~qӑpn32$d6T*ÖO @. hOJefjF(YM8}l_aC%22M j2,32^}[Kf\6Tr+íZމی!eN0&ۄӔ+TaxYyu!qh`![Xb%$cө3? dr5Ry!;vL(X2%3IJşBv0իW-G'dDr,&I†#,݆QY!}'NbMi,ml(c.YRf(ނ]2m xP( <&e6(R)3Q xLt˴m(PaCRf(—iPÆJD)P1х/Ӷ@ JRc _mCvUUIENDB`$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap ytPC$$If!vh555#v#v#v:V s4Z)+555/ /  / 44 saytPC$$If!vh5555#v#v#v#v:V s4h)+5555/ /  / 44 saytPC$$If!vh5555#v#v#v#v:V s4g)+5555/ /  / 44 saytPC$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytPC$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytPC$$If!vh5555#v#v#v#v:V s4)+5555/ / / /  44 saytPC5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap ytPC$$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 saytPC $$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/  / /  / 4 saytPCB$$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/ /  / / / / /  / 4 saytPC$$If!vh5555#v#v#v#v:V s4)+,5555/ /  / / / / / 4 saytPC$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap yt$$If!vh555#v#v#v:V s4Z)+555/ /  / 44 sayt$$If!vh5555 5#v#v#v#v #v:V s4h)+5555 5/ /  / 44 sayt$$If!vh5555 5#v#v#v#v #v:V s4g)+5555 5/ /  / 44 sayt$$If!vh5555 5#v#v#v#v #v:V s4^)+5555 5/ /  / 44 sayt$$If!vh5555 5#v#v#v#v #v:V s4^)+5555 5/ /  / 44 sayt$$If!vh5555 5#v#v#v#v #v:V s4)+5555 5/ / / /  44 sayt$$If!vh55#v#v:V s4)+,55/ /  4 sayt5$$If!vh5555#v#v#v#v:V s4   )+,5555/ / / / / / /  / 4 sap yt$IfK$L$q!vh555555#v:V l t0,5yt $IfK$L$q!vh555555#v:V l t0,5yt $IfK$L$q!vh555555#v:V l t0,5yt $IfK$L$q!vh555555#v:V l t0,5yt $IfK$L$q!vh555555#v:V l t0,5yt $$If!vh555#v#v#v:V s4u)+,555/  / / /  / 4 sayt $$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/  / /  / 4 saytB$$If!vh555T55 5#v#v#vT#v#v #v:V s4)+,555T55 5/ /  / / / / /  / 4 sayt$$If!vh5555#v#v#v#v:V s4)+,5555/ /  / / / / / 4 sayt$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap yt $$If!vh555#v#v#v:V s4Z)+555/ /  / 44 sayt $$If!vh5555L 5#v#v#v#vL #v:V s4h)+5555L 5/ /  / 44 sayt/$$If!vh5555L 5#v#v#v#vL #v:V s4g)+5555L 5/ /  / 44 sayt/$$If!vh5555L 5#v#v#v#vL #v:V s4^)+5555L 5/ /  / 44 sayt/$$If!vh5555L 5#v#v#v#vL #v:V s4^)+5555L 5/ /  / 44 sayt/$$If!vh5555L 5#v#v#v#vL #v:V s4)+5555L 5/ / / /  44 sayt/$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap yt $$If!vh555#v#v#v:V s4Z)+555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4h)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4g)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4d)+5555/ / / /  44 sayt%$$If!vh5555#v#v#v#v:V s4   )+,5555/ / /  / 44 sap ytz$$If!vh555#v#v#v:V s4Z)+555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4h)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4g)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4^)+5555/ /  / 44 saytz$$If!vh5555#v#v#v#v:V s4)+5555/ / / / 44 saytz^$$If!vh55r#v#vr:V l t*655rytD[$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54$$If!vh55555555#v:V l]54^ 2 0@P`p2( 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p8XV~_HmH nH sH tH @`@ YNormalCJ_HaJmH sH tH Z@Z Nze Heading 1$<@&5CJ KH OJQJ\^JaJ DA`D Default Paragraph FontRi@R  Table Normal4 l4a (k (No List 44 NzeHeader  !4 @4 NzeFooter  !.)@. Nze Page Number^^@"^ n4 Normal (Web)dd[$\$CJOJPJQJ^J_HEaJ(W@1( n4Strong5:bA: n4 HTML CodeCJOJPJQJjSj n4 Table Grid7:V0PK![Content_Types].xmlj0Eжr(΢Iw},-j4 wP-t#bΙ{UTU^hd}㨫)*1P' ^W0)T9<l#$yi};~@(Hu* Dנz/0ǰ $ X3aZ,D0j~3߶b~i>3\`?/[G\!-Rk.sԻ..a濭?PK!֧6 _rels/.relsj0 }Q%v/C/}(h"O = C?hv=Ʌ%[xp{۵_Pѣ<1H0ORBdJE4b$q_6LR7`0̞O,En7Lib/SeеPK!kytheme/theme/themeManager.xml M @}w7c(EbˮCAǠҟ7՛K Y, e.|,H,lxɴIsQ}#Ր ֵ+!,^$j=GW)E+& 8PK!Ptheme/theme/theme1.xmlYOo6w toc'vuر-MniP@I}úama[إ4:lЯGRX^6؊>$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3ڗP 1Pm \\9Mؓ2aD];Yt\[x]}Wr|]g- eW )6-rCSj id DЇAΜIqbJ#x꺃 6k#ASh&ʌt(Q%p%m&]caSl=X\P1Mh9MVdDAaVB[݈fJíP|8 քAV^f Hn- "d>znNJ ة>b&2vKyϼD:,AGm\nziÙ.uχYC6OMf3or$5NHT[XF64T,ќM0E)`#5XY`פ;%1U٥m;R>QD DcpU'&LE/pm%]8firS4d 7y\`JnίI R3U~7+׸#m qBiDi*L69mY&iHE=(K&N!V.KeLDĕ{D vEꦚdeNƟe(MN9ߜR6&3(a/DUz<{ˊYȳV)9Z[4^n5!J?Q3eBoCM m<.vpIYfZY_p[=al-Y}Nc͙ŋ4vfavl'SA8|*u{-ߟ0%M07%<ҍPK! ѐ'theme/theme/_rels/themeManager.xml.relsM 0wooӺ&݈Э5 6?$Q ,.aic21h:qm@RN;d`o7gK(M&$R(.1r'JЊT8V"AȻHu}|$b{P8g/]QAsم(#L[PK-![Content_Types].xmlPK-!֧6 +_rels/.relsPK-!kytheme/theme/themeManager.xmlPK-!Ptheme/theme/theme1.xmlPK-! ѐ' theme/theme/_rels/themeManager.xml.relsPK] J  GGGJ:^8HpF !@#Q$%&]'()D+=,J-v.K/01345S7:d;2={>rDLOP&RR*,.17?EJOV^fltz #&*-ADjH I_z !=R!LT\fp|9w,Xy-9|%[r$ 4 E v '!9!U!!!!"""#2#{####$}$$$$L%s%%%>&j&&&&('I'V''w(((P)b)))))q****D+p++++>,j,},,,8--.. /=/O//// 00[0}000011Y1g1v11J23H4g44444 55l5s5{55555555E6689;;.;>;O;a;s;`<m<y<<<<<4=B=\=j=~==2>@DFdHKNOOPPPP0P4PFPJP\P`PrPvPPPPPPPPQR+-/02345689:;<=>@ABCDFGHIKLMNPQRSTUWXYZ[\]_`abcdeghijkmnopqrsuvwxy{|}~     !"$%'()+,./0123456789:;<=>?@BC;BDJ!8@0(  B S  ?>Fw/ 2 > A B C N O V W f v     + k q    & 0 4 ; B P ! 1 ? O o  CFhk"ADbtux&1=@ABHITU[k %1C  dghiopwxADKNRU,7JLSVWX^_efxCFGIRUVX[]euvx %(/16:JKN #%'7otx}.38=AGNRVYlo\ l !!!!"-"."="""""###"#+#;#<#B####$ $$$$6$%%%%%%& &.&0&H&L&O&_&`&d& **!*$*,*/*;*>*R*U*k*n***********T+W+M,U,V,e,l,{,|,,,,,,..E/H/~////////////////$0'090E0Z0]0^0_0g0h0u0v0000000001 131=11111111111111111333333333333444 4444444%45464<4=4>4B4R4S4Z455&6.6L6`6i6r6 77V7^77777777777(838Z8b8j8s8{88888888899999R:U:h:o:w:z::::: ;;;#;3;:;?;A;G;N;S;U;[;d;m;x;;;;;;;;;;;'<6<T<[<y<<<<<<a=g========>0>=>{>>>>>>>>>> ????R?Z?`???????@@j@}@@@@@@@@@@@@@@AA AA&A,A.AFJFQFZFbFhFoFuFFFFFFFFFGGG(G2G=GJG_GfGpGzGGGGGIIIIOJQJRJTJUJWJXJZJ[JJJGJ !!!+#C#$$++#-.-.$. 2255e6h66667;9E99999d:g:;;CCCDCDGDDD[I]IJJOJQJRJTJUJWJXJZJ[JJJ3333333333333333333333333333333333 JJppxy8;\\ !!!!<#A#$$$$|&&'>'g'n',,3333#3'3(3,3337383<3C3G3H3M3T3Y3Z3_3^4^4e4k4r4w4~44444495@5G5Z5a5h5o5|55555555555FFIINJOJOJRJRJpJ}J~JJJJJ JJppxy8;\\ !!!!<#A#$$$$|&&'>'g'n',,3333#3'3(3,3337383<3C3G3H3M3T3Y3Z3_3^4^4e4k4r4w4~44444495@5G5Z5a5h5o5|55555555555FFIINJOJOJQJRJRJTJUJWJXJZJ[JpJ}J~JJJJ'l 4-|P@`ai)v"K2>ފGy;(8 =`iHF~K=J0|>hJH\cPQ>4Z %\*.30[h"fqsl^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.hh^h`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.^`CJOJQJo(o^`.pp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.>hJP% (0[hP* (>4Z% (ai) (q/ ('l$ (K=J (- (cP* (s (8 =# (( (Gy;<* (iH' (%\0 (K20 (Jҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]CpJҿ]Cp>Z`aD<|N|Т?n 6V,an :ut(J8Hf84^ Fyڥ&8 vl6<;ɀ<~?1T;rP6b:& P*}pc=*C':XƬZ wV .MІ=`(*Yt:4d2愬(jP$ RP^3b x:iL>G"dW6.$zLGhL F>\tzot^*A(ȗZ|M2'rz"Z\ʃL`Den3kԷPxڲDp6x3Lb`iF: v24 yN$bm0\U _ >V#LΔ* ?2 znTBvttx)d.hLu*?<bn.p#hZ(Rfٌ Lhf:!XD |l@N_i|C%cVa%s5Av-fBu | 0K 6D*sjx [txa:w')4A>%hi  L=Q^1}p729|kGLY @#A#v#^%>I&\&$)oa*r,.--{-~ .f<.e/Cx/r+2u2N3a3n48593-;5H;<y<V=5?1@kW@Dl`D3E7F_G H.H6HCIoI^JZKQMIMNMWM2gN]O!LPzVdVXYbYeZ Z\I \j]\^\ v\D^PU^1#_(_Q|_`Q`4ajbH e}neNze3Tfggvg h!iA%ij\Ljaldlw=mLmnBo qZRqt>tDu wwwkwKz`{+}`}I~ FczuNz0LVm >rtcbp%fXblvNvF|G0JAFMC6 6"(Wv%Izgq6QML4RUhZNR-D3U<`qgN/&9z0!DE-wp bl@a l/}h< 5/hI:}D[!:@nY@9qD)rb"#-V/ Lj)osY n<R d>{_+6UNf7{:}f@O^ H8NSdOJQJ@ A#A#A#A#Jh@UnknownG* Times New Roman5Symbol3. * Arial?= * Courier New3Times5Vrinda71 CourierA BCambria Math"qhf  8? % 8? %!`24*J*J3qHX ?h2!xx QUESTION 1scottm Michael ScottP            Oh+'0|  8 D P\dlt QUESTION 1scottm Normal.dotmMichael Scott144Microsoft Office Word@D@ @ >  8?՜.+,0 hp|  %*J  QUESTION 1 Title  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ Root Entry F@>Data F1TablelWordDocument ASummaryInformation(DocumentSummaryInformation8MsoDataStore@:>@:>QDRZTXMKLD==2@:>@:>Item  PropertiesUCompObj y   F'Microsoft Office Word 97-2003 Document MSWordDocWord.Document.89q