test.ftl 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <?mso-application progid="Word.Document"?>
  3. <pkg:package
  4. xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
  5. <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
  6. <pkg:xmlData>
  7. <Relationships
  8. xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  9. <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
  10. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
  11. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
  12. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
  13. </Relationships>
  14. </pkg:xmlData>
  15. </pkg:part>
  16. <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml">
  17. <pkg:xmlData>
  18. <Relationships
  19. xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  20. <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
  21. <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
  22. <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
  23. <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
  24. <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
  25. <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
  26. </Relationships>
  27. </pkg:xmlData>
  28. </pkg:part>
  29. <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
  30. <pkg:xmlData>
  31. <w:document
  32. xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
  33. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  34. xmlns:o="urn:schemas-microsoft-com:office:office"
  35. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  36. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  37. xmlns:v="urn:schemas-microsoft-com:vml"
  38. xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
  39. xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
  40. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  41. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  42. xmlns:w10="urn:schemas-microsoft-com:office:word"
  43. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
  44. xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
  45. xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
  46. xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
  47. xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
  48. xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
  49. <w:body>
  50. <w:p>
  51. <w:pPr>
  52. <w:rPr>
  53. <w:rFonts w:hint="default"/>
  54. </w:rPr>
  55. </w:pPr>
  56. <w:r>
  57. <w:rPr>
  58. <w:rFonts w:hint="default"/>
  59. </w:rPr>
  60. <w:t>一、基本信息(在合适的选择项前打“√”)</w:t>
  61. </w:r>
  62. </w:p>
  63. <w:tbl>
  64. <w:tblPr>
  65. <w:tblStyle w:val="3"/>
  66. <w:tblW w:w="5000" w:type="pct"/>
  67. <w:jc w:val="center"/>
  68. <w:tblBorders>
  69. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  70. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  71. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  72. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  73. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  74. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  75. </w:tblBorders>
  76. <w:tblLayout w:type="autofit"/>
  77. <w:tblCellMar>
  78. <w:top w:w="0" w:type="dxa"/>
  79. <w:left w:w="108" w:type="dxa"/>
  80. <w:bottom w:w="0" w:type="dxa"/>
  81. <w:right w:w="108" w:type="dxa"/>
  82. </w:tblCellMar>
  83. </w:tblPr>
  84. <w:tblGrid>
  85. <w:gridCol w:w="1108"/>
  86. <w:gridCol w:w="1184"/>
  87. <w:gridCol w:w="3073"/>
  88. <w:gridCol w:w="3157"/>
  89. </w:tblGrid>
  90. <w:tr>
  91. <w:tblPrEx>
  92. <w:tblBorders>
  93. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  94. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  95. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  96. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  97. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  98. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  99. </w:tblBorders>
  100. <w:tblCellMar>
  101. <w:top w:w="0" w:type="dxa"/>
  102. <w:left w:w="108" w:type="dxa"/>
  103. <w:bottom w:w="0" w:type="dxa"/>
  104. <w:right w:w="108" w:type="dxa"/>
  105. </w:tblCellMar>
  106. </w:tblPrEx>
  107. <w:trPr>
  108. <w:jc w:val="center"/>
  109. </w:trPr>
  110. <w:tc>
  111. <w:tcPr>
  112. <w:tcW w:w="9962" w:type="dxa"/>
  113. <w:gridSpan w:val="4"/>
  114. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  115. <w:noWrap w:val="0"/>
  116. <w:vAlign w:val="center"/>
  117. </w:tcPr>
  118. <w:p>
  119. <w:pPr>
  120. <w:rPr>
  121. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  122. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  123. </w:rPr>
  124. </w:pPr>
  125. <w:r>
  126. <w:rPr>
  127. <w:rFonts w:hint="default"/>
  128. </w:rPr>
  129. <w:t>项目名称(中文):</w:t>
  130. </w:r>
  131. <w:r>
  132. <w:rPr>
  133. <w:rFonts w:hint="eastAsia"/>
  134. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  135. </w:rPr>
  136. <w:t>${projectName}</w:t>
  137. </w:r>
  138. </w:p>
  139. <w:p>
  140. <w:pPr>
  141. <w:rPr>
  142. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  143. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  144. </w:rPr>
  145. </w:pPr>
  146. <w:r>
  147. <w:rPr>
  148. <w:rFonts w:hint="default"/>
  149. </w:rPr>
  150. <w:t>项目名称(英文):</w:t>
  151. </w:r>
  152. <w:r>
  153. <w:rPr>
  154. <w:rFonts w:hint="eastAsia"/>
  155. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  156. </w:rPr>
  157. <w:t>${projectNameEn}</w:t>
  158. </w:r>
  159. </w:p>
  160. </w:tc>
  161. </w:tr>
  162. <w:tr>
  163. <w:tblPrEx>
  164. <w:tblBorders>
  165. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  166. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  167. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  168. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  169. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  170. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  171. </w:tblBorders>
  172. <w:tblCellMar>
  173. <w:top w:w="0" w:type="dxa"/>
  174. <w:left w:w="108" w:type="dxa"/>
  175. <w:bottom w:w="0" w:type="dxa"/>
  176. <w:right w:w="108" w:type="dxa"/>
  177. </w:tblCellMar>
  178. </w:tblPrEx>
  179. <w:trPr>
  180. <w:jc w:val="center"/>
  181. </w:trPr>
  182. <w:tc>
  183. <w:tcPr>
  184. <w:tcW w:w="9962" w:type="dxa"/>
  185. <w:gridSpan w:val="4"/>
  186. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  187. <w:noWrap w:val="0"/>
  188. <w:vAlign w:val="top"/>
  189. </w:tcPr>
  190. <w:p>
  191. <w:pPr>
  192. <w:rPr>
  193. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  194. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  195. </w:rPr>
  196. </w:pPr>
  197. <w:r>
  198. <w:rPr>
  199. <w:rFonts w:hint="default"/>
  200. </w:rPr>
  201. <w:t xml:space="preserve">项目类型: </w:t>
  202. </w:r>
  203. <w:r>
  204. <w:rPr>
  205. <w:rFonts w:hint="eastAsia"/>
  206. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  207. </w:rPr>
  208. <w:t>${type}</w:t>
  209. </w:r>
  210. </w:p>
  211. </w:tc>
  212. </w:tr>
  213. <w:tr>
  214. <w:tblPrEx>
  215. <w:tblBorders>
  216. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  217. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  218. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  219. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  220. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  221. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  222. </w:tblBorders>
  223. <w:tblCellMar>
  224. <w:top w:w="0" w:type="dxa"/>
  225. <w:left w:w="108" w:type="dxa"/>
  226. <w:bottom w:w="0" w:type="dxa"/>
  227. <w:right w:w="108" w:type="dxa"/>
  228. </w:tblCellMar>
  229. </w:tblPrEx>
  230. <w:trPr>
  231. <w:trHeight w:val="362" w:hRule="atLeast"/>
  232. <w:jc w:val="center"/>
  233. </w:trPr>
  234. <w:tc>
  235. <w:tcPr>
  236. <w:tcW w:w="9962" w:type="dxa"/>
  237. <w:gridSpan w:val="4"/>
  238. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  239. <w:noWrap w:val="0"/>
  240. <w:vAlign w:val="center"/>
  241. </w:tcPr>
  242. <w:p>
  243. <w:pPr>
  244. <w:rPr>
  245. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  246. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  247. </w:rPr>
  248. </w:pPr>
  249. <w:r>
  250. <w:rPr>
  251. <w:rFonts w:hint="default"/>
  252. </w:rPr>
  253. <w:t xml:space="preserve">项目来源: </w:t>
  254. </w:r>
  255. <w:r>
  256. <w:rPr>
  257. <w:rFonts w:hint="eastAsia"/>
  258. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  259. </w:rPr>
  260. <w:t>${source}</w:t>
  261. </w:r>
  262. </w:p>
  263. </w:tc>
  264. </w:tr>
  265. <w:tr>
  266. <w:tblPrEx>
  267. <w:tblBorders>
  268. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  269. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  270. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  271. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  272. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  273. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  274. </w:tblBorders>
  275. <w:tblCellMar>
  276. <w:top w:w="0" w:type="dxa"/>
  277. <w:left w:w="108" w:type="dxa"/>
  278. <w:bottom w:w="0" w:type="dxa"/>
  279. <w:right w:w="108" w:type="dxa"/>
  280. </w:tblCellMar>
  281. </w:tblPrEx>
  282. <w:trPr>
  283. <w:jc w:val="center"/>
  284. </w:trPr>
  285. <w:tc>
  286. <w:tcPr>
  287. <w:tcW w:w="1351" w:type="dxa"/>
  288. <w:vMerge w:val="restart"/>
  289. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  290. <w:noWrap w:val="0"/>
  291. <w:vAlign w:val="center"/>
  292. </w:tcPr>
  293. <w:p>
  294. <w:pPr>
  295. <w:rPr>
  296. <w:rFonts w:hint="default"/>
  297. </w:rPr>
  298. </w:pPr>
  299. <w:r>
  300. <w:rPr>
  301. <w:rFonts w:hint="default"/>
  302. </w:rPr>
  303. <w:t>项目</w:t>
  304. </w:r>
  305. </w:p>
  306. <w:p>
  307. <w:pPr>
  308. <w:rPr/>
  309. </w:pPr>
  310. <w:r>
  311. <w:rPr>
  312. <w:rFonts w:hint="default"/>
  313. </w:rPr>
  314. <w:t>负责人</w:t>
  315. </w:r>
  316. </w:p>
  317. </w:tc>
  318. <w:tc>
  319. <w:tcPr>
  320. <w:tcW w:w="1282" w:type="dxa"/>
  321. <w:vMerge w:val="restart"/>
  322. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  323. <w:noWrap w:val="0"/>
  324. <w:vAlign w:val="center"/>
  325. </w:tcPr>
  326. <w:p>
  327. <w:pPr>
  328. <w:rPr>
  329. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  330. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  331. </w:rPr>
  332. </w:pPr>
  333. <w:r>
  334. <w:rPr>
  335. <w:rFonts w:hint="eastAsia"/>
  336. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  337. </w:rPr>
  338. <w:t>${pl}</w:t>
  339. </w:r>
  340. </w:p>
  341. </w:tc>
  342. <w:tc>
  343. <w:tcPr>
  344. <w:tcW w:w="3557" w:type="dxa"/>
  345. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  346. <w:noWrap w:val="0"/>
  347. <w:vAlign w:val="top"/>
  348. </w:tcPr>
  349. <w:p>
  350. <w:pPr>
  351. <w:rPr>
  352. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  353. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  354. </w:rPr>
  355. </w:pPr>
  356. <w:r>
  357. <w:rPr>
  358. <w:rFonts w:hint="default"/>
  359. </w:rPr>
  360. <w:t xml:space="preserve">职称/职务: </w:t>
  361. </w:r>
  362. <w:r>
  363. <w:rPr>
  364. <w:rFonts w:hint="eastAsia"/>
  365. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  366. </w:rPr>
  367. <w:t>${plDuty}</w:t>
  368. </w:r>
  369. </w:p>
  370. </w:tc>
  371. <w:tc>
  372. <w:tcPr>
  373. <w:tcW w:w="3772" w:type="dxa"/>
  374. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  375. <w:noWrap w:val="0"/>
  376. <w:vAlign w:val="top"/>
  377. </w:tcPr>
  378. <w:p>
  379. <w:pPr>
  380. <w:rPr>
  381. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  382. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  383. </w:rPr>
  384. </w:pPr>
  385. <w:r>
  386. <w:t>Email:</w:t>
  387. </w:r>
  388. <w:r>
  389. <w:rPr>
  390. <w:rFonts w:hint="default"/>
  391. </w:rPr>
  392. <w:t xml:space="preserve"></w:t>
  393. </w:r>
  394. <w:r>
  395. <w:rPr>
  396. <w:rFonts w:hint="eastAsia"/>
  397. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  398. </w:rPr>
  399. <w:t>${plEmail}</w:t>
  400. </w:r>
  401. </w:p>
  402. </w:tc>
  403. </w:tr>
  404. <w:tr>
  405. <w:tblPrEx>
  406. <w:tblBorders>
  407. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  408. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  409. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  410. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  411. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  412. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  413. </w:tblBorders>
  414. <w:tblCellMar>
  415. <w:top w:w="0" w:type="dxa"/>
  416. <w:left w:w="108" w:type="dxa"/>
  417. <w:bottom w:w="0" w:type="dxa"/>
  418. <w:right w:w="108" w:type="dxa"/>
  419. </w:tblCellMar>
  420. </w:tblPrEx>
  421. <w:trPr>
  422. <w:jc w:val="center"/>
  423. </w:trPr>
  424. <w:tc>
  425. <w:tcPr>
  426. <w:tcW w:w="1351" w:type="dxa"/>
  427. <w:vMerge w:val="continue"/>
  428. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  429. <w:noWrap w:val="0"/>
  430. <w:vAlign w:val="center"/>
  431. </w:tcPr>
  432. <w:p>
  433. <w:pPr>
  434. <w:rPr/>
  435. </w:pPr>
  436. </w:p>
  437. </w:tc>
  438. <w:tc>
  439. <w:tcPr>
  440. <w:tcW w:w="1282" w:type="dxa"/>
  441. <w:vMerge w:val="continue"/>
  442. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  443. <w:noWrap w:val="0"/>
  444. <w:vAlign w:val="center"/>
  445. </w:tcPr>
  446. <w:p>
  447. <w:pPr>
  448. <w:rPr/>
  449. </w:pPr>
  450. </w:p>
  451. </w:tc>
  452. <w:tc>
  453. <w:tcPr>
  454. <w:tcW w:w="7329" w:type="dxa"/>
  455. <w:gridSpan w:val="2"/>
  456. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  457. <w:noWrap w:val="0"/>
  458. <w:vAlign w:val="top"/>
  459. </w:tcPr>
  460. <w:p>
  461. <w:pPr>
  462. <w:rPr>
  463. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  464. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  465. </w:rPr>
  466. </w:pPr>
  467. <w:r>
  468. <w:rPr>
  469. <w:rFonts w:hint="default"/>
  470. </w:rPr>
  471. <w:t>办公(实验)室电话:</w:t>
  472. </w:r>
  473. <w:r>
  474. <w:rPr>
  475. <w:rFonts w:hint="eastAsia"/>
  476. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  477. </w:rPr>
  478. <w:t>${plPhone}</w:t>
  479. </w:r>
  480. </w:p>
  481. </w:tc>
  482. </w:tr>
  483. <w:tr>
  484. <w:tblPrEx>
  485. <w:tblBorders>
  486. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  487. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  488. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  489. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  490. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  491. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  492. </w:tblBorders>
  493. <w:tblCellMar>
  494. <w:top w:w="0" w:type="dxa"/>
  495. <w:left w:w="108" w:type="dxa"/>
  496. <w:bottom w:w="0" w:type="dxa"/>
  497. <w:right w:w="108" w:type="dxa"/>
  498. </w:tblCellMar>
  499. </w:tblPrEx>
  500. <w:trPr>
  501. <w:jc w:val="center"/>
  502. </w:trPr>
  503. <w:tc>
  504. <w:tcPr>
  505. <w:tcW w:w="1351" w:type="dxa"/>
  506. <w:vMerge w:val="continue"/>
  507. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  508. <w:noWrap w:val="0"/>
  509. <w:vAlign w:val="center"/>
  510. </w:tcPr>
  511. <w:p>
  512. <w:pPr>
  513. <w:rPr/>
  514. </w:pPr>
  515. </w:p>
  516. </w:tc>
  517. <w:tc>
  518. <w:tcPr>
  519. <w:tcW w:w="1282" w:type="dxa"/>
  520. <w:vMerge w:val="continue"/>
  521. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  522. <w:noWrap w:val="0"/>
  523. <w:vAlign w:val="center"/>
  524. </w:tcPr>
  525. <w:p>
  526. <w:pPr>
  527. <w:rPr/>
  528. </w:pPr>
  529. </w:p>
  530. </w:tc>
  531. <w:tc>
  532. <w:tcPr>
  533. <w:tcW w:w="7329" w:type="dxa"/>
  534. <w:gridSpan w:val="2"/>
  535. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  536. <w:noWrap w:val="0"/>
  537. <w:vAlign w:val="top"/>
  538. </w:tcPr>
  539. <w:p>
  540. <w:pPr>
  541. <w:rPr>
  542. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  543. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  544. </w:rPr>
  545. </w:pPr>
  546. <w:r>
  547. <w:rPr>
  548. <w:rFonts w:hint="default"/>
  549. </w:rPr>
  550. <w:t>实验室地址:</w:t>
  551. </w:r>
  552. <w:r>
  553. <w:rPr>
  554. <w:rFonts w:hint="eastAsia"/>
  555. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  556. </w:rPr>
  557. <w:t>${addr}</w:t>
  558. </w:r>
  559. </w:p>
  560. </w:tc>
  561. </w:tr>
  562. <w:tr>
  563. <w:tblPrEx>
  564. <w:tblBorders>
  565. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  566. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  567. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  568. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  569. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  570. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  571. </w:tblBorders>
  572. <w:tblCellMar>
  573. <w:top w:w="0" w:type="dxa"/>
  574. <w:left w:w="108" w:type="dxa"/>
  575. <w:bottom w:w="0" w:type="dxa"/>
  576. <w:right w:w="108" w:type="dxa"/>
  577. </w:tblCellMar>
  578. </w:tblPrEx>
  579. <w:trPr>
  580. <w:jc w:val="center"/>
  581. </w:trPr>
  582. <w:tc>
  583. <w:tcPr>
  584. <w:tcW w:w="1351" w:type="dxa"/>
  585. <w:vMerge w:val="restart"/>
  586. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  587. <w:noWrap w:val="0"/>
  588. <w:vAlign w:val="center"/>
  589. </w:tcPr>
  590. <w:p>
  591. <w:pPr>
  592. <w:rPr/>
  593. </w:pPr>
  594. <w:r>
  595. <w:rPr>
  596. <w:rFonts w:hint="default"/>
  597. </w:rPr>
  598. <w:t>联系人</w:t>
  599. </w:r>
  600. </w:p>
  601. </w:tc>
  602. <w:tc>
  603. <w:tcPr>
  604. <w:tcW w:w="1282" w:type="dxa"/>
  605. <w:vMerge w:val="restart"/>
  606. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  607. <w:noWrap w:val="0"/>
  608. <w:vAlign w:val="center"/>
  609. </w:tcPr>
  610. <w:p>
  611. <w:pPr>
  612. <w:rPr>
  613. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  614. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  615. </w:rPr>
  616. </w:pPr>
  617. <w:r>
  618. <w:rPr>
  619. <w:rFonts w:hint="eastAsia"/>
  620. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  621. </w:rPr>
  622. <w:t>${lxr}</w:t>
  623. </w:r>
  624. </w:p>
  625. </w:tc>
  626. <w:tc>
  627. <w:tcPr>
  628. <w:tcW w:w="3557" w:type="dxa"/>
  629. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  630. <w:noWrap w:val="0"/>
  631. <w:vAlign w:val="top"/>
  632. </w:tcPr>
  633. <w:p>
  634. <w:pPr>
  635. <w:rPr>
  636. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  637. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  638. </w:rPr>
  639. </w:pPr>
  640. <w:r>
  641. <w:rPr>
  642. <w:rFonts w:hint="default"/>
  643. </w:rPr>
  644. <w:t>职称/职务:</w:t>
  645. </w:r>
  646. <w:r>
  647. <w:rPr>
  648. <w:rFonts w:hint="eastAsia"/>
  649. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  650. </w:rPr>
  651. <w:t>${lxrDuty}</w:t>
  652. </w:r>
  653. </w:p>
  654. </w:tc>
  655. <w:tc>
  656. <w:tcPr>
  657. <w:tcW w:w="3772" w:type="dxa"/>
  658. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  659. <w:noWrap w:val="0"/>
  660. <w:vAlign w:val="top"/>
  661. </w:tcPr>
  662. <w:p>
  663. <w:pPr>
  664. <w:rPr>
  665. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  666. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  667. </w:rPr>
  668. </w:pPr>
  669. <w:r>
  670. <w:t>Email:</w:t>
  671. </w:r>
  672. <w:r>
  673. <w:rPr>
  674. <w:rFonts w:hint="eastAsia"/>
  675. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  676. </w:rPr>
  677. <w:t>${lxrEmail}</w:t>
  678. </w:r>
  679. </w:p>
  680. </w:tc>
  681. </w:tr>
  682. <w:tr>
  683. <w:tblPrEx>
  684. <w:tblBorders>
  685. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  686. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  687. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  688. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  689. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  690. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  691. </w:tblBorders>
  692. <w:tblCellMar>
  693. <w:top w:w="0" w:type="dxa"/>
  694. <w:left w:w="108" w:type="dxa"/>
  695. <w:bottom w:w="0" w:type="dxa"/>
  696. <w:right w:w="108" w:type="dxa"/>
  697. </w:tblCellMar>
  698. </w:tblPrEx>
  699. <w:trPr>
  700. <w:jc w:val="center"/>
  701. </w:trPr>
  702. <w:tc>
  703. <w:tcPr>
  704. <w:tcW w:w="1351" w:type="dxa"/>
  705. <w:vMerge w:val="continue"/>
  706. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  707. <w:noWrap w:val="0"/>
  708. <w:vAlign w:val="top"/>
  709. </w:tcPr>
  710. <w:p>
  711. <w:pPr>
  712. <w:rPr/>
  713. </w:pPr>
  714. </w:p>
  715. </w:tc>
  716. <w:tc>
  717. <w:tcPr>
  718. <w:tcW w:w="1282" w:type="dxa"/>
  719. <w:vMerge w:val="continue"/>
  720. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  721. <w:noWrap w:val="0"/>
  722. <w:vAlign w:val="top"/>
  723. </w:tcPr>
  724. <w:p>
  725. <w:pPr>
  726. <w:rPr/>
  727. </w:pPr>
  728. </w:p>
  729. </w:tc>
  730. <w:tc>
  731. <w:tcPr>
  732. <w:tcW w:w="7329" w:type="dxa"/>
  733. <w:gridSpan w:val="2"/>
  734. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  735. <w:noWrap w:val="0"/>
  736. <w:vAlign w:val="top"/>
  737. </w:tcPr>
  738. <w:p>
  739. <w:pPr>
  740. <w:rPr>
  741. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  742. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  743. </w:rPr>
  744. </w:pPr>
  745. <w:r>
  746. <w:rPr>
  747. <w:rFonts w:hint="default"/>
  748. </w:rPr>
  749. <w:t>电话:</w:t>
  750. </w:r>
  751. <w:r>
  752. <w:rPr>
  753. <w:rFonts w:hint="eastAsia"/>
  754. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  755. </w:rPr>
  756. <w:t>${lxrPhone}</w:t>
  757. </w:r>
  758. </w:p>
  759. </w:tc>
  760. </w:tr>
  761. <w:tr>
  762. <w:tblPrEx>
  763. <w:tblBorders>
  764. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  765. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  766. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  767. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  768. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  769. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  770. </w:tblBorders>
  771. <w:tblCellMar>
  772. <w:top w:w="0" w:type="dxa"/>
  773. <w:left w:w="108" w:type="dxa"/>
  774. <w:bottom w:w="0" w:type="dxa"/>
  775. <w:right w:w="108" w:type="dxa"/>
  776. </w:tblCellMar>
  777. </w:tblPrEx>
  778. <w:trPr>
  779. <w:jc w:val="center"/>
  780. </w:trPr>
  781. <w:tc>
  782. <w:tcPr>
  783. <w:tcW w:w="2633" w:type="dxa"/>
  784. <w:gridSpan w:val="2"/>
  785. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  786. <w:noWrap w:val="0"/>
  787. <w:vAlign w:val="center"/>
  788. </w:tcPr>
  789. <w:p>
  790. <w:pPr>
  791. <w:rPr/>
  792. </w:pPr>
  793. <w:r>
  794. <w:rPr>
  795. <w:rFonts w:hint="default"/>
  796. </w:rPr>
  797. <w:t>拟申请的有效期限</w:t>
  798. </w:r>
  799. </w:p>
  800. </w:tc>
  801. <w:tc>
  802. <w:tcPr>
  803. <w:tcW w:w="7329" w:type="dxa"/>
  804. <w:gridSpan w:val="2"/>
  805. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  806. <w:noWrap w:val="0"/>
  807. <w:vAlign w:val="top"/>
  808. </w:tcPr>
  809. <w:p>
  810. <w:pPr>
  811. <w:rPr>
  812. <w:rFonts w:hint="default" w:eastAsia="仿宋"/>
  813. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  814. </w:rPr>
  815. </w:pPr>
  816. <w:r>
  817. <w:rPr>
  818. <w:rFonts w:hint="default"/>
  819. </w:rPr>
  820. <w:t xml:space="preserve"></w:t>
  821. </w:r>
  822. <w:r>
  823. <w:rPr>
  824. <w:rFonts w:hint="eastAsia"/>
  825. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  826. </w:rPr>
  827. <w:t>${projectDate}</w:t>
  828. </w:r>
  829. </w:p>
  830. </w:tc>
  831. </w:tr>
  832. </w:tbl>
  833. <w:p/>
  834. <w:p/>
  835. <w:p>
  836. <w:pPr>
  837. <w:rPr/>
  838. </w:pPr>
  839. <w:r>
  840. <w:rPr>
  841. <w:rFonts w:hint="default"/>
  842. </w:rPr>
  843. <w:t>二、实验人员信息</w:t>
  844. </w:r>
  845. </w:p>
  846. <w:p>
  847. <w:pPr>
  848. <w:rPr/>
  849. </w:pPr>
  850. <w:r>
  851. <w:rPr>
  852. <w:rFonts w:hint="default"/>
  853. </w:rPr>
  854. <w:t>所列实验人员必须是经过培训的、具有资质才能开展动物实验工作</w:t>
  855. </w:r>
  856. </w:p>
  857. <w:tbl>
  858. <w:tblPr>
  859. <w:tblStyle w:val="3"/>
  860. <w:tblW w:w="4997" w:type="pct"/>
  861. <w:tblInd w:w="0" w:type="dxa"/>
  862. <w:tblBorders>
  863. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  864. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  865. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  866. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  867. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  868. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  869. </w:tblBorders>
  870. <w:tblLayout w:type="autofit"/>
  871. <w:tblCellMar>
  872. <w:top w:w="0" w:type="dxa"/>
  873. <w:left w:w="108" w:type="dxa"/>
  874. <w:bottom w:w="0" w:type="dxa"/>
  875. <w:right w:w="108" w:type="dxa"/>
  876. </w:tblCellMar>
  877. </w:tblPr>
  878. <w:tblGrid>
  879. <w:gridCol w:w="1596"/>
  880. <w:gridCol w:w="2052"/>
  881. <w:gridCol w:w="4869"/>
  882. </w:tblGrid>
  883. <w:tr>
  884. <w:tblPrEx>
  885. <w:tblBorders>
  886. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  887. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  888. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  889. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  890. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  891. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  892. </w:tblBorders>
  893. <w:tblCellMar>
  894. <w:top w:w="0" w:type="dxa"/>
  895. <w:left w:w="108" w:type="dxa"/>
  896. <w:bottom w:w="0" w:type="dxa"/>
  897. <w:right w:w="108" w:type="dxa"/>
  898. </w:tblCellMar>
  899. </w:tblPrEx>
  900. <w:trPr>
  901. <w:trHeight w:val="400" w:hRule="atLeast"/>
  902. </w:trPr>
  903. <w:tc>
  904. <w:tcPr>
  905. <w:tcW w:w="1822" w:type="dxa"/>
  906. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  907. <w:noWrap w:val="0"/>
  908. <w:vAlign w:val="center"/>
  909. </w:tcPr>
  910. <w:p>
  911. <w:pPr>
  912. <w:rPr/>
  913. </w:pPr>
  914. <w:r>
  915. <w:rPr>
  916. <w:rFonts w:hint="default"/>
  917. </w:rPr>
  918. <w:t>姓名</w:t>
  919. </w:r>
  920. </w:p>
  921. </w:tc>
  922. <w:tc>
  923. <w:tcPr>
  924. <w:tcW w:w="2370" w:type="dxa"/>
  925. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  926. <w:noWrap w:val="0"/>
  927. <w:vAlign w:val="center"/>
  928. </w:tcPr>
  929. <w:p>
  930. <w:pPr>
  931. <w:rPr>
  932. <w:rFonts w:hint="default"/>
  933. </w:rPr>
  934. </w:pPr>
  935. <w:r>
  936. <w:rPr>
  937. <w:rFonts w:hint="default"/>
  938. </w:rPr>
  939. <w:t>资质证书编号</w:t>
  940. </w:r>
  941. </w:p>
  942. </w:tc>
  943. <w:tc>
  944. <w:tcPr>
  945. <w:tcW w:w="5764" w:type="dxa"/>
  946. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  947. <w:noWrap w:val="0"/>
  948. <w:vAlign w:val="center"/>
  949. </w:tcPr>
  950. <w:p>
  951. <w:pPr>
  952. <w:rPr/>
  953. </w:pPr>
  954. <w:r>
  955. <w:rPr>
  956. <w:rFonts w:hint="default"/>
  957. </w:rPr>
  958. <w:t>在本项目中的职责</w:t>
  959. </w:r>
  960. </w:p>
  961. </w:tc>
  962. </w:tr>
  963. <#list syy as item>
  964. <w:tr>
  965. <w:tblPrEx>
  966. <w:tblBorders>
  967. <w:top w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  968. <w:left w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  969. <w:bottom w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  970. <w:right w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  971. <w:insideH w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  972. <w:insideV w:val="single" w:color="auto" w:sz="4" w:space="0"/>
  973. </w:tblBorders>
  974. <w:tblCellMar>
  975. <w:top w:w="0" w:type="dxa"/>
  976. <w:left w:w="108" w:type="dxa"/>
  977. <w:bottom w:w="0" w:type="dxa"/>
  978. <w:right w:w="108" w:type="dxa"/>
  979. </w:tblCellMar>
  980. </w:tblPrEx>
  981. <w:trPr>
  982. <w:trHeight w:val="504" w:hRule="atLeast"/>
  983. </w:trPr>
  984. <w:tc>
  985. <w:tcPr>
  986. <w:tcW w:w="1822" w:type="dxa"/>
  987. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  988. <w:noWrap w:val="0"/>
  989. <w:vAlign w:val="top"/>
  990. </w:tcPr>
  991. <w:p>
  992. <w:pPr>
  993. <w:rPr/>
  994. </w:pPr>
  995. <w:r>
  996. <w:rPr>
  997. <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
  998. <w:color w:val="000000"/>
  999. <w:szCs w:val="20"/>
  1000. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  1001. </w:rPr>
  1002. <w:t>${item.username}</w:t>
  1003. </w:r>
  1004. </w:p>
  1005. </w:tc>
  1006. <w:tc>
  1007. <w:tcPr>
  1008. <w:tcW w:w="2370" w:type="dxa"/>
  1009. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  1010. <w:noWrap w:val="0"/>
  1011. <w:vAlign w:val="top"/>
  1012. </w:tcPr>
  1013. <w:p>
  1014. <w:pPr>
  1015. <w:rPr/>
  1016. </w:pPr>
  1017. <w:r>
  1018. <w:rPr>
  1019. <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
  1020. <w:color w:val="000000"/>
  1021. <w:szCs w:val="20"/>
  1022. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  1023. </w:rPr>
  1024. <w:t>${item.certNo}</w:t>
  1025. </w:r>
  1026. </w:p>
  1027. </w:tc>
  1028. <w:tc>
  1029. <w:tcPr>
  1030. <w:tcW w:w="5764" w:type="dxa"/>
  1031. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  1032. <w:noWrap w:val="0"/>
  1033. <w:vAlign w:val="top"/>
  1034. </w:tcPr>
  1035. <w:p>
  1036. <w:pPr>
  1037. <w:rPr/>
  1038. </w:pPr>
  1039. <w:r>
  1040. <w:rPr>
  1041. <w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="仿宋" w:cs="宋体"/>
  1042. <w:color w:val="000000"/>
  1043. <w:szCs w:val="20"/>
  1044. <w:lang w:val="en-US" w:eastAsia="zh-CN"/>
  1045. </w:rPr>
  1046. <w:t>${item.duty}</w:t>
  1047. </w:r>
  1048. </w:p>
  1049. </w:tc>
  1050. </w:tr>
  1051. </#list>
  1052. </w:tbl>
  1053. <w:p/>
  1054. <w:sectPr>
  1055. <w:pgSz w:w="11906" w:h="16838"/>
  1056. <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
  1057. <w:cols w:space="425" w:num="1"/>
  1058. <w:docGrid w:type="lines" w:linePitch="312" w:charSpace="0"/>
  1059. </w:sectPr>
  1060. </w:body>
  1061. </w:document>
  1062. </pkg:xmlData>
  1063. </pkg:part>
  1064. <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml">
  1065. <pkg:xmlData>
  1066. <Properties
  1067. xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
  1068. xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  1069. <Template>Normal.dotm</Template>
  1070. <Pages>1</Pages>
  1071. <Words>0</Words>
  1072. <Characters>0</Characters>
  1073. <Lines>0</Lines>
  1074. <Paragraphs>0</Paragraphs>
  1075. <TotalTime>2</TotalTime>
  1076. <ScaleCrop>false</ScaleCrop>
  1077. <LinksUpToDate>false</LinksUpToDate>
  1078. <CharactersWithSpaces>0</CharactersWithSpaces>
  1079. <Application>WPS Office_12.1.0.16120_F1E327BC-269C-435d-A152-05C5408002CA</Application>
  1080. <DocSecurity>0</DocSecurity>
  1081. </Properties>
  1082. </pkg:xmlData>
  1083. </pkg:part>
  1084. <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml">
  1085. <pkg:xmlData>
  1086. <cp:coreProperties
  1087. xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
  1088. xmlns:dc="http://purl.org/dc/elements/1.1/"
  1089. xmlns:dcterms="http://purl.org/dc/terms/"
  1090. xmlns:dcmitype="http://purl.org/dc/dcmitype/"
  1091. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  1092. <dcterms:created xsi:type="dcterms:W3CDTF">2024-01-08T02:23:35Z</dcterms:created>
  1093. <dc:creator>SY-0001</dc:creator>
  1094. <cp:lastModifiedBy>樱九</cp:lastModifiedBy>
  1095. <dcterms:modified xsi:type="dcterms:W3CDTF">2024-01-08T02:26:48Z</dcterms:modified>
  1096. </cp:coreProperties>
  1097. </pkg:xmlData>
  1098. </pkg:part>
  1099. <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml">
  1100. <pkg:xmlData>
  1101. <Properties
  1102. xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
  1103. xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  1104. <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
  1105. <vt:lpwstr>2052-12.1.0.16120</vt:lpwstr>
  1106. </property>
  1107. <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="3" name="ICV">
  1108. <vt:lpwstr>CA3ADD0227CE494483383BB43123B202_13</vt:lpwstr>
  1109. </property>
  1110. </Properties>
  1111. </pkg:xmlData>
  1112. </pkg:part>
  1113. <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
  1114. <pkg:xmlData>
  1115. <w:endnotes
  1116. xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
  1117. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1118. xmlns:o="urn:schemas-microsoft-com:office:office"
  1119. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1120. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  1121. xmlns:v="urn:schemas-microsoft-com:vml"
  1122. xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
  1123. xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
  1124. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1125. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1126. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
  1127. xmlns:w10="urn:schemas-microsoft-com:office:word"
  1128. xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
  1129. xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
  1130. xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
  1131. xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
  1132. xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
  1133. <w:endnote w:type="separator" w:id="0">
  1134. <w:p>
  1135. <w:pPr>
  1136. <w:spacing w:line="240" w:lineRule="auto"/>
  1137. </w:pPr>
  1138. <w:r>
  1139. <w:separator/>
  1140. </w:r>
  1141. </w:p>
  1142. </w:endnote>
  1143. <w:endnote w:type="continuationSeparator" w:id="1">
  1144. <w:p>
  1145. <w:pPr>
  1146. <w:spacing w:line="240" w:lineRule="auto"/>
  1147. </w:pPr>
  1148. <w:r>
  1149. <w:continuationSeparator/>
  1150. </w:r>
  1151. </w:p>
  1152. </w:endnote>
  1153. </w:endnotes>
  1154. </pkg:xmlData>
  1155. </pkg:part>
  1156. <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
  1157. <pkg:xmlData>
  1158. <w:fonts
  1159. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1160. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1161. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1162. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" mc:Ignorable="w14">
  1163. <w:font w:name="Times New Roman">
  1164. <w:panose1 w:val="02020603050405020304"/>
  1165. <w:charset w:val="00"/>
  1166. <w:family w:val="roman"/>
  1167. <w:pitch w:val="variable"/>
  1168. <w:sig w:usb0="20007A87" w:usb1="80000000" w:usb2="00000008" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
  1169. </w:font>
  1170. <w:font w:name="宋体">
  1171. <w:panose1 w:val="02010600030101010101"/>
  1172. <w:charset w:val="86"/>
  1173. <w:family w:val="auto"/>
  1174. <w:pitch w:val="default"/>
  1175. <w:sig w:usb0="00000203" w:usb1="288F0000" w:usb2="00000006" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  1176. </w:font>
  1177. <w:font w:name="Wingdings">
  1178. <w:panose1 w:val="05000000000000000000"/>
  1179. <w:charset w:val="02"/>
  1180. <w:family w:val="auto"/>
  1181. <w:pitch w:val="default"/>
  1182. <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
  1183. </w:font>
  1184. <w:font w:name="Arial">
  1185. <w:panose1 w:val="020B0604020202020204"/>
  1186. <w:charset w:val="01"/>
  1187. <w:family w:val="swiss"/>
  1188. <w:pitch w:val="default"/>
  1189. <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
  1190. </w:font>
  1191. <w:font w:name="黑体">
  1192. <w:panose1 w:val="02010609060101010101"/>
  1193. <w:charset w:val="86"/>
  1194. <w:family w:val="auto"/>
  1195. <w:pitch w:val="default"/>
  1196. <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  1197. </w:font>
  1198. <w:font w:name="Courier New">
  1199. <w:panose1 w:val="02070309020205020404"/>
  1200. <w:charset w:val="01"/>
  1201. <w:family w:val="modern"/>
  1202. <w:pitch w:val="default"/>
  1203. <w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="400001FF" w:csb1="FFFF0000"/>
  1204. </w:font>
  1205. <w:font w:name="Symbol">
  1206. <w:panose1 w:val="05050102010706020507"/>
  1207. <w:charset w:val="02"/>
  1208. <w:family w:val="roman"/>
  1209. <w:pitch w:val="default"/>
  1210. <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/>
  1211. </w:font>
  1212. <w:font w:name="Calibri">
  1213. <w:panose1 w:val="020F0502020204030204"/>
  1214. <w:charset w:val="00"/>
  1215. <w:family w:val="swiss"/>
  1216. <w:pitch w:val="default"/>
  1217. <w:sig w:usb0="E4002EFF" w:usb1="C200247B" w:usb2="00000009" w:usb3="00000000" w:csb0="200001FF" w:csb1="00000000"/>
  1218. </w:font>
  1219. <w:font w:name="微软雅黑">
  1220. <w:panose1 w:val="020B0503020204020204"/>
  1221. <w:charset w:val="86"/>
  1222. <w:family w:val="auto"/>
  1223. <w:pitch w:val="default"/>
  1224. <w:sig w:usb0="80000287" w:usb1="2ACF3C50" w:usb2="00000016" w:usb3="00000000" w:csb0="0004001F" w:csb1="00000000"/>
  1225. </w:font>
  1226. <w:font w:name="Tahoma">
  1227. <w:panose1 w:val="020B0604030504040204"/>
  1228. <w:charset w:val="00"/>
  1229. <w:family w:val="auto"/>
  1230. <w:pitch w:val="default"/>
  1231. <w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="200101FF" w:csb1="20280000"/>
  1232. </w:font>
  1233. <w:font w:name="仿宋">
  1234. <w:panose1 w:val="02010609060101010101"/>
  1235. <w:charset w:val="86"/>
  1236. <w:family w:val="auto"/>
  1237. <w:pitch w:val="default"/>
  1238. <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
  1239. </w:font>
  1240. </w:fonts>
  1241. </pkg:xmlData>
  1242. </pkg:part>
  1243. <pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
  1244. <pkg:xmlData>
  1245. <w:footnotes
  1246. xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
  1247. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1248. xmlns:o="urn:schemas-microsoft-com:office:office"
  1249. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1250. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  1251. xmlns:v="urn:schemas-microsoft-com:vml"
  1252. xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
  1253. xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
  1254. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1255. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1256. xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
  1257. xmlns:w10="urn:schemas-microsoft-com:office:word"
  1258. xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
  1259. xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
  1260. xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
  1261. xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
  1262. xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14 w15 wp14">
  1263. <w:footnote w:type="separator" w:id="0">
  1264. <w:p>
  1265. <w:pPr>
  1266. <w:spacing w:line="560" w:lineRule="auto"/>
  1267. </w:pPr>
  1268. <w:r>
  1269. <w:separator/>
  1270. </w:r>
  1271. </w:p>
  1272. </w:footnote>
  1273. <w:footnote w:type="continuationSeparator" w:id="1">
  1274. <w:p>
  1275. <w:pPr>
  1276. <w:spacing w:line="560" w:lineRule="auto"/>
  1277. </w:pPr>
  1278. <w:r>
  1279. <w:continuationSeparator/>
  1280. </w:r>
  1281. </w:p>
  1282. </w:footnote>
  1283. </w:footnotes>
  1284. </pkg:xmlData>
  1285. </pkg:part>
  1286. <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
  1287. <pkg:xmlData>
  1288. <w:settings
  1289. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1290. xmlns:o="urn:schemas-microsoft-com:office:office"
  1291. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1292. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  1293. xmlns:v="urn:schemas-microsoft-com:vml"
  1294. xmlns:w10="urn:schemas-microsoft-com:office:word"
  1295. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1296. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1297. xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
  1298. xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
  1299. <w:zoom w:percent="120"/>
  1300. <w:embedSystemFonts/>
  1301. <w:bordersDoNotSurroundHeader w:val="1"/>
  1302. <w:bordersDoNotSurroundFooter w:val="1"/>
  1303. <w:documentProtection w:enforcement="0"/>
  1304. <w:defaultTabStop w:val="420"/>
  1305. <w:drawingGridVerticalSpacing w:val="156"/>
  1306. <w:displayHorizontalDrawingGridEvery w:val="0"/>
  1307. <w:displayVerticalDrawingGridEvery w:val="2"/>
  1308. <w:characterSpacingControl w:val="compressPunctuation"/>
  1309. <w:footnotePr>
  1310. <w:footnote w:id="0"/>
  1311. <w:footnote w:id="1"/>
  1312. </w:footnotePr>
  1313. <w:endnotePr>
  1314. <w:endnote w:id="0"/>
  1315. <w:endnote w:id="1"/>
  1316. </w:endnotePr>
  1317. <w:compat>
  1318. <w:spaceForUL/>
  1319. <w:balanceSingleByteDoubleByteWidth/>
  1320. <w:doNotLeaveBackslashAlone/>
  1321. <w:ulTrailSpace/>
  1322. <w:doNotExpandShiftReturn/>
  1323. <w:adjustLineHeightInTable/>
  1324. <w:useFELayout/>
  1325. <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
  1326. <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1327. <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1328. <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
  1329. </w:compat>
  1330. <w:docVars>
  1331. <w:docVar w:name="commondata" w:val="eyJoZGlkIjoiNDZhNmMyMWI3ZGViNTcxNzkxZDYxOWJmYzE4MTQ1Y2UifQ=="/>
  1332. </w:docVars>
  1333. <w:rsids>
  1334. <w:rsidRoot w:val="00000000"/>
  1335. <w:rsid w:val="038325D2"/>
  1336. <w:rsid w:val="0C61547A"/>
  1337. <w:rsid w:val="22877591"/>
  1338. <w:rsid w:val="460327CE"/>
  1339. <w:rsid w:val="53733096"/>
  1340. <w:rsid w:val="59431BC5"/>
  1341. <w:rsid w:val="634C7460"/>
  1342. <w:rsid w:val="72760055"/>
  1343. </w:rsids>
  1344. <m:mathPr>
  1345. <m:mathFont m:val="Cambria Math"/>
  1346. <m:brkBin m:val="before"/>
  1347. <m:brkBinSub m:val="--"/>
  1348. <m:smallFrac m:val="0"/>
  1349. <m:dispDef/>
  1350. <m:lMargin m:val="0"/>
  1351. <m:rMargin m:val="0"/>
  1352. <m:defJc m:val="centerGroup"/>
  1353. <m:wrapIndent m:val="1440"/>
  1354. <m:intLim m:val="subSup"/>
  1355. <m:naryLim m:val="undOvr"/>
  1356. </m:mathPr>
  1357. <w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/>
  1358. <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"/>
  1359. <w:doNotIncludeSubdocsInStats/>
  1360. </w:settings>
  1361. </pkg:xmlData>
  1362. </pkg:part>
  1363. <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
  1364. <pkg:xmlData>
  1365. <w:styles
  1366. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  1367. xmlns:o="urn:schemas-microsoft-com:office:office"
  1368. xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
  1369. xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
  1370. xmlns:v="urn:schemas-microsoft-com:vml"
  1371. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  1372. xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
  1373. xmlns:w10="urn:schemas-microsoft-com:office:word"
  1374. xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
  1375. xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData" mc:Ignorable="w14">
  1376. <w:docDefaults>
  1377. <w:rPrDefault>
  1378. <w:rPr>
  1379. <w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:cstheme="minorBidi"/>
  1380. </w:rPr>
  1381. </w:rPrDefault>
  1382. <w:pPrDefault/>
  1383. </w:docDefaults>
  1384. <w:latentStyles w:count="260" w:defQFormat="0" w:defUnhideWhenUsed="1" w:defSemiHidden="1" w:defUIPriority="99" w:defLockedState="0">
  1385. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal"/>
  1386. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="heading 1"/>
  1387. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="heading 2"/>
  1388. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 3"/>
  1389. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 4"/>
  1390. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 5"/>
  1391. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 6"/>
  1392. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 7"/>
  1393. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 8"/>
  1394. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="heading 9"/>
  1395. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 1"/>
  1396. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 2"/>
  1397. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 3"/>
  1398. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 4"/>
  1399. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 5"/>
  1400. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 6"/>
  1401. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 7"/>
  1402. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 8"/>
  1403. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index 9"/>
  1404. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 1"/>
  1405. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 2"/>
  1406. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 3"/>
  1407. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 4"/>
  1408. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 5"/>
  1409. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 6"/>
  1410. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 7"/>
  1411. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 8"/>
  1412. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toc 9"/>
  1413. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal Indent"/>
  1414. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote text"/>
  1415. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation text"/>
  1416. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="header"/>
  1417. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footer"/>
  1418. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="index heading"/>
  1419. <w:lsdException w:qFormat="1" w:uiPriority="0" w:name="caption"/>
  1420. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="table of figures"/>
  1421. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope address"/>
  1422. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="envelope return"/>
  1423. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="footnote reference"/>
  1424. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation reference"/>
  1425. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="line number"/>
  1426. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="page number"/>
  1427. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote reference"/>
  1428. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="endnote text"/>
  1429. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="table of authorities"/>
  1430. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="macro"/>
  1431. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="toa heading"/>
  1432. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List"/>
  1433. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet"/>
  1434. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number"/>
  1435. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 2"/>
  1436. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 3"/>
  1437. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 4"/>
  1438. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List 5"/>
  1439. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 2"/>
  1440. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 3"/>
  1441. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 4"/>
  1442. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Bullet 5"/>
  1443. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 2"/>
  1444. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 3"/>
  1445. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 4"/>
  1446. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Number 5"/>
  1447. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Title"/>
  1448. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Closing"/>
  1449. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Signature"/>
  1450. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Default Paragraph Font"/>
  1451. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text"/>
  1452. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent"/>
  1453. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue"/>
  1454. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 2"/>
  1455. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 3"/>
  1456. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 4"/>
  1457. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="List Continue 5"/>
  1458. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Message Header"/>
  1459. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Subtitle"/>
  1460. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Salutation"/>
  1461. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Date"/>
  1462. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent"/>
  1463. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text First Indent 2"/>
  1464. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Note Heading"/>
  1465. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 2"/>
  1466. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text 3"/>
  1467. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent 2"/>
  1468. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Body Text Indent 3"/>
  1469. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Block Text"/>
  1470. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Hyperlink"/>
  1471. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="FollowedHyperlink"/>
  1472. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Strong"/>
  1473. <w:lsdException w:qFormat="1" w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Emphasis"/>
  1474. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Document Map"/>
  1475. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Plain Text"/>
  1476. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="E-mail Signature"/>
  1477. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Normal (Web)"/>
  1478. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Acronym"/>
  1479. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Address"/>
  1480. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Cite"/>
  1481. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Code"/>
  1482. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Definition"/>
  1483. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Keyboard"/>
  1484. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Preformatted"/>
  1485. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Sample"/>
  1486. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Typewriter"/>
  1487. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="HTML Variable"/>
  1488. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:name="Normal Table"/>
  1489. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="annotation subject"/>
  1490. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 1"/>
  1491. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 2"/>
  1492. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Simple 3"/>
  1493. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 1"/>
  1494. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 2"/>
  1495. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 3"/>
  1496. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Classic 4"/>
  1497. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 1"/>
  1498. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 2"/>
  1499. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Colorful 3"/>
  1500. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 1"/>
  1501. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 2"/>
  1502. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 3"/>
  1503. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 4"/>
  1504. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Columns 5"/>
  1505. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 1"/>
  1506. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 2"/>
  1507. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 3"/>
  1508. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 4"/>
  1509. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 5"/>
  1510. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 6"/>
  1511. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 7"/>
  1512. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid 8"/>
  1513. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 1"/>
  1514. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 2"/>
  1515. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 3"/>
  1516. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 4"/>
  1517. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 5"/>
  1518. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 6"/>
  1519. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 7"/>
  1520. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table List 8"/>
  1521. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 1"/>
  1522. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 2"/>
  1523. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table 3D effects 3"/>
  1524. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Contemporary"/>
  1525. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Elegant"/>
  1526. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Professional"/>
  1527. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Subtle 1"/>
  1528. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Subtle 2"/>
  1529. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 1"/>
  1530. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 2"/>
  1531. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Web 3"/>
  1532. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Balloon Text"/>
  1533. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Grid"/>
  1534. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="0" w:semiHidden="0" w:name="Table Theme"/>
  1535. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading"/>
  1536. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List"/>
  1537. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid"/>
  1538. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1"/>
  1539. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2"/>
  1540. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1"/>
  1541. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2"/>
  1542. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1"/>
  1543. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2"/>
  1544. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3"/>
  1545. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List"/>
  1546. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading"/>
  1547. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List"/>
  1548. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid"/>
  1549. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 1"/>
  1550. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 1"/>
  1551. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 1"/>
  1552. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 1"/>
  1553. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 1"/>
  1554. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 1"/>
  1555. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 1"/>
  1556. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 1"/>
  1557. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 1"/>
  1558. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 1"/>
  1559. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 1"/>
  1560. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 1"/>
  1561. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 1"/>
  1562. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 1"/>
  1563. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 2"/>
  1564. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 2"/>
  1565. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 2"/>
  1566. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 2"/>
  1567. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 2"/>
  1568. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 2"/>
  1569. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 2"/>
  1570. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 2"/>
  1571. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 2"/>
  1572. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 2"/>
  1573. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 2"/>
  1574. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 2"/>
  1575. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 2"/>
  1576. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 2"/>
  1577. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 3"/>
  1578. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 3"/>
  1579. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 3"/>
  1580. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 3"/>
  1581. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 3"/>
  1582. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 3"/>
  1583. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 3"/>
  1584. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 3"/>
  1585. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 3"/>
  1586. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 3"/>
  1587. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 3"/>
  1588. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 3"/>
  1589. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 3"/>
  1590. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 3"/>
  1591. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 4"/>
  1592. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 4"/>
  1593. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 4"/>
  1594. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 4"/>
  1595. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 4"/>
  1596. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 4"/>
  1597. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 4"/>
  1598. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 4"/>
  1599. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 4"/>
  1600. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 4"/>
  1601. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 4"/>
  1602. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 4"/>
  1603. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 4"/>
  1604. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 4"/>
  1605. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 5"/>
  1606. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 5"/>
  1607. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 5"/>
  1608. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 5"/>
  1609. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 5"/>
  1610. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 5"/>
  1611. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 5"/>
  1612. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 5"/>
  1613. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 5"/>
  1614. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 5"/>
  1615. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 5"/>
  1616. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 5"/>
  1617. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 5"/>
  1618. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 5"/>
  1619. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="60" w:semiHidden="0" w:name="Light Shading Accent 6"/>
  1620. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="61" w:semiHidden="0" w:name="Light List Accent 6"/>
  1621. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="62" w:semiHidden="0" w:name="Light Grid Accent 6"/>
  1622. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="63" w:semiHidden="0" w:name="Medium Shading 1 Accent 6"/>
  1623. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="64" w:semiHidden="0" w:name="Medium Shading 2 Accent 6"/>
  1624. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="65" w:semiHidden="0" w:name="Medium List 1 Accent 6"/>
  1625. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="66" w:semiHidden="0" w:name="Medium List 2 Accent 6"/>
  1626. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="67" w:semiHidden="0" w:name="Medium Grid 1 Accent 6"/>
  1627. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="68" w:semiHidden="0" w:name="Medium Grid 2 Accent 6"/>
  1628. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="69" w:semiHidden="0" w:name="Medium Grid 3 Accent 6"/>
  1629. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="70" w:semiHidden="0" w:name="Dark List Accent 6"/>
  1630. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="71" w:semiHidden="0" w:name="Colorful Shading Accent 6"/>
  1631. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="72" w:semiHidden="0" w:name="Colorful List Accent 6"/>
  1632. <w:lsdException w:unhideWhenUsed="0" w:uiPriority="73" w:semiHidden="0" w:name="Colorful Grid Accent 6"/>
  1633. </w:latentStyles>
  1634. <w:style w:type="paragraph" w:default="1" w:styleId="1">
  1635. <w:name w:val="Normal"/>
  1636. <w:qFormat/>
  1637. <w:uiPriority w:val="0"/>
  1638. <w:pPr>
  1639. <w:widowControl w:val="0"/>
  1640. <w:spacing w:line="560" w:lineRule="auto"/>
  1641. <w:jc w:val="both"/>
  1642. </w:pPr>
  1643. <w:rPr>
  1644. <w:rFonts w:hint="default" w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:eastAsia="仿宋" w:cs="Times New Roman"/>
  1645. <w:sz w:val="28"/>
  1646. <w:szCs w:val="22"/>
  1647. </w:rPr>
  1648. </w:style>
  1649. <w:style w:type="paragraph" w:styleId="2">
  1650. <w:name w:val="heading 2"/>
  1651. <w:basedOn w:val="1"/>
  1652. <w:next w:val="1"/>
  1653. <w:qFormat/>
  1654. <w:uiPriority w:val="0"/>
  1655. <w:pPr>
  1656. <w:keepNext/>
  1657. <w:keepLines/>
  1658. <w:spacing w:beforeAutospacing="0" w:afterAutospacing="0" w:line="560" w:lineRule="auto"/>
  1659. <w:jc w:val="left"/>
  1660. <w:outlineLvl w:val="1"/>
  1661. </w:pPr>
  1662. <w:rPr>
  1663. <w:rFonts w:hint="default" w:ascii="Arial" w:hAnsi="Arial" w:eastAsia="黑体"/>
  1664. <w:b/>
  1665. <w:sz w:val="28"/>
  1666. </w:rPr>
  1667. </w:style>
  1668. <w:style w:type="character" w:default="1" w:styleId="4">
  1669. <w:name w:val="Default Paragraph Font"/>
  1670. <w:semiHidden/>
  1671. <w:uiPriority w:val="0"/>
  1672. </w:style>
  1673. <w:style w:type="table" w:default="1" w:styleId="3">
  1674. <w:name w:val="Normal Table"/>
  1675. <w:semiHidden/>
  1676. <w:uiPriority w:val="0"/>
  1677. <w:tblPr>
  1678. <w:tblCellMar>
  1679. <w:top w:w="0" w:type="dxa"/>
  1680. <w:left w:w="108" w:type="dxa"/>
  1681. <w:bottom w:w="0" w:type="dxa"/>
  1682. <w:right w:w="108" w:type="dxa"/>
  1683. </w:tblCellMar>
  1684. </w:tblPr>
  1685. </w:style>
  1686. </w:styles>
  1687. </pkg:xmlData>
  1688. </pkg:part>
  1689. <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
  1690. <pkg:xmlData>
  1691. <a:theme
  1692. xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="WPS">
  1693. <a:themeElements>
  1694. <a:clrScheme name="WPS">
  1695. <a:dk1>
  1696. <a:sysClr val="windowText" lastClr="000000"/>
  1697. </a:dk1>
  1698. <a:lt1>
  1699. <a:sysClr val="window" lastClr="FFFFFF"/>
  1700. </a:lt1>
  1701. <a:dk2>
  1702. <a:srgbClr val="44546A"/>
  1703. </a:dk2>
  1704. <a:lt2>
  1705. <a:srgbClr val="E7E6E6"/>
  1706. </a:lt2>
  1707. <a:accent1>
  1708. <a:srgbClr val="4874CB"/>
  1709. </a:accent1>
  1710. <a:accent2>
  1711. <a:srgbClr val="EE822F"/>
  1712. </a:accent2>
  1713. <a:accent3>
  1714. <a:srgbClr val="F2BA02"/>
  1715. </a:accent3>
  1716. <a:accent4>
  1717. <a:srgbClr val="75BD42"/>
  1718. </a:accent4>
  1719. <a:accent5>
  1720. <a:srgbClr val="30C0B4"/>
  1721. </a:accent5>
  1722. <a:accent6>
  1723. <a:srgbClr val="E54C5E"/>
  1724. </a:accent6>
  1725. <a:hlink>
  1726. <a:srgbClr val="0026E5"/>
  1727. </a:hlink>
  1728. <a:folHlink>
  1729. <a:srgbClr val="7E1FAD"/>
  1730. </a:folHlink>
  1731. </a:clrScheme>
  1732. <a:fontScheme name="WPS">
  1733. <a:majorFont>
  1734. <a:latin typeface="Calibri Light"/>
  1735. <a:ea typeface=""/>
  1736. <a:cs typeface=""/>
  1737. <a:font script="Jpan" typeface="MS ゴシック"/>
  1738. <a:font script="Hang" typeface="맑은 고딕"/>
  1739. <a:font script="Hans" typeface="宋体"/>
  1740. <a:font script="Hant" typeface="新細明體"/>
  1741. <a:font script="Arab" typeface="Times New Roman"/>
  1742. <a:font script="Hebr" typeface="Times New Roman"/>
  1743. <a:font script="Thai" typeface="Angsana New"/>
  1744. <a:font script="Ethi" typeface="Nyala"/>
  1745. <a:font script="Beng" typeface="Vrinda"/>
  1746. <a:font script="Gujr" typeface="Shruti"/>
  1747. <a:font script="Khmr" typeface="MoolBoran"/>
  1748. <a:font script="Knda" typeface="Tunga"/>
  1749. <a:font script="Guru" typeface="Raavi"/>
  1750. <a:font script="Cans" typeface="Euphemia"/>
  1751. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  1752. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  1753. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  1754. <a:font script="Thaa" typeface="MV Boli"/>
  1755. <a:font script="Deva" typeface="Mangal"/>
  1756. <a:font script="Telu" typeface="Gautami"/>
  1757. <a:font script="Taml" typeface="Latha"/>
  1758. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  1759. <a:font script="Orya" typeface="Kalinga"/>
  1760. <a:font script="Mlym" typeface="Kartika"/>
  1761. <a:font script="Laoo" typeface="DokChampa"/>
  1762. <a:font script="Sinh" typeface="Iskoola Pota"/>
  1763. <a:font script="Mong" typeface="Mongolian Baiti"/>
  1764. <a:font script="Viet" typeface="Times New Roman"/>
  1765. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  1766. <a:font script="Geor" typeface="Sylfaen"/>
  1767. </a:majorFont>
  1768. <a:minorFont>
  1769. <a:latin typeface="Calibri"/>
  1770. <a:ea typeface=""/>
  1771. <a:cs typeface=""/>
  1772. <a:font script="Jpan" typeface="MS 明朝"/>
  1773. <a:font script="Hang" typeface="맑은 고딕"/>
  1774. <a:font script="Hans" typeface="宋体"/>
  1775. <a:font script="Hant" typeface="新細明體"/>
  1776. <a:font script="Arab" typeface="Arial"/>
  1777. <a:font script="Hebr" typeface="Arial"/>
  1778. <a:font script="Thai" typeface="Cordia New"/>
  1779. <a:font script="Ethi" typeface="Nyala"/>
  1780. <a:font script="Beng" typeface="Vrinda"/>
  1781. <a:font script="Gujr" typeface="Shruti"/>
  1782. <a:font script="Khmr" typeface="DaunPenh"/>
  1783. <a:font script="Knda" typeface="Tunga"/>
  1784. <a:font script="Guru" typeface="Raavi"/>
  1785. <a:font script="Cans" typeface="Euphemia"/>
  1786. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  1787. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  1788. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  1789. <a:font script="Thaa" typeface="MV Boli"/>
  1790. <a:font script="Deva" typeface="Mangal"/>
  1791. <a:font script="Telu" typeface="Gautami"/>
  1792. <a:font script="Taml" typeface="Latha"/>
  1793. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  1794. <a:font script="Orya" typeface="Kalinga"/>
  1795. <a:font script="Mlym" typeface="Kartika"/>
  1796. <a:font script="Laoo" typeface="DokChampa"/>
  1797. <a:font script="Sinh" typeface="Iskoola Pota"/>
  1798. <a:font script="Mong" typeface="Mongolian Baiti"/>
  1799. <a:font script="Viet" typeface="Arial"/>
  1800. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  1801. <a:font script="Geor" typeface="Sylfaen"/>
  1802. </a:minorFont>
  1803. </a:fontScheme>
  1804. <a:fmtScheme name="WPS">
  1805. <a:fillStyleLst>
  1806. <a:solidFill>
  1807. <a:schemeClr val="phClr"/>
  1808. </a:solidFill>
  1809. <a:gradFill>
  1810. <a:gsLst>
  1811. <a:gs pos="0">
  1812. <a:schemeClr val="phClr">
  1813. <a:lumOff val="17500"/>
  1814. </a:schemeClr>
  1815. </a:gs>
  1816. <a:gs pos="100000">
  1817. <a:schemeClr val="phClr"/>
  1818. </a:gs>
  1819. </a:gsLst>
  1820. <a:lin ang="2700000" scaled="0"/>
  1821. </a:gradFill>
  1822. <a:gradFill>
  1823. <a:gsLst>
  1824. <a:gs pos="0">
  1825. <a:schemeClr val="phClr">
  1826. <a:hueOff val="-2520000"/>
  1827. </a:schemeClr>
  1828. </a:gs>
  1829. <a:gs pos="100000">
  1830. <a:schemeClr val="phClr"/>
  1831. </a:gs>
  1832. </a:gsLst>
  1833. <a:lin ang="2700000" scaled="0"/>
  1834. </a:gradFill>
  1835. </a:fillStyleLst>
  1836. <a:lnStyleLst>
  1837. <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
  1838. <a:solidFill>
  1839. <a:schemeClr val="phClr"/>
  1840. </a:solidFill>
  1841. <a:prstDash val="solid"/>
  1842. <a:miter lim="800000"/>
  1843. </a:ln>
  1844. <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
  1845. <a:solidFill>
  1846. <a:schemeClr val="phClr"/>
  1847. </a:solidFill>
  1848. <a:prstDash val="solid"/>
  1849. <a:miter lim="800000"/>
  1850. </a:ln>
  1851. <a:ln w="12700" cap="flat" cmpd="sng" algn="ctr">
  1852. <a:gradFill>
  1853. <a:gsLst>
  1854. <a:gs pos="0">
  1855. <a:schemeClr val="phClr">
  1856. <a:hueOff val="-4200000"/>
  1857. </a:schemeClr>
  1858. </a:gs>
  1859. <a:gs pos="100000">
  1860. <a:schemeClr val="phClr"/>
  1861. </a:gs>
  1862. </a:gsLst>
  1863. <a:lin ang="2700000" scaled="1"/>
  1864. </a:gradFill>
  1865. <a:prstDash val="solid"/>
  1866. <a:miter lim="800000"/>
  1867. </a:ln>
  1868. </a:lnStyleLst>
  1869. <a:effectStyleLst>
  1870. <a:effectStyle>
  1871. <a:effectLst>
  1872. <a:outerShdw blurRad="101600" dist="50800" dir="5400000" algn="ctr" rotWithShape="0">
  1873. <a:schemeClr val="phClr">
  1874. <a:alpha val="60000"/>
  1875. </a:schemeClr>
  1876. </a:outerShdw>
  1877. </a:effectLst>
  1878. </a:effectStyle>
  1879. <a:effectStyle>
  1880. <a:effectLst>
  1881. <a:reflection stA="50000" endA="300" endPos="40000" dist="25400" dir="5400000" sy="-100000" algn="bl" rotWithShape="0"/>
  1882. </a:effectLst>
  1883. </a:effectStyle>
  1884. <a:effectStyle>
  1885. <a:effectLst>
  1886. <a:outerShdw blurRad="57150" dist="19050" dir="5400000" algn="ctr" rotWithShape="0">
  1887. <a:srgbClr val="000000">
  1888. <a:alpha val="63000"/>
  1889. </a:srgbClr>
  1890. </a:outerShdw>
  1891. </a:effectLst>
  1892. </a:effectStyle>
  1893. </a:effectStyleLst>
  1894. <a:bgFillStyleLst>
  1895. <a:solidFill>
  1896. <a:schemeClr val="phClr"/>
  1897. </a:solidFill>
  1898. <a:solidFill>
  1899. <a:schemeClr val="phClr">
  1900. <a:tint val="95000"/>
  1901. <a:satMod val="170000"/>
  1902. </a:schemeClr>
  1903. </a:solidFill>
  1904. <a:gradFill rotWithShape="1">
  1905. <a:gsLst>
  1906. <a:gs pos="0">
  1907. <a:schemeClr val="phClr">
  1908. <a:tint val="93000"/>
  1909. <a:satMod val="150000"/>
  1910. <a:shade val="98000"/>
  1911. <a:lumMod val="102000"/>
  1912. </a:schemeClr>
  1913. </a:gs>
  1914. <a:gs pos="50000">
  1915. <a:schemeClr val="phClr">
  1916. <a:tint val="98000"/>
  1917. <a:satMod val="130000"/>
  1918. <a:shade val="90000"/>
  1919. <a:lumMod val="103000"/>
  1920. </a:schemeClr>
  1921. </a:gs>
  1922. <a:gs pos="100000">
  1923. <a:schemeClr val="phClr">
  1924. <a:shade val="63000"/>
  1925. <a:satMod val="120000"/>
  1926. </a:schemeClr>
  1927. </a:gs>
  1928. </a:gsLst>
  1929. <a:lin ang="5400000" scaled="0"/>
  1930. </a:gradFill>
  1931. </a:bgFillStyleLst>
  1932. </a:fmtScheme>
  1933. </a:themeElements>
  1934. <a:objectDefaults/>
  1935. </a:theme>
  1936. </pkg:xmlData>
  1937. </pkg:part>
  1938. </pkg:package>