123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235 |
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <?mso-application progid="Word.Document"?>
- <pkg:package
- xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
- <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
- <pkg:xmlData>
- <Relationships
- xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
- <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
- <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
- <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
- <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/>
- </Relationships>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
- <pkg:xmlData>
- <Relationships
- xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
- <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
- <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
- <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
- <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/>
- <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
- <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image1.jpeg"/>
- <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
- </Relationships>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
- <pkg:xmlData>
- <w:document mc:Ignorable="w14 w15 wp14"
- xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
- 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: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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
- 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">
- <w:body>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:ind w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
- </w:rPr>
- </w:pPr>
- <w:bookmarkStart w:id="0" w:name="_GoBack"/>
- <w:bookmarkEnd w:id="0"/>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hint="eastAsia"/>
- </w:rPr>
- <w:t>绝密★启用前</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:ind w:firstLine="683"/>
- <w:jc w:val="center"/>
- <w:rPr>
- <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:sz w:val="32"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:sz w:val="32"/>
- </w:rPr>
- <w:t>20 年 月湖北省高等教育自学考试</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:ind w:firstLine="920"/>
- <w:jc w:val="center"/>
- <w:rPr>
- <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体"/>
- <w:spacing w:val="10"/>
- <w:sz w:val="44"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
- <w:spacing w:val="10"/>
- <w:sz w:val="44"/>
- </w:rPr>
- <w:t xml:space="preserve">${name!''} </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="方正书宋简体" w:eastAsia="方正书宋简体" w:hint="eastAsia"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:sz w:val="44"/>
- </w:rPr>
- <w:t>试卷</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:ind w:firstLine="600"/>
- <w:jc w:val="center"/>
- <w:rPr>
- <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋"/>
- <w:spacing w:val="10"/>
- <w:sz w:val="28"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hint="eastAsia"/>
- <w:spacing w:val="10"/>
- <w:sz w:val="28"/>
- </w:rPr>
- <w:t>(课程代码 ${code!''})</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>本试卷共 页,${bigQs!''}大题,${smallQs!''}小题,满分100分;考试时间为150分钟。</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>注意事项:</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:tab/>
- <w:t>1.答题前,考生先将自己的准考证号、姓名、课程代码、课程名称填写清楚,并认真核准条形码上的信息,在答题卡上指定的位置粘贴条形码。</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>2.选择题的作答:考生必须使用2B铅笔,在答题卡对应的题号上填涂选择项。应使用正确填涂方法:</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:noProof/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:drawing>
- <wp:inline distT="0" distB="0" distL="114300" distR="114300">
- <wp:extent cx="387985" cy="250190"/>
- <wp:effectExtent l="0" t="0" r="12065" b="16510"/>
- <wp:docPr id="2" name="图片 2" descr="湖北自考评卷考生答题须知"/>
- <wp:cNvGraphicFramePr>
- <a:graphicFrameLocks noChangeAspect="1"
- xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"/>
- </wp:cNvGraphicFramePr>
- <a:graphic
- xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
- <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
- <pic:pic
- xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
- <pic:nvPicPr>
- <pic:cNvPr id="2" name="图片 2" descr="湖北自考评卷考生答题须知"/>
- <pic:cNvPicPr>
- <a:picLocks noChangeAspect="1"/>
- </pic:cNvPicPr>
- </pic:nvPicPr>
- <pic:blipFill>
- <a:blip r:embed="rId5"/>
- <a:stretch>
- <a:fillRect/>
- </a:stretch>
- </pic:blipFill>
- <pic:spPr>
- <a:xfrm>
- <a:off x="0" y="0"/>
- <a:ext cx="387985" cy="250190"/>
- </a:xfrm>
- <a:prstGeom prst="rect">
- <a:avLst/>
- </a:prstGeom>
- <a:noFill/>
- <a:ln>
- <a:noFill/>
- </a:ln>
- </pic:spPr>
- </pic:pic>
- </a:graphicData>
- </a:graphic>
- </wp:inline>
- </w:drawing>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>,将选择项涂满涂黑。 若需对答案进行修改,用橡皮擦擦除干净后再重新填涂。答在试卷、草稿纸上无效。</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>3.非选择题的作答:必须使用黑色墨水签字笔作答。答题时要求依试题顺序作答,首先在“大题号”列依次注明大题号,在“小题号”列依次注明小题号,按题号顺序依次在答题卡规定的区域内作答,超出“非选择题答题区”的部分作答无效。答在试卷、草稿纸上无效。</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:spacing w:afterLines="50" w:after="156" w:line="360" w:lineRule="auto"/>
- <w:ind w:firstLineChars="200" w:firstLine="480"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- <w:szCs w:val="21"/>
- </w:rPr>
- <w:t>4.考生必须保持答题卡的清洁。考试结束后,请将本试卷和答题卡一并上交。</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
- <w:pPr>
- <w:widowControl/>
- <w:ind w:firstLine="520"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
- <w:spacing w:val="10"/>
- </w:rPr>
- </w:pPr>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:u w:val="single"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hint="eastAsia"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:u w:val="single"/>
- </w:rPr>
- <w:t xml:space="preserve"></w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:u w:val="single"/>
- </w:rPr>
- </w:pPr>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00AF659B">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体"/>
- <w:b/>
- <w:spacing w:val="10"/>
- <w:u w:val="single"/>
- </w:rPr>
- </w:pPr>
- </w:p>
- <!-- 循环显示题目 -->
- <#list columnsType as objType>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:widowControl/>
- <w:jc w:val="left"/>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>${objType.sortNo!''}</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>、</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>${objType.typeName!''}</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>(本大题共</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>${objType.questionSum!''}</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>小题,每题</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>${objType.score!''}</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>分,共</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>${objType.questionScores!''}</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- <w:shd w:val="clear" w:color="auto" w:fill="E0ECFF"/>
- </w:rPr>
- <w:t>分)</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00414EBF">
- <w:pPr>
- <w:ind w:firstLine="360"/>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="0E2D5F"/>
- <w:kern w:val="0"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- <w:t>${objType.remark!''}</w:t>
- </w:r>
- </w:p>
-
- <#list columns as obj>
- <#if objType.typeId == obj.typeId>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:ind w:firstLine="360"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.serialNumber!''}.</w:t>
- </w:r>
- <w:r w:rsidR="00414EBF">
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.bodySummary!''}</w:t>
- </w:r>
- </w:p>
-
- <#if obj.typeId == 117>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>A</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.singleSummary1!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>B</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.singleSummary2!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>C</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.singleSummary3!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>D</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.singleSummary4!''}</w:t>
- </w:r>
- </w:p>
- </#if>
- <#if obj.typeId == 118>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>A</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.summary1!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>B</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.summary2!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>C</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.summary3!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>D</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.summary4!''}</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:pStyle w:val="a7"/>
- <w:ind w:left="360" w:firstLineChars="0" w:firstLine="0"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>E</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>.</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.summary5!''}</w:t>
- </w:r>
- </w:p>
- </#if>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:ind w:firstLine="360"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:r>
- </w:p>
- </#if>
- </#list>
- <w:p w:rsidR="00AF659B" w:rsidRDefault="00044EDE">
- <w:pPr>
- <w:ind w:firstLine="360"/>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:r>
- </w:p>
- </#list>
-
- <w:sectPr w:rsidR="00AF659B">
- <w:pgSz w:w="11906" w:h="16838"/>
- <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
- <w:cols w:space="425"/>
- <w:docGrid w:type="lines" w:linePitch="312"/>
- </w:sectPr>
- </w:body>
- </w:document>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/media/image1.jpeg" pkg:contentType="image/jpeg" pkg:compression="store">
- <pkg:binaryData>/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0a
- HBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIy
- MjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAAaACkDASIA
- AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA
- AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3
- ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm
- p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA
- AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx
- BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK
- U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3
- uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD1L4he
- M5PBGhwajHZLdmW4EOxpNmMqxznB9K82/wCGhLr/AKFyH/wLP/xNdD8fP+RJsf8AsIJ/6A9fO1Js
- Z7R/w0Jdf9C5D/4Fn/4mj/hoS6/6FyH/AMCz/wDE14vRSuFj6n+HHj6Xx3bahNLp6WZtJEQBZd+7
- cCfQY6V29eL/ALPX/IO1/wD67xf+gmvaKpCPPPjF4f1XxF4VtLTSLN7udLxZGRWUEKFYZ5I9RXif
- /CrfG/8A0L0//f2P/wCKr6vopWHc+UP+FW+N/wDoXp/+/sf/AMVR/wAKt8b/APQvT/8Af2P/AOKr
- 6voosFzy34LeGda8NWOsJrNg9o080bRh2U7gFIPQmvUqKKYj/9k=</pkg:binaryData>
- </pkg:part>
- <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
- <pkg:xmlData>
- <a:theme name="Office 主题"
- xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
- <a:themeElements>
- <a:clrScheme name="Office">
- <a:dk1>
- <a:sysClr val="windowText" lastClr="000000"/>
- </a:dk1>
- <a:lt1>
- <a:sysClr val="window" lastClr="FFFFFF"/>
- </a:lt1>
- <a:dk2>
- <a:srgbClr val="1F497D"/>
- </a:dk2>
- <a:lt2>
- <a:srgbClr val="EEECE1"/>
- </a:lt2>
- <a:accent1>
- <a:srgbClr val="4F81BD"/>
- </a:accent1>
- <a:accent2>
- <a:srgbClr val="C0504D"/>
- </a:accent2>
- <a:accent3>
- <a:srgbClr val="9BBB59"/>
- </a:accent3>
- <a:accent4>
- <a:srgbClr val="8064A2"/>
- </a:accent4>
- <a:accent5>
- <a:srgbClr val="4BACC6"/>
- </a:accent5>
- <a:accent6>
- <a:srgbClr val="F79646"/>
- </a:accent6>
- <a:hlink>
- <a:srgbClr val="0000FF"/>
- </a:hlink>
- <a:folHlink>
- <a:srgbClr val="800080"/>
- </a:folHlink>
- </a:clrScheme>
- <a:fontScheme name="Office">
- <a:majorFont>
- <a:latin typeface="Cambria"/>
- <a:ea typeface=""/>
- <a:cs typeface=""/>
- <a:font script="Jpan" typeface="MS ゴシック"/>
- <a:font script="Hang" typeface="맑은 고딕"/>
- <a:font script="Hans" typeface="宋体"/>
- <a:font script="Hant" typeface="新細明體"/>
- <a:font script="Arab" typeface="Times New Roman"/>
- <a:font script="Hebr" typeface="Times New Roman"/>
- <a:font script="Thai" typeface="Angsana New"/>
- <a:font script="Ethi" typeface="Nyala"/>
- <a:font script="Beng" typeface="Vrinda"/>
- <a:font script="Gujr" typeface="Shruti"/>
- <a:font script="Khmr" typeface="MoolBoran"/>
- <a:font script="Knda" typeface="Tunga"/>
- <a:font script="Guru" typeface="Raavi"/>
- <a:font script="Cans" typeface="Euphemia"/>
- <a:font script="Cher" typeface="Plantagenet Cherokee"/>
- <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
- <a:font script="Tibt" typeface="Microsoft Himalaya"/>
- <a:font script="Thaa" typeface="MV Boli"/>
- <a:font script="Deva" typeface="Mangal"/>
- <a:font script="Telu" typeface="Gautami"/>
- <a:font script="Taml" typeface="Latha"/>
- <a:font script="Syrc" typeface="Estrangelo Edessa"/>
- <a:font script="Orya" typeface="Kalinga"/>
- <a:font script="Mlym" typeface="Kartika"/>
- <a:font script="Laoo" typeface="DokChampa"/>
- <a:font script="Sinh" typeface="Iskoola Pota"/>
- <a:font script="Mong" typeface="Mongolian Baiti"/>
- <a:font script="Viet" typeface="Times New Roman"/>
- <a:font script="Uigh" typeface="Microsoft Uighur"/>
- <a:font script="Geor" typeface="Sylfaen"/>
- </a:majorFont>
- <a:minorFont>
- <a:latin typeface="Calibri"/>
- <a:ea typeface=""/>
- <a:cs typeface=""/>
- <a:font script="Jpan" typeface="MS 明朝"/>
- <a:font script="Hang" typeface="맑은 고딕"/>
- <a:font script="Hans" typeface="宋体"/>
- <a:font script="Hant" typeface="新細明體"/>
- <a:font script="Arab" typeface="Arial"/>
- <a:font script="Hebr" typeface="Arial"/>
- <a:font script="Thai" typeface="Cordia New"/>
- <a:font script="Ethi" typeface="Nyala"/>
- <a:font script="Beng" typeface="Vrinda"/>
- <a:font script="Gujr" typeface="Shruti"/>
- <a:font script="Khmr" typeface="DaunPenh"/>
- <a:font script="Knda" typeface="Tunga"/>
- <a:font script="Guru" typeface="Raavi"/>
- <a:font script="Cans" typeface="Euphemia"/>
- <a:font script="Cher" typeface="Plantagenet Cherokee"/>
- <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
- <a:font script="Tibt" typeface="Microsoft Himalaya"/>
- <a:font script="Thaa" typeface="MV Boli"/>
- <a:font script="Deva" typeface="Mangal"/>
- <a:font script="Telu" typeface="Gautami"/>
- <a:font script="Taml" typeface="Latha"/>
- <a:font script="Syrc" typeface="Estrangelo Edessa"/>
- <a:font script="Orya" typeface="Kalinga"/>
- <a:font script="Mlym" typeface="Kartika"/>
- <a:font script="Laoo" typeface="DokChampa"/>
- <a:font script="Sinh" typeface="Iskoola Pota"/>
- <a:font script="Mong" typeface="Mongolian Baiti"/>
- <a:font script="Viet" typeface="Arial"/>
- <a:font script="Uigh" typeface="Microsoft Uighur"/>
- <a:font script="Geor" typeface="Sylfaen"/>
- </a:minorFont>
- </a:fontScheme>
- <a:fmtScheme name="Office">
- <a:fillStyleLst>
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:gradFill rotWithShape="1">
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:tint val="50000"/>
- <a:satMod val="300000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="35000">
- <a:schemeClr val="phClr">
- <a:tint val="37000"/>
- <a:satMod val="300000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr">
- <a:tint val="15000"/>
- <a:satMod val="350000"/>
- </a:schemeClr>
- </a:gs>
- </a:gsLst>
- <a:lin ang="16200000" scaled="1"/>
- </a:gradFill>
- <a:gradFill rotWithShape="1">
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:shade val="51000"/>
- <a:satMod val="130000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="80000">
- <a:schemeClr val="phClr">
- <a:shade val="93000"/>
- <a:satMod val="130000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr">
- <a:shade val="94000"/>
- <a:satMod val="135000"/>
- </a:schemeClr>
- </a:gs>
- </a:gsLst>
- <a:lin ang="16200000" scaled="0"/>
- </a:gradFill>
- </a:fillStyleLst>
- <a:lnStyleLst>
- <a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">
- <a:solidFill>
- <a:schemeClr val="phClr">
- <a:shade val="95000"/>
- <a:satMod val="105000"/>
- </a:schemeClr>
- </a:solidFill>
- <a:prstDash val="solid"/>
- </a:ln>
- <a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:prstDash val="solid"/>
- </a:ln>
- <a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:prstDash val="solid"/>
- </a:ln>
- </a:lnStyleLst>
- <a:effectStyleLst>
- <a:effectStyle>
- <a:effectLst>
- <a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">
- <a:srgbClr val="000000">
- <a:alpha val="38000"/>
- </a:srgbClr>
- </a:outerShdw>
- </a:effectLst>
- </a:effectStyle>
- <a:effectStyle>
- <a:effectLst>
- <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
- <a:srgbClr val="000000">
- <a:alpha val="35000"/>
- </a:srgbClr>
- </a:outerShdw>
- </a:effectLst>
- </a:effectStyle>
- <a:effectStyle>
- <a:effectLst>
- <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
- <a:srgbClr val="000000">
- <a:alpha val="35000"/>
- </a:srgbClr>
- </a:outerShdw>
- </a:effectLst>
- <a:scene3d>
- <a:camera prst="orthographicFront">
- <a:rot lat="0" lon="0" rev="0"/>
- </a:camera>
- <a:lightRig rig="threePt" dir="t">
- <a:rot lat="0" lon="0" rev="1200000"/>
- </a:lightRig>
- </a:scene3d>
- <a:sp3d>
- <a:bevelT w="63500" h="25400"/>
- </a:sp3d>
- </a:effectStyle>
- </a:effectStyleLst>
- <a:bgFillStyleLst>
- <a:solidFill>
- <a:schemeClr val="phClr"/>
- </a:solidFill>
- <a:gradFill rotWithShape="1">
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:tint val="40000"/>
- <a:satMod val="350000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="40000">
- <a:schemeClr val="phClr">
- <a:tint val="45000"/>
- <a:shade val="99000"/>
- <a:satMod val="350000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr">
- <a:shade val="20000"/>
- <a:satMod val="255000"/>
- </a:schemeClr>
- </a:gs>
- </a:gsLst>
- <a:path path="circle">
- <a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>
- </a:path>
- </a:gradFill>
- <a:gradFill rotWithShape="1">
- <a:gsLst>
- <a:gs pos="0">
- <a:schemeClr val="phClr">
- <a:tint val="80000"/>
- <a:satMod val="300000"/>
- </a:schemeClr>
- </a:gs>
- <a:gs pos="100000">
- <a:schemeClr val="phClr">
- <a:shade val="30000"/>
- <a:satMod val="200000"/>
- </a:schemeClr>
- </a:gs>
- </a:gsLst>
- <a:path path="circle">
- <a:fillToRect l="50000" t="50000" r="50000" b="50000"/>
- </a:path>
- </a:gradFill>
- </a:bgFillStyleLst>
- </a:fmtScheme>
- </a:themeElements>
- <a:objectDefaults/>
- <a:extraClrSchemeLst/>
- </a:theme>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
- <pkg:xmlData>
- <w:settings mc:Ignorable="w14 w15"
- 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:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
- xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main">
- <w:zoom w:percent="100"/>
- <w:doNotDisplayPageBoundaries/>
- <w:bordersDoNotSurroundHeader/>
- <w:bordersDoNotSurroundFooter/>
- <w:defaultTabStop w:val="420"/>
- <w:drawingGridVerticalSpacing w:val="156"/>
- <w:displayHorizontalDrawingGridEvery w:val="0"/>
- <w:displayVerticalDrawingGridEvery w:val="2"/>
- <w:characterSpacingControl w:val="compressPunctuation"/>
- <w:compat>
- <w:spaceForUL/>
- <w:balanceSingleByteDoubleByteWidth/>
- <w:doNotLeaveBackslashAlone/>
- <w:ulTrailSpace/>
- <w:doNotExpandShiftReturn/>
- <w:adjustLineHeightInTable/>
- <w:useFELayout/>
- <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="14"/>
- <w:compatSetting w:name="overrideTableStyleFontSizeAndJustification" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- <w:compatSetting w:name="enableOpenTypeFeatures" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- <w:compatSetting w:name="doNotFlipMirrorIndents" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
- </w:compat>
- <w:rsids>
- <w:rsidRoot w:val="000E491E"/>
- <w:rsid w:val="0000087C"/>
- <w:rsid w:val="00003673"/>
- <w:rsid w:val="00011215"/>
- <w:rsid w:val="00016532"/>
- <w:rsid w:val="000234D8"/>
- <w:rsid w:val="0002792F"/>
- <w:rsid w:val="000340BD"/>
- <w:rsid w:val="000349F0"/>
- <w:rsid w:val="000405DF"/>
- <w:rsid w:val="00043DBB"/>
- <w:rsid w:val="00044EDE"/>
- <w:rsid w:val="00046468"/>
- <w:rsid w:val="0005789C"/>
- <w:rsid w:val="00071BA1"/>
- <w:rsid w:val="00075EC9"/>
- <w:rsid w:val="00077CAC"/>
- <w:rsid w:val="0008433C"/>
- <w:rsid w:val="000926FB"/>
- <w:rsid w:val="00094457"/>
- <w:rsid w:val="000950AC"/>
- <w:rsid w:val="000A5B04"/>
- <w:rsid w:val="000C3C54"/>
- <w:rsid w:val="000E08C4"/>
- <w:rsid w:val="000E389B"/>
- <w:rsid w:val="000E491E"/>
- <w:rsid w:val="000F0681"/>
- <w:rsid w:val="000F63C3"/>
- <w:rsid w:val="00134D69"/>
- <w:rsid w:val="0014597C"/>
- <w:rsid w:val="00145C58"/>
- <w:rsid w:val="00162C50"/>
- <w:rsid w:val="0018097F"/>
- <w:rsid w:val="00193CFF"/>
- <w:rsid w:val="001B5AEF"/>
- <w:rsid w:val="001E10AB"/>
- <w:rsid w:val="001E6042"/>
- <w:rsid w:val="001F4D6E"/>
- <w:rsid w:val="001F5CCE"/>
- <w:rsid w:val="0020436B"/>
- <w:rsid w:val="00210054"/>
- <w:rsid w:val="0021486B"/>
- <w:rsid w:val="002418B0"/>
- <w:rsid w:val="0024745E"/>
- <w:rsid w:val="00255BFB"/>
- <w:rsid w:val="00263FAE"/>
- <w:rsid w:val="00267A3F"/>
- <w:rsid w:val="0027192C"/>
- <w:rsid w:val="00273D58"/>
- <w:rsid w:val="002743BB"/>
- <w:rsid w:val="00274886"/>
- <w:rsid w:val="0028158A"/>
- <w:rsid w:val="0028186E"/>
- <w:rsid w:val="00285444"/>
- <w:rsid w:val="00293306"/>
- <w:rsid w:val="00293D48"/>
- <w:rsid w:val="002A56CC"/>
- <w:rsid w:val="002A6FBA"/>
- <w:rsid w:val="002B233A"/>
- <w:rsid w:val="002B6CA6"/>
- <w:rsid w:val="002D471D"/>
- <w:rsid w:val="002F46A7"/>
- <w:rsid w:val="00306920"/>
- <w:rsid w:val="00317CAB"/>
- <w:rsid w:val="00324E91"/>
- <w:rsid w:val="003334BC"/>
- <w:rsid w:val="00334B9C"/>
- <w:rsid w:val="003517D5"/>
- <w:rsid w:val="003532D0"/>
- <w:rsid w:val="00365790"/>
- <w:rsid w:val="00372C15"/>
- <w:rsid w:val="00380738"/>
- <w:rsid w:val="00380E34"/>
- <w:rsid w:val="003A26AC"/>
- <w:rsid w:val="003D51DF"/>
- <w:rsid w:val="003D5F45"/>
- <w:rsid w:val="003F282B"/>
- <w:rsid w:val="003F510A"/>
- <w:rsid w:val="00414EBF"/>
- <w:rsid w:val="00426201"/>
- <w:rsid w:val="004348DC"/>
- <w:rsid w:val="00434EE9"/>
- <w:rsid w:val="0045085B"/>
- <w:rsid w:val="00457AD5"/>
- <w:rsid w:val="0048206F"/>
- <w:rsid w:val="004A02C3"/>
- <w:rsid w:val="004A6765"/>
- <w:rsid w:val="004B1EDB"/>
- <w:rsid w:val="004B5EFF"/>
- <w:rsid w:val="004C1E25"/>
- <w:rsid w:val="004C40C8"/>
- <w:rsid w:val="004E3E3D"/>
- <w:rsid w:val="004F15E2"/>
- <w:rsid w:val="004F3625"/>
- <w:rsid w:val="004F3ED2"/>
- <w:rsid w:val="00520506"/>
- <w:rsid w:val="005258C0"/>
- <w:rsid w:val="0053189A"/>
- <w:rsid w:val="0053611C"/>
- <w:rsid w:val="00566050"/>
- <w:rsid w:val="00582558"/>
- <w:rsid w:val="005C5E8F"/>
- <w:rsid w:val="005C74C7"/>
- <w:rsid w:val="005D0C75"/>
- <w:rsid w:val="006067BF"/>
- <w:rsid w:val="00617E9F"/>
- <w:rsid w:val="006275B8"/>
- <w:rsid w:val="006307A1"/>
- <w:rsid w:val="00642830"/>
- <w:rsid w:val="00645D62"/>
- <w:rsid w:val="00652820"/>
- <w:rsid w:val="00653E87"/>
- <w:rsid w:val="00654206"/>
- <w:rsid w:val="006679C0"/>
- <w:rsid w:val="00675D63"/>
- <w:rsid w:val="00690449"/>
- <w:rsid w:val="006B3548"/>
- <w:rsid w:val="006B7062"/>
- <w:rsid w:val="006C39D2"/>
- <w:rsid w:val="006E71F8"/>
- <w:rsid w:val="006F6CEA"/>
- <w:rsid w:val="007144D3"/>
- <w:rsid w:val="00730BE6"/>
- <w:rsid w:val="00736D0E"/>
- <w:rsid w:val="00737E4E"/>
- <w:rsid w:val="007761BD"/>
- <w:rsid w:val="00776B7C"/>
- <w:rsid w:val="00783503"/>
- <w:rsid w:val="00783BED"/>
- <w:rsid w:val="007945A3"/>
- <w:rsid w:val="007A513C"/>
- <w:rsid w:val="007F26F3"/>
- <w:rsid w:val="008002D8"/>
- <w:rsid w:val="00807EC4"/>
- <w:rsid w:val="008147C5"/>
- <w:rsid w:val="0081514D"/>
- <w:rsid w:val="00815589"/>
- <w:rsid w:val="00830291"/>
- <w:rsid w:val="00830556"/>
- <w:rsid w:val="00833F93"/>
- <w:rsid w:val="00836510"/>
- <w:rsid w:val="00836DED"/>
- <w:rsid w:val="00843521"/>
- <w:rsid w:val="00845C45"/>
- <w:rsid w:val="00846D00"/>
- <w:rsid w:val="00852CEA"/>
- <w:rsid w:val="008548C4"/>
- <w:rsid w:val="008548D1"/>
- <w:rsid w:val="00854BF8"/>
- <w:rsid w:val="008616EC"/>
- <w:rsid w:val="0086597F"/>
- <w:rsid w:val="00867410"/>
- <w:rsid w:val="00877193"/>
- <w:rsid w:val="00883276"/>
- <w:rsid w:val="0089466B"/>
- <w:rsid w:val="008971E2"/>
- <w:rsid w:val="008A428F"/>
- <w:rsid w:val="008C4B65"/>
- <w:rsid w:val="008C50E3"/>
- <w:rsid w:val="008D5CB3"/>
- <w:rsid w:val="009131A5"/>
- <w:rsid w:val="00926892"/>
- <w:rsid w:val="009276F1"/>
- <w:rsid w:val="00935474"/>
- <w:rsid w:val="0094631A"/>
- <w:rsid w:val="00947ECE"/>
- <w:rsid w:val="00971FF4"/>
- <w:rsid w:val="00974E82"/>
- <w:rsid w:val="00991189"/>
- <w:rsid w:val="009A2C04"/>
- <w:rsid w:val="009C1327"/>
- <w:rsid w:val="009C7570"/>
- <w:rsid w:val="009D498E"/>
- <w:rsid w:val="009E2F49"/>
- <w:rsid w:val="009E33B2"/>
- <w:rsid w:val="00A01E01"/>
- <w:rsid w:val="00A041F5"/>
- <w:rsid w:val="00A062AD"/>
- <w:rsid w:val="00A117A1"/>
- <w:rsid w:val="00A17D3B"/>
- <w:rsid w:val="00A26198"/>
- <w:rsid w:val="00A26F23"/>
- <w:rsid w:val="00A31F26"/>
- <w:rsid w:val="00A32412"/>
- <w:rsid w:val="00A403C5"/>
- <w:rsid w:val="00A50019"/>
- <w:rsid w:val="00A87FC8"/>
- <w:rsid w:val="00A917A0"/>
- <w:rsid w:val="00A9606B"/>
- <w:rsid w:val="00AA0763"/>
- <w:rsid w:val="00AA475F"/>
- <w:rsid w:val="00AB1115"/>
- <w:rsid w:val="00AB32A3"/>
- <w:rsid w:val="00AB5C2D"/>
- <w:rsid w:val="00AC39D5"/>
- <w:rsid w:val="00AD0E5A"/>
- <w:rsid w:val="00AE01DC"/>
- <w:rsid w:val="00AE57C0"/>
- <w:rsid w:val="00AF659B"/>
- <w:rsid w:val="00B0382A"/>
- <w:rsid w:val="00B04DD2"/>
- <w:rsid w:val="00B33000"/>
- <w:rsid w:val="00B33B71"/>
- <w:rsid w:val="00B35B5A"/>
- <w:rsid w:val="00B55340"/>
- <w:rsid w:val="00B60685"/>
- <w:rsid w:val="00B65FAF"/>
- <w:rsid w:val="00B66264"/>
- <w:rsid w:val="00B707E0"/>
- <w:rsid w:val="00B716BE"/>
- <w:rsid w:val="00B77B89"/>
- <w:rsid w:val="00B85018"/>
- <w:rsid w:val="00B8506B"/>
- <w:rsid w:val="00B869D8"/>
- <w:rsid w:val="00B905F8"/>
- <w:rsid w:val="00B914BF"/>
- <w:rsid w:val="00B930F2"/>
- <w:rsid w:val="00BA468B"/>
- <w:rsid w:val="00BB2686"/>
- <w:rsid w:val="00BB5A68"/>
- <w:rsid w:val="00BB68AC"/>
- <w:rsid w:val="00BC400F"/>
- <w:rsid w:val="00BE1111"/>
- <w:rsid w:val="00BE5B76"/>
- <w:rsid w:val="00BE651B"/>
- <w:rsid w:val="00BE6AD4"/>
- <w:rsid w:val="00BE7788"/>
- <w:rsid w:val="00BF11C4"/>
- <w:rsid w:val="00C03C12"/>
- <w:rsid w:val="00C062B9"/>
- <w:rsid w:val="00C10278"/>
- <w:rsid w:val="00C17426"/>
- <w:rsid w:val="00C259DB"/>
- <w:rsid w:val="00C46DE6"/>
- <w:rsid w:val="00C64E4B"/>
- <w:rsid w:val="00C70EDF"/>
- <w:rsid w:val="00C748B5"/>
- <w:rsid w:val="00C957C0"/>
- <w:rsid w:val="00CA3146"/>
- <w:rsid w:val="00CA4E2E"/>
- <w:rsid w:val="00CA6A7C"/>
- <w:rsid w:val="00CB3E96"/>
- <w:rsid w:val="00CB6291"/>
- <w:rsid w:val="00CB6A14"/>
- <w:rsid w:val="00CB7CC0"/>
- <w:rsid w:val="00CC25F2"/>
- <w:rsid w:val="00CC40B0"/>
- <w:rsid w:val="00CC5D4A"/>
- <w:rsid w:val="00CC5D90"/>
- <w:rsid w:val="00CC5FB1"/>
- <w:rsid w:val="00CE09D4"/>
- <w:rsid w:val="00CE6169"/>
- <w:rsid w:val="00CF1A10"/>
- <w:rsid w:val="00D11CFF"/>
- <w:rsid w:val="00D150BD"/>
- <w:rsid w:val="00D36A0B"/>
- <w:rsid w:val="00D43EEF"/>
- <w:rsid w:val="00D4785B"/>
- <w:rsid w:val="00D56411"/>
- <w:rsid w:val="00D61282"/>
- <w:rsid w:val="00D621A3"/>
- <w:rsid w:val="00D7687B"/>
- <w:rsid w:val="00D76C7C"/>
- <w:rsid w:val="00D77FE9"/>
- <w:rsid w:val="00D95D2F"/>
- <w:rsid w:val="00DC2F7E"/>
- <w:rsid w:val="00DC6253"/>
- <w:rsid w:val="00E02293"/>
- <w:rsid w:val="00E17B6F"/>
- <w:rsid w:val="00E225A4"/>
- <w:rsid w:val="00E46ABA"/>
- <w:rsid w:val="00E76A99"/>
- <w:rsid w:val="00EA5B71"/>
- <w:rsid w:val="00EB1216"/>
- <w:rsid w:val="00EC51B6"/>
- <w:rsid w:val="00EE7C69"/>
- <w:rsid w:val="00EF1BFD"/>
- <w:rsid w:val="00F106A2"/>
- <w:rsid w:val="00F156A6"/>
- <w:rsid w:val="00F23D4E"/>
- <w:rsid w:val="00F30A00"/>
- <w:rsid w:val="00F37AEE"/>
- <w:rsid w:val="00F45EBB"/>
- <w:rsid w:val="00F52CAC"/>
- <w:rsid w:val="00F82241"/>
- <w:rsid w:val="00FB22AD"/>
- <w:rsid w:val="00FD599D"/>
- <w:rsid w:val="00FE3E65"/>
- <w:rsid w:val="04E41531"/>
- <w:rsid w:val="1F044770"/>
- <w:rsid w:val="236C701D"/>
- <w:rsid w:val="2DAB5C2F"/>
- <w:rsid w:val="4DD3211B"/>
- <w:rsid w:val="623533F6"/>
- <w:rsid w:val="66E06120"/>
- </w:rsids>
- <m:mathPr>
- <m:mathFont m:val="Cambria Math"/>
- <m:brkBin m:val="before"/>
- <m:brkBinSub m:val="--"/>
- <m:smallFrac m:val="0"/>
- <m:dispDef/>
- <m:lMargin m:val="0"/>
- <m:rMargin m:val="0"/>
- <m:defJc m:val="centerGroup"/>
- <m:wrapIndent m:val="1440"/>
- <m:intLim m:val="subSup"/>
- <m:naryLim m:val="undOvr"/>
- </m:mathPr>
- <w:themeFontLang w:val="en-US" w:eastAsia="zh-CN"/>
- <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"/>
- <w:shapeDefaults>
- <o:shapedefaults v:ext="edit" spidmax="1026"/>
- <o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout>
- </w:shapeDefaults>
- <w:decimalSymbol w:val="."/>
- <w:listSeparator w:val=","/>
- <w15:docId w15:val="{337B1F9C-D281-484F-BBCC-8C27FBA253F7}"/>
- </w:settings>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
- <pkg:xmlData>
- <w:styles mc:Ignorable="w14 w15"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml">
- <w:docDefaults>
- <w:rPrDefault>
- <w:rPr>
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
- <w:lang w:val="en-US" w:eastAsia="zh-CN" w:bidi="ar-SA"/>
- </w:rPr>
- </w:rPrDefault>
- <w:pPrDefault/>
- </w:docDefaults>
- <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="371">
- <w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
- <w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
- <w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="header" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="footer" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
- <w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="Body Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
- <w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
- <w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
- <w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Table Grid" w:uiPriority="59" w:qFormat="1"/>
- <w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
- <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
- <w:lsdException w:name="Light List" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
- <w:lsdException w:name="Revision" w:semiHidden="1"/>
- <w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
- <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
- <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
- <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
- <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
- <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
- <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
- <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
- <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
- <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
- <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
- <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
- <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
- <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
- <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
- <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
- <w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1"/>
- <w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
- <w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
- <w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
- <w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
- <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" w:qFormat="1"/>
- <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
- <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
- <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
- <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
- <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
- <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
- <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
- <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
- <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
- <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
- <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
- <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
- <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
- <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
- <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
- <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
- <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
- <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
- <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
- <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
- <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
- </w:latentStyles>
- <w:style w:type="paragraph" w:default="1" w:styleId="a">
- <w:name w:val="Normal"/>
- <w:qFormat/>
- <w:pPr>
- <w:widowControl w:val="0"/>
- <w:jc w:val="both"/>
- </w:pPr>
- <w:rPr>
- <w:kern w:val="2"/>
- <w:sz w:val="21"/>
- <w:szCs w:val="24"/>
- </w:rPr>
- </w:style>
- <w:style w:type="character" w:default="1" w:styleId="a0">
- <w:name w:val="Default Paragraph Font"/>
- <w:uiPriority w:val="1"/>
- <w:semiHidden/>
- <w:unhideWhenUsed/>
- </w:style>
- <w:style w:type="table" w:default="1" w:styleId="a1">
- <w:name w:val="Normal Table"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:unhideWhenUsed/>
- <w:tblPr>
- <w:tblInd w:w="0" w:type="dxa"/>
- <w:tblCellMar>
- <w:top w:w="0" w:type="dxa"/>
- <w:left w:w="108" w:type="dxa"/>
- <w:bottom w:w="0" w:type="dxa"/>
- <w:right w:w="108" w:type="dxa"/>
- </w:tblCellMar>
- </w:tblPr>
- </w:style>
- <w:style w:type="numbering" w:default="1" w:styleId="a2">
- <w:name w:val="No List"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:unhideWhenUsed/>
- </w:style>
- <w:style w:type="paragraph" w:styleId="a3">
- <w:name w:val="Balloon Text"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="Char"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:unhideWhenUsed/>
- <w:rPr>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="paragraph" w:styleId="a4">
- <w:name w:val="footer"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="Char0"/>
- <w:uiPriority w:val="99"/>
- <w:unhideWhenUsed/>
- <w:pPr>
- <w:tabs>
- <w:tab w:val="center" w:pos="4153"/>
- <w:tab w:val="right" w:pos="8306"/>
- </w:tabs>
- <w:snapToGrid w:val="0"/>
- <w:jc w:val="left"/>
- </w:pPr>
- <w:rPr>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="paragraph" w:styleId="a5">
- <w:name w:val="header"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="Char1"/>
- <w:uiPriority w:val="99"/>
- <w:unhideWhenUsed/>
- <w:pPr>
- <w:pBdr>
- <w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto"/>
- </w:pBdr>
- <w:tabs>
- <w:tab w:val="center" w:pos="4153"/>
- <w:tab w:val="right" w:pos="8306"/>
- </w:tabs>
- <w:snapToGrid w:val="0"/>
- <w:jc w:val="center"/>
- </w:pPr>
- <w:rPr>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="table" w:styleId="a6">
- <w:name w:val="Table Grid"/>
- <w:basedOn w:val="a1"/>
- <w:uiPriority w:val="59"/>
- <w:qFormat/>
- <w:tblPr>
- <w:tblBorders>
- <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
- </w:tblBorders>
- </w:tblPr>
- </w:style>
- <w:style w:type="character" w:customStyle="1" w:styleId="Char">
- <w:name w:val="批注框文本 Char"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a3"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:qFormat/>
- <w:rPr>
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="paragraph" w:styleId="a7">
- <w:name w:val="List Paragraph"/>
- <w:basedOn w:val="a"/>
- <w:uiPriority w:val="34"/>
- <w:qFormat/>
- <w:pPr>
- <w:ind w:firstLineChars="200" w:firstLine="420"/>
- </w:pPr>
- </w:style>
- <w:style w:type="character" w:customStyle="1" w:styleId="Char1">
- <w:name w:val="页眉 Char"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a5"/>
- <w:uiPriority w:val="99"/>
- <w:qFormat/>
- <w:rPr>
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="character" w:customStyle="1" w:styleId="Char0">
- <w:name w:val="页脚 Char"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a4"/>
- <w:uiPriority w:val="99"/>
- <w:qFormat/>
- <w:rPr>
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- </w:styles>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/customXml/itemProps1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:padding="32">
- <pkg:xmlData pkg:originalXmlStandalone="no">
- <ds:datastoreItem ds:itemID="{B1977F7D-205B-4081-913C-38D41E755F92}"
- xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
- <ds:schemaRefs>
- <ds:schemaRef ds:uri="http://www.wps.cn/officeDocument/2013/wpsCustomData"/>
- </ds:schemaRefs>
- </ds:datastoreItem>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/customXml/_rels/item1.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
- <pkg:xmlData>
- <Relationships
- xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
- <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/>
- </Relationships>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/custom.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" pkg:padding="256">
- <pkg:xmlData>
- <Properties
- xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties"
- xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
- <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="KSOProductBuildVer">
- <vt:lpwstr>2052-11.1.0.8612</vt:lpwstr>
- </property>
- </Properties>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:padding="256">
- <pkg:xmlData>
- <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">
- <dc:creator>马涛</dc:creator>
- <cp:lastModifiedBy>zhanqiang@qmth.com.cn</cp:lastModifiedBy>
- <cp:revision>2</cp:revision>
- <dcterms:created xsi:type="dcterms:W3CDTF">2019-05-25T08:44:00Z</dcterms:created>
- <dcterms:modified xsi:type="dcterms:W3CDTF">2019-05-25T08:44:00Z</dcterms:modified>
- </cp:coreProperties>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/customXml/item1.xml" pkg:contentType="application/xml" pkg:padding="32">
- <pkg:xmlData>
- <s:customData
- xmlns="http://www.wps.cn/officeDocument/2013/wpsCustomData"
- xmlns:s="http://www.wps.cn/officeDocument/2013/wpsCustomData">
- <customSectProps>
- <customSectPr/>
- </customSectProps>
- </s:customData>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
- <pkg:xmlData>
- <w:fonts mc:Ignorable="w14 w15"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml">
- <w:font w:name="Times New Roman">
- <w:panose1 w:val="02020603050405020304"/>
- <w:charset w:val="00"/>
- <w:family w:val="roman"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="宋体">
- <w:altName w:val="SimSun"/>
- <w:panose1 w:val="02010600030101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="黑体">
- <w:altName w:val="SimHei"/>
- <w:panose1 w:val="02010609060101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="modern"/>
- <w:pitch w:val="fixed"/>
- <w:sig w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="方正书宋简体">
- <w:altName w:val="宋体"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="00000000" w:usb1="00000000" w:usb2="00000010" w:usb3="00000000" w:csb0="00040000" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="华文中宋">
- <w:panose1 w:val="02010600040101010101"/>
- <w:charset w:val="86"/>
- <w:family w:val="auto"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="00000287" w:usb1="080F0000" w:usb2="00000010" w:usb3="00000000" w:csb0="0004009F" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Cambria">
- <w:panose1 w:val="02040503050406030204"/>
- <w:charset w:val="00"/>
- <w:family w:val="roman"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="E00006FF" w:usb1="420024FF" w:usb2="02000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
- </w:font>
- <w:font w:name="Calibri">
- <w:panose1 w:val="020F0502020204030204"/>
- <w:charset w:val="00"/>
- <w:family w:val="swiss"/>
- <w:pitch w:val="variable"/>
- <w:sig w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
- </w:font>
- </w:fonts>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
- <pkg:xmlData>
- <w:webSettings mc:Ignorable="w14 w15"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
- xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
- xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"/>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:padding="256">
- <pkg:xmlData>
- <Properties
- xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
- xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
- <Template>Normal.dotm</Template>
- <TotalTime>0</TotalTime>
- <Pages>2</Pages>
- <Words>132</Words>
- <Characters>753</Characters>
- <Application>Microsoft Office Word</Application>
- <DocSecurity>0</DocSecurity>
- <Lines>6</Lines>
- <Paragraphs>1</Paragraphs>
- <ScaleCrop>false</ScaleCrop>
- <Company/>
- <LinksUpToDate>false</LinksUpToDate>
- <CharactersWithSpaces>884</CharactersWithSpaces>
- <SharedDoc>false</SharedDoc>
- <HyperlinksChanged>false</HyperlinksChanged>
- <AppVersion>15.0000</AppVersion>
- </Properties>
- </pkg:xmlData>
- </pkg:part>
- </pkg:package>
|