paperAnswer1.ftl 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <?mso-application progid="Word.Document"?>
  3. <pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
  4. <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
  5. <pkg:xmlData>
  6. <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  7. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
  8. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
  9. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
  10. </Relationships>
  11. </pkg:xmlData>
  12. </pkg:part>
  13. <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
  14. <pkg:xmlData>
  15. <w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
  16. <w:body>
  17. <w:p w:rsidR="00E02293" w:rsidRDefault="00A31F26" w:rsidP="00E02293">
  18. <w:pPr>
  19. <w:rPr>
  20. <w:color w:val="000000"/>
  21. <w:sz w:val="32"/>
  22. <w:szCs w:val="32"/>
  23. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  24. </w:rPr>
  25. </w:pPr>
  26. <w:bookmarkStart w:id="0" w:name="_GoBack"/>
  27. <w:bookmarkEnd w:id="0"/>
  28. <w:r>
  29. <w:rPr>
  30. <w:sz w:val="24"/>
  31. </w:rPr>
  32. <w:tab/>
  33. </w:r>
  34. <w:r>
  35. <w:rPr>
  36. <w:sz w:val="24"/>
  37. </w:rPr>
  38. <w:tab/>
  39. </w:r>
  40. <w:r>
  41. <w:rPr>
  42. <w:sz w:val="24"/>
  43. </w:rPr>
  44. <w:tab/>
  45. </w:r>
  46. <w:r>
  47. <w:rPr>
  48. <w:sz w:val="24"/>
  49. </w:rPr>
  50. <w:tab/>
  51. </w:r>
  52. <w:r>
  53. <w:rPr>
  54. <w:rFonts w:hint="eastAsia"/>
  55. <w:color w:val="000000"/>
  56. <w:sz w:val="32"/>
  57. <w:szCs w:val="32"/>
  58. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  59. </w:rPr>
  60. <w:t>20</w:t>
  61. </w:r>
  62. <w:r>
  63. <w:rPr>
  64. <w:color w:val="000000"/>
  65. <w:sz w:val="32"/>
  66. <w:szCs w:val="32"/>
  67. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  68. </w:rPr>
  69. <w:t xml:space="preserve"> </w:t>
  70. </w:r>
  71. <w:r>
  72. <w:rPr>
  73. <w:rFonts w:hint="eastAsia"/>
  74. <w:color w:val="000000"/>
  75. <w:sz w:val="32"/>
  76. <w:szCs w:val="32"/>
  77. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  78. </w:rPr>
  79. <w:t> </w:t>
  80. </w:r>
  81. <w:r>
  82. <w:rPr>
  83. <w:rFonts w:hint="eastAsia"/>
  84. <w:color w:val="000000"/>
  85. <w:sz w:val="32"/>
  86. <w:szCs w:val="32"/>
  87. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  88. </w:rPr>
  89. <w:t>年</w:t>
  90. </w:r>
  91. <w:r>
  92. <w:rPr>
  93. <w:rFonts w:hint="eastAsia"/>
  94. <w:color w:val="000000"/>
  95. <w:sz w:val="32"/>
  96. <w:szCs w:val="32"/>
  97. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  98. </w:rPr>
  99. <w:t> </w:t>
  100. </w:r>
  101. <w:r>
  102. <w:rPr>
  103. <w:rFonts w:hint="eastAsia"/>
  104. <w:color w:val="000000"/>
  105. <w:sz w:val="32"/>
  106. <w:szCs w:val="32"/>
  107. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  108. </w:rPr>
  109. <w:t>月湖北省高等教育自学考试</w:t>
  110. </w:r>
  111. </w:p>
  112. <w:p w:rsidR="00A31F26" w:rsidRPr="00A31F26" w:rsidRDefault="00134D69" w:rsidP="00A31F26">
  113. <w:pPr>
  114. <w:widowControl/>
  115. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  116. <w:jc w:val="center"/>
  117. <w:rPr>
  118. <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hAnsi="华文中宋" w:cs="宋体"/>
  119. <w:b/>
  120. <w:bCs/>
  121. <w:color w:val="000000"/>
  122. <w:kern w:val="0"/>
  123. <w:sz w:val="36"/>
  124. <w:szCs w:val="36"/>
  125. </w:rPr>
  126. </w:pPr>
  127. <w:r w:rsidR="00A31F26" w:rsidRPr="00A31F26">
  128. <w:rPr>
  129. <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hAnsi="华文中宋" w:cs="宋体" w:hint="eastAsia"/>
  130. <w:b/>
  131. <w:bCs/>
  132. <w:color w:val="000000"/>
  133. <w:kern w:val="0"/>
  134. <w:sz w:val="36"/>
  135. <w:szCs w:val="36"/>
  136. </w:rPr>
  137. <w:t> 试题答案及评分参考</w:t>
  138. </w:r>
  139. </w:p>
  140. <w:p w:rsidR="00A31F26" w:rsidRDefault="00A31F26" w:rsidP="00A31F26">
  141. <w:pPr>
  142. <w:widowControl/>
  143. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  144. <w:ind w:left="2940" w:firstLine="420"/>
  145. <w:rPr>
  146. <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
  147. <w:color w:val="000000"/>
  148. <w:kern w:val="0"/>
  149. <w:sz w:val="24"/>
  150. </w:rPr>
  151. </w:pPr>
  152. <w:r w:rsidRPr="00A31F26">
  153. <w:rPr>
  154. <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  155. <w:color w:val="000000"/>
  156. <w:kern w:val="0"/>
  157. <w:sz w:val="24"/>
  158. </w:rPr>
  159. <w:t>(课程代码:</w:t>
  160. </w:r>
  161. <w:r w:rsidR="00B8506B" w:rsidRPr="00B8506B">
  162. <w:rPr>
  163. <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
  164. <w:color w:val="000000"/>
  165. <w:kern w:val="0"/>
  166. <w:sz w:val="24"/>
  167. </w:rPr>
  168. <w:t>${code!'无'}</w:t>
  169. </w:r>
  170. <w:r w:rsidRPr="00A31F26">
  171. <w:rPr>
  172. <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  173. <w:color w:val="000000"/>
  174. <w:kern w:val="0"/>
  175. <w:sz w:val="24"/>
  176. </w:rPr>
  177. <w:t>)</w:t>
  178. </w:r>
  179. </w:p>
  180. <w:p w:rsidR="004B1EDB" w:rsidRPr="00A31F26" w:rsidRDefault="004B1EDB" w:rsidP="00A31F26">
  181. <w:pPr>
  182. <w:widowControl/>
  183. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  184. <w:ind w:left="2940" w:firstLine="420"/>
  185. <w:rPr>
  186. <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
  187. <w:color w:val="000000"/>
  188. <w:kern w:val="0"/>
  189. <w:sz w:val="24"/>
  190. </w:rPr>
  191. </w:pPr>
  192. </w:p>
  193. <w:p w:rsidR="00A31F26" w:rsidRPr="00A31F26" w:rsidRDefault="004B1EDB" w:rsidP="00E02293">
  194. <w:pPr>
  195. <w:rPr>
  196. <w:color w:val="000000"/>
  197. <w:sz w:val="32"/>
  198. <w:szCs w:val="32"/>
  199. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  200. </w:rPr>
  201. </w:pPr>
  202. <w:r>
  203. <w:rPr>
  204. <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="黑体" w:hint="eastAsia"/>
  205. <w:color w:val="000000"/>
  206. <w:sz w:val="23"/>
  207. <w:szCs w:val="23"/>
  208. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  209. </w:rPr>
  210. <w:t>本试卷满分100分,考试时间150分钟。</w:t>
  211. </w:r>
  212. </w:p>
  213. <#list columnsType as objType>
  214. <w:p w:rsidR="004B1EDB" w:rsidRPr="004B1EDB" w:rsidRDefault="009E2F49" w:rsidP="004B1EDB">
  215. <w:pPr>
  216. <w:widowControl/>
  217. <w:jc w:val="left"/>
  218. <w:rPr>
  219. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  220. <w:kern w:val="0"/>
  221. <w:sz w:val="24"/>
  222. </w:rPr>
  223. </w:pPr>
  224. <w:proofErr w:type="spellStart"/>
  225. <w:r w:rsidRPr="009E2F49">
  226. <w:rPr>
  227. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  228. <w:b/>
  229. <w:bCs/>
  230. <w:color w:val="0E2D5F"/>
  231. <w:kern w:val="0"/>
  232. <w:sz w:val="18"/>
  233. <w:szCs w:val="18"/>
  234. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  235. </w:rPr>
  236. <w:t>${objType.sortNo!'无'}</w:t>
  237. </w:r>
  238. <w:proofErr w:type="spellEnd"/>
  239. <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
  240. <w:rPr>
  241. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  242. <w:b/>
  243. <w:bCs/>
  244. <w:color w:val="0E2D5F"/>
  245. <w:kern w:val="0"/>
  246. <w:sz w:val="18"/>
  247. <w:szCs w:val="18"/>
  248. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  249. </w:rPr>
  250. <w:t>、</w:t>
  251. </w:r>
  252. <w:proofErr w:type="spellStart"/>
  253. <w:r w:rsidRPr="009E2F49">
  254. <w:rPr>
  255. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  256. <w:b/>
  257. <w:bCs/>
  258. <w:color w:val="0E2D5F"/>
  259. <w:kern w:val="0"/>
  260. <w:sz w:val="18"/>
  261. <w:szCs w:val="18"/>
  262. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  263. </w:rPr>
  264. <w:t>${objType.typeName!'无'}</w:t>
  265. </w:r>
  266. <w:proofErr w:type="spellEnd"/>
  267. <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
  268. <w:rPr>
  269. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  270. <w:b/>
  271. <w:bCs/>
  272. <w:color w:val="0E2D5F"/>
  273. <w:kern w:val="0"/>
  274. <w:sz w:val="18"/>
  275. <w:szCs w:val="18"/>
  276. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  277. </w:rPr>
  278. <w:t>(本大题共</w:t>
  279. </w:r>
  280. <w:proofErr w:type="spellStart"/>
  281. <w:r w:rsidRPr="009E2F49">
  282. <w:rPr>
  283. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  284. <w:b/>
  285. <w:bCs/>
  286. <w:color w:val="0E2D5F"/>
  287. <w:kern w:val="0"/>
  288. <w:sz w:val="18"/>
  289. <w:szCs w:val="18"/>
  290. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  291. </w:rPr>
  292. <w:t>${objType.questionSum!'无'}</w:t>
  293. </w:r>
  294. <w:proofErr w:type="spellEnd"/>
  295. <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
  296. <w:rPr>
  297. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  298. <w:b/>
  299. <w:bCs/>
  300. <w:color w:val="0E2D5F"/>
  301. <w:kern w:val="0"/>
  302. <w:sz w:val="18"/>
  303. <w:szCs w:val="18"/>
  304. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  305. </w:rPr>
  306. <w:t>小题,每题</w:t>
  307. </w:r>
  308. <w:r w:rsidRPr="009E2F49">
  309. <w:rPr>
  310. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  311. <w:b/>
  312. <w:bCs/>
  313. <w:color w:val="0E2D5F"/>
  314. <w:kern w:val="0"/>
  315. <w:sz w:val="18"/>
  316. <w:szCs w:val="18"/>
  317. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  318. </w:rPr>
  319. <w:t>${objType.score!'无'}</w:t>
  320. </w:r>
  321. <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
  322. <w:rPr>
  323. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  324. <w:b/>
  325. <w:bCs/>
  326. <w:color w:val="0E2D5F"/>
  327. <w:kern w:val="0"/>
  328. <w:sz w:val="18"/>
  329. <w:szCs w:val="18"/>
  330. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  331. </w:rPr>
  332. <w:t>分,共</w:t>
  333. </w:r>
  334. <w:proofErr w:type="spellStart"/>
  335. <w:r w:rsidRPr="009E2F49">
  336. <w:rPr>
  337. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
  338. <w:b/>
  339. <w:bCs/>
  340. <w:color w:val="0E2D5F"/>
  341. <w:kern w:val="0"/>
  342. <w:sz w:val="18"/>
  343. <w:szCs w:val="18"/>
  344. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  345. </w:rPr>
  346. <w:t>${objType.questionScores!'无'}</w:t>
  347. </w:r>
  348. <w:proofErr w:type="spellEnd"/>
  349. <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
  350. <w:rPr>
  351. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
  352. <w:b/>
  353. <w:bCs/>
  354. <w:color w:val="0E2D5F"/>
  355. <w:kern w:val="0"/>
  356. <w:sz w:val="18"/>
  357. <w:szCs w:val="18"/>
  358. <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
  359. </w:rPr>
  360. <w:t>分)</w:t>
  361. </w:r>
  362. </w:p>
  363. <#list columns as obj>
  364. <#if objType.typeId == obj.typeId>
  365. <w:p w:rsidR="00E02293" w:rsidRPr="004B1EDB" w:rsidRDefault="004B1EDB" w:rsidP="004B1EDB">
  366. <w:pPr>
  367. <w:ind w:firstLine="360"/>
  368. <w:rPr>
  369. <w:sz w:val="24"/>
  370. </w:rPr>
  371. </w:pPr>
  372. <w:r>
  373. <w:rPr>
  374. <w:sz w:val="24"/>
  375. </w:rPr>
  376. <w:t>${obj.serialNumber!'该题目无序号'}.</w:t>
  377. </w:r>
  378. <w:r w:rsidR="00E02293" w:rsidRPr="004B1EDB">
  379. <w:rPr>
  380. <w:sz w:val="24"/>
  381. </w:rPr>
  382. <w:t>${obj.answer!'该题无答案'}</w:t>
  383. </w:r>
  384. </w:p>
  385. </#if>
  386. </#list>
  387. </#list>
  388. <w:sectPr w:rsidR="00E02293" w:rsidRPr="00BE6AD4">
  389. <w:pgSz w:w="11906" w:h="16838"/>
  390. <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
  391. <w:cols w:space="425"/>
  392. <w:docGrid w:type="lines" w:linePitch="312"/>
  393. </w:sectPr>
  394. </w:body>
  395. </w:document>
  396. </pkg:xmlData>
  397. </pkg:part>
  398. <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
  399. <pkg:xmlData>
  400. <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  401. <Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
  402. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
  403. <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
  404. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
  405. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/>
  406. <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
  407. <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
  408. <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
  409. </Relationships>
  410. </pkg:xmlData>
  411. </pkg:part>
  412. <pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
  413. <pkg:xmlData>
  414. <w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
  415. <w:footnote w:type="separator" w:id="-1">
  416. <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
  417. <w:r>
  418. <w:separator/>
  419. </w:r>
  420. </w:p>
  421. </w:footnote>
  422. <w:footnote w:type="continuationSeparator" w:id="0">
  423. <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
  424. <w:r>
  425. <w:continuationSeparator/>
  426. </w:r>
  427. </w:p>
  428. </w:footnote>
  429. </w:footnotes>
  430. </pkg:xmlData>
  431. </pkg:part>
  432. <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
  433. <pkg:xmlData>
  434. <w:endnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
  435. <w:endnote w:type="separator" w:id="-1">
  436. <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
  437. <w:r>
  438. <w:separator/>
  439. </w:r>
  440. </w:p>
  441. </w:endnote>
  442. <w:endnote w:type="continuationSeparator" w:id="0">
  443. <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
  444. <w:r>
  445. <w:continuationSeparator/>
  446. </w:r>
  447. </w:p>
  448. </w:endnote>
  449. </w:endnotes>
  450. </pkg:xmlData>
  451. </pkg:part>
  452. <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
  453. <pkg:xmlData>
  454. <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office 主题​​">
  455. <a:themeElements>
  456. <a:clrScheme name="Office">
  457. <a:dk1>
  458. <a:sysClr val="windowText" lastClr="000000"/>
  459. </a:dk1>
  460. <a:lt1>
  461. <a:sysClr val="window" lastClr="FFFFFF"/>
  462. </a:lt1>
  463. <a:dk2>
  464. <a:srgbClr val="1F497D"/>
  465. </a:dk2>
  466. <a:lt2>
  467. <a:srgbClr val="EEECE1"/>
  468. </a:lt2>
  469. <a:accent1>
  470. <a:srgbClr val="4F81BD"/>
  471. </a:accent1>
  472. <a:accent2>
  473. <a:srgbClr val="C0504D"/>
  474. </a:accent2>
  475. <a:accent3>
  476. <a:srgbClr val="9BBB59"/>
  477. </a:accent3>
  478. <a:accent4>
  479. <a:srgbClr val="8064A2"/>
  480. </a:accent4>
  481. <a:accent5>
  482. <a:srgbClr val="4BACC6"/>
  483. </a:accent5>
  484. <a:accent6>
  485. <a:srgbClr val="F79646"/>
  486. </a:accent6>
  487. <a:hlink>
  488. <a:srgbClr val="0000FF"/>
  489. </a:hlink>
  490. <a:folHlink>
  491. <a:srgbClr val="800080"/>
  492. </a:folHlink>
  493. </a:clrScheme>
  494. <a:fontScheme name="Office">
  495. <a:majorFont>
  496. <a:latin typeface="Cambria"/>
  497. <a:ea typeface=""/>
  498. <a:cs typeface=""/>
  499. <a:font script="Jpan" typeface="MS ゴシック"/>
  500. <a:font script="Hang" typeface="맑은 고딕"/>
  501. <a:font script="Hans" typeface="宋体"/>
  502. <a:font script="Hant" typeface="新細明體"/>
  503. <a:font script="Arab" typeface="Times New Roman"/>
  504. <a:font script="Hebr" typeface="Times New Roman"/>
  505. <a:font script="Thai" typeface="Angsana New"/>
  506. <a:font script="Ethi" typeface="Nyala"/>
  507. <a:font script="Beng" typeface="Vrinda"/>
  508. <a:font script="Gujr" typeface="Shruti"/>
  509. <a:font script="Khmr" typeface="MoolBoran"/>
  510. <a:font script="Knda" typeface="Tunga"/>
  511. <a:font script="Guru" typeface="Raavi"/>
  512. <a:font script="Cans" typeface="Euphemia"/>
  513. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  514. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  515. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  516. <a:font script="Thaa" typeface="MV Boli"/>
  517. <a:font script="Deva" typeface="Mangal"/>
  518. <a:font script="Telu" typeface="Gautami"/>
  519. <a:font script="Taml" typeface="Latha"/>
  520. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  521. <a:font script="Orya" typeface="Kalinga"/>
  522. <a:font script="Mlym" typeface="Kartika"/>
  523. <a:font script="Laoo" typeface="DokChampa"/>
  524. <a:font script="Sinh" typeface="Iskoola Pota"/>
  525. <a:font script="Mong" typeface="Mongolian Baiti"/>
  526. <a:font script="Viet" typeface="Times New Roman"/>
  527. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  528. <a:font script="Geor" typeface="Sylfaen"/>
  529. </a:majorFont>
  530. <a:minorFont>
  531. <a:latin typeface="Calibri"/>
  532. <a:ea typeface=""/>
  533. <a:cs typeface=""/>
  534. <a:font script="Jpan" typeface="MS 明朝"/>
  535. <a:font script="Hang" typeface="맑은 고딕"/>
  536. <a:font script="Hans" typeface="宋体"/>
  537. <a:font script="Hant" typeface="新細明體"/>
  538. <a:font script="Arab" typeface="Arial"/>
  539. <a:font script="Hebr" typeface="Arial"/>
  540. <a:font script="Thai" typeface="Cordia New"/>
  541. <a:font script="Ethi" typeface="Nyala"/>
  542. <a:font script="Beng" typeface="Vrinda"/>
  543. <a:font script="Gujr" typeface="Shruti"/>
  544. <a:font script="Khmr" typeface="DaunPenh"/>
  545. <a:font script="Knda" typeface="Tunga"/>
  546. <a:font script="Guru" typeface="Raavi"/>
  547. <a:font script="Cans" typeface="Euphemia"/>
  548. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  549. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  550. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  551. <a:font script="Thaa" typeface="MV Boli"/>
  552. <a:font script="Deva" typeface="Mangal"/>
  553. <a:font script="Telu" typeface="Gautami"/>
  554. <a:font script="Taml" typeface="Latha"/>
  555. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  556. <a:font script="Orya" typeface="Kalinga"/>
  557. <a:font script="Mlym" typeface="Kartika"/>
  558. <a:font script="Laoo" typeface="DokChampa"/>
  559. <a:font script="Sinh" typeface="Iskoola Pota"/>
  560. <a:font script="Mong" typeface="Mongolian Baiti"/>
  561. <a:font script="Viet" typeface="Arial"/>
  562. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  563. <a:font script="Geor" typeface="Sylfaen"/>
  564. </a:minorFont>
  565. </a:fontScheme>
  566. <a:fmtScheme name="Office">
  567. <a:fillStyleLst>
  568. <a:solidFill>
  569. <a:schemeClr val="phClr"/>
  570. </a:solidFill>
  571. <a:gradFill rotWithShape="1">
  572. <a:gsLst>
  573. <a:gs pos="0">
  574. <a:schemeClr val="phClr">
  575. <a:tint val="50000"/>
  576. <a:satMod val="300000"/>
  577. </a:schemeClr>
  578. </a:gs>
  579. <a:gs pos="35000">
  580. <a:schemeClr val="phClr">
  581. <a:tint val="37000"/>
  582. <a:satMod val="300000"/>
  583. </a:schemeClr>
  584. </a:gs>
  585. <a:gs pos="100000">
  586. <a:schemeClr val="phClr">
  587. <a:tint val="15000"/>
  588. <a:satMod val="350000"/>
  589. </a:schemeClr>
  590. </a:gs>
  591. </a:gsLst>
  592. <a:lin ang="16200000" scaled="1"/>
  593. </a:gradFill>
  594. <a:gradFill rotWithShape="1">
  595. <a:gsLst>
  596. <a:gs pos="0">
  597. <a:schemeClr val="phClr">
  598. <a:shade val="51000"/>
  599. <a:satMod val="130000"/>
  600. </a:schemeClr>
  601. </a:gs>
  602. <a:gs pos="80000">
  603. <a:schemeClr val="phClr">
  604. <a:shade val="93000"/>
  605. <a:satMod val="130000"/>
  606. </a:schemeClr>
  607. </a:gs>
  608. <a:gs pos="100000">
  609. <a:schemeClr val="phClr">
  610. <a:shade val="94000"/>
  611. <a:satMod val="135000"/>
  612. </a:schemeClr>
  613. </a:gs>
  614. </a:gsLst>
  615. <a:lin ang="16200000" scaled="0"/>
  616. </a:gradFill>
  617. </a:fillStyleLst>
  618. <a:lnStyleLst>
  619. <a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">
  620. <a:solidFill>
  621. <a:schemeClr val="phClr">
  622. <a:shade val="95000"/>
  623. <a:satMod val="105000"/>
  624. </a:schemeClr>
  625. </a:solidFill>
  626. <a:prstDash val="solid"/>
  627. </a:ln>
  628. <a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">
  629. <a:solidFill>
  630. <a:schemeClr val="phClr"/>
  631. </a:solidFill>
  632. <a:prstDash val="solid"/>
  633. </a:ln>
  634. <a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">
  635. <a:solidFill>
  636. <a:schemeClr val="phClr"/>
  637. </a:solidFill>
  638. <a:prstDash val="solid"/>
  639. </a:ln>
  640. </a:lnStyleLst>
  641. <a:effectStyleLst>
  642. <a:effectStyle>
  643. <a:effectLst>
  644. <a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">
  645. <a:srgbClr val="000000">
  646. <a:alpha val="38000"/>
  647. </a:srgbClr>
  648. </a:outerShdw>
  649. </a:effectLst>
  650. </a:effectStyle>
  651. <a:effectStyle>
  652. <a:effectLst>
  653. <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
  654. <a:srgbClr val="000000">
  655. <a:alpha val="35000"/>
  656. </a:srgbClr>
  657. </a:outerShdw>
  658. </a:effectLst>
  659. </a:effectStyle>
  660. <a:effectStyle>
  661. <a:effectLst>
  662. <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
  663. <a:srgbClr val="000000">
  664. <a:alpha val="35000"/>
  665. </a:srgbClr>
  666. </a:outerShdw>
  667. </a:effectLst>
  668. <a:scene3d>
  669. <a:camera prst="orthographicFront">
  670. <a:rot lat="0" lon="0" rev="0"/>
  671. </a:camera>
  672. <a:lightRig rig="threePt" dir="t">
  673. <a:rot lat="0" lon="0" rev="1200000"/>
  674. </a:lightRig>
  675. </a:scene3d>
  676. <a:sp3d>
  677. <a:bevelT w="63500" h="25400"/>
  678. </a:sp3d>
  679. </a:effectStyle>
  680. </a:effectStyleLst>
  681. <a:bgFillStyleLst>
  682. <a:solidFill>
  683. <a:schemeClr val="phClr"/>
  684. </a:solidFill>
  685. <a:gradFill rotWithShape="1">
  686. <a:gsLst>
  687. <a:gs pos="0">
  688. <a:schemeClr val="phClr">
  689. <a:tint val="40000"/>
  690. <a:satMod val="350000"/>
  691. </a:schemeClr>
  692. </a:gs>
  693. <a:gs pos="40000">
  694. <a:schemeClr val="phClr">
  695. <a:tint val="45000"/>
  696. <a:shade val="99000"/>
  697. <a:satMod val="350000"/>
  698. </a:schemeClr>
  699. </a:gs>
  700. <a:gs pos="100000">
  701. <a:schemeClr val="phClr">
  702. <a:shade val="20000"/>
  703. <a:satMod val="255000"/>
  704. </a:schemeClr>
  705. </a:gs>
  706. </a:gsLst>
  707. <a:path path="circle">
  708. <a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>
  709. </a:path>
  710. </a:gradFill>
  711. <a:gradFill rotWithShape="1">
  712. <a:gsLst>
  713. <a:gs pos="0">
  714. <a:schemeClr val="phClr">
  715. <a:tint val="80000"/>
  716. <a:satMod val="300000"/>
  717. </a:schemeClr>
  718. </a:gs>
  719. <a:gs pos="100000">
  720. <a:schemeClr val="phClr">
  721. <a:shade val="30000"/>
  722. <a:satMod val="200000"/>
  723. </a:schemeClr>
  724. </a:gs>
  725. </a:gsLst>
  726. <a:path path="circle">
  727. <a:fillToRect l="50000" t="50000" r="50000" b="50000"/>
  728. </a:path>
  729. </a:gradFill>
  730. </a:bgFillStyleLst>
  731. </a:fmtScheme>
  732. </a:themeElements>
  733. <a:objectDefaults/>
  734. <a:extraClrSchemeLst/>
  735. </a:theme>
  736. </pkg:xmlData>
  737. </pkg:part>
  738. <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
  739. <pkg:xmlData>
  740. <w:settings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid">
  741. <w:zoom w:percent="170"/>
  742. <w:bordersDoNotSurroundHeader/>
  743. <w:bordersDoNotSurroundFooter/>
  744. <w:proofState w:spelling="clean" w:grammar="clean"/>
  745. <w:defaultTabStop w:val="420"/>
  746. <w:drawingGridVerticalSpacing w:val="156"/>
  747. <w:displayHorizontalDrawingGridEvery w:val="0"/>
  748. <w:displayVerticalDrawingGridEvery w:val="2"/>
  749. <w:characterSpacingControl w:val="compressPunctuation"/>
  750. <w:hdrShapeDefaults>
  751. <o:shapedefaults v:ext="edit" spidmax="2049"/>
  752. </w:hdrShapeDefaults>
  753. <w:footnotePr>
  754. <w:footnote w:id="-1"/>
  755. <w:footnote w:id="0"/>
  756. </w:footnotePr>
  757. <w:endnotePr>
  758. <w:endnote w:id="-1"/>
  759. <w:endnote w:id="0"/>
  760. </w:endnotePr>
  761. <w:compat>
  762. <w:spaceForUL/>
  763. <w:balanceSingleByteDoubleByteWidth/>
  764. <w:doNotLeaveBackslashAlone/>
  765. <w:ulTrailSpace/>
  766. <w:doNotExpandShiftReturn/>
  767. <w:adjustLineHeightInTable/>
  768. <w:useFELayout/>
  769. <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
  770. <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  771. <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  772. <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  773. <w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  774. </w:compat>
  775. <w:rsids>
  776. <w:rsidRoot w:val="000E491E"/>
  777. <w:rsid w:val="0000087C"/>
  778. <w:rsid w:val="00003673"/>
  779. <w:rsid w:val="00011215"/>
  780. <w:rsid w:val="00016532"/>
  781. <w:rsid w:val="000234D8"/>
  782. <w:rsid w:val="0002792F"/>
  783. <w:rsid w:val="000340BD"/>
  784. <w:rsid w:val="000349F0"/>
  785. <w:rsid w:val="000405DF"/>
  786. <w:rsid w:val="00043DBB"/>
  787. <w:rsid w:val="00046468"/>
  788. <w:rsid w:val="0005789C"/>
  789. <w:rsid w:val="00071BA1"/>
  790. <w:rsid w:val="00075EC9"/>
  791. <w:rsid w:val="00077CAC"/>
  792. <w:rsid w:val="0008433C"/>
  793. <w:rsid w:val="000926FB"/>
  794. <w:rsid w:val="00094457"/>
  795. <w:rsid w:val="000950AC"/>
  796. <w:rsid w:val="000A5B04"/>
  797. <w:rsid w:val="000C3C54"/>
  798. <w:rsid w:val="000E389B"/>
  799. <w:rsid w:val="000E491E"/>
  800. <w:rsid w:val="000F0681"/>
  801. <w:rsid w:val="000F63C3"/>
  802. <w:rsid w:val="00134D69"/>
  803. <w:rsid w:val="0014597C"/>
  804. <w:rsid w:val="00145C58"/>
  805. <w:rsid w:val="00162C50"/>
  806. <w:rsid w:val="0018097F"/>
  807. <w:rsid w:val="00193CFF"/>
  808. <w:rsid w:val="001B5AEF"/>
  809. <w:rsid w:val="001E10AB"/>
  810. <w:rsid w:val="001E6042"/>
  811. <w:rsid w:val="001F4D6E"/>
  812. <w:rsid w:val="001F5CCE"/>
  813. <w:rsid w:val="0020436B"/>
  814. <w:rsid w:val="00210054"/>
  815. <w:rsid w:val="0021486B"/>
  816. <w:rsid w:val="002418B0"/>
  817. <w:rsid w:val="0024745E"/>
  818. <w:rsid w:val="00263FAE"/>
  819. <w:rsid w:val="00267A3F"/>
  820. <w:rsid w:val="0027192C"/>
  821. <w:rsid w:val="00273D58"/>
  822. <w:rsid w:val="002743BB"/>
  823. <w:rsid w:val="00274886"/>
  824. <w:rsid w:val="0028158A"/>
  825. <w:rsid w:val="0028186E"/>
  826. <w:rsid w:val="00285444"/>
  827. <w:rsid w:val="00293306"/>
  828. <w:rsid w:val="00293D48"/>
  829. <w:rsid w:val="002A6FBA"/>
  830. <w:rsid w:val="002B233A"/>
  831. <w:rsid w:val="002B6CA6"/>
  832. <w:rsid w:val="002D471D"/>
  833. <w:rsid w:val="002F46A7"/>
  834. <w:rsid w:val="00306920"/>
  835. <w:rsid w:val="00317CAB"/>
  836. <w:rsid w:val="00324E91"/>
  837. <w:rsid w:val="003334BC"/>
  838. <w:rsid w:val="00334B9C"/>
  839. <w:rsid w:val="003517D5"/>
  840. <w:rsid w:val="003532D0"/>
  841. <w:rsid w:val="00372C15"/>
  842. <w:rsid w:val="00380738"/>
  843. <w:rsid w:val="00380E34"/>
  844. <w:rsid w:val="003A26AC"/>
  845. <w:rsid w:val="003D51DF"/>
  846. <w:rsid w:val="003D5F45"/>
  847. <w:rsid w:val="003F282B"/>
  848. <w:rsid w:val="003F510A"/>
  849. <w:rsid w:val="00426201"/>
  850. <w:rsid w:val="004348DC"/>
  851. <w:rsid w:val="00434EE9"/>
  852. <w:rsid w:val="0045085B"/>
  853. <w:rsid w:val="00457AD5"/>
  854. <w:rsid w:val="0048206F"/>
  855. <w:rsid w:val="004A02C3"/>
  856. <w:rsid w:val="004A6765"/>
  857. <w:rsid w:val="004B1EDB"/>
  858. <w:rsid w:val="004B5EFF"/>
  859. <w:rsid w:val="004C1E25"/>
  860. <w:rsid w:val="004C40C8"/>
  861. <w:rsid w:val="004E3E3D"/>
  862. <w:rsid w:val="004F15E2"/>
  863. <w:rsid w:val="004F3625"/>
  864. <w:rsid w:val="004F3ED2"/>
  865. <w:rsid w:val="00520506"/>
  866. <w:rsid w:val="005258C0"/>
  867. <w:rsid w:val="0053189A"/>
  868. <w:rsid w:val="0053611C"/>
  869. <w:rsid w:val="00566050"/>
  870. <w:rsid w:val="00582558"/>
  871. <w:rsid w:val="005C5E8F"/>
  872. <w:rsid w:val="005C74C7"/>
  873. <w:rsid w:val="005D0C75"/>
  874. <w:rsid w:val="006067BF"/>
  875. <w:rsid w:val="00617E9F"/>
  876. <w:rsid w:val="006275B8"/>
  877. <w:rsid w:val="006307A1"/>
  878. <w:rsid w:val="00642830"/>
  879. <w:rsid w:val="00645D62"/>
  880. <w:rsid w:val="00652820"/>
  881. <w:rsid w:val="00653E87"/>
  882. <w:rsid w:val="00654206"/>
  883. <w:rsid w:val="006679C0"/>
  884. <w:rsid w:val="00675D63"/>
  885. <w:rsid w:val="00690449"/>
  886. <w:rsid w:val="006B3548"/>
  887. <w:rsid w:val="006B7062"/>
  888. <w:rsid w:val="006C39D2"/>
  889. <w:rsid w:val="006E71F8"/>
  890. <w:rsid w:val="006F6CEA"/>
  891. <w:rsid w:val="007144D3"/>
  892. <w:rsid w:val="00730BE6"/>
  893. <w:rsid w:val="00736D0E"/>
  894. <w:rsid w:val="00737E4E"/>
  895. <w:rsid w:val="007761BD"/>
  896. <w:rsid w:val="00776B7C"/>
  897. <w:rsid w:val="00783503"/>
  898. <w:rsid w:val="00783BED"/>
  899. <w:rsid w:val="007945A3"/>
  900. <w:rsid w:val="007A513C"/>
  901. <w:rsid w:val="007F26F3"/>
  902. <w:rsid w:val="008002D8"/>
  903. <w:rsid w:val="00807EC4"/>
  904. <w:rsid w:val="008147C5"/>
  905. <w:rsid w:val="0081514D"/>
  906. <w:rsid w:val="00815589"/>
  907. <w:rsid w:val="00830291"/>
  908. <w:rsid w:val="00830556"/>
  909. <w:rsid w:val="00836510"/>
  910. <w:rsid w:val="00836DED"/>
  911. <w:rsid w:val="00845C45"/>
  912. <w:rsid w:val="00846D00"/>
  913. <w:rsid w:val="00852CEA"/>
  914. <w:rsid w:val="008548C4"/>
  915. <w:rsid w:val="008548D1"/>
  916. <w:rsid w:val="00854BF8"/>
  917. <w:rsid w:val="008616EC"/>
  918. <w:rsid w:val="0086597F"/>
  919. <w:rsid w:val="00867410"/>
  920. <w:rsid w:val="00877193"/>
  921. <w:rsid w:val="00883276"/>
  922. <w:rsid w:val="0089466B"/>
  923. <w:rsid w:val="008971E2"/>
  924. <w:rsid w:val="008A428F"/>
  925. <w:rsid w:val="008C4B65"/>
  926. <w:rsid w:val="008C50E3"/>
  927. <w:rsid w:val="008D5CB3"/>
  928. <w:rsid w:val="009131A5"/>
  929. <w:rsid w:val="00926892"/>
  930. <w:rsid w:val="009276F1"/>
  931. <w:rsid w:val="00935474"/>
  932. <w:rsid w:val="0094631A"/>
  933. <w:rsid w:val="00947ECE"/>
  934. <w:rsid w:val="00971FF4"/>
  935. <w:rsid w:val="00974E82"/>
  936. <w:rsid w:val="00991189"/>
  937. <w:rsid w:val="009A2C04"/>
  938. <w:rsid w:val="009C1327"/>
  939. <w:rsid w:val="009C7570"/>
  940. <w:rsid w:val="009D498E"/>
  941. <w:rsid w:val="009E2F49"/>
  942. <w:rsid w:val="009E33B2"/>
  943. <w:rsid w:val="00A01E01"/>
  944. <w:rsid w:val="00A041F5"/>
  945. <w:rsid w:val="00A062AD"/>
  946. <w:rsid w:val="00A117A1"/>
  947. <w:rsid w:val="00A17D3B"/>
  948. <w:rsid w:val="00A26198"/>
  949. <w:rsid w:val="00A26F23"/>
  950. <w:rsid w:val="00A31F26"/>
  951. <w:rsid w:val="00A32412"/>
  952. <w:rsid w:val="00A403C5"/>
  953. <w:rsid w:val="00A50019"/>
  954. <w:rsid w:val="00A87FC8"/>
  955. <w:rsid w:val="00A917A0"/>
  956. <w:rsid w:val="00A9606B"/>
  957. <w:rsid w:val="00AA0763"/>
  958. <w:rsid w:val="00AA475F"/>
  959. <w:rsid w:val="00AB1115"/>
  960. <w:rsid w:val="00AB32A3"/>
  961. <w:rsid w:val="00AB5C2D"/>
  962. <w:rsid w:val="00AC39D5"/>
  963. <w:rsid w:val="00AD0E5A"/>
  964. <w:rsid w:val="00AE01DC"/>
  965. <w:rsid w:val="00AE57C0"/>
  966. <w:rsid w:val="00B0382A"/>
  967. <w:rsid w:val="00B33000"/>
  968. <w:rsid w:val="00B33B71"/>
  969. <w:rsid w:val="00B35B5A"/>
  970. <w:rsid w:val="00B55340"/>
  971. <w:rsid w:val="00B60685"/>
  972. <w:rsid w:val="00B65FAF"/>
  973. <w:rsid w:val="00B66264"/>
  974. <w:rsid w:val="00B707E0"/>
  975. <w:rsid w:val="00B716BE"/>
  976. <w:rsid w:val="00B77B89"/>
  977. <w:rsid w:val="00B85018"/>
  978. <w:rsid w:val="00B8506B"/>
  979. <w:rsid w:val="00B869D8"/>
  980. <w:rsid w:val="00B905F8"/>
  981. <w:rsid w:val="00B914BF"/>
  982. <w:rsid w:val="00B930F2"/>
  983. <w:rsid w:val="00BA468B"/>
  984. <w:rsid w:val="00BB2686"/>
  985. <w:rsid w:val="00BB5A68"/>
  986. <w:rsid w:val="00BB68AC"/>
  987. <w:rsid w:val="00BC400F"/>
  988. <w:rsid w:val="00BE1111"/>
  989. <w:rsid w:val="00BE5B76"/>
  990. <w:rsid w:val="00BE651B"/>
  991. <w:rsid w:val="00BE6AD4"/>
  992. <w:rsid w:val="00BE7788"/>
  993. <w:rsid w:val="00BF11C4"/>
  994. <w:rsid w:val="00C03C12"/>
  995. <w:rsid w:val="00C062B9"/>
  996. <w:rsid w:val="00C10278"/>
  997. <w:rsid w:val="00C17426"/>
  998. <w:rsid w:val="00C259DB"/>
  999. <w:rsid w:val="00C46DE6"/>
  1000. <w:rsid w:val="00C64E4B"/>
  1001. <w:rsid w:val="00C70EDF"/>
  1002. <w:rsid w:val="00C748B5"/>
  1003. <w:rsid w:val="00C957C0"/>
  1004. <w:rsid w:val="00CA3146"/>
  1005. <w:rsid w:val="00CA4E2E"/>
  1006. <w:rsid w:val="00CA6A7C"/>
  1007. <w:rsid w:val="00CB3E96"/>
  1008. <w:rsid w:val="00CB6291"/>
  1009. <w:rsid w:val="00CB6A14"/>
  1010. <w:rsid w:val="00CB7CC0"/>
  1011. <w:rsid w:val="00CC25F2"/>
  1012. <w:rsid w:val="00CC40B0"/>
  1013. <w:rsid w:val="00CC5D4A"/>
  1014. <w:rsid w:val="00CC5D90"/>
  1015. <w:rsid w:val="00CC5FB1"/>
  1016. <w:rsid w:val="00CE09D4"/>
  1017. <w:rsid w:val="00CF1A10"/>
  1018. <w:rsid w:val="00D11CFF"/>
  1019. <w:rsid w:val="00D150BD"/>
  1020. <w:rsid w:val="00D36A0B"/>
  1021. <w:rsid w:val="00D43EEF"/>
  1022. <w:rsid w:val="00D4785B"/>
  1023. <w:rsid w:val="00D56411"/>
  1024. <w:rsid w:val="00D61282"/>
  1025. <w:rsid w:val="00D621A3"/>
  1026. <w:rsid w:val="00D7687B"/>
  1027. <w:rsid w:val="00D76C7C"/>
  1028. <w:rsid w:val="00D77FE9"/>
  1029. <w:rsid w:val="00D95D2F"/>
  1030. <w:rsid w:val="00DC2F7E"/>
  1031. <w:rsid w:val="00DC6253"/>
  1032. <w:rsid w:val="00E02293"/>
  1033. <w:rsid w:val="00E17B6F"/>
  1034. <w:rsid w:val="00E225A4"/>
  1035. <w:rsid w:val="00E46ABA"/>
  1036. <w:rsid w:val="00E76A99"/>
  1037. <w:rsid w:val="00EA5B71"/>
  1038. <w:rsid w:val="00EB1216"/>
  1039. <w:rsid w:val="00EC51B6"/>
  1040. <w:rsid w:val="00EE7C69"/>
  1041. <w:rsid w:val="00EF1BFD"/>
  1042. <w:rsid w:val="00F106A2"/>
  1043. <w:rsid w:val="00F23D4E"/>
  1044. <w:rsid w:val="00F30A00"/>
  1045. <w:rsid w:val="00F37AEE"/>
  1046. <w:rsid w:val="00F45EBB"/>
  1047. <w:rsid w:val="00F52CAC"/>
  1048. <w:rsid w:val="00F82241"/>
  1049. <w:rsid w:val="00FB22AD"/>
  1050. <w:rsid w:val="00FD599D"/>
  1051. <w:rsid w:val="00FE3E65"/>
  1052. </w:rsids>
  1053. <m:mathPr>
  1054. <m:mathFont m:val="Cambria Math"/>
  1055. <m:brkBin m:val="before"/>
  1056. <m:brkBinSub m:val="--"/>
  1057. <m:smallFrac m:val="0"/>
  1058. <m:dispDef/>
  1059. <m:lMargin m:val="0"/>
  1060. <m:rMargin m:val="0"/>
  1061. <m:defJc m:val="centerGroup"/>
  1062. <m:wrapIndent m:val="1440"/>
  1063. <m:intLim m:val="subSup"/>
  1064. <m:naryLim m:val="undOvr"/>
  1065. </m:mathPr>
  1066. <w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/>
  1067. <w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
  1068. <w:shapeDefaults>
  1069. <o:shapedefaults v:ext="edit" spidmax="2049"/>
  1070. <o:shapelayout v:ext="edit">
  1071. <o:idmap v:ext="edit" data="1"/>
  1072. </o:shapelayout>
  1073. </w:shapeDefaults>
  1074. <w:decimalSymbol w:val="."/>
  1075. <w:listSeparator w:val=","/>
  1076. <w15:docId w15:val="{5F07DDE3-6416-41BA-A37E-EECC986D68F5}"/>
  1077. </w:settings>
  1078. </pkg:xmlData>
  1079. </pkg:part>
  1080. <pkg:part pkg:name="/word/numbering.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml">
  1081. <pkg:xmlData>
  1082. <w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
  1083. <w:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0">
  1084. <w:nsid w:val="084A204F"/>
  1085. <w:multiLevelType w:val="hybridMultilevel"/>
  1086. <w:tmpl w:val="6B5AE21E"/>
  1087. <w:lvl w:ilvl="0" w:tplc="0409000F">
  1088. <w:start w:val="1"/>
  1089. <w:numFmt w:val="decimal"/>
  1090. <w:lvlText w:val="%1."/>
  1091. <w:lvlJc w:val="left"/>
  1092. <w:pPr>
  1093. <w:ind w:left="420" w:hanging="420"/>
  1094. </w:pPr>
  1095. </w:lvl>
  1096. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1097. <w:start w:val="1"/>
  1098. <w:numFmt w:val="lowerLetter"/>
  1099. <w:lvlText w:val="%2)"/>
  1100. <w:lvlJc w:val="left"/>
  1101. <w:pPr>
  1102. <w:ind w:left="840" w:hanging="420"/>
  1103. </w:pPr>
  1104. </w:lvl>
  1105. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1106. <w:start w:val="1"/>
  1107. <w:numFmt w:val="lowerRoman"/>
  1108. <w:lvlText w:val="%3."/>
  1109. <w:lvlJc w:val="right"/>
  1110. <w:pPr>
  1111. <w:ind w:left="1260" w:hanging="420"/>
  1112. </w:pPr>
  1113. </w:lvl>
  1114. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1115. <w:start w:val="1"/>
  1116. <w:numFmt w:val="decimal"/>
  1117. <w:lvlText w:val="%4."/>
  1118. <w:lvlJc w:val="left"/>
  1119. <w:pPr>
  1120. <w:ind w:left="1680" w:hanging="420"/>
  1121. </w:pPr>
  1122. </w:lvl>
  1123. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1124. <w:start w:val="1"/>
  1125. <w:numFmt w:val="lowerLetter"/>
  1126. <w:lvlText w:val="%5)"/>
  1127. <w:lvlJc w:val="left"/>
  1128. <w:pPr>
  1129. <w:ind w:left="2100" w:hanging="420"/>
  1130. </w:pPr>
  1131. </w:lvl>
  1132. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1133. <w:start w:val="1"/>
  1134. <w:numFmt w:val="lowerRoman"/>
  1135. <w:lvlText w:val="%6."/>
  1136. <w:lvlJc w:val="right"/>
  1137. <w:pPr>
  1138. <w:ind w:left="2520" w:hanging="420"/>
  1139. </w:pPr>
  1140. </w:lvl>
  1141. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1142. <w:start w:val="1"/>
  1143. <w:numFmt w:val="decimal"/>
  1144. <w:lvlText w:val="%7."/>
  1145. <w:lvlJc w:val="left"/>
  1146. <w:pPr>
  1147. <w:ind w:left="2940" w:hanging="420"/>
  1148. </w:pPr>
  1149. </w:lvl>
  1150. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1151. <w:start w:val="1"/>
  1152. <w:numFmt w:val="lowerLetter"/>
  1153. <w:lvlText w:val="%8)"/>
  1154. <w:lvlJc w:val="left"/>
  1155. <w:pPr>
  1156. <w:ind w:left="3360" w:hanging="420"/>
  1157. </w:pPr>
  1158. </w:lvl>
  1159. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1160. <w:start w:val="1"/>
  1161. <w:numFmt w:val="lowerRoman"/>
  1162. <w:lvlText w:val="%9."/>
  1163. <w:lvlJc w:val="right"/>
  1164. <w:pPr>
  1165. <w:ind w:left="3780" w:hanging="420"/>
  1166. </w:pPr>
  1167. </w:lvl>
  1168. </w:abstractNum>
  1169. <w:abstractNum w:abstractNumId="1" w15:restartNumberingAfterBreak="0">
  1170. <w:nsid w:val="11BA4B96"/>
  1171. <w:multiLevelType w:val="hybridMultilevel"/>
  1172. <w:tmpl w:val="FFA64D36"/>
  1173. <w:lvl w:ilvl="0" w:tplc="908CB04C">
  1174. <w:start w:val="1"/>
  1175. <w:numFmt w:val="decimal"/>
  1176. <w:lvlText w:val="%1."/>
  1177. <w:lvlJc w:val="left"/>
  1178. <w:pPr>
  1179. <w:ind w:left="360" w:hanging="360"/>
  1180. </w:pPr>
  1181. <w:rPr>
  1182. <w:rFonts w:hint="default"/>
  1183. </w:rPr>
  1184. </w:lvl>
  1185. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1186. <w:start w:val="1"/>
  1187. <w:numFmt w:val="lowerLetter"/>
  1188. <w:lvlText w:val="%2)"/>
  1189. <w:lvlJc w:val="left"/>
  1190. <w:pPr>
  1191. <w:ind w:left="840" w:hanging="420"/>
  1192. </w:pPr>
  1193. </w:lvl>
  1194. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1195. <w:start w:val="1"/>
  1196. <w:numFmt w:val="lowerRoman"/>
  1197. <w:lvlText w:val="%3."/>
  1198. <w:lvlJc w:val="right"/>
  1199. <w:pPr>
  1200. <w:ind w:left="1260" w:hanging="420"/>
  1201. </w:pPr>
  1202. </w:lvl>
  1203. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1204. <w:start w:val="1"/>
  1205. <w:numFmt w:val="decimal"/>
  1206. <w:lvlText w:val="%4."/>
  1207. <w:lvlJc w:val="left"/>
  1208. <w:pPr>
  1209. <w:ind w:left="1680" w:hanging="420"/>
  1210. </w:pPr>
  1211. </w:lvl>
  1212. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1213. <w:start w:val="1"/>
  1214. <w:numFmt w:val="lowerLetter"/>
  1215. <w:lvlText w:val="%5)"/>
  1216. <w:lvlJc w:val="left"/>
  1217. <w:pPr>
  1218. <w:ind w:left="2100" w:hanging="420"/>
  1219. </w:pPr>
  1220. </w:lvl>
  1221. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1222. <w:start w:val="1"/>
  1223. <w:numFmt w:val="lowerRoman"/>
  1224. <w:lvlText w:val="%6."/>
  1225. <w:lvlJc w:val="right"/>
  1226. <w:pPr>
  1227. <w:ind w:left="2520" w:hanging="420"/>
  1228. </w:pPr>
  1229. </w:lvl>
  1230. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1231. <w:start w:val="1"/>
  1232. <w:numFmt w:val="decimal"/>
  1233. <w:lvlText w:val="%7."/>
  1234. <w:lvlJc w:val="left"/>
  1235. <w:pPr>
  1236. <w:ind w:left="2940" w:hanging="420"/>
  1237. </w:pPr>
  1238. </w:lvl>
  1239. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1240. <w:start w:val="1"/>
  1241. <w:numFmt w:val="lowerLetter"/>
  1242. <w:lvlText w:val="%8)"/>
  1243. <w:lvlJc w:val="left"/>
  1244. <w:pPr>
  1245. <w:ind w:left="3360" w:hanging="420"/>
  1246. </w:pPr>
  1247. </w:lvl>
  1248. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1249. <w:start w:val="1"/>
  1250. <w:numFmt w:val="lowerRoman"/>
  1251. <w:lvlText w:val="%9."/>
  1252. <w:lvlJc w:val="right"/>
  1253. <w:pPr>
  1254. <w:ind w:left="3780" w:hanging="420"/>
  1255. </w:pPr>
  1256. </w:lvl>
  1257. </w:abstractNum>
  1258. <w:abstractNum w:abstractNumId="2" w15:restartNumberingAfterBreak="0">
  1259. <w:nsid w:val="18675907"/>
  1260. <w:multiLevelType w:val="hybridMultilevel"/>
  1261. <w:tmpl w:val="013E224C"/>
  1262. <w:lvl w:ilvl="0" w:tplc="908CB04C">
  1263. <w:start w:val="1"/>
  1264. <w:numFmt w:val="decimal"/>
  1265. <w:lvlText w:val="%1."/>
  1266. <w:lvlJc w:val="left"/>
  1267. <w:pPr>
  1268. <w:ind w:left="360" w:hanging="360"/>
  1269. </w:pPr>
  1270. <w:rPr>
  1271. <w:rFonts w:hint="default"/>
  1272. </w:rPr>
  1273. </w:lvl>
  1274. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1275. <w:start w:val="1"/>
  1276. <w:numFmt w:val="lowerLetter"/>
  1277. <w:lvlText w:val="%2)"/>
  1278. <w:lvlJc w:val="left"/>
  1279. <w:pPr>
  1280. <w:ind w:left="840" w:hanging="420"/>
  1281. </w:pPr>
  1282. </w:lvl>
  1283. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1284. <w:start w:val="1"/>
  1285. <w:numFmt w:val="lowerRoman"/>
  1286. <w:lvlText w:val="%3."/>
  1287. <w:lvlJc w:val="right"/>
  1288. <w:pPr>
  1289. <w:ind w:left="1260" w:hanging="420"/>
  1290. </w:pPr>
  1291. </w:lvl>
  1292. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1293. <w:start w:val="1"/>
  1294. <w:numFmt w:val="decimal"/>
  1295. <w:lvlText w:val="%4."/>
  1296. <w:lvlJc w:val="left"/>
  1297. <w:pPr>
  1298. <w:ind w:left="1680" w:hanging="420"/>
  1299. </w:pPr>
  1300. </w:lvl>
  1301. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1302. <w:start w:val="1"/>
  1303. <w:numFmt w:val="lowerLetter"/>
  1304. <w:lvlText w:val="%5)"/>
  1305. <w:lvlJc w:val="left"/>
  1306. <w:pPr>
  1307. <w:ind w:left="2100" w:hanging="420"/>
  1308. </w:pPr>
  1309. </w:lvl>
  1310. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1311. <w:start w:val="1"/>
  1312. <w:numFmt w:val="lowerRoman"/>
  1313. <w:lvlText w:val="%6."/>
  1314. <w:lvlJc w:val="right"/>
  1315. <w:pPr>
  1316. <w:ind w:left="2520" w:hanging="420"/>
  1317. </w:pPr>
  1318. </w:lvl>
  1319. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1320. <w:start w:val="1"/>
  1321. <w:numFmt w:val="decimal"/>
  1322. <w:lvlText w:val="%7."/>
  1323. <w:lvlJc w:val="left"/>
  1324. <w:pPr>
  1325. <w:ind w:left="2940" w:hanging="420"/>
  1326. </w:pPr>
  1327. </w:lvl>
  1328. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1329. <w:start w:val="1"/>
  1330. <w:numFmt w:val="lowerLetter"/>
  1331. <w:lvlText w:val="%8)"/>
  1332. <w:lvlJc w:val="left"/>
  1333. <w:pPr>
  1334. <w:ind w:left="3360" w:hanging="420"/>
  1335. </w:pPr>
  1336. </w:lvl>
  1337. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1338. <w:start w:val="1"/>
  1339. <w:numFmt w:val="lowerRoman"/>
  1340. <w:lvlText w:val="%9."/>
  1341. <w:lvlJc w:val="right"/>
  1342. <w:pPr>
  1343. <w:ind w:left="3780" w:hanging="420"/>
  1344. </w:pPr>
  1345. </w:lvl>
  1346. </w:abstractNum>
  1347. <w:abstractNum w:abstractNumId="3" w15:restartNumberingAfterBreak="0">
  1348. <w:nsid w:val="27994213"/>
  1349. <w:multiLevelType w:val="hybridMultilevel"/>
  1350. <w:tmpl w:val="BC7EBA98"/>
  1351. <w:lvl w:ilvl="0" w:tplc="3746E69E">
  1352. <w:start w:val="1"/>
  1353. <w:numFmt w:val="decimal"/>
  1354. <w:lvlText w:val="(%1)"/>
  1355. <w:lvlJc w:val="left"/>
  1356. <w:pPr>
  1357. <w:ind w:left="360" w:hanging="360"/>
  1358. </w:pPr>
  1359. <w:rPr>
  1360. <w:rFonts w:hint="default"/>
  1361. </w:rPr>
  1362. </w:lvl>
  1363. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1364. <w:start w:val="1"/>
  1365. <w:numFmt w:val="lowerLetter"/>
  1366. <w:lvlText w:val="%2)"/>
  1367. <w:lvlJc w:val="left"/>
  1368. <w:pPr>
  1369. <w:ind w:left="840" w:hanging="420"/>
  1370. </w:pPr>
  1371. </w:lvl>
  1372. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1373. <w:start w:val="1"/>
  1374. <w:numFmt w:val="lowerRoman"/>
  1375. <w:lvlText w:val="%3."/>
  1376. <w:lvlJc w:val="right"/>
  1377. <w:pPr>
  1378. <w:ind w:left="1260" w:hanging="420"/>
  1379. </w:pPr>
  1380. </w:lvl>
  1381. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1382. <w:start w:val="1"/>
  1383. <w:numFmt w:val="decimal"/>
  1384. <w:lvlText w:val="%4."/>
  1385. <w:lvlJc w:val="left"/>
  1386. <w:pPr>
  1387. <w:ind w:left="1680" w:hanging="420"/>
  1388. </w:pPr>
  1389. </w:lvl>
  1390. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1391. <w:start w:val="1"/>
  1392. <w:numFmt w:val="lowerLetter"/>
  1393. <w:lvlText w:val="%5)"/>
  1394. <w:lvlJc w:val="left"/>
  1395. <w:pPr>
  1396. <w:ind w:left="2100" w:hanging="420"/>
  1397. </w:pPr>
  1398. </w:lvl>
  1399. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1400. <w:start w:val="1"/>
  1401. <w:numFmt w:val="lowerRoman"/>
  1402. <w:lvlText w:val="%6."/>
  1403. <w:lvlJc w:val="right"/>
  1404. <w:pPr>
  1405. <w:ind w:left="2520" w:hanging="420"/>
  1406. </w:pPr>
  1407. </w:lvl>
  1408. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1409. <w:start w:val="1"/>
  1410. <w:numFmt w:val="decimal"/>
  1411. <w:lvlText w:val="%7."/>
  1412. <w:lvlJc w:val="left"/>
  1413. <w:pPr>
  1414. <w:ind w:left="2940" w:hanging="420"/>
  1415. </w:pPr>
  1416. </w:lvl>
  1417. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1418. <w:start w:val="1"/>
  1419. <w:numFmt w:val="lowerLetter"/>
  1420. <w:lvlText w:val="%8)"/>
  1421. <w:lvlJc w:val="left"/>
  1422. <w:pPr>
  1423. <w:ind w:left="3360" w:hanging="420"/>
  1424. </w:pPr>
  1425. </w:lvl>
  1426. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1427. <w:start w:val="1"/>
  1428. <w:numFmt w:val="lowerRoman"/>
  1429. <w:lvlText w:val="%9."/>
  1430. <w:lvlJc w:val="right"/>
  1431. <w:pPr>
  1432. <w:ind w:left="3780" w:hanging="420"/>
  1433. </w:pPr>
  1434. </w:lvl>
  1435. </w:abstractNum>
  1436. <w:abstractNum w:abstractNumId="4" w15:restartNumberingAfterBreak="0">
  1437. <w:nsid w:val="31401546"/>
  1438. <w:multiLevelType w:val="hybridMultilevel"/>
  1439. <w:tmpl w:val="C2AE2842"/>
  1440. <w:lvl w:ilvl="0" w:tplc="2586ED86">
  1441. <w:start w:val="1"/>
  1442. <w:numFmt w:val="decimal"/>
  1443. <w:lvlText w:val="%1."/>
  1444. <w:lvlJc w:val="left"/>
  1445. <w:pPr>
  1446. <w:ind w:left="360" w:hanging="360"/>
  1447. </w:pPr>
  1448. <w:rPr>
  1449. <w:rFonts w:hint="default"/>
  1450. </w:rPr>
  1451. </w:lvl>
  1452. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1453. <w:start w:val="1"/>
  1454. <w:numFmt w:val="lowerLetter"/>
  1455. <w:lvlText w:val="%2)"/>
  1456. <w:lvlJc w:val="left"/>
  1457. <w:pPr>
  1458. <w:ind w:left="840" w:hanging="420"/>
  1459. </w:pPr>
  1460. </w:lvl>
  1461. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1462. <w:start w:val="1"/>
  1463. <w:numFmt w:val="lowerRoman"/>
  1464. <w:lvlText w:val="%3."/>
  1465. <w:lvlJc w:val="right"/>
  1466. <w:pPr>
  1467. <w:ind w:left="1260" w:hanging="420"/>
  1468. </w:pPr>
  1469. </w:lvl>
  1470. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1471. <w:start w:val="1"/>
  1472. <w:numFmt w:val="decimal"/>
  1473. <w:lvlText w:val="%4."/>
  1474. <w:lvlJc w:val="left"/>
  1475. <w:pPr>
  1476. <w:ind w:left="1680" w:hanging="420"/>
  1477. </w:pPr>
  1478. </w:lvl>
  1479. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1480. <w:start w:val="1"/>
  1481. <w:numFmt w:val="lowerLetter"/>
  1482. <w:lvlText w:val="%5)"/>
  1483. <w:lvlJc w:val="left"/>
  1484. <w:pPr>
  1485. <w:ind w:left="2100" w:hanging="420"/>
  1486. </w:pPr>
  1487. </w:lvl>
  1488. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1489. <w:start w:val="1"/>
  1490. <w:numFmt w:val="lowerRoman"/>
  1491. <w:lvlText w:val="%6."/>
  1492. <w:lvlJc w:val="right"/>
  1493. <w:pPr>
  1494. <w:ind w:left="2520" w:hanging="420"/>
  1495. </w:pPr>
  1496. </w:lvl>
  1497. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1498. <w:start w:val="1"/>
  1499. <w:numFmt w:val="decimal"/>
  1500. <w:lvlText w:val="%7."/>
  1501. <w:lvlJc w:val="left"/>
  1502. <w:pPr>
  1503. <w:ind w:left="2940" w:hanging="420"/>
  1504. </w:pPr>
  1505. </w:lvl>
  1506. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1507. <w:start w:val="1"/>
  1508. <w:numFmt w:val="lowerLetter"/>
  1509. <w:lvlText w:val="%8)"/>
  1510. <w:lvlJc w:val="left"/>
  1511. <w:pPr>
  1512. <w:ind w:left="3360" w:hanging="420"/>
  1513. </w:pPr>
  1514. </w:lvl>
  1515. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1516. <w:start w:val="1"/>
  1517. <w:numFmt w:val="lowerRoman"/>
  1518. <w:lvlText w:val="%9."/>
  1519. <w:lvlJc w:val="right"/>
  1520. <w:pPr>
  1521. <w:ind w:left="3780" w:hanging="420"/>
  1522. </w:pPr>
  1523. </w:lvl>
  1524. </w:abstractNum>
  1525. <w:abstractNum w:abstractNumId="5" w15:restartNumberingAfterBreak="0">
  1526. <w:nsid w:val="3B2D5CDE"/>
  1527. <w:multiLevelType w:val="hybridMultilevel"/>
  1528. <w:tmpl w:val="9F4A6608"/>
  1529. <w:lvl w:ilvl="0" w:tplc="AB74F690">
  1530. <w:start w:val="1"/>
  1531. <w:numFmt w:val="upperLetter"/>
  1532. <w:lvlText w:val="%1."/>
  1533. <w:lvlJc w:val="left"/>
  1534. <w:pPr>
  1535. <w:ind w:left="360" w:hanging="360"/>
  1536. </w:pPr>
  1537. <w:rPr>
  1538. <w:rFonts w:hint="default"/>
  1539. </w:rPr>
  1540. </w:lvl>
  1541. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1542. <w:start w:val="1"/>
  1543. <w:numFmt w:val="lowerLetter"/>
  1544. <w:lvlText w:val="%2)"/>
  1545. <w:lvlJc w:val="left"/>
  1546. <w:pPr>
  1547. <w:ind w:left="840" w:hanging="420"/>
  1548. </w:pPr>
  1549. </w:lvl>
  1550. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1551. <w:start w:val="1"/>
  1552. <w:numFmt w:val="lowerRoman"/>
  1553. <w:lvlText w:val="%3."/>
  1554. <w:lvlJc w:val="right"/>
  1555. <w:pPr>
  1556. <w:ind w:left="1260" w:hanging="420"/>
  1557. </w:pPr>
  1558. </w:lvl>
  1559. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1560. <w:start w:val="1"/>
  1561. <w:numFmt w:val="decimal"/>
  1562. <w:lvlText w:val="%4."/>
  1563. <w:lvlJc w:val="left"/>
  1564. <w:pPr>
  1565. <w:ind w:left="1680" w:hanging="420"/>
  1566. </w:pPr>
  1567. </w:lvl>
  1568. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1569. <w:start w:val="1"/>
  1570. <w:numFmt w:val="lowerLetter"/>
  1571. <w:lvlText w:val="%5)"/>
  1572. <w:lvlJc w:val="left"/>
  1573. <w:pPr>
  1574. <w:ind w:left="2100" w:hanging="420"/>
  1575. </w:pPr>
  1576. </w:lvl>
  1577. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1578. <w:start w:val="1"/>
  1579. <w:numFmt w:val="lowerRoman"/>
  1580. <w:lvlText w:val="%6."/>
  1581. <w:lvlJc w:val="right"/>
  1582. <w:pPr>
  1583. <w:ind w:left="2520" w:hanging="420"/>
  1584. </w:pPr>
  1585. </w:lvl>
  1586. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1587. <w:start w:val="1"/>
  1588. <w:numFmt w:val="decimal"/>
  1589. <w:lvlText w:val="%7."/>
  1590. <w:lvlJc w:val="left"/>
  1591. <w:pPr>
  1592. <w:ind w:left="2940" w:hanging="420"/>
  1593. </w:pPr>
  1594. </w:lvl>
  1595. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1596. <w:start w:val="1"/>
  1597. <w:numFmt w:val="lowerLetter"/>
  1598. <w:lvlText w:val="%8)"/>
  1599. <w:lvlJc w:val="left"/>
  1600. <w:pPr>
  1601. <w:ind w:left="3360" w:hanging="420"/>
  1602. </w:pPr>
  1603. </w:lvl>
  1604. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1605. <w:start w:val="1"/>
  1606. <w:numFmt w:val="lowerRoman"/>
  1607. <w:lvlText w:val="%9."/>
  1608. <w:lvlJc w:val="right"/>
  1609. <w:pPr>
  1610. <w:ind w:left="3780" w:hanging="420"/>
  1611. </w:pPr>
  1612. </w:lvl>
  1613. </w:abstractNum>
  1614. <w:abstractNum w:abstractNumId="6" w15:restartNumberingAfterBreak="0">
  1615. <w:nsid w:val="4D0C0927"/>
  1616. <w:multiLevelType w:val="hybridMultilevel"/>
  1617. <w:tmpl w:val="A93E3712"/>
  1618. <w:lvl w:ilvl="0" w:tplc="908CB04C">
  1619. <w:start w:val="1"/>
  1620. <w:numFmt w:val="decimal"/>
  1621. <w:lvlText w:val="%1."/>
  1622. <w:lvlJc w:val="left"/>
  1623. <w:pPr>
  1624. <w:ind w:left="360" w:hanging="360"/>
  1625. </w:pPr>
  1626. <w:rPr>
  1627. <w:rFonts w:hint="default"/>
  1628. </w:rPr>
  1629. </w:lvl>
  1630. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1631. <w:start w:val="1"/>
  1632. <w:numFmt w:val="lowerLetter"/>
  1633. <w:lvlText w:val="%2)"/>
  1634. <w:lvlJc w:val="left"/>
  1635. <w:pPr>
  1636. <w:ind w:left="840" w:hanging="420"/>
  1637. </w:pPr>
  1638. </w:lvl>
  1639. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1640. <w:start w:val="1"/>
  1641. <w:numFmt w:val="lowerRoman"/>
  1642. <w:lvlText w:val="%3."/>
  1643. <w:lvlJc w:val="right"/>
  1644. <w:pPr>
  1645. <w:ind w:left="1260" w:hanging="420"/>
  1646. </w:pPr>
  1647. </w:lvl>
  1648. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1649. <w:start w:val="1"/>
  1650. <w:numFmt w:val="decimal"/>
  1651. <w:lvlText w:val="%4."/>
  1652. <w:lvlJc w:val="left"/>
  1653. <w:pPr>
  1654. <w:ind w:left="1680" w:hanging="420"/>
  1655. </w:pPr>
  1656. </w:lvl>
  1657. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1658. <w:start w:val="1"/>
  1659. <w:numFmt w:val="lowerLetter"/>
  1660. <w:lvlText w:val="%5)"/>
  1661. <w:lvlJc w:val="left"/>
  1662. <w:pPr>
  1663. <w:ind w:left="2100" w:hanging="420"/>
  1664. </w:pPr>
  1665. </w:lvl>
  1666. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1667. <w:start w:val="1"/>
  1668. <w:numFmt w:val="lowerRoman"/>
  1669. <w:lvlText w:val="%6."/>
  1670. <w:lvlJc w:val="right"/>
  1671. <w:pPr>
  1672. <w:ind w:left="2520" w:hanging="420"/>
  1673. </w:pPr>
  1674. </w:lvl>
  1675. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1676. <w:start w:val="1"/>
  1677. <w:numFmt w:val="decimal"/>
  1678. <w:lvlText w:val="%7."/>
  1679. <w:lvlJc w:val="left"/>
  1680. <w:pPr>
  1681. <w:ind w:left="2940" w:hanging="420"/>
  1682. </w:pPr>
  1683. </w:lvl>
  1684. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1685. <w:start w:val="1"/>
  1686. <w:numFmt w:val="lowerLetter"/>
  1687. <w:lvlText w:val="%8)"/>
  1688. <w:lvlJc w:val="left"/>
  1689. <w:pPr>
  1690. <w:ind w:left="3360" w:hanging="420"/>
  1691. </w:pPr>
  1692. </w:lvl>
  1693. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1694. <w:start w:val="1"/>
  1695. <w:numFmt w:val="lowerRoman"/>
  1696. <w:lvlText w:val="%9."/>
  1697. <w:lvlJc w:val="right"/>
  1698. <w:pPr>
  1699. <w:ind w:left="3780" w:hanging="420"/>
  1700. </w:pPr>
  1701. </w:lvl>
  1702. </w:abstractNum>
  1703. <w:abstractNum w:abstractNumId="7" w15:restartNumberingAfterBreak="0">
  1704. <w:nsid w:val="62896423"/>
  1705. <w:multiLevelType w:val="hybridMultilevel"/>
  1706. <w:tmpl w:val="DEE224EE"/>
  1707. <w:lvl w:ilvl="0" w:tplc="908CB04C">
  1708. <w:start w:val="1"/>
  1709. <w:numFmt w:val="decimal"/>
  1710. <w:lvlText w:val="%1."/>
  1711. <w:lvlJc w:val="left"/>
  1712. <w:pPr>
  1713. <w:ind w:left="360" w:hanging="360"/>
  1714. </w:pPr>
  1715. <w:rPr>
  1716. <w:rFonts w:hint="default"/>
  1717. </w:rPr>
  1718. </w:lvl>
  1719. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1720. <w:start w:val="1"/>
  1721. <w:numFmt w:val="lowerLetter"/>
  1722. <w:lvlText w:val="%2)"/>
  1723. <w:lvlJc w:val="left"/>
  1724. <w:pPr>
  1725. <w:ind w:left="840" w:hanging="420"/>
  1726. </w:pPr>
  1727. </w:lvl>
  1728. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1729. <w:start w:val="1"/>
  1730. <w:numFmt w:val="lowerRoman"/>
  1731. <w:lvlText w:val="%3."/>
  1732. <w:lvlJc w:val="right"/>
  1733. <w:pPr>
  1734. <w:ind w:left="1260" w:hanging="420"/>
  1735. </w:pPr>
  1736. </w:lvl>
  1737. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1738. <w:start w:val="1"/>
  1739. <w:numFmt w:val="decimal"/>
  1740. <w:lvlText w:val="%4."/>
  1741. <w:lvlJc w:val="left"/>
  1742. <w:pPr>
  1743. <w:ind w:left="1680" w:hanging="420"/>
  1744. </w:pPr>
  1745. </w:lvl>
  1746. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1747. <w:start w:val="1"/>
  1748. <w:numFmt w:val="lowerLetter"/>
  1749. <w:lvlText w:val="%5)"/>
  1750. <w:lvlJc w:val="left"/>
  1751. <w:pPr>
  1752. <w:ind w:left="2100" w:hanging="420"/>
  1753. </w:pPr>
  1754. </w:lvl>
  1755. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1756. <w:start w:val="1"/>
  1757. <w:numFmt w:val="lowerRoman"/>
  1758. <w:lvlText w:val="%6."/>
  1759. <w:lvlJc w:val="right"/>
  1760. <w:pPr>
  1761. <w:ind w:left="2520" w:hanging="420"/>
  1762. </w:pPr>
  1763. </w:lvl>
  1764. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1765. <w:start w:val="1"/>
  1766. <w:numFmt w:val="decimal"/>
  1767. <w:lvlText w:val="%7."/>
  1768. <w:lvlJc w:val="left"/>
  1769. <w:pPr>
  1770. <w:ind w:left="2940" w:hanging="420"/>
  1771. </w:pPr>
  1772. </w:lvl>
  1773. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1774. <w:start w:val="1"/>
  1775. <w:numFmt w:val="lowerLetter"/>
  1776. <w:lvlText w:val="%8)"/>
  1777. <w:lvlJc w:val="left"/>
  1778. <w:pPr>
  1779. <w:ind w:left="3360" w:hanging="420"/>
  1780. </w:pPr>
  1781. </w:lvl>
  1782. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1783. <w:start w:val="1"/>
  1784. <w:numFmt w:val="lowerRoman"/>
  1785. <w:lvlText w:val="%9."/>
  1786. <w:lvlJc w:val="right"/>
  1787. <w:pPr>
  1788. <w:ind w:left="3780" w:hanging="420"/>
  1789. </w:pPr>
  1790. </w:lvl>
  1791. </w:abstractNum>
  1792. <w:abstractNum w:abstractNumId="8" w15:restartNumberingAfterBreak="0">
  1793. <w:nsid w:val="6FD350DC"/>
  1794. <w:multiLevelType w:val="hybridMultilevel"/>
  1795. <w:tmpl w:val="BE985848"/>
  1796. <w:lvl w:ilvl="0" w:tplc="0409000F">
  1797. <w:start w:val="1"/>
  1798. <w:numFmt w:val="decimal"/>
  1799. <w:lvlText w:val="%1."/>
  1800. <w:lvlJc w:val="left"/>
  1801. <w:pPr>
  1802. <w:ind w:left="420" w:hanging="420"/>
  1803. </w:pPr>
  1804. </w:lvl>
  1805. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
  1806. <w:start w:val="1"/>
  1807. <w:numFmt w:val="lowerLetter"/>
  1808. <w:lvlText w:val="%2)"/>
  1809. <w:lvlJc w:val="left"/>
  1810. <w:pPr>
  1811. <w:ind w:left="840" w:hanging="420"/>
  1812. </w:pPr>
  1813. </w:lvl>
  1814. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
  1815. <w:start w:val="1"/>
  1816. <w:numFmt w:val="lowerRoman"/>
  1817. <w:lvlText w:val="%3."/>
  1818. <w:lvlJc w:val="right"/>
  1819. <w:pPr>
  1820. <w:ind w:left="1260" w:hanging="420"/>
  1821. </w:pPr>
  1822. </w:lvl>
  1823. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
  1824. <w:start w:val="1"/>
  1825. <w:numFmt w:val="decimal"/>
  1826. <w:lvlText w:val="%4."/>
  1827. <w:lvlJc w:val="left"/>
  1828. <w:pPr>
  1829. <w:ind w:left="1680" w:hanging="420"/>
  1830. </w:pPr>
  1831. </w:lvl>
  1832. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
  1833. <w:start w:val="1"/>
  1834. <w:numFmt w:val="lowerLetter"/>
  1835. <w:lvlText w:val="%5)"/>
  1836. <w:lvlJc w:val="left"/>
  1837. <w:pPr>
  1838. <w:ind w:left="2100" w:hanging="420"/>
  1839. </w:pPr>
  1840. </w:lvl>
  1841. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
  1842. <w:start w:val="1"/>
  1843. <w:numFmt w:val="lowerRoman"/>
  1844. <w:lvlText w:val="%6."/>
  1845. <w:lvlJc w:val="right"/>
  1846. <w:pPr>
  1847. <w:ind w:left="2520" w:hanging="420"/>
  1848. </w:pPr>
  1849. </w:lvl>
  1850. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
  1851. <w:start w:val="1"/>
  1852. <w:numFmt w:val="decimal"/>
  1853. <w:lvlText w:val="%7."/>
  1854. <w:lvlJc w:val="left"/>
  1855. <w:pPr>
  1856. <w:ind w:left="2940" w:hanging="420"/>
  1857. </w:pPr>
  1858. </w:lvl>
  1859. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
  1860. <w:start w:val="1"/>
  1861. <w:numFmt w:val="lowerLetter"/>
  1862. <w:lvlText w:val="%8)"/>
  1863. <w:lvlJc w:val="left"/>
  1864. <w:pPr>
  1865. <w:ind w:left="3360" w:hanging="420"/>
  1866. </w:pPr>
  1867. </w:lvl>
  1868. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
  1869. <w:start w:val="1"/>
  1870. <w:numFmt w:val="lowerRoman"/>
  1871. <w:lvlText w:val="%9."/>
  1872. <w:lvlJc w:val="right"/>
  1873. <w:pPr>
  1874. <w:ind w:left="3780" w:hanging="420"/>
  1875. </w:pPr>
  1876. </w:lvl>
  1877. </w:abstractNum>
  1878. <w:num w:numId="1">
  1879. <w:abstractNumId w:val="8"/>
  1880. </w:num>
  1881. <w:num w:numId="2">
  1882. <w:abstractNumId w:val="7"/>
  1883. </w:num>
  1884. <w:num w:numId="3">
  1885. <w:abstractNumId w:val="1"/>
  1886. </w:num>
  1887. <w:num w:numId="4">
  1888. <w:abstractNumId w:val="0"/>
  1889. </w:num>
  1890. <w:num w:numId="5">
  1891. <w:abstractNumId w:val="6"/>
  1892. </w:num>
  1893. <w:num w:numId="6">
  1894. <w:abstractNumId w:val="2"/>
  1895. </w:num>
  1896. <w:num w:numId="7">
  1897. <w:abstractNumId w:val="5"/>
  1898. </w:num>
  1899. <w:num w:numId="8">
  1900. <w:abstractNumId w:val="3"/>
  1901. </w:num>
  1902. <w:num w:numId="9">
  1903. <w:abstractNumId w:val="4"/>
  1904. </w:num>
  1905. </w:numbering>
  1906. </pkg:xmlData>
  1907. </pkg:part>
  1908. <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
  1909. <pkg:xmlData>
  1910. <w:styles xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
  1911. <w:docDefaults>
  1912. <w:rPrDefault>
  1913. <w:rPr>
  1914. <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
  1915. <w:kern w:val="2"/>
  1916. <w:sz w:val="21"/>
  1917. <w:szCs w:val="22"/>
  1918. <w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
  1919. </w:rPr>
  1920. </w:rPrDefault>
  1921. <w:pPrDefault/>
  1922. </w:docDefaults>
  1923. <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="375">
  1924. <w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
  1925. <w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
  1926. <w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1927. <w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1928. <w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1929. <w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1930. <w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1931. <w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1932. <w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1933. <w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
  1934. <w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1935. <w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1936. <w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1937. <w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1938. <w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1939. <w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1940. <w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1941. <w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1942. <w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1943. <w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1944. <w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1945. <w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1946. <w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1947. <w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1948. <w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1949. <w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1950. <w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1951. <w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
  1952. <w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1953. <w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1954. <w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1955. <w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1956. <w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1957. <w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1958. <w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1" w:qFormat="1"/>
  1959. <w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1960. <w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1961. <w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1962. <w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1963. <w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1964. <w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1965. <w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1966. <w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1967. <w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1968. <w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1969. <w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1970. <w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1971. <w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1972. <w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1973. <w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1974. <w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1975. <w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1976. <w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1977. <w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1978. <w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1979. <w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1980. <w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1981. <w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1982. <w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1983. <w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1984. <w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1985. <w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1986. <w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
  1987. <w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1988. <w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1989. <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1" w:unhideWhenUsed="1"/>
  1990. <w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1991. <w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1992. <w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1993. <w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1994. <w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1995. <w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1996. <w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1997. <w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
  1998. <w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
  1999. <w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2000. <w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2001. <w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2002. <w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2003. <w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2004. <w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2005. <w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2006. <w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2007. <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2008. <w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2009. <w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2010. <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2011. <w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
  2012. <w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
  2013. <w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2014. <w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2015. <w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2016. <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2017. <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2018. <w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2019. <w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2020. <w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2021. <w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2022. <w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2023. <w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2024. <w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2025. <w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2026. <w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2027. <w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2028. <w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2029. <w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2030. <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2031. <w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2032. <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2033. <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2034. <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2035. <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2036. <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2037. <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2038. <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2039. <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2040. <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2041. <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2042. <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2043. <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2044. <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2045. <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2046. <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2047. <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2048. <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2049. <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2050. <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2051. <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2052. <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2053. <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2054. <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2055. <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2056. <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2057. <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2058. <w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2059. <w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2060. <w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2061. <w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2062. <w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2063. <w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2064. <w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2065. <w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2066. <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2067. <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2068. <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2069. <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2070. <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2071. <w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2072. <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2073. <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2074. <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2075. <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2076. <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2077. <w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2078. <w:lsdException w:name="Table Grid" w:uiPriority="59"/>
  2079. <w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2080. <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
  2081. <w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1"/>
  2082. <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
  2083. <w:lsdException w:name="Light List" w:uiPriority="61"/>
  2084. <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
  2085. <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
  2086. <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
  2087. <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
  2088. <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
  2089. <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
  2090. <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
  2091. <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
  2092. <w:lsdException w:name="Dark List" w:uiPriority="70"/>
  2093. <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
  2094. <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
  2095. <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
  2096. <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
  2097. <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
  2098. <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
  2099. <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
  2100. <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
  2101. <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
  2102. <w:lsdException w:name="Revision" w:semiHidden="1"/>
  2103. <w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
  2104. <w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1"/>
  2105. <w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1"/>
  2106. <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
  2107. <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
  2108. <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
  2109. <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
  2110. <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
  2111. <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
  2112. <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
  2113. <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
  2114. <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
  2115. <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
  2116. <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
  2117. <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
  2118. <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
  2119. <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
  2120. <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
  2121. <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
  2122. <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
  2123. <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
  2124. <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
  2125. <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
  2126. <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
  2127. <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
  2128. <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
  2129. <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
  2130. <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
  2131. <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
  2132. <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
  2133. <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
  2134. <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
  2135. <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
  2136. <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
  2137. <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
  2138. <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
  2139. <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
  2140. <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
  2141. <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
  2142. <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
  2143. <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
  2144. <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
  2145. <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
  2146. <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
  2147. <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
  2148. <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
  2149. <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
  2150. <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
  2151. <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
  2152. <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
  2153. <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
  2154. <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
  2155. <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
  2156. <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
  2157. <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
  2158. <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
  2159. <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
  2160. <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
  2161. <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
  2162. <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
  2163. <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
  2164. <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
  2165. <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
  2166. <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
  2167. <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
  2168. <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
  2169. <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
  2170. <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
  2171. <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
  2172. <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
  2173. <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
  2174. <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
  2175. <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
  2176. <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
  2177. <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
  2178. <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
  2179. <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
  2180. <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
  2181. <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
  2182. <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
  2183. <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
  2184. <w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1"/>
  2185. <w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
  2186. <w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
  2187. <w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
  2188. <w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
  2189. <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
  2190. <w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" w:qFormat="1"/>
  2191. <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
  2192. <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
  2193. <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
  2194. <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
  2195. <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
  2196. <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
  2197. <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
  2198. <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
  2199. <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
  2200. <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
  2201. <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
  2202. <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
  2203. <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
  2204. <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
  2205. <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
  2206. <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
  2207. <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
  2208. <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
  2209. <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
  2210. <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
  2211. <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
  2212. <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
  2213. <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
  2214. <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
  2215. <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
  2216. <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
  2217. <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
  2218. <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
  2219. <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
  2220. <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
  2221. <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
  2222. <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
  2223. <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
  2224. <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
  2225. <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
  2226. <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
  2227. <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
  2228. <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
  2229. <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
  2230. <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
  2231. <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
  2232. <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
  2233. <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
  2234. <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
  2235. <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
  2236. <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
  2237. <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
  2238. <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
  2239. <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
  2240. <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
  2241. <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
  2242. <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
  2243. <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
  2244. <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
  2245. <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
  2246. <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
  2247. <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
  2248. <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
  2249. <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
  2250. <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
  2251. <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
  2252. <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
  2253. <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
  2254. <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
  2255. <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
  2256. <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
  2257. <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
  2258. <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
  2259. <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
  2260. <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
  2261. <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
  2262. <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
  2263. <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
  2264. <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
  2265. <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
  2266. <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
  2267. <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
  2268. <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
  2269. <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
  2270. <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
  2271. <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
  2272. <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
  2273. <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
  2274. <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
  2275. <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
  2276. <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
  2277. <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
  2278. <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
  2279. <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
  2280. <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
  2281. <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
  2282. <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
  2283. <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
  2284. <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
  2285. <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
  2286. <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
  2287. <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
  2288. <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
  2289. <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
  2290. <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
  2291. <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
  2292. <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
  2293. <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
  2294. <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
  2295. <w:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2296. <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2297. <w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2298. <w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
  2299. </w:latentStyles>
  2300. <w:style w:type="paragraph" w:default="1" w:styleId="a">
  2301. <w:name w:val="Normal"/>
  2302. <w:qFormat/>
  2303. <w:rsid w:val="000E491E"/>
  2304. <w:pPr>
  2305. <w:widowControl w:val="0"/>
  2306. <w:jc w:val="both"/>
  2307. </w:pPr>
  2308. <w:rPr>
  2309. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2310. <w:szCs w:val="24"/>
  2311. </w:rPr>
  2312. </w:style>
  2313. <w:style w:type="character" w:default="1" w:styleId="a0">
  2314. <w:name w:val="Default Paragraph Font"/>
  2315. <w:uiPriority w:val="1"/>
  2316. <w:semiHidden/>
  2317. <w:unhideWhenUsed/>
  2318. </w:style>
  2319. <w:style w:type="table" w:default="1" w:styleId="a1">
  2320. <w:name w:val="Normal Table"/>
  2321. <w:uiPriority w:val="99"/>
  2322. <w:semiHidden/>
  2323. <w:unhideWhenUsed/>
  2324. <w:tblPr>
  2325. <w:tblInd w:w="0" w:type="dxa"/>
  2326. <w:tblCellMar>
  2327. <w:top w:w="0" w:type="dxa"/>
  2328. <w:left w:w="108" w:type="dxa"/>
  2329. <w:bottom w:w="0" w:type="dxa"/>
  2330. <w:right w:w="108" w:type="dxa"/>
  2331. </w:tblCellMar>
  2332. </w:tblPr>
  2333. </w:style>
  2334. <w:style w:type="numbering" w:default="1" w:styleId="a2">
  2335. <w:name w:val="No List"/>
  2336. <w:uiPriority w:val="99"/>
  2337. <w:semiHidden/>
  2338. <w:unhideWhenUsed/>
  2339. </w:style>
  2340. <w:style w:type="table" w:styleId="a3">
  2341. <w:name w:val="Table Grid"/>
  2342. <w:basedOn w:val="a1"/>
  2343. <w:uiPriority w:val="59"/>
  2344. <w:rsid w:val="00B33B71"/>
  2345. <w:tblPr>
  2346. <w:tblBorders>
  2347. <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2348. <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2349. <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2350. <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2351. <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2352. <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
  2353. </w:tblBorders>
  2354. </w:tblPr>
  2355. </w:style>
  2356. <w:style w:type="paragraph" w:styleId="a4">
  2357. <w:name w:val="Balloon Text"/>
  2358. <w:basedOn w:val="a"/>
  2359. <w:link w:val="a5"/>
  2360. <w:uiPriority w:val="99"/>
  2361. <w:semiHidden/>
  2362. <w:unhideWhenUsed/>
  2363. <w:rsid w:val="00B33B71"/>
  2364. <w:rPr>
  2365. <w:sz w:val="18"/>
  2366. <w:szCs w:val="18"/>
  2367. </w:rPr>
  2368. </w:style>
  2369. <w:style w:type="character" w:customStyle="1" w:styleId="a5">
  2370. <w:name w:val="批注框文本 字符"/>
  2371. <w:basedOn w:val="a0"/>
  2372. <w:link w:val="a4"/>
  2373. <w:uiPriority w:val="99"/>
  2374. <w:semiHidden/>
  2375. <w:rsid w:val="00B33B71"/>
  2376. <w:rPr>
  2377. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2378. <w:sz w:val="18"/>
  2379. <w:szCs w:val="18"/>
  2380. </w:rPr>
  2381. </w:style>
  2382. <w:style w:type="paragraph" w:styleId="a6">
  2383. <w:name w:val="List Paragraph"/>
  2384. <w:basedOn w:val="a"/>
  2385. <w:uiPriority w:val="34"/>
  2386. <w:qFormat/>
  2387. <w:rsid w:val="00426201"/>
  2388. <w:pPr>
  2389. <w:ind w:firstLineChars="200" w:firstLine="420"/>
  2390. </w:pPr>
  2391. </w:style>
  2392. <w:style w:type="paragraph" w:styleId="a7">
  2393. <w:name w:val="header"/>
  2394. <w:basedOn w:val="a"/>
  2395. <w:link w:val="a8"/>
  2396. <w:uiPriority w:val="99"/>
  2397. <w:unhideWhenUsed/>
  2398. <w:rsid w:val="00075EC9"/>
  2399. <w:pPr>
  2400. <w:pBdr>
  2401. <w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto"/>
  2402. </w:pBdr>
  2403. <w:tabs>
  2404. <w:tab w:val="center" w:pos="4153"/>
  2405. <w:tab w:val="right" w:pos="8306"/>
  2406. </w:tabs>
  2407. <w:snapToGrid w:val="0"/>
  2408. <w:jc w:val="center"/>
  2409. </w:pPr>
  2410. <w:rPr>
  2411. <w:sz w:val="18"/>
  2412. <w:szCs w:val="18"/>
  2413. </w:rPr>
  2414. </w:style>
  2415. <w:style w:type="character" w:customStyle="1" w:styleId="a8">
  2416. <w:name w:val="页眉 字符"/>
  2417. <w:basedOn w:val="a0"/>
  2418. <w:link w:val="a7"/>
  2419. <w:uiPriority w:val="99"/>
  2420. <w:rsid w:val="00075EC9"/>
  2421. <w:rPr>
  2422. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2423. <w:sz w:val="18"/>
  2424. <w:szCs w:val="18"/>
  2425. </w:rPr>
  2426. </w:style>
  2427. <w:style w:type="paragraph" w:styleId="a9">
  2428. <w:name w:val="footer"/>
  2429. <w:basedOn w:val="a"/>
  2430. <w:link w:val="aa"/>
  2431. <w:uiPriority w:val="99"/>
  2432. <w:unhideWhenUsed/>
  2433. <w:rsid w:val="00075EC9"/>
  2434. <w:pPr>
  2435. <w:tabs>
  2436. <w:tab w:val="center" w:pos="4153"/>
  2437. <w:tab w:val="right" w:pos="8306"/>
  2438. </w:tabs>
  2439. <w:snapToGrid w:val="0"/>
  2440. <w:jc w:val="left"/>
  2441. </w:pPr>
  2442. <w:rPr>
  2443. <w:sz w:val="18"/>
  2444. <w:szCs w:val="18"/>
  2445. </w:rPr>
  2446. </w:style>
  2447. <w:style w:type="character" w:customStyle="1" w:styleId="aa">
  2448. <w:name w:val="页脚 字符"/>
  2449. <w:basedOn w:val="a0"/>
  2450. <w:link w:val="a9"/>
  2451. <w:uiPriority w:val="99"/>
  2452. <w:rsid w:val="00075EC9"/>
  2453. <w:rPr>
  2454. <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  2455. <w:sz w:val="18"/>
  2456. <w:szCs w:val="18"/>
  2457. </w:rPr>
  2458. </w:style>
  2459. </w:styles>
  2460. </pkg:xmlData>
  2461. </pkg:part>
  2462. <pkg:part pkg:name="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
  2463. <pkg:xmlData>
  2464. <w:webSettings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
  2465. <w:divs>
  2466. <w:div w:id="45836578">
  2467. <w:bodyDiv w:val="1"/>
  2468. <w:marLeft w:val="0"/>
  2469. <w:marRight w:val="0"/>
  2470. <w:marTop w:val="0"/>
  2471. <w:marBottom w:val="0"/>
  2472. <w:divBdr>
  2473. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2474. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2475. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2476. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2477. </w:divBdr>
  2478. </w:div>
  2479. <w:div w:id="951131151">
  2480. <w:bodyDiv w:val="1"/>
  2481. <w:marLeft w:val="0"/>
  2482. <w:marRight w:val="0"/>
  2483. <w:marTop w:val="0"/>
  2484. <w:marBottom w:val="0"/>
  2485. <w:divBdr>
  2486. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2487. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2488. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2489. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2490. </w:divBdr>
  2491. <w:divsChild>
  2492. <w:div w:id="499396814">
  2493. <w:marLeft w:val="0"/>
  2494. <w:marRight w:val="0"/>
  2495. <w:marTop w:val="0"/>
  2496. <w:marBottom w:val="300"/>
  2497. <w:divBdr>
  2498. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2499. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2500. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2501. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2502. </w:divBdr>
  2503. </w:div>
  2504. <w:div w:id="1597443181">
  2505. <w:marLeft w:val="0"/>
  2506. <w:marRight w:val="0"/>
  2507. <w:marTop w:val="0"/>
  2508. <w:marBottom w:val="150"/>
  2509. <w:divBdr>
  2510. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2511. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2512. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2513. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2514. </w:divBdr>
  2515. </w:div>
  2516. </w:divsChild>
  2517. </w:div>
  2518. <w:div w:id="1495073933">
  2519. <w:bodyDiv w:val="1"/>
  2520. <w:marLeft w:val="0"/>
  2521. <w:marRight w:val="0"/>
  2522. <w:marTop w:val="0"/>
  2523. <w:marBottom w:val="0"/>
  2524. <w:divBdr>
  2525. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2526. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2527. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2528. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2529. </w:divBdr>
  2530. </w:div>
  2531. <w:div w:id="1817987612">
  2532. <w:bodyDiv w:val="1"/>
  2533. <w:marLeft w:val="0"/>
  2534. <w:marRight w:val="0"/>
  2535. <w:marTop w:val="0"/>
  2536. <w:marBottom w:val="0"/>
  2537. <w:divBdr>
  2538. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2539. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2540. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2541. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2542. </w:divBdr>
  2543. <w:divsChild>
  2544. <w:div w:id="2088189912">
  2545. <w:marLeft w:val="0"/>
  2546. <w:marRight w:val="0"/>
  2547. <w:marTop w:val="0"/>
  2548. <w:marBottom w:val="0"/>
  2549. <w:divBdr>
  2550. <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2551. <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2552. <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2553. <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
  2554. </w:divBdr>
  2555. </w:div>
  2556. </w:divsChild>
  2557. </w:div>
  2558. </w:divs>
  2559. <w:optimizeForBrowser/>
  2560. <w:allowPNG/>
  2561. </w:webSettings>
  2562. </pkg:xmlData>
  2563. </pkg:part>
  2564. <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
  2565. <pkg:xmlData>
  2566. <w:fonts xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
  2567. <w:font w:name="Times New Roman">
  2568. <w:panose1 w:val="02020603050405020304"/>
  2569. <w:charset w:val="00"/>
  2570. <w:family w:val="roman"/>
  2571. <w:pitch w:val="variable"/>
  2572. <w:sig w:usb0="E0002AFF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
  2573. </w:font>
  2574. <w:font w:name="Calibri">
  2575. <w:panose1 w:val="020F0502020204030204"/>
  2576. <w:charset w:val="00"/>
  2577. <w:family w:val="swiss"/>
  2578. <w:pitch w:val="variable"/>
  2579. <w:sig w:usb0="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
  2580. </w:font>
  2581. <w:font w:name="宋体">
  2582. <w:altName w:val="SimSun"/>
  2583. <w:panose1 w:val="02010600030101010101"/>
  2584. <w:charset w:val="86"/>
  2585. <w:family w:val="auto"/>
  2586. <w:pitch w:val="variable"/>
  2587. <w:sig w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  2588. </w:font>
  2589. <w:font w:name="华文中宋">
  2590. <w:panose1 w:val="02010600040101010101"/>
  2591. <w:charset w:val="86"/>
  2592. <w:family w:val="auto"/>
  2593. <w:pitch w:val="variable"/>
  2594. <w:sig w:usb0="00000287" w:usb1="080F0000" w:usb2="00000010" w:usb3="00000000" w:csb0="0004009F" w:csb1="00000000"/>
  2595. </w:font>
  2596. <w:font w:name="仿宋_GB2312">
  2597. <w:altName w:val="宋体"/>
  2598. <w:panose1 w:val="00000000000000000000"/>
  2599. <w:charset w:val="86"/>
  2600. <w:family w:val="roman"/>
  2601. <w:notTrueType/>
  2602. <w:pitch w:val="default"/>
  2603. <w:sig w:usb0="00000001" w:usb1="080E0000" w:usb2="00000010" w:usb3="00000000" w:csb0="00040000" w:csb1="00000000"/>
  2604. </w:font>
  2605. <w:font w:name="黑体">
  2606. <w:altName w:val="SimHei"/>
  2607. <w:panose1 w:val="02010609060101010101"/>
  2608. <w:charset w:val="86"/>
  2609. <w:family w:val="modern"/>
  2610. <w:pitch w:val="fixed"/>
  2611. <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  2612. </w:font>
  2613. <w:font w:name="Cambria">
  2614. <w:panose1 w:val="02040503050406030204"/>
  2615. <w:charset w:val="00"/>
  2616. <w:family w:val="roman"/>
  2617. <w:pitch w:val="variable"/>
  2618. <w:sig w:usb0="A00002EF" w:usb1="4000004B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
  2619. </w:font>
  2620. </w:fonts>
  2621. </pkg:xmlData>
  2622. </pkg:part>
  2623. <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:padding="256">
  2624. <pkg:xmlData>
  2625. <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  2626. <dc:creator>马涛</dc:creator>
  2627. <cp:lastModifiedBy>严奉志 启明</cp:lastModifiedBy>
  2628. <cp:revision>2</cp:revision>
  2629. <dcterms:created xsi:type="dcterms:W3CDTF">2019-03-12T05:53:00Z</dcterms:created>
  2630. <dcterms:modified xsi:type="dcterms:W3CDTF">2019-03-12T05:53:00Z</dcterms:modified>
  2631. </cp:coreProperties>
  2632. </pkg:xmlData>
  2633. </pkg:part>
  2634. <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:padding="256">
  2635. <pkg:xmlData>
  2636. <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  2637. <Template>Normal.dotm</Template>
  2638. <TotalTime>0</TotalTime>
  2639. <Pages>1</Pages>
  2640. <Words>22</Words>
  2641. <Characters>128</Characters>
  2642. <Application>Microsoft Office Word</Application>
  2643. <DocSecurity>0</DocSecurity>
  2644. <Lines>1</Lines>
  2645. <Paragraphs>1</Paragraphs>
  2646. <ScaleCrop>false</ScaleCrop>
  2647. <Company/>
  2648. <LinksUpToDate>false</LinksUpToDate>
  2649. <CharactersWithSpaces>149</CharactersWithSpaces>
  2650. <SharedDoc>false</SharedDoc>
  2651. <HyperlinksChanged>false</HyperlinksChanged>
  2652. <AppVersion>16.0000</AppVersion>
  2653. </Properties>
  2654. </pkg:xmlData>
  2655. </pkg:part>
  2656. </pkg:package>