123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664 |
- <?xml version="1.0" encoding="utf-8"?>
- <?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"/>
- </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 xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
- <w:body>
- <w:p w:rsidR="00E02293" w:rsidRDefault="00A31F26" w:rsidP="00E02293">
- <w:pPr>
- <w:rPr>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- </w:pPr>
- <w:bookmarkStart w:id="0" w:name="_GoBack"/>
- <w:bookmarkEnd w:id="0"/>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:tab/>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:tab/>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:tab/>
- </w:r>
- <w:r>
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:tab/>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t>20</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t xml:space="preserve"> </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t> </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t>年</w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t> </w:t>
- </w:r>
- <w:r>
- <w:rPr>
- <w:rFonts w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t>月湖北省高等教育自学考试</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00A31F26" w:rsidRPr="00A31F26" w:rsidRDefault="00134D69" w:rsidP="00A31F26">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:jc w:val="center"/>
- <w:rPr>
- <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hAnsi="华文中宋" w:cs="宋体"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="36"/>
- <w:szCs w:val="36"/>
- </w:rPr>
- </w:pPr>
- <w:r w:rsidR="00A31F26" w:rsidRPr="00A31F26">
- <w:rPr>
- <w:rFonts w:ascii="华文中宋" w:eastAsia="华文中宋" w:hAnsi="华文中宋" w:cs="宋体" w:hint="eastAsia"/>
- <w:b/>
- <w:bCs/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="36"/>
- <w:szCs w:val="36"/>
- </w:rPr>
- <w:t> 试题答案及评分参考</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="00A31F26" w:rsidRDefault="00A31F26" w:rsidP="00A31F26">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:ind w:left="2940" w:firstLine="420"/>
- <w:rPr>
- <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- <w:r w:rsidRPr="00A31F26">
- <w:rPr>
- <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>(课程代码:</w:t>
- </w:r>
- <w:r w:rsidR="00B8506B" w:rsidRPr="00B8506B">
- <w:rPr>
- <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${code!'无'}</w:t>
- </w:r>
- <w:r w:rsidRPr="00A31F26">
- <w:rPr>
- <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体" w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>)</w:t>
- </w:r>
- </w:p>
- <w:p w:rsidR="004B1EDB" w:rsidRPr="00A31F26" w:rsidRDefault="004B1EDB" w:rsidP="00A31F26">
- <w:pPr>
- <w:widowControl/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- <w:ind w:left="2940" w:firstLine="420"/>
- <w:rPr>
- <w:rFonts w:ascii="仿宋_GB2312" w:eastAsia="仿宋_GB2312" w:hAnsi="宋体" w:cs="宋体"/>
- <w:color w:val="000000"/>
- <w:kern w:val="0"/>
- <w:sz w:val="24"/>
- </w:rPr>
- </w:pPr>
- </w:p>
- <w:p w:rsidR="00A31F26" w:rsidRPr="00A31F26" w:rsidRDefault="004B1EDB" w:rsidP="00E02293">
- <w:pPr>
- <w:rPr>
- <w:color w:val="000000"/>
- <w:sz w:val="32"/>
- <w:szCs w:val="32"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- </w:pPr>
- <w:r>
- <w:rPr>
- <w:rFonts w:ascii="黑体" w:eastAsia="黑体" w:hAnsi="黑体" w:hint="eastAsia"/>
- <w:color w:val="000000"/>
- <w:sz w:val="23"/>
- <w:szCs w:val="23"/>
- <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
- </w:rPr>
- <w:t>本试卷满分100分,考试时间150分钟。</w:t>
- </w:r>
- </w:p>
- <#list columnsType as objType>
- <w:p w:rsidR="004B1EDB" w:rsidRPr="004B1EDB" w:rsidRDefault="009E2F49" w:rsidP="004B1EDB">
- <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:proofErr w:type="spellStart"/>
- <w:r w:rsidRPr="009E2F49">
- <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:proofErr w:type="spellEnd"/>
- <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
- <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:proofErr w:type="spellStart"/>
- <w:r w:rsidRPr="009E2F49">
- <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:proofErr w:type="spellEnd"/>
- <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
- <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:proofErr w:type="spellStart"/>
- <w:r w:rsidRPr="009E2F49">
- <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:proofErr w:type="spellEnd"/>
- <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
- <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:rsidRPr="009E2F49">
- <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:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
- <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:proofErr w:type="spellStart"/>
- <w:r w:rsidRPr="009E2F49">
- <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:proofErr w:type="spellEnd"/>
- <w:r w:rsidR="004B1EDB" w:rsidRPr="004B1EDB">
- <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>
- <#list columns as obj>
- <#if objType.typeId == obj.typeId>
- <w:p w:rsidR="00E02293" w:rsidRPr="004B1EDB" w:rsidRDefault="004B1EDB" w:rsidP="004B1EDB">
- <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="00E02293" w:rsidRPr="004B1EDB">
- <w:rPr>
- <w:sz w:val="24"/>
- </w:rPr>
- <w:t>${obj.answer!'该题无答案'}</w:t>
- </w:r>
- </w:p>
-
- </#if>
- </#list>
- </#list>
- <w:sectPr w:rsidR="00E02293" w:rsidRPr="00BE6AD4">
- <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/_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="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
- <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/fontTable" Target="fontTable.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/numbering" Target="numbering.xml"/>
- <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
- <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
- <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/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
- <pkg:xmlData>
- <w:footnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
- <w:footnote w:type="separator" w:id="-1">
- <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
- <w:r>
- <w:separator/>
- </w:r>
- </w:p>
- </w:footnote>
- <w:footnote w:type="continuationSeparator" w:id="0">
- <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
- <w:r>
- <w:continuationSeparator/>
- </w:r>
- </w:p>
- </w:footnote>
- </w:footnotes>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
- <pkg:xmlData>
- <w:endnotes xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
- <w:endnote w:type="separator" w:id="-1">
- <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
- <w:r>
- <w:separator/>
- </w:r>
- </w:p>
- </w:endnote>
- <w:endnote w:type="continuationSeparator" w:id="0">
- <w:p w:rsidR="00991189" w:rsidRDefault="00991189" w:rsidP="00075EC9">
- <w:r>
- <w:continuationSeparator/>
- </w:r>
- </w:p>
- </w:endnote>
- </w:endnotes>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
- <pkg:xmlData>
- <a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office 主题">
- <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 xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid">
- <w:zoom w:percent="170"/>
- <w:bordersDoNotSurroundHeader/>
- <w:bordersDoNotSurroundFooter/>
- <w:proofState w:spelling="clean" w:grammar="clean"/>
- <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:hdrShapeDefaults>
- <o:shapedefaults v:ext="edit" spidmax="2049"/>
- </w:hdrShapeDefaults>
- <w:footnotePr>
- <w:footnote w:id="-1"/>
- <w:footnote w:id="0"/>
- </w:footnotePr>
- <w:endnotePr>
- <w:endnote w:id="-1"/>
- <w:endnote w:id="0"/>
- </w:endnotePr>
- <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:compatSetting w:name="useWord2013TrackBottomHyphenation" 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="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="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="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="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="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="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="00836510"/>
- <w:rsid w:val="00836DED"/>
- <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="00B0382A"/>
- <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="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="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: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="2049"/>
- <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="{5F07DDE3-6416-41BA-A37E-EECC986D68F5}"/>
- </w:settings>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/numbering.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml">
- <pkg:xmlData>
- <w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
- <w:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="084A204F"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="6B5AE21E"/>
- <w:lvl w:ilvl="0" w:tplc="0409000F">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="420" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="1" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="11BA4B96"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="FFA64D36"/>
- <w:lvl w:ilvl="0" w:tplc="908CB04C">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="2" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="18675907"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="013E224C"/>
- <w:lvl w:ilvl="0" w:tplc="908CB04C">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="3" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="27994213"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="BC7EBA98"/>
- <w:lvl w:ilvl="0" w:tplc="3746E69E">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="(%1)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="4" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="31401546"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="C2AE2842"/>
- <w:lvl w:ilvl="0" w:tplc="2586ED86">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="5" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="3B2D5CDE"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="9F4A6608"/>
- <w:lvl w:ilvl="0" w:tplc="AB74F690">
- <w:start w:val="1"/>
- <w:numFmt w:val="upperLetter"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="6" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="4D0C0927"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="A93E3712"/>
- <w:lvl w:ilvl="0" w:tplc="908CB04C">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="7" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="62896423"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="DEE224EE"/>
- <w:lvl w:ilvl="0" w:tplc="908CB04C">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="360" w:hanging="360"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:hint="default"/>
- </w:rPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:abstractNum w:abstractNumId="8" w15:restartNumberingAfterBreak="0">
- <w:nsid w:val="6FD350DC"/>
- <w:multiLevelType w:val="hybridMultilevel"/>
- <w:tmpl w:val="BE985848"/>
- <w:lvl w:ilvl="0" w:tplc="0409000F">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%1."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="420" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%2)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="840" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%3."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="1260" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%4."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="1680" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%5)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2100" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%6."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="2520" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="decimal"/>
- <w:lvlText w:val="%7."/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="2940" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerLetter"/>
- <w:lvlText w:val="%8)"/>
- <w:lvlJc w:val="left"/>
- <w:pPr>
- <w:ind w:left="3360" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="1">
- <w:start w:val="1"/>
- <w:numFmt w:val="lowerRoman"/>
- <w:lvlText w:val="%9."/>
- <w:lvlJc w:val="right"/>
- <w:pPr>
- <w:ind w:left="3780" w:hanging="420"/>
- </w:pPr>
- </w:lvl>
- </w:abstractNum>
- <w:num w:numId="1">
- <w:abstractNumId w:val="8"/>
- </w:num>
- <w:num w:numId="2">
- <w:abstractNumId w:val="7"/>
- </w:num>
- <w:num w:numId="3">
- <w:abstractNumId w:val="1"/>
- </w:num>
- <w:num w:numId="4">
- <w:abstractNumId w:val="0"/>
- </w:num>
- <w:num w:numId="5">
- <w:abstractNumId w:val="6"/>
- </w:num>
- <w:num w:numId="6">
- <w:abstractNumId w:val="2"/>
- </w:num>
- <w:num w:numId="7">
- <w:abstractNumId w:val="5"/>
- </w:num>
- <w:num w:numId="8">
- <w:abstractNumId w:val="3"/>
- </w:num>
- <w:num w:numId="9">
- <w:abstractNumId w:val="4"/>
- </w:num>
- </w:numbering>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
- <pkg:xmlData>
- <w:styles xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
- <w:docDefaults>
- <w:rPrDefault>
- <w:rPr>
- <w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/>
- <w:kern w:val="2"/>
- <w:sz w:val="21"/>
- <w:szCs w:val="22"/>
- <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="375">
- <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:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="footer" w:semiHidden="1" 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: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:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
- <w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="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="Quote" w:uiPriority="29" w:qFormat="1"/>
- <w:lsdException w:name="Intense Quote" w:uiPriority="30" 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:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1"/>
- <w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
- </w:latentStyles>
- <w:style w:type="paragraph" w:default="1" w:styleId="a">
- <w:name w:val="Normal"/>
- <w:qFormat/>
- <w:rsid w:val="000E491E"/>
- <w:pPr>
- <w:widowControl w:val="0"/>
- <w:jc w:val="both"/>
- </w:pPr>
- <w:rPr>
- <w:rFonts w:ascii="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
- <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="table" w:styleId="a3">
- <w:name w:val="Table Grid"/>
- <w:basedOn w:val="a1"/>
- <w:uiPriority w:val="59"/>
- <w:rsid w:val="00B33B71"/>
- <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="paragraph" w:styleId="a4">
- <w:name w:val="Balloon Text"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="a5"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:unhideWhenUsed/>
- <w:rsid w:val="00B33B71"/>
- <w:rPr>
- <w:sz w:val="18"/>
- <w:szCs w:val="18"/>
- </w:rPr>
- </w:style>
- <w:style w:type="character" w:customStyle="1" w:styleId="a5">
- <w:name w:val="批注框文本 字符"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a4"/>
- <w:uiPriority w:val="99"/>
- <w:semiHidden/>
- <w:rsid w:val="00B33B71"/>
- <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="a6">
- <w:name w:val="List Paragraph"/>
- <w:basedOn w:val="a"/>
- <w:uiPriority w:val="34"/>
- <w:qFormat/>
- <w:rsid w:val="00426201"/>
- <w:pPr>
- <w:ind w:firstLineChars="200" w:firstLine="420"/>
- </w:pPr>
- </w:style>
- <w:style w:type="paragraph" w:styleId="a7">
- <w:name w:val="header"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="a8"/>
- <w:uiPriority w:val="99"/>
- <w:unhideWhenUsed/>
- <w:rsid w:val="00075EC9"/>
- <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="character" w:customStyle="1" w:styleId="a8">
- <w:name w:val="页眉 字符"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a7"/>
- <w:uiPriority w:val="99"/>
- <w:rsid w:val="00075EC9"/>
- <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="a9">
- <w:name w:val="footer"/>
- <w:basedOn w:val="a"/>
- <w:link w:val="aa"/>
- <w:uiPriority w:val="99"/>
- <w:unhideWhenUsed/>
- <w:rsid w:val="00075EC9"/>
- <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="character" w:customStyle="1" w:styleId="aa">
- <w:name w:val="页脚 字符"/>
- <w:basedOn w:val="a0"/>
- <w:link w:val="a9"/>
- <w:uiPriority w:val="99"/>
- <w:rsid w:val="00075EC9"/>
- <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="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
- <pkg:xmlData>
- <w:webSettings xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
- <w:divs>
- <w:div w:id="45836578">
- <w:bodyDiv w:val="1"/>
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="0"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- </w:div>
- <w:div w:id="951131151">
- <w:bodyDiv w:val="1"/>
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="0"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- <w:divsChild>
- <w:div w:id="499396814">
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="300"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- </w:div>
- <w:div w:id="1597443181">
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="150"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- </w:div>
- </w:divsChild>
- </w:div>
- <w:div w:id="1495073933">
- <w:bodyDiv w:val="1"/>
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="0"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- </w:div>
- <w:div w:id="1817987612">
- <w:bodyDiv w:val="1"/>
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="0"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- <w:divsChild>
- <w:div w:id="2088189912">
- <w:marLeft w:val="0"/>
- <w:marRight w:val="0"/>
- <w:marTop w:val="0"/>
- <w:marBottom w:val="0"/>
- <w:divBdr>
- <w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- <w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/>
- </w:divBdr>
- </w:div>
- </w:divsChild>
- </w:div>
- </w:divs>
- <w:optimizeForBrowser/>
- <w:allowPNG/>
- </w:webSettings>
- </pkg:xmlData>
- </pkg:part>
- <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
- <pkg:xmlData>
- <w:fonts xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid">
- <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="E0002AFF" w:usb1="C0007841" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" 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="E10002FF" w:usb1="4000ACFF" w:usb2="00000009" w:usb3="00000000" w:csb0="0000019F" 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: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="仿宋_GB2312">
- <w:altName w:val="宋体"/>
- <w:panose1 w:val="00000000000000000000"/>
- <w:charset w:val="86"/>
- <w:family w:val="roman"/>
- <w:notTrueType/>
- <w:pitch w:val="default"/>
- <w:sig w:usb0="00000001" w:usb1="080E0000" w:usb2="00000010" w:usb3="00000000" w:csb0="00040000" 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="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="A00002EF" w:usb1="4000004B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
- </w:font>
- </w:fonts>
- </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>严奉志 启明</cp:lastModifiedBy>
- <cp:revision>2</cp:revision>
- <dcterms:created xsi:type="dcterms:W3CDTF">2019-03-12T05:53:00Z</dcterms:created>
- <dcterms:modified xsi:type="dcterms:W3CDTF">2019-03-12T05:53:00Z</dcterms:modified>
- </cp:coreProperties>
- </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>1</Pages>
- <Words>22</Words>
- <Characters>128</Characters>
- <Application>Microsoft Office Word</Application>
- <DocSecurity>0</DocSecurity>
- <Lines>1</Lines>
- <Paragraphs>1</Paragraphs>
- <ScaleCrop>false</ScaleCrop>
- <Company/>
- <LinksUpToDate>false</LinksUpToDate>
- <CharactersWithSpaces>149</CharactersWithSpaces>
- <SharedDoc>false</SharedDoc>
- <HyperlinksChanged>false</HyperlinksChanged>
- <AppVersion>16.0000</AppVersion>
- </Properties>
- </pkg:xmlData>
- </pkg:part>
- </pkg:package>
|