default.json 234 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824
  1. {
  2. "source_file": "default.docx",
  3. "total_styles": 28,
  4. "styles": [
  5. {
  6. "name": "Normal",
  7. "style_id": "1",
  8. "type": "PARAGRAPH (1)",
  9. "builtin": true,
  10. "hidden": false,
  11. "quick_style": true,
  12. "priority": 0,
  13. "base_style": null,
  14. "next_paragraph_style": "Normal",
  15. "font_summary": {
  16. "name": null,
  17. "size_pt": 10.5,
  18. "bold": null,
  19. "italic": null,
  20. "underline": null,
  21. "color_rgb": null,
  22. "strike": null,
  23. "all_caps": null,
  24. "small_caps": null
  25. },
  26. "paragraph_format_summary": {
  27. "alignment": "JUSTIFY (3)",
  28. "left_indent_pt": null,
  29. "right_indent_pt": null,
  30. "first_line_indent_pt": 44.0,
  31. "space_before_pt": null,
  32. "space_after_pt": null,
  33. "line_spacing": 1.0,
  34. "keep_together": null,
  35. "keep_with_next": null,
  36. "page_break_before": null
  37. },
  38. "full_xml_definition": {
  39. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  40. "@attrib": {
  41. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  42. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}default": "1",
  43. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "1"
  44. },
  45. "@children": {
  46. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  47. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  48. "@attrib": {
  49. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "Normal"
  50. }
  51. },
  52. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  53. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  54. "@attrib": {}
  55. },
  56. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  57. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  58. "@attrib": {
  59. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  60. }
  61. },
  62. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  63. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  64. "@attrib": {},
  65. "@children": {
  66. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl": {
  67. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl",
  68. "@attrib": {
  69. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  70. }
  71. },
  72. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  73. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  74. "@attrib": {
  75. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "240",
  76. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  77. }
  78. },
  79. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  80. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  81. "@attrib": {
  82. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "880",
  83. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "200"
  84. }
  85. },
  86. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  87. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  88. "@attrib": {
  89. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "both"
  90. }
  91. }
  92. }
  93. },
  94. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  95. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  96. "@attrib": {},
  97. "@children": {
  98. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  99. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  100. "@attrib": {
  101. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体",
  102. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}asciiTheme": "minorAscii",
  103. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsiTheme": "minorAscii",
  104. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cstheme": "minorBidi"
  105. }
  106. },
  107. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  108. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  109. "@attrib": {
  110. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  111. }
  112. },
  113. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  114. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  115. "@attrib": {
  116. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "21"
  117. }
  118. },
  119. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  120. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  121. "@attrib": {
  122. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  123. }
  124. },
  125. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang": {
  126. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang",
  127. "@attrib": {
  128. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "en-US",
  129. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "zh-CN",
  130. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bidi": "ar-SA"
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. },
  138. {
  139. "name": "Heading 1",
  140. "style_id": "2",
  141. "type": "PARAGRAPH (1)",
  142. "builtin": true,
  143. "hidden": false,
  144. "quick_style": true,
  145. "priority": 0,
  146. "base_style": "Normal",
  147. "next_paragraph_style": "Normal",
  148. "font_summary": {
  149. "name": null,
  150. "size_pt": 15.0,
  151. "bold": null,
  152. "italic": null,
  153. "underline": null,
  154. "color_rgb": null,
  155. "strike": null,
  156. "all_caps": null,
  157. "small_caps": null
  158. },
  159. "paragraph_format_summary": {
  160. "alignment": null,
  161. "left_indent_pt": null,
  162. "right_indent_pt": null,
  163. "first_line_indent_pt": 44.0,
  164. "space_before_pt": null,
  165. "space_after_pt": null,
  166. "line_spacing": 1.5,
  167. "keep_together": true,
  168. "keep_with_next": true,
  169. "page_break_before": null
  170. },
  171. "full_xml_definition": {
  172. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  173. "@attrib": {
  174. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  175. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "2"
  176. },
  177. "@children": {
  178. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  179. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  180. "@attrib": {
  181. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 1"
  182. }
  183. },
  184. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  185. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  186. "@attrib": {
  187. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  188. }
  189. },
  190. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  191. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  192. "@attrib": {
  193. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  194. }
  195. },
  196. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  197. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  198. "@attrib": {
  199. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "22"
  200. }
  201. },
  202. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  203. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  204. "@attrib": {}
  205. },
  206. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  207. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  208. "@attrib": {
  209. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  210. }
  211. },
  212. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  213. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  214. "@attrib": {},
  215. "@children": {
  216. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  217. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  218. "@attrib": {}
  219. },
  220. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  221. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  222. "@attrib": {}
  223. },
  224. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  225. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  226. "@attrib": {},
  227. "@children": {
  228. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  229. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  230. "@attrib": {
  231. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  232. }
  233. },
  234. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  235. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  236. "@attrib": {
  237. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  238. }
  239. }
  240. }
  241. },
  242. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  243. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  244. "@attrib": {
  245. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "360",
  246. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  247. }
  248. },
  249. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  250. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  251. "@attrib": {
  252. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "880",
  253. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "200"
  254. }
  255. },
  256. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  257. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  258. "@attrib": {
  259. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  260. }
  261. }
  262. }
  263. },
  264. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  265. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  266. "@attrib": {},
  267. "@children": {
  268. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  269. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  270. "@attrib": {
  271. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "44"
  272. }
  273. },
  274. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  275. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  276. "@attrib": {
  277. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "30"
  278. }
  279. }
  280. }
  281. }
  282. }
  283. }
  284. },
  285. {
  286. "name": "Heading 2",
  287. "style_id": "3",
  288. "type": "PARAGRAPH (1)",
  289. "builtin": true,
  290. "hidden": false,
  291. "quick_style": true,
  292. "priority": 0,
  293. "base_style": "Normal",
  294. "next_paragraph_style": "Normal",
  295. "font_summary": {
  296. "name": "Arial",
  297. "size_pt": 14.0,
  298. "bold": null,
  299. "italic": null,
  300. "underline": null,
  301. "color_rgb": null,
  302. "strike": null,
  303. "all_caps": null,
  304. "small_caps": null
  305. },
  306. "paragraph_format_summary": {
  307. "alignment": null,
  308. "left_indent_pt": null,
  309. "right_indent_pt": null,
  310. "first_line_indent_pt": 0.0,
  311. "space_before_pt": null,
  312. "space_after_pt": null,
  313. "line_spacing": 1.5,
  314. "keep_together": true,
  315. "keep_with_next": true,
  316. "page_break_before": null
  317. },
  318. "full_xml_definition": {
  319. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  320. "@attrib": {
  321. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  322. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "3"
  323. },
  324. "@children": {
  325. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  326. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  327. "@attrib": {
  328. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 2"
  329. }
  330. },
  331. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  332. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  333. "@attrib": {
  334. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  335. }
  336. },
  337. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  338. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  339. "@attrib": {
  340. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  341. }
  342. },
  343. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  344. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  345. "@attrib": {}
  346. },
  347. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  348. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  349. "@attrib": {}
  350. },
  351. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  352. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  353. "@attrib": {
  354. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  355. }
  356. },
  357. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  358. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  359. "@attrib": {},
  360. "@children": {
  361. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  362. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  363. "@attrib": {}
  364. },
  365. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  366. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  367. "@attrib": {}
  368. },
  369. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  370. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  371. "@attrib": {},
  372. "@children": {
  373. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  374. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  375. "@attrib": {
  376. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  377. }
  378. },
  379. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  380. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  381. "@attrib": {
  382. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  383. }
  384. }
  385. }
  386. },
  387. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  388. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  389. "@attrib": {
  390. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "360",
  391. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  392. }
  393. },
  394. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  395. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  396. "@attrib": {
  397. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0",
  398. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  399. }
  400. },
  401. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  402. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  403. "@attrib": {
  404. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  405. }
  406. }
  407. }
  408. },
  409. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  410. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  411. "@attrib": {},
  412. "@children": {
  413. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  414. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  415. "@attrib": {
  416. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Arial",
  417. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Arial"
  418. }
  419. },
  420. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  421. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  422. "@attrib": {
  423. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "28"
  424. }
  425. }
  426. }
  427. }
  428. }
  429. }
  430. },
  431. {
  432. "name": "Heading 3",
  433. "style_id": "4",
  434. "type": "PARAGRAPH (1)",
  435. "builtin": true,
  436. "hidden": false,
  437. "quick_style": true,
  438. "priority": 0,
  439. "base_style": "Normal",
  440. "next_paragraph_style": "Normal",
  441. "font_summary": {
  442. "name": null,
  443. "size_pt": 12.0,
  444. "bold": null,
  445. "italic": null,
  446. "underline": null,
  447. "color_rgb": null,
  448. "strike": null,
  449. "all_caps": null,
  450. "small_caps": null
  451. },
  452. "paragraph_format_summary": {
  453. "alignment": null,
  454. "left_indent_pt": 0.0,
  455. "right_indent_pt": null,
  456. "first_line_indent_pt": 20.0,
  457. "space_before_pt": null,
  458. "space_after_pt": null,
  459. "line_spacing": 1.5,
  460. "keep_together": true,
  461. "keep_with_next": true,
  462. "page_break_before": null
  463. },
  464. "full_xml_definition": {
  465. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  466. "@attrib": {
  467. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  468. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "4"
  469. },
  470. "@children": {
  471. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  472. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  473. "@attrib": {
  474. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 3"
  475. }
  476. },
  477. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  478. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  479. "@attrib": {
  480. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  481. }
  482. },
  483. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  484. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  485. "@attrib": {
  486. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  487. }
  488. },
  489. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  490. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  491. "@attrib": {}
  492. },
  493. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  494. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  495. "@attrib": {}
  496. },
  497. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  498. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  499. "@attrib": {
  500. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  501. }
  502. },
  503. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  504. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  505. "@attrib": {},
  506. "@children": {
  507. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  508. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  509. "@attrib": {}
  510. },
  511. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  512. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  513. "@attrib": {}
  514. },
  515. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  516. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  517. "@attrib": {},
  518. "@children": {
  519. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  520. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  521. "@attrib": {
  522. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  523. }
  524. },
  525. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  526. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  527. "@attrib": {
  528. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  529. }
  530. }
  531. }
  532. },
  533. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  534. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  535. "@attrib": {
  536. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "360",
  537. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  538. }
  539. },
  540. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  541. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  542. "@attrib": {
  543. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  544. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "400",
  545. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  546. }
  547. },
  548. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  549. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  550. "@attrib": {
  551. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  552. }
  553. }
  554. }
  555. },
  556. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  557. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  558. "@attrib": {},
  559. "@children": {
  560. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  561. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  562. "@attrib": {
  563. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  564. }
  565. }
  566. }
  567. }
  568. }
  569. }
  570. },
  571. {
  572. "name": "Heading 4",
  573. "style_id": "5",
  574. "type": "PARAGRAPH (1)",
  575. "builtin": true,
  576. "hidden": false,
  577. "quick_style": true,
  578. "priority": 0,
  579. "base_style": "Normal",
  580. "next_paragraph_style": "Normal",
  581. "font_summary": {
  582. "name": "Arial",
  583. "size_pt": 14.0,
  584. "bold": true,
  585. "italic": null,
  586. "underline": null,
  587. "color_rgb": null,
  588. "strike": null,
  589. "all_caps": null,
  590. "small_caps": null
  591. },
  592. "paragraph_format_summary": {
  593. "alignment": null,
  594. "left_indent_pt": null,
  595. "right_indent_pt": null,
  596. "first_line_indent_pt": 20.1,
  597. "space_before_pt": 14.0,
  598. "space_after_pt": 14.5,
  599. "line_spacing": 1.55,
  600. "keep_together": true,
  601. "keep_with_next": true,
  602. "page_break_before": null
  603. },
  604. "full_xml_definition": {
  605. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  606. "@attrib": {
  607. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  608. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "5"
  609. },
  610. "@children": {
  611. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  612. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  613. "@attrib": {
  614. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 4"
  615. }
  616. },
  617. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  618. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  619. "@attrib": {
  620. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  621. }
  622. },
  623. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  624. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  625. "@attrib": {
  626. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  627. }
  628. },
  629. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  630. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  631. "@attrib": {}
  632. },
  633. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  634. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  635. "@attrib": {}
  636. },
  637. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  638. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  639. "@attrib": {
  640. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  641. }
  642. },
  643. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  644. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  645. "@attrib": {},
  646. "@children": {
  647. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  648. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  649. "@attrib": {}
  650. },
  651. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  652. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  653. "@attrib": {}
  654. },
  655. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  656. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  657. "@attrib": {},
  658. "@children": {
  659. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  660. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  661. "@attrib": {
  662. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "3"
  663. }
  664. },
  665. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  666. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  667. "@attrib": {
  668. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  669. }
  670. }
  671. }
  672. },
  673. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  674. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  675. "@attrib": {
  676. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "280",
  677. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "290",
  678. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "372",
  679. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  680. }
  681. },
  682. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  683. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  684. "@attrib": {
  685. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  686. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  687. }
  688. },
  689. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  690. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  691. "@attrib": {
  692. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "3"
  693. }
  694. }
  695. }
  696. },
  697. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  698. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  699. "@attrib": {},
  700. "@children": {
  701. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  702. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  703. "@attrib": {
  704. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Arial",
  705. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Arial",
  706. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体"
  707. }
  708. },
  709. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b": {
  710. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b",
  711. "@attrib": {}
  712. },
  713. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  714. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  715. "@attrib": {
  716. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "28"
  717. }
  718. }
  719. }
  720. }
  721. }
  722. }
  723. },
  724. {
  725. "name": "Heading 5",
  726. "style_id": "6",
  727. "type": "PARAGRAPH (1)",
  728. "builtin": true,
  729. "hidden": true,
  730. "quick_style": true,
  731. "priority": 0,
  732. "base_style": "Normal",
  733. "next_paragraph_style": "Normal",
  734. "font_summary": {
  735. "name": null,
  736. "size_pt": 14.0,
  737. "bold": true,
  738. "italic": null,
  739. "underline": null,
  740. "color_rgb": null,
  741. "strike": null,
  742. "all_caps": null,
  743. "small_caps": null
  744. },
  745. "paragraph_format_summary": {
  746. "alignment": null,
  747. "left_indent_pt": null,
  748. "right_indent_pt": null,
  749. "first_line_indent_pt": 20.1,
  750. "space_before_pt": 14.0,
  751. "space_after_pt": 14.5,
  752. "line_spacing": 1.55,
  753. "keep_together": true,
  754. "keep_with_next": true,
  755. "page_break_before": null
  756. },
  757. "full_xml_definition": {
  758. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  759. "@attrib": {
  760. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  761. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "6"
  762. },
  763. "@children": {
  764. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  765. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  766. "@attrib": {
  767. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 5"
  768. }
  769. },
  770. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  771. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  772. "@attrib": {
  773. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  774. }
  775. },
  776. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  777. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  778. "@attrib": {
  779. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  780. }
  781. },
  782. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  783. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  784. "@attrib": {}
  785. },
  786. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  787. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  788. "@attrib": {}
  789. },
  790. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  791. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  792. "@attrib": {}
  793. },
  794. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  795. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  796. "@attrib": {
  797. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  798. }
  799. },
  800. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  801. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  802. "@attrib": {},
  803. "@children": {
  804. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  805. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  806. "@attrib": {}
  807. },
  808. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  809. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  810. "@attrib": {}
  811. },
  812. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  813. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  814. "@attrib": {},
  815. "@children": {
  816. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  817. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  818. "@attrib": {
  819. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "4"
  820. }
  821. },
  822. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  823. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  824. "@attrib": {
  825. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  826. }
  827. }
  828. }
  829. },
  830. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  831. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  832. "@attrib": {
  833. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "280",
  834. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeLines": "0",
  835. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "0",
  836. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "290",
  837. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterLines": "0",
  838. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "0",
  839. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "372",
  840. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  841. }
  842. },
  843. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  844. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  845. "@attrib": {
  846. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  847. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  848. }
  849. },
  850. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  851. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  852. "@attrib": {
  853. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "4"
  854. }
  855. }
  856. }
  857. },
  858. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  859. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  860. "@attrib": {},
  861. "@children": {
  862. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b": {
  863. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b",
  864. "@attrib": {}
  865. },
  866. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  867. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  868. "@attrib": {
  869. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "28"
  870. }
  871. }
  872. }
  873. }
  874. }
  875. }
  876. },
  877. {
  878. "name": "Heading 6",
  879. "style_id": "7",
  880. "type": "PARAGRAPH (1)",
  881. "builtin": true,
  882. "hidden": true,
  883. "quick_style": true,
  884. "priority": 0,
  885. "base_style": "Normal",
  886. "next_paragraph_style": "Normal",
  887. "font_summary": {
  888. "name": "Arial",
  889. "size_pt": 12.0,
  890. "bold": true,
  891. "italic": null,
  892. "underline": null,
  893. "color_rgb": null,
  894. "strike": null,
  895. "all_caps": null,
  896. "small_caps": null
  897. },
  898. "paragraph_format_summary": {
  899. "alignment": null,
  900. "left_indent_pt": null,
  901. "right_indent_pt": null,
  902. "first_line_indent_pt": 20.1,
  903. "space_before_pt": 12.0,
  904. "space_after_pt": 3.2,
  905. "line_spacing": 1.3208333333333333,
  906. "keep_together": true,
  907. "keep_with_next": true,
  908. "page_break_before": null
  909. },
  910. "full_xml_definition": {
  911. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  912. "@attrib": {
  913. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  914. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "7"
  915. },
  916. "@children": {
  917. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  918. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  919. "@attrib": {
  920. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 6"
  921. }
  922. },
  923. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  924. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  925. "@attrib": {
  926. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  927. }
  928. },
  929. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  930. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  931. "@attrib": {
  932. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  933. }
  934. },
  935. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  936. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  937. "@attrib": {}
  938. },
  939. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  940. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  941. "@attrib": {}
  942. },
  943. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  944. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  945. "@attrib": {}
  946. },
  947. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  948. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  949. "@attrib": {
  950. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  951. }
  952. },
  953. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  954. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  955. "@attrib": {},
  956. "@children": {
  957. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  958. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  959. "@attrib": {}
  960. },
  961. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  962. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  963. "@attrib": {}
  964. },
  965. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  966. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  967. "@attrib": {},
  968. "@children": {
  969. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  970. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  971. "@attrib": {
  972. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "5"
  973. }
  974. },
  975. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  976. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  977. "@attrib": {
  978. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  979. }
  980. }
  981. }
  982. },
  983. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  984. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  985. "@attrib": {
  986. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "240",
  987. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeLines": "0",
  988. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "0",
  989. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "64",
  990. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterLines": "0",
  991. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "0",
  992. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "317",
  993. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  994. }
  995. },
  996. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  997. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  998. "@attrib": {
  999. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  1000. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  1001. }
  1002. },
  1003. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  1004. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  1005. "@attrib": {
  1006. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "5"
  1007. }
  1008. }
  1009. }
  1010. },
  1011. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  1012. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  1013. "@attrib": {},
  1014. "@children": {
  1015. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  1016. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  1017. "@attrib": {
  1018. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Arial",
  1019. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Arial",
  1020. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体"
  1021. }
  1022. },
  1023. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b": {
  1024. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b",
  1025. "@attrib": {}
  1026. },
  1027. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  1028. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  1029. "@attrib": {
  1030. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  1031. }
  1032. }
  1033. }
  1034. }
  1035. }
  1036. }
  1037. },
  1038. {
  1039. "name": "Heading 7",
  1040. "style_id": "8",
  1041. "type": "PARAGRAPH (1)",
  1042. "builtin": true,
  1043. "hidden": true,
  1044. "quick_style": true,
  1045. "priority": 0,
  1046. "base_style": "Normal",
  1047. "next_paragraph_style": "Normal",
  1048. "font_summary": {
  1049. "name": null,
  1050. "size_pt": 12.0,
  1051. "bold": true,
  1052. "italic": null,
  1053. "underline": null,
  1054. "color_rgb": null,
  1055. "strike": null,
  1056. "all_caps": null,
  1057. "small_caps": null
  1058. },
  1059. "paragraph_format_summary": {
  1060. "alignment": null,
  1061. "left_indent_pt": null,
  1062. "right_indent_pt": null,
  1063. "first_line_indent_pt": 20.1,
  1064. "space_before_pt": 12.0,
  1065. "space_after_pt": 3.2,
  1066. "line_spacing": 1.3208333333333333,
  1067. "keep_together": true,
  1068. "keep_with_next": true,
  1069. "page_break_before": null
  1070. },
  1071. "full_xml_definition": {
  1072. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1073. "@attrib": {
  1074. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1075. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "8"
  1076. },
  1077. "@children": {
  1078. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1079. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1080. "@attrib": {
  1081. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 7"
  1082. }
  1083. },
  1084. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1085. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1086. "@attrib": {
  1087. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1088. }
  1089. },
  1090. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  1091. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  1092. "@attrib": {
  1093. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1094. }
  1095. },
  1096. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  1097. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  1098. "@attrib": {}
  1099. },
  1100. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  1101. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  1102. "@attrib": {}
  1103. },
  1104. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1105. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1106. "@attrib": {}
  1107. },
  1108. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1109. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1110. "@attrib": {
  1111. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1112. }
  1113. },
  1114. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1115. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1116. "@attrib": {},
  1117. "@children": {
  1118. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  1119. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  1120. "@attrib": {}
  1121. },
  1122. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  1123. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  1124. "@attrib": {}
  1125. },
  1126. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  1127. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  1128. "@attrib": {},
  1129. "@children": {
  1130. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  1131. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  1132. "@attrib": {
  1133. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "6"
  1134. }
  1135. },
  1136. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  1137. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  1138. "@attrib": {
  1139. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1140. }
  1141. }
  1142. }
  1143. },
  1144. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  1145. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  1146. "@attrib": {
  1147. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "240",
  1148. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeLines": "0",
  1149. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "0",
  1150. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "64",
  1151. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterLines": "0",
  1152. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "0",
  1153. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "317",
  1154. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  1155. }
  1156. },
  1157. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  1158. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  1159. "@attrib": {
  1160. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  1161. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  1162. }
  1163. },
  1164. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  1165. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  1166. "@attrib": {
  1167. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "6"
  1168. }
  1169. }
  1170. }
  1171. },
  1172. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  1173. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  1174. "@attrib": {},
  1175. "@children": {
  1176. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b": {
  1177. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b",
  1178. "@attrib": {}
  1179. },
  1180. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  1181. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  1182. "@attrib": {
  1183. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  1184. }
  1185. }
  1186. }
  1187. }
  1188. }
  1189. }
  1190. },
  1191. {
  1192. "name": "Heading 8",
  1193. "style_id": "9",
  1194. "type": "PARAGRAPH (1)",
  1195. "builtin": true,
  1196. "hidden": true,
  1197. "quick_style": true,
  1198. "priority": 0,
  1199. "base_style": "Normal",
  1200. "next_paragraph_style": "Normal",
  1201. "font_summary": {
  1202. "name": "Arial",
  1203. "size_pt": 12.0,
  1204. "bold": null,
  1205. "italic": null,
  1206. "underline": null,
  1207. "color_rgb": null,
  1208. "strike": null,
  1209. "all_caps": null,
  1210. "small_caps": null
  1211. },
  1212. "paragraph_format_summary": {
  1213. "alignment": null,
  1214. "left_indent_pt": null,
  1215. "right_indent_pt": null,
  1216. "first_line_indent_pt": 20.1,
  1217. "space_before_pt": 12.0,
  1218. "space_after_pt": 3.2,
  1219. "line_spacing": 1.3208333333333333,
  1220. "keep_together": true,
  1221. "keep_with_next": true,
  1222. "page_break_before": null
  1223. },
  1224. "full_xml_definition": {
  1225. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1226. "@attrib": {
  1227. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1228. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "9"
  1229. },
  1230. "@children": {
  1231. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1232. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1233. "@attrib": {
  1234. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 8"
  1235. }
  1236. },
  1237. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1238. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1239. "@attrib": {
  1240. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1241. }
  1242. },
  1243. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  1244. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  1245. "@attrib": {
  1246. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1247. }
  1248. },
  1249. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  1250. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  1251. "@attrib": {}
  1252. },
  1253. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  1254. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  1255. "@attrib": {}
  1256. },
  1257. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1258. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1259. "@attrib": {}
  1260. },
  1261. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1262. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1263. "@attrib": {
  1264. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1265. }
  1266. },
  1267. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1268. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1269. "@attrib": {},
  1270. "@children": {
  1271. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  1272. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  1273. "@attrib": {}
  1274. },
  1275. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  1276. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  1277. "@attrib": {}
  1278. },
  1279. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  1280. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  1281. "@attrib": {},
  1282. "@children": {
  1283. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  1284. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  1285. "@attrib": {
  1286. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "7"
  1287. }
  1288. },
  1289. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  1290. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  1291. "@attrib": {
  1292. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1293. }
  1294. }
  1295. }
  1296. },
  1297. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  1298. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  1299. "@attrib": {
  1300. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "240",
  1301. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeLines": "0",
  1302. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "0",
  1303. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "64",
  1304. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterLines": "0",
  1305. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "0",
  1306. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "317",
  1307. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  1308. }
  1309. },
  1310. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  1311. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  1312. "@attrib": {
  1313. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  1314. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  1315. }
  1316. },
  1317. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  1318. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  1319. "@attrib": {
  1320. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "7"
  1321. }
  1322. }
  1323. }
  1324. },
  1325. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  1326. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  1327. "@attrib": {},
  1328. "@children": {
  1329. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  1330. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  1331. "@attrib": {
  1332. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Arial",
  1333. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Arial",
  1334. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体"
  1335. }
  1336. },
  1337. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  1338. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  1339. "@attrib": {
  1340. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  1341. }
  1342. }
  1343. }
  1344. }
  1345. }
  1346. }
  1347. },
  1348. {
  1349. "name": "Heading 9",
  1350. "style_id": "10",
  1351. "type": "PARAGRAPH (1)",
  1352. "builtin": true,
  1353. "hidden": true,
  1354. "quick_style": true,
  1355. "priority": 0,
  1356. "base_style": "Normal",
  1357. "next_paragraph_style": "Normal",
  1358. "font_summary": {
  1359. "name": "Arial",
  1360. "size_pt": 10.5,
  1361. "bold": null,
  1362. "italic": null,
  1363. "underline": null,
  1364. "color_rgb": null,
  1365. "strike": null,
  1366. "all_caps": null,
  1367. "small_caps": null
  1368. },
  1369. "paragraph_format_summary": {
  1370. "alignment": null,
  1371. "left_indent_pt": null,
  1372. "right_indent_pt": null,
  1373. "first_line_indent_pt": 20.1,
  1374. "space_before_pt": 12.0,
  1375. "space_after_pt": 3.2,
  1376. "line_spacing": 1.3208333333333333,
  1377. "keep_together": true,
  1378. "keep_with_next": true,
  1379. "page_break_before": null
  1380. },
  1381. "full_xml_definition": {
  1382. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1383. "@attrib": {
  1384. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1385. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "10"
  1386. },
  1387. "@children": {
  1388. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1389. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1390. "@attrib": {
  1391. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "heading 9"
  1392. }
  1393. },
  1394. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1395. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1396. "@attrib": {
  1397. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1398. }
  1399. },
  1400. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  1401. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  1402. "@attrib": {
  1403. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1404. }
  1405. },
  1406. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  1407. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  1408. "@attrib": {}
  1409. },
  1410. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  1411. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  1412. "@attrib": {}
  1413. },
  1414. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1415. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1416. "@attrib": {}
  1417. },
  1418. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1419. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1420. "@attrib": {
  1421. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1422. }
  1423. },
  1424. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1425. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1426. "@attrib": {},
  1427. "@children": {
  1428. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext": {
  1429. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepNext",
  1430. "@attrib": {}
  1431. },
  1432. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines": {
  1433. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}keepLines",
  1434. "@attrib": {}
  1435. },
  1436. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr": {
  1437. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numPr",
  1438. "@attrib": {},
  1439. "@children": {
  1440. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": {
  1441. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl",
  1442. "@attrib": {
  1443. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "8"
  1444. }
  1445. },
  1446. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": {
  1447. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId",
  1448. "@attrib": {
  1449. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1450. }
  1451. }
  1452. }
  1453. },
  1454. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  1455. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  1456. "@attrib": {
  1457. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}before": "240",
  1458. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeLines": "0",
  1459. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "0",
  1460. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "64",
  1461. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterLines": "0",
  1462. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "0",
  1463. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "317",
  1464. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  1465. }
  1466. },
  1467. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  1468. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  1469. "@attrib": {
  1470. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402",
  1471. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  1472. }
  1473. },
  1474. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl": {
  1475. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}outlineLvl",
  1476. "@attrib": {
  1477. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "8"
  1478. }
  1479. }
  1480. }
  1481. },
  1482. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  1483. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  1484. "@attrib": {},
  1485. "@children": {
  1486. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  1487. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  1488. "@attrib": {
  1489. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Arial",
  1490. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Arial",
  1491. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体"
  1492. }
  1493. },
  1494. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  1495. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  1496. "@attrib": {
  1497. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "21"
  1498. }
  1499. }
  1500. }
  1501. }
  1502. }
  1503. }
  1504. },
  1505. {
  1506. "name": "Default Paragraph Font",
  1507. "style_id": "19",
  1508. "type": "CHARACTER (2)",
  1509. "builtin": true,
  1510. "hidden": true,
  1511. "quick_style": true,
  1512. "priority": 1,
  1513. "base_style": null,
  1514. "next_paragraph_style": null,
  1515. "font_summary": {
  1516. "name": null,
  1517. "size_pt": null,
  1518. "bold": null,
  1519. "italic": null,
  1520. "underline": null,
  1521. "color_rgb": null,
  1522. "strike": null,
  1523. "all_caps": null,
  1524. "small_caps": null
  1525. },
  1526. "paragraph_format_summary": null,
  1527. "full_xml_definition": {
  1528. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1529. "@attrib": {
  1530. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "character",
  1531. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}default": "1",
  1532. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "19"
  1533. },
  1534. "@children": {
  1535. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1536. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1537. "@attrib": {
  1538. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "Default Paragraph Font"
  1539. }
  1540. },
  1541. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  1542. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  1543. "@attrib": {}
  1544. },
  1545. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  1546. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  1547. "@attrib": {}
  1548. },
  1549. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1550. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1551. "@attrib": {}
  1552. },
  1553. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1554. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1555. "@attrib": {
  1556. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1557. }
  1558. }
  1559. }
  1560. }
  1561. },
  1562. {
  1563. "name": "Normal Table",
  1564. "style_id": "17",
  1565. "type": "TABLE (3)",
  1566. "builtin": true,
  1567. "hidden": true,
  1568. "quick_style": true,
  1569. "priority": 99,
  1570. "base_style": null,
  1571. "next_paragraph_style": "Normal Table",
  1572. "font_summary": {
  1573. "name": null,
  1574. "size_pt": null,
  1575. "bold": null,
  1576. "italic": null,
  1577. "underline": null,
  1578. "color_rgb": null,
  1579. "strike": null,
  1580. "all_caps": null,
  1581. "small_caps": null
  1582. },
  1583. "paragraph_format_summary": {
  1584. "alignment": null,
  1585. "left_indent_pt": null,
  1586. "right_indent_pt": null,
  1587. "first_line_indent_pt": null,
  1588. "space_before_pt": null,
  1589. "space_after_pt": null,
  1590. "line_spacing": null,
  1591. "keep_together": null,
  1592. "keep_with_next": null,
  1593. "page_break_before": null
  1594. },
  1595. "full_xml_definition": {
  1596. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1597. "@attrib": {
  1598. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "table",
  1599. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}default": "1",
  1600. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "17"
  1601. },
  1602. "@children": {
  1603. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1604. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1605. "@attrib": {
  1606. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "Normal Table"
  1607. }
  1608. },
  1609. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden": {
  1610. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}semiHidden",
  1611. "@attrib": {}
  1612. },
  1613. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed": {
  1614. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}unhideWhenUsed",
  1615. "@attrib": {}
  1616. },
  1617. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1618. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1619. "@attrib": {}
  1620. },
  1621. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1622. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1623. "@attrib": {
  1624. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "99"
  1625. }
  1626. },
  1627. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblPr": {
  1628. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblPr",
  1629. "@attrib": {},
  1630. "@children": {
  1631. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblCellMar": {
  1632. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblCellMar",
  1633. "@attrib": {},
  1634. "@children": {
  1635. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top": {
  1636. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top",
  1637. "@attrib": {
  1638. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}w": "0",
  1639. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "dxa"
  1640. }
  1641. },
  1642. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": {
  1643. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left",
  1644. "@attrib": {
  1645. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}w": "108",
  1646. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "dxa"
  1647. }
  1648. },
  1649. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom": {
  1650. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom",
  1651. "@attrib": {
  1652. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}w": "0",
  1653. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "dxa"
  1654. }
  1655. },
  1656. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right": {
  1657. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right",
  1658. "@attrib": {
  1659. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}w": "108",
  1660. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "dxa"
  1661. }
  1662. }
  1663. }
  1664. }
  1665. }
  1666. }
  1667. }
  1668. }
  1669. },
  1670. {
  1671. "name": "annotation text",
  1672. "style_id": "11",
  1673. "type": "PARAGRAPH (1)",
  1674. "builtin": true,
  1675. "hidden": false,
  1676. "quick_style": true,
  1677. "priority": 0,
  1678. "base_style": "Normal",
  1679. "next_paragraph_style": "annotation text",
  1680. "font_summary": {
  1681. "name": null,
  1682. "size_pt": null,
  1683. "bold": null,
  1684. "italic": null,
  1685. "underline": null,
  1686. "color_rgb": null,
  1687. "strike": null,
  1688. "all_caps": null,
  1689. "small_caps": null
  1690. },
  1691. "paragraph_format_summary": {
  1692. "alignment": null,
  1693. "left_indent_pt": null,
  1694. "right_indent_pt": null,
  1695. "first_line_indent_pt": null,
  1696. "space_before_pt": null,
  1697. "space_after_pt": null,
  1698. "line_spacing": null,
  1699. "keep_together": null,
  1700. "keep_with_next": null,
  1701. "page_break_before": null
  1702. },
  1703. "full_xml_definition": {
  1704. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1705. "@attrib": {
  1706. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1707. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "11"
  1708. },
  1709. "@children": {
  1710. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1711. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1712. "@attrib": {
  1713. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "annotation text"
  1714. }
  1715. },
  1716. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1717. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1718. "@attrib": {
  1719. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1720. }
  1721. },
  1722. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1723. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1724. "@attrib": {}
  1725. },
  1726. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1727. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1728. "@attrib": {
  1729. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1730. }
  1731. },
  1732. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1733. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1734. "@attrib": {},
  1735. "@children": {
  1736. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  1737. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  1738. "@attrib": {
  1739. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  1740. }
  1741. }
  1742. }
  1743. }
  1744. }
  1745. }
  1746. },
  1747. {
  1748. "name": "Footer",
  1749. "style_id": "12",
  1750. "type": "PARAGRAPH (1)",
  1751. "builtin": true,
  1752. "hidden": false,
  1753. "quick_style": true,
  1754. "priority": 0,
  1755. "base_style": "Normal",
  1756. "next_paragraph_style": "Footer",
  1757. "font_summary": {
  1758. "name": null,
  1759. "size_pt": 9.0,
  1760. "bold": null,
  1761. "italic": null,
  1762. "underline": null,
  1763. "color_rgb": null,
  1764. "strike": null,
  1765. "all_caps": null,
  1766. "small_caps": null
  1767. },
  1768. "paragraph_format_summary": {
  1769. "alignment": null,
  1770. "left_indent_pt": null,
  1771. "right_indent_pt": null,
  1772. "first_line_indent_pt": null,
  1773. "space_before_pt": null,
  1774. "space_after_pt": null,
  1775. "line_spacing": null,
  1776. "keep_together": null,
  1777. "keep_with_next": null,
  1778. "page_break_before": null
  1779. },
  1780. "full_xml_definition": {
  1781. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1782. "@attrib": {
  1783. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1784. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "12"
  1785. },
  1786. "@children": {
  1787. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1788. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1789. "@attrib": {
  1790. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "footer"
  1791. }
  1792. },
  1793. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1794. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1795. "@attrib": {
  1796. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1797. }
  1798. },
  1799. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1800. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1801. "@attrib": {}
  1802. },
  1803. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1804. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1805. "@attrib": {
  1806. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1807. }
  1808. },
  1809. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1810. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1811. "@attrib": {},
  1812. "@children": {
  1813. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs": {
  1814. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs",
  1815. "@attrib": {},
  1816. "@children": {
  1817. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab": [
  1818. {
  1819. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  1820. "@attrib": {
  1821. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center",
  1822. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "4153"
  1823. }
  1824. },
  1825. {
  1826. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  1827. "@attrib": {
  1828. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "right",
  1829. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "8306"
  1830. }
  1831. }
  1832. ]
  1833. }
  1834. },
  1835. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid": {
  1836. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid",
  1837. "@attrib": {
  1838. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1839. }
  1840. },
  1841. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  1842. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  1843. "@attrib": {
  1844. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  1845. }
  1846. }
  1847. }
  1848. },
  1849. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  1850. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  1851. "@attrib": {},
  1852. "@children": {
  1853. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  1854. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  1855. "@attrib": {
  1856. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  1857. }
  1858. }
  1859. }
  1860. }
  1861. }
  1862. }
  1863. },
  1864. {
  1865. "name": "Header",
  1866. "style_id": "13",
  1867. "type": "PARAGRAPH (1)",
  1868. "builtin": true,
  1869. "hidden": false,
  1870. "quick_style": true,
  1871. "priority": 0,
  1872. "base_style": "Normal",
  1873. "next_paragraph_style": "Header",
  1874. "font_summary": {
  1875. "name": null,
  1876. "size_pt": 9.0,
  1877. "bold": null,
  1878. "italic": null,
  1879. "underline": null,
  1880. "color_rgb": null,
  1881. "strike": null,
  1882. "all_caps": null,
  1883. "small_caps": null
  1884. },
  1885. "paragraph_format_summary": {
  1886. "alignment": null,
  1887. "left_indent_pt": null,
  1888. "right_indent_pt": null,
  1889. "first_line_indent_pt": null,
  1890. "space_before_pt": null,
  1891. "space_after_pt": null,
  1892. "line_spacing": null,
  1893. "keep_together": null,
  1894. "keep_with_next": null,
  1895. "page_break_before": null
  1896. },
  1897. "full_xml_definition": {
  1898. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  1899. "@attrib": {
  1900. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  1901. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "13"
  1902. },
  1903. "@children": {
  1904. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  1905. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  1906. "@attrib": {
  1907. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "header"
  1908. }
  1909. },
  1910. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  1911. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  1912. "@attrib": {
  1913. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  1914. }
  1915. },
  1916. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  1917. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  1918. "@attrib": {}
  1919. },
  1920. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  1921. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  1922. "@attrib": {
  1923. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1924. }
  1925. },
  1926. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  1927. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  1928. "@attrib": {},
  1929. "@children": {
  1930. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pBdr": {
  1931. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pBdr",
  1932. "@attrib": {},
  1933. "@children": {
  1934. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top": {
  1935. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top",
  1936. "@attrib": {
  1937. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "none",
  1938. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  1939. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "0",
  1940. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "1"
  1941. }
  1942. },
  1943. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": {
  1944. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left",
  1945. "@attrib": {
  1946. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "none",
  1947. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  1948. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "0",
  1949. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "4"
  1950. }
  1951. },
  1952. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom": {
  1953. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom",
  1954. "@attrib": {
  1955. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "none",
  1956. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  1957. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "0",
  1958. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "1"
  1959. }
  1960. },
  1961. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right": {
  1962. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right",
  1963. "@attrib": {
  1964. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "none",
  1965. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  1966. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "0",
  1967. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "4"
  1968. }
  1969. }
  1970. }
  1971. },
  1972. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs": {
  1973. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs",
  1974. "@attrib": {},
  1975. "@children": {
  1976. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab": [
  1977. {
  1978. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  1979. "@attrib": {
  1980. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center",
  1981. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "4153"
  1982. }
  1983. },
  1984. {
  1985. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  1986. "@attrib": {
  1987. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "right",
  1988. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "8306"
  1989. }
  1990. }
  1991. ]
  1992. }
  1993. },
  1994. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid": {
  1995. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid",
  1996. "@attrib": {
  1997. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  1998. }
  1999. }
  2000. }
  2001. },
  2002. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2003. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2004. "@attrib": {},
  2005. "@children": {
  2006. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2007. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2008. "@attrib": {
  2009. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  2010. }
  2011. }
  2012. }
  2013. }
  2014. }
  2015. }
  2016. },
  2017. {
  2018. "name": "table of figures",
  2019. "style_id": "14",
  2020. "type": "PARAGRAPH (1)",
  2021. "builtin": true,
  2022. "hidden": false,
  2023. "quick_style": true,
  2024. "priority": 0,
  2025. "base_style": "Normal",
  2026. "next_paragraph_style": "Normal",
  2027. "font_summary": {
  2028. "name": null,
  2029. "size_pt": 9.0,
  2030. "bold": null,
  2031. "italic": null,
  2032. "underline": null,
  2033. "color_rgb": null,
  2034. "strike": null,
  2035. "all_caps": null,
  2036. "small_caps": null
  2037. },
  2038. "paragraph_format_summary": {
  2039. "alignment": "CENTER (1)",
  2040. "left_indent_pt": null,
  2041. "right_indent_pt": null,
  2042. "first_line_indent_pt": 0.0,
  2043. "space_before_pt": null,
  2044. "space_after_pt": null,
  2045. "line_spacing": 152400.0,
  2046. "keep_together": null,
  2047. "keep_with_next": null,
  2048. "page_break_before": null
  2049. },
  2050. "full_xml_definition": {
  2051. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2052. "@attrib": {
  2053. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2054. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "14"
  2055. },
  2056. "@children": {
  2057. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2058. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2059. "@attrib": {
  2060. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "table of figures"
  2061. }
  2062. },
  2063. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  2064. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  2065. "@attrib": {
  2066. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  2067. }
  2068. },
  2069. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next": {
  2070. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}next",
  2071. "@attrib": {
  2072. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  2073. }
  2074. },
  2075. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  2076. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  2077. "@attrib": {
  2078. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "26"
  2079. }
  2080. },
  2081. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2082. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2083. "@attrib": {}
  2084. },
  2085. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2086. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2087. "@attrib": {
  2088. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2089. }
  2090. },
  2091. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2092. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2093. "@attrib": {},
  2094. "@children": {
  2095. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  2096. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  2097. "@attrib": {
  2098. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "240",
  2099. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "exact"
  2100. }
  2101. },
  2102. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  2103. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  2104. "@attrib": {
  2105. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}leftChars": "0",
  2106. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0",
  2107. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  2108. }
  2109. },
  2110. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  2111. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  2112. "@attrib": {
  2113. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center"
  2114. }
  2115. }
  2116. }
  2117. },
  2118. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2119. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2120. "@attrib": {},
  2121. "@children": {
  2122. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2123. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2124. "@attrib": {
  2125. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  2126. }
  2127. }
  2128. }
  2129. }
  2130. }
  2131. }
  2132. },
  2133. {
  2134. "name": "HTML Preformatted",
  2135. "style_id": "15",
  2136. "type": "PARAGRAPH (1)",
  2137. "builtin": true,
  2138. "hidden": false,
  2139. "quick_style": true,
  2140. "priority": 0,
  2141. "base_style": "Normal",
  2142. "next_paragraph_style": "HTML Preformatted",
  2143. "font_summary": {
  2144. "name": "宋体",
  2145. "size_pt": 12.0,
  2146. "bold": null,
  2147. "italic": null,
  2148. "underline": null,
  2149. "color_rgb": null,
  2150. "strike": null,
  2151. "all_caps": null,
  2152. "small_caps": null
  2153. },
  2154. "paragraph_format_summary": {
  2155. "alignment": null,
  2156. "left_indent_pt": null,
  2157. "right_indent_pt": null,
  2158. "first_line_indent_pt": null,
  2159. "space_before_pt": null,
  2160. "space_after_pt": null,
  2161. "line_spacing": null,
  2162. "keep_together": null,
  2163. "keep_with_next": null,
  2164. "page_break_before": null
  2165. },
  2166. "full_xml_definition": {
  2167. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2168. "@attrib": {
  2169. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2170. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "15"
  2171. },
  2172. "@children": {
  2173. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2174. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2175. "@attrib": {
  2176. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "HTML Preformatted"
  2177. }
  2178. },
  2179. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  2180. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  2181. "@attrib": {
  2182. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  2183. }
  2184. },
  2185. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2186. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2187. "@attrib": {}
  2188. },
  2189. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2190. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2191. "@attrib": {
  2192. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2193. }
  2194. },
  2195. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2196. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2197. "@attrib": {},
  2198. "@children": {
  2199. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs": {
  2200. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs",
  2201. "@attrib": {},
  2202. "@children": {
  2203. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab": [
  2204. {
  2205. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2206. "@attrib": {
  2207. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2208. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "916"
  2209. }
  2210. },
  2211. {
  2212. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2213. "@attrib": {
  2214. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2215. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "1832"
  2216. }
  2217. },
  2218. {
  2219. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2220. "@attrib": {
  2221. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2222. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "2748"
  2223. }
  2224. },
  2225. {
  2226. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2227. "@attrib": {
  2228. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2229. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "3664"
  2230. }
  2231. },
  2232. {
  2233. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2234. "@attrib": {
  2235. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2236. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "4580"
  2237. }
  2238. },
  2239. {
  2240. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2241. "@attrib": {
  2242. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2243. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "5496"
  2244. }
  2245. },
  2246. {
  2247. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2248. "@attrib": {
  2249. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2250. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "6412"
  2251. }
  2252. },
  2253. {
  2254. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2255. "@attrib": {
  2256. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2257. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "7328"
  2258. }
  2259. },
  2260. {
  2261. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2262. "@attrib": {
  2263. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2264. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "8244"
  2265. }
  2266. },
  2267. {
  2268. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2269. "@attrib": {
  2270. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2271. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "9160"
  2272. }
  2273. },
  2274. {
  2275. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2276. "@attrib": {
  2277. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2278. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "10076"
  2279. }
  2280. },
  2281. {
  2282. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2283. "@attrib": {
  2284. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2285. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "10992"
  2286. }
  2287. },
  2288. {
  2289. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2290. "@attrib": {
  2291. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2292. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "11908"
  2293. }
  2294. },
  2295. {
  2296. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2297. "@attrib": {
  2298. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2299. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "12824"
  2300. }
  2301. },
  2302. {
  2303. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2304. "@attrib": {
  2305. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2306. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "13740"
  2307. }
  2308. },
  2309. {
  2310. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  2311. "@attrib": {
  2312. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  2313. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "14656"
  2314. }
  2315. }
  2316. ]
  2317. }
  2318. },
  2319. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  2320. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  2321. "@attrib": {
  2322. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  2323. }
  2324. }
  2325. }
  2326. },
  2327. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2328. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2329. "@attrib": {},
  2330. "@children": {
  2331. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  2332. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  2333. "@attrib": {
  2334. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia",
  2335. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "宋体",
  2336. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "宋体",
  2337. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "宋体",
  2338. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cs": "宋体"
  2339. }
  2340. },
  2341. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  2342. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  2343. "@attrib": {
  2344. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2345. }
  2346. },
  2347. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2348. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2349. "@attrib": {
  2350. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  2351. }
  2352. },
  2353. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  2354. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  2355. "@attrib": {
  2356. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  2357. }
  2358. },
  2359. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang": {
  2360. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang",
  2361. "@attrib": {
  2362. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "en-US",
  2363. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "zh-CN",
  2364. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bidi": "ar"
  2365. }
  2366. }
  2367. }
  2368. }
  2369. }
  2370. }
  2371. },
  2372. {
  2373. "name": "Normal (Web)",
  2374. "style_id": "16",
  2375. "type": "PARAGRAPH (1)",
  2376. "builtin": true,
  2377. "hidden": false,
  2378. "quick_style": true,
  2379. "priority": 0,
  2380. "base_style": "Normal",
  2381. "next_paragraph_style": "Normal (Web)",
  2382. "font_summary": {
  2383. "name": null,
  2384. "size_pt": 12.0,
  2385. "bold": null,
  2386. "italic": null,
  2387. "underline": null,
  2388. "color_rgb": null,
  2389. "strike": null,
  2390. "all_caps": null,
  2391. "small_caps": null
  2392. },
  2393. "paragraph_format_summary": {
  2394. "alignment": null,
  2395. "left_indent_pt": null,
  2396. "right_indent_pt": null,
  2397. "first_line_indent_pt": null,
  2398. "space_before_pt": null,
  2399. "space_after_pt": null,
  2400. "line_spacing": null,
  2401. "keep_together": null,
  2402. "keep_with_next": null,
  2403. "page_break_before": null
  2404. },
  2405. "full_xml_definition": {
  2406. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2407. "@attrib": {
  2408. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2409. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "16"
  2410. },
  2411. "@children": {
  2412. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2413. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2414. "@attrib": {
  2415. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "Normal (Web)"
  2416. }
  2417. },
  2418. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  2419. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  2420. "@attrib": {
  2421. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  2422. }
  2423. },
  2424. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2425. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2426. "@attrib": {}
  2427. },
  2428. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2429. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2430. "@attrib": {
  2431. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2432. }
  2433. },
  2434. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2435. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2436. "@attrib": {},
  2437. "@children": {
  2438. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  2439. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  2440. "@attrib": {
  2441. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}beforeAutospacing": "1",
  2442. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}afterAutospacing": "1"
  2443. }
  2444. },
  2445. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  2446. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  2447. "@attrib": {
  2448. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  2449. }
  2450. }
  2451. }
  2452. },
  2453. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2454. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2455. "@attrib": {},
  2456. "@children": {
  2457. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  2458. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  2459. "@attrib": {
  2460. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cs": "Times New Roman"
  2461. }
  2462. },
  2463. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  2464. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  2465. "@attrib": {
  2466. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2467. }
  2468. },
  2469. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2470. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2471. "@attrib": {
  2472. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  2473. }
  2474. }
  2475. }
  2476. }
  2477. }
  2478. }
  2479. },
  2480. {
  2481. "name": "Table Grid",
  2482. "style_id": "18",
  2483. "type": "TABLE (3)",
  2484. "builtin": true,
  2485. "hidden": false,
  2486. "quick_style": true,
  2487. "priority": 0,
  2488. "base_style": "Normal Table",
  2489. "next_paragraph_style": "Table Grid",
  2490. "font_summary": {
  2491. "name": null,
  2492. "size_pt": null,
  2493. "bold": null,
  2494. "italic": null,
  2495. "underline": null,
  2496. "color_rgb": null,
  2497. "strike": null,
  2498. "all_caps": null,
  2499. "small_caps": null
  2500. },
  2501. "paragraph_format_summary": {
  2502. "alignment": "JUSTIFY (3)",
  2503. "left_indent_pt": null,
  2504. "right_indent_pt": null,
  2505. "first_line_indent_pt": null,
  2506. "space_before_pt": null,
  2507. "space_after_pt": null,
  2508. "line_spacing": null,
  2509. "keep_together": null,
  2510. "keep_with_next": null,
  2511. "page_break_before": null
  2512. },
  2513. "full_xml_definition": {
  2514. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2515. "@attrib": {
  2516. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "table",
  2517. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "18"
  2518. },
  2519. "@children": {
  2520. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2521. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2522. "@attrib": {
  2523. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "Table Grid"
  2524. }
  2525. },
  2526. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  2527. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  2528. "@attrib": {
  2529. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "17"
  2530. }
  2531. },
  2532. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2533. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2534. "@attrib": {}
  2535. },
  2536. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2537. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2538. "@attrib": {
  2539. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2540. }
  2541. },
  2542. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2543. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2544. "@attrib": {},
  2545. "@children": {
  2546. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl": {
  2547. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl",
  2548. "@attrib": {
  2549. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2550. }
  2551. },
  2552. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  2553. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  2554. "@attrib": {
  2555. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "both"
  2556. }
  2557. }
  2558. }
  2559. },
  2560. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblPr": {
  2561. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblPr",
  2562. "@attrib": {},
  2563. "@children": {
  2564. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblBorders": {
  2565. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tblBorders",
  2566. "@attrib": {},
  2567. "@children": {
  2568. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top": {
  2569. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}top",
  2570. "@attrib": {
  2571. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2572. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2573. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2574. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2575. }
  2576. },
  2577. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": {
  2578. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left",
  2579. "@attrib": {
  2580. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2581. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2582. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2583. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2584. }
  2585. },
  2586. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom": {
  2587. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bottom",
  2588. "@attrib": {
  2589. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2590. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2591. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2592. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2593. }
  2594. },
  2595. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right": {
  2596. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}right",
  2597. "@attrib": {
  2598. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2599. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2600. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2601. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2602. }
  2603. },
  2604. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideH": {
  2605. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideH",
  2606. "@attrib": {
  2607. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2608. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2609. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2610. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2611. }
  2612. },
  2613. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideV": {
  2614. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}insideV",
  2615. "@attrib": {
  2616. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "single",
  2617. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}color": "auto",
  2618. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": "4",
  2619. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}space": "0"
  2620. }
  2621. }
  2622. }
  2623. }
  2624. }
  2625. }
  2626. }
  2627. }
  2628. },
  2629. {
  2630. "name": "WPSOffice手动目录 1",
  2631. "style_id": "20",
  2632. "type": "PARAGRAPH (1)",
  2633. "builtin": false,
  2634. "hidden": false,
  2635. "quick_style": true,
  2636. "priority": 0,
  2637. "base_style": null,
  2638. "next_paragraph_style": "WPSOffice手动目录 1",
  2639. "font_summary": {
  2640. "name": null,
  2641. "size_pt": null,
  2642. "bold": null,
  2643. "italic": null,
  2644. "underline": null,
  2645. "color_rgb": null,
  2646. "strike": null,
  2647. "all_caps": null,
  2648. "small_caps": null
  2649. },
  2650. "paragraph_format_summary": {
  2651. "alignment": null,
  2652. "left_indent_pt": null,
  2653. "right_indent_pt": null,
  2654. "first_line_indent_pt": null,
  2655. "space_before_pt": null,
  2656. "space_after_pt": null,
  2657. "line_spacing": null,
  2658. "keep_together": null,
  2659. "keep_with_next": null,
  2660. "page_break_before": null
  2661. },
  2662. "full_xml_definition": {
  2663. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2664. "@attrib": {
  2665. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2666. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  2667. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "20"
  2668. },
  2669. "@children": {
  2670. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2671. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2672. "@attrib": {
  2673. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "WPSOffice手动目录 1"
  2674. }
  2675. },
  2676. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2677. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2678. "@attrib": {}
  2679. },
  2680. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2681. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2682. "@attrib": {
  2683. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2684. }
  2685. },
  2686. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2687. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2688. "@attrib": {},
  2689. "@children": {
  2690. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  2691. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  2692. "@attrib": {
  2693. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}asciiTheme": "minorHAnsi",
  2694. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsiTheme": "minorHAnsi",
  2695. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsiaTheme": "minorEastAsia",
  2696. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cstheme": "minorBidi"
  2697. }
  2698. },
  2699. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang": {
  2700. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang",
  2701. "@attrib": {
  2702. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "en-US",
  2703. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "zh-CN",
  2704. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bidi": "ar-SA"
  2705. }
  2706. }
  2707. }
  2708. }
  2709. }
  2710. }
  2711. },
  2712. {
  2713. "name": "List Paragraph",
  2714. "style_id": "21",
  2715. "type": "PARAGRAPH (1)",
  2716. "builtin": true,
  2717. "hidden": false,
  2718. "quick_style": true,
  2719. "priority": 34,
  2720. "base_style": null,
  2721. "next_paragraph_style": "List Paragraph",
  2722. "font_summary": {
  2723. "name": null,
  2724. "size_pt": 10.5,
  2725. "bold": null,
  2726. "italic": null,
  2727. "underline": null,
  2728. "color_rgb": null,
  2729. "strike": null,
  2730. "all_caps": null,
  2731. "small_caps": null
  2732. },
  2733. "paragraph_format_summary": {
  2734. "alignment": "JUSTIFY (3)",
  2735. "left_indent_pt": null,
  2736. "right_indent_pt": null,
  2737. "first_line_indent_pt": 21.0,
  2738. "space_before_pt": null,
  2739. "space_after_pt": null,
  2740. "line_spacing": null,
  2741. "keep_together": null,
  2742. "keep_with_next": null,
  2743. "page_break_before": null
  2744. },
  2745. "full_xml_definition": {
  2746. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2747. "@attrib": {
  2748. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2749. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "21"
  2750. },
  2751. "@children": {
  2752. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2753. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2754. "@attrib": {
  2755. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "List Paragraph"
  2756. }
  2757. },
  2758. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2759. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2760. "@attrib": {}
  2761. },
  2762. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2763. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2764. "@attrib": {
  2765. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "34"
  2766. }
  2767. },
  2768. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2769. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2770. "@attrib": {},
  2771. "@children": {
  2772. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl": {
  2773. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}widowControl",
  2774. "@attrib": {
  2775. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2776. }
  2777. },
  2778. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  2779. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  2780. "@attrib": {
  2781. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "420",
  2782. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "200"
  2783. }
  2784. },
  2785. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  2786. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  2787. "@attrib": {
  2788. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "both"
  2789. }
  2790. }
  2791. }
  2792. },
  2793. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2794. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2795. "@attrib": {},
  2796. "@children": {
  2797. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  2798. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  2799. "@attrib": {
  2800. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}asciiTheme": "minorHAnsi",
  2801. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsiTheme": "minorHAnsi",
  2802. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsiaTheme": "minorEastAsia",
  2803. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cstheme": "minorBidi"
  2804. }
  2805. },
  2806. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  2807. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  2808. "@attrib": {
  2809. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  2810. }
  2811. },
  2812. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2813. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2814. "@attrib": {
  2815. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "21"
  2816. }
  2817. },
  2818. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  2819. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  2820. "@attrib": {
  2821. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "22"
  2822. }
  2823. },
  2824. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang": {
  2825. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lang",
  2826. "@attrib": {
  2827. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "en-US",
  2828. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "zh-CN",
  2829. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bidi": "ar-SA"
  2830. }
  2831. }
  2832. }
  2833. }
  2834. }
  2835. }
  2836. },
  2837. {
  2838. "name": "标题 1 Char",
  2839. "style_id": "22",
  2840. "type": "CHARACTER (2)",
  2841. "builtin": false,
  2842. "hidden": false,
  2843. "quick_style": true,
  2844. "priority": 0,
  2845. "base_style": null,
  2846. "next_paragraph_style": null,
  2847. "font_summary": {
  2848. "name": null,
  2849. "size_pt": 15.0,
  2850. "bold": null,
  2851. "italic": null,
  2852. "underline": null,
  2853. "color_rgb": null,
  2854. "strike": null,
  2855. "all_caps": null,
  2856. "small_caps": null
  2857. },
  2858. "paragraph_format_summary": null,
  2859. "full_xml_definition": {
  2860. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2861. "@attrib": {
  2862. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "character",
  2863. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  2864. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "22"
  2865. },
  2866. "@children": {
  2867. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2868. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2869. "@attrib": {
  2870. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "标题 1 Char"
  2871. }
  2872. },
  2873. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  2874. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  2875. "@attrib": {
  2876. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  2877. }
  2878. },
  2879. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2880. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2881. "@attrib": {}
  2882. },
  2883. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2884. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2885. "@attrib": {
  2886. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2887. }
  2888. },
  2889. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  2890. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  2891. "@attrib": {},
  2892. "@children": {
  2893. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  2894. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  2895. "@attrib": {
  2896. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体",
  2897. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}asciiTheme": "minorAscii",
  2898. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsiTheme": "minorAscii"
  2899. }
  2900. },
  2901. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern": {
  2902. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}kern",
  2903. "@attrib": {
  2904. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "44"
  2905. }
  2906. },
  2907. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  2908. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  2909. "@attrib": {
  2910. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "30"
  2911. }
  2912. }
  2913. }
  2914. }
  2915. }
  2916. }
  2917. },
  2918. {
  2919. "name": "图表标题",
  2920. "style_id": "23",
  2921. "type": "PARAGRAPH (1)",
  2922. "builtin": false,
  2923. "hidden": false,
  2924. "quick_style": true,
  2925. "priority": 0,
  2926. "base_style": "Normal",
  2927. "next_paragraph_style": "图表标题",
  2928. "font_summary": {
  2929. "name": null,
  2930. "size_pt": null,
  2931. "bold": null,
  2932. "italic": null,
  2933. "underline": null,
  2934. "color_rgb": null,
  2935. "strike": null,
  2936. "all_caps": null,
  2937. "small_caps": null
  2938. },
  2939. "paragraph_format_summary": {
  2940. "alignment": "CENTER (1)",
  2941. "left_indent_pt": null,
  2942. "right_indent_pt": null,
  2943. "first_line_indent_pt": 0.0,
  2944. "space_before_pt": null,
  2945. "space_after_pt": null,
  2946. "line_spacing": 1.5,
  2947. "keep_together": null,
  2948. "keep_with_next": null,
  2949. "page_break_before": null
  2950. },
  2951. "full_xml_definition": {
  2952. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  2953. "@attrib": {
  2954. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  2955. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  2956. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "23"
  2957. },
  2958. "@children": {
  2959. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  2960. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  2961. "@attrib": {
  2962. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "图表标题"
  2963. }
  2964. },
  2965. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  2966. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  2967. "@attrib": {
  2968. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  2969. }
  2970. },
  2971. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  2972. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  2973. "@attrib": {
  2974. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "27"
  2975. }
  2976. },
  2977. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  2978. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  2979. "@attrib": {}
  2980. },
  2981. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  2982. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  2983. "@attrib": {
  2984. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  2985. }
  2986. },
  2987. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  2988. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  2989. "@attrib": {},
  2990. "@children": {
  2991. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  2992. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  2993. "@attrib": {
  2994. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "360",
  2995. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "auto"
  2996. }
  2997. },
  2998. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  2999. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3000. "@attrib": {
  3001. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0",
  3002. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  3003. }
  3004. },
  3005. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  3006. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  3007. "@attrib": {
  3008. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center"
  3009. }
  3010. }
  3011. }
  3012. }
  3013. }
  3014. }
  3015. },
  3016. {
  3017. "name": "表格正文",
  3018. "style_id": "24",
  3019. "type": "PARAGRAPH (1)",
  3020. "builtin": false,
  3021. "hidden": false,
  3022. "quick_style": true,
  3023. "priority": 0,
  3024. "base_style": "Normal",
  3025. "next_paragraph_style": "表格正文",
  3026. "font_summary": {
  3027. "name": "Times New Roman",
  3028. "size_pt": 9.0,
  3029. "bold": null,
  3030. "italic": null,
  3031. "underline": null,
  3032. "color_rgb": null,
  3033. "strike": null,
  3034. "all_caps": null,
  3035. "small_caps": null
  3036. },
  3037. "paragraph_format_summary": {
  3038. "alignment": "CENTER (1)",
  3039. "left_indent_pt": null,
  3040. "right_indent_pt": null,
  3041. "first_line_indent_pt": 0.0,
  3042. "space_before_pt": null,
  3043. "space_after_pt": 1.2,
  3044. "line_spacing": 152400.0,
  3045. "keep_together": null,
  3046. "keep_with_next": null,
  3047. "page_break_before": null
  3048. },
  3049. "full_xml_definition": {
  3050. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  3051. "@attrib": {
  3052. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  3053. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  3054. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "24"
  3055. },
  3056. "@children": {
  3057. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  3058. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  3059. "@attrib": {
  3060. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "表格正文"
  3061. }
  3062. },
  3063. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  3064. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  3065. "@attrib": {
  3066. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3067. }
  3068. },
  3069. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  3070. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  3071. "@attrib": {
  3072. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "25"
  3073. }
  3074. },
  3075. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  3076. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  3077. "@attrib": {}
  3078. },
  3079. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  3080. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  3081. "@attrib": {
  3082. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3083. }
  3084. },
  3085. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3086. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3087. "@attrib": {},
  3088. "@children": {
  3089. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid": {
  3090. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid",
  3091. "@attrib": {
  3092. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3093. }
  3094. },
  3095. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  3096. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  3097. "@attrib": {
  3098. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "24",
  3099. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "240",
  3100. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "exact"
  3101. }
  3102. },
  3103. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3104. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3105. "@attrib": {
  3106. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0",
  3107. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  3108. }
  3109. },
  3110. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  3111. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  3112. "@attrib": {
  3113. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center"
  3114. }
  3115. }
  3116. }
  3117. },
  3118. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3119. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3120. "@attrib": {},
  3121. "@children": {
  3122. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3123. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3124. "@attrib": {
  3125. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia",
  3126. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Times New Roman",
  3127. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Times New Roman",
  3128. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "宋体",
  3129. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cs": "宋体"
  3130. }
  3131. },
  3132. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs": {
  3133. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs",
  3134. "@attrib": {}
  3135. },
  3136. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  3137. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  3138. "@attrib": {
  3139. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3140. }
  3141. },
  3142. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  3143. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  3144. "@attrib": {
  3145. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3146. }
  3147. }
  3148. }
  3149. }
  3150. }
  3151. }
  3152. },
  3153. {
  3154. "name": "表格正文 Char",
  3155. "style_id": "25",
  3156. "type": "CHARACTER (2)",
  3157. "builtin": false,
  3158. "hidden": false,
  3159. "quick_style": true,
  3160. "priority": 0,
  3161. "base_style": null,
  3162. "next_paragraph_style": null,
  3163. "font_summary": {
  3164. "name": "Times New Roman",
  3165. "size_pt": 9.0,
  3166. "bold": null,
  3167. "italic": null,
  3168. "underline": null,
  3169. "color_rgb": null,
  3170. "strike": null,
  3171. "all_caps": null,
  3172. "small_caps": null
  3173. },
  3174. "paragraph_format_summary": null,
  3175. "full_xml_definition": {
  3176. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  3177. "@attrib": {
  3178. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "character",
  3179. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  3180. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "25"
  3181. },
  3182. "@children": {
  3183. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  3184. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  3185. "@attrib": {
  3186. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "表格正文 Char"
  3187. }
  3188. },
  3189. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  3190. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  3191. "@attrib": {
  3192. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "24"
  3193. }
  3194. },
  3195. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  3196. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  3197. "@attrib": {}
  3198. },
  3199. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  3200. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  3201. "@attrib": {
  3202. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3203. }
  3204. },
  3205. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3206. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3207. "@attrib": {},
  3208. "@children": {
  3209. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3210. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3211. "@attrib": {
  3212. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia",
  3213. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Times New Roman",
  3214. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Times New Roman",
  3215. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "宋体",
  3216. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cs": "宋体"
  3217. }
  3218. },
  3219. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs": {
  3220. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs",
  3221. "@attrib": {}
  3222. },
  3223. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  3224. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  3225. "@attrib": {
  3226. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3227. }
  3228. },
  3229. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  3230. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  3231. "@attrib": {
  3232. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3233. }
  3234. }
  3235. }
  3236. }
  3237. }
  3238. }
  3239. },
  3240. {
  3241. "name": "图表目录 Char",
  3242. "style_id": "26",
  3243. "type": "CHARACTER (2)",
  3244. "builtin": false,
  3245. "hidden": false,
  3246. "quick_style": true,
  3247. "priority": 0,
  3248. "base_style": null,
  3249. "next_paragraph_style": null,
  3250. "font_summary": {
  3251. "name": null,
  3252. "size_pt": 9.0,
  3253. "bold": null,
  3254. "italic": null,
  3255. "underline": null,
  3256. "color_rgb": null,
  3257. "strike": null,
  3258. "all_caps": null,
  3259. "small_caps": null
  3260. },
  3261. "paragraph_format_summary": null,
  3262. "full_xml_definition": {
  3263. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  3264. "@attrib": {
  3265. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "character",
  3266. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  3267. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "26"
  3268. },
  3269. "@children": {
  3270. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  3271. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  3272. "@attrib": {
  3273. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "图表目录 Char"
  3274. }
  3275. },
  3276. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  3277. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  3278. "@attrib": {
  3279. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "14"
  3280. }
  3281. },
  3282. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  3283. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  3284. "@attrib": {}
  3285. },
  3286. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  3287. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  3288. "@attrib": {
  3289. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3290. }
  3291. },
  3292. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3293. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3294. "@attrib": {},
  3295. "@children": {
  3296. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  3297. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  3298. "@attrib": {
  3299. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3300. }
  3301. }
  3302. }
  3303. }
  3304. }
  3305. }
  3306. },
  3307. {
  3308. "name": "图表标题 Char",
  3309. "style_id": "27",
  3310. "type": "CHARACTER (2)",
  3311. "builtin": false,
  3312. "hidden": false,
  3313. "quick_style": true,
  3314. "priority": 0,
  3315. "base_style": null,
  3316. "next_paragraph_style": null,
  3317. "font_summary": {
  3318. "name": null,
  3319. "size_pt": null,
  3320. "bold": null,
  3321. "italic": null,
  3322. "underline": null,
  3323. "color_rgb": null,
  3324. "strike": null,
  3325. "all_caps": null,
  3326. "small_caps": null
  3327. },
  3328. "paragraph_format_summary": null,
  3329. "full_xml_definition": {
  3330. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  3331. "@attrib": {
  3332. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "character",
  3333. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  3334. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "27"
  3335. },
  3336. "@children": {
  3337. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  3338. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  3339. "@attrib": {
  3340. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "图表标题 Char"
  3341. }
  3342. },
  3343. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link": {
  3344. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}link",
  3345. "@attrib": {
  3346. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "23"
  3347. }
  3348. },
  3349. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  3350. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  3351. "@attrib": {}
  3352. },
  3353. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  3354. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  3355. "@attrib": {
  3356. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3357. }
  3358. },
  3359. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3360. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3361. "@attrib": {},
  3362. "@children": {
  3363. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3364. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3365. "@attrib": {
  3366. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "黑体"
  3367. }
  3368. }
  3369. }
  3370. }
  3371. }
  3372. }
  3373. },
  3374. {
  3375. "name": "表格标题1",
  3376. "style_id": "28",
  3377. "type": "PARAGRAPH (1)",
  3378. "builtin": false,
  3379. "hidden": false,
  3380. "quick_style": true,
  3381. "priority": 0,
  3382. "base_style": "Normal",
  3383. "next_paragraph_style": "表格标题1",
  3384. "font_summary": {
  3385. "name": "Times New Roman",
  3386. "size_pt": 9.0,
  3387. "bold": true,
  3388. "italic": null,
  3389. "underline": null,
  3390. "color_rgb": null,
  3391. "strike": null,
  3392. "all_caps": null,
  3393. "small_caps": null
  3394. },
  3395. "paragraph_format_summary": {
  3396. "alignment": "CENTER (1)",
  3397. "left_indent_pt": null,
  3398. "right_indent_pt": null,
  3399. "first_line_indent_pt": 0.0,
  3400. "space_before_pt": null,
  3401. "space_after_pt": 1.2,
  3402. "line_spacing": 152400.0,
  3403. "keep_together": null,
  3404. "keep_with_next": null,
  3405. "page_break_before": null
  3406. },
  3407. "full_xml_definition": {
  3408. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}style",
  3409. "@attrib": {
  3410. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}type": "paragraph",
  3411. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}customStyle": "1",
  3412. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}styleId": "28"
  3413. },
  3414. "@children": {
  3415. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name": {
  3416. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}name",
  3417. "@attrib": {
  3418. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "表格标题1"
  3419. }
  3420. },
  3421. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn": {
  3422. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}basedOn",
  3423. "@attrib": {
  3424. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3425. }
  3426. },
  3427. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat": {
  3428. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}qFormat",
  3429. "@attrib": {}
  3430. },
  3431. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority": {
  3432. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}uiPriority",
  3433. "@attrib": {
  3434. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3435. }
  3436. },
  3437. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3438. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3439. "@attrib": {},
  3440. "@children": {
  3441. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid": {
  3442. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}snapToGrid",
  3443. "@attrib": {
  3444. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  3445. }
  3446. },
  3447. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing": {
  3448. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}spacing",
  3449. "@attrib": {
  3450. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}after": "24",
  3451. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}line": "240",
  3452. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lineRule": "exact"
  3453. }
  3454. },
  3455. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3456. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3457. "@attrib": {
  3458. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0",
  3459. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLineChars": "0"
  3460. }
  3461. },
  3462. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc": {
  3463. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}jc",
  3464. "@attrib": {
  3465. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "center"
  3466. }
  3467. }
  3468. }
  3469. },
  3470. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3471. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3472. "@attrib": {},
  3473. "@children": {
  3474. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3475. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3476. "@attrib": {
  3477. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia",
  3478. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ascii": "Times New Roman",
  3479. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hAnsi": "Times New Roman",
  3480. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}eastAsia": "宋体",
  3481. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}cs": "宋体"
  3482. }
  3483. },
  3484. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b": {
  3485. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}b",
  3486. "@attrib": {}
  3487. },
  3488. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs": {
  3489. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}bCs",
  3490. "@attrib": {}
  3491. },
  3492. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz": {
  3493. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}sz",
  3494. "@attrib": {
  3495. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3496. }
  3497. },
  3498. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs": {
  3499. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}szCs",
  3500. "@attrib": {
  3501. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "18"
  3502. }
  3503. }
  3504. }
  3505. }
  3506. }
  3507. }
  3508. }
  3509. ],
  3510. "numbering": {
  3511. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numbering",
  3512. "@attrib": {
  3513. "{http://schemas.openxmlformats.org/markup-compatibility/2006}Ignorable": "w14 wp14"
  3514. },
  3515. "@children": {
  3516. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum": [
  3517. {
  3518. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  3519. "@attrib": {
  3520. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "0"
  3521. },
  3522. "@children": {
  3523. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  3524. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  3525. "@attrib": {
  3526. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "856DF868"
  3527. }
  3528. },
  3529. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  3530. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  3531. "@attrib": {
  3532. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "multilevel"
  3533. }
  3534. },
  3535. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  3536. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  3537. "@attrib": {
  3538. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "856DF868"
  3539. }
  3540. },
  3541. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": [
  3542. {
  3543. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3544. "@attrib": {
  3545. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  3546. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3547. },
  3548. "@children": {
  3549. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3550. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3551. "@attrib": {
  3552. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3553. }
  3554. },
  3555. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3556. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3557. "@attrib": {
  3558. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "chineseCounting"
  3559. }
  3560. },
  3561. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3562. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3563. "@attrib": {
  3564. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  3565. }
  3566. },
  3567. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3568. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3569. "@attrib": {
  3570. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3571. }
  3572. },
  3573. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3574. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3575. "@attrib": {
  3576. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%1、"
  3577. }
  3578. },
  3579. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3580. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3581. "@attrib": {
  3582. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3583. }
  3584. },
  3585. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3586. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3587. "@attrib": {},
  3588. "@children": {
  3589. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3590. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3591. "@attrib": {
  3592. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3593. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0"
  3594. }
  3595. }
  3596. }
  3597. },
  3598. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3599. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3600. "@attrib": {},
  3601. "@children": {
  3602. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3603. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3604. "@attrib": {
  3605. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3606. }
  3607. }
  3608. }
  3609. }
  3610. }
  3611. },
  3612. {
  3613. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3614. "@attrib": {
  3615. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "1",
  3616. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3617. },
  3618. "@children": {
  3619. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3620. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3621. "@attrib": {
  3622. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3623. }
  3624. },
  3625. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3626. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3627. "@attrib": {
  3628. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "chineseCounting"
  3629. }
  3630. },
  3631. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3632. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3633. "@attrib": {
  3634. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "3"
  3635. }
  3636. },
  3637. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3638. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3639. "@attrib": {
  3640. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3641. }
  3642. },
  3643. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3644. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3645. "@attrib": {
  3646. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "(%2)"
  3647. }
  3648. },
  3649. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3650. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3651. "@attrib": {
  3652. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3653. }
  3654. },
  3655. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3656. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3657. "@attrib": {},
  3658. "@children": {
  3659. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3660. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3661. "@attrib": {
  3662. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3663. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "0"
  3664. }
  3665. }
  3666. }
  3667. },
  3668. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3669. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3670. "@attrib": {},
  3671. "@children": {
  3672. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3673. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3674. "@attrib": {
  3675. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3676. }
  3677. }
  3678. }
  3679. }
  3680. }
  3681. },
  3682. {
  3683. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3684. "@attrib": {
  3685. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "2",
  3686. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3687. },
  3688. "@children": {
  3689. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3690. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3691. "@attrib": {
  3692. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3693. }
  3694. },
  3695. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3696. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3697. "@attrib": {
  3698. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  3699. }
  3700. },
  3701. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3702. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3703. "@attrib": {
  3704. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "4"
  3705. }
  3706. },
  3707. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3708. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3709. "@attrib": {
  3710. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3711. }
  3712. },
  3713. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3714. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3715. "@attrib": {
  3716. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%3."
  3717. }
  3718. },
  3719. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3720. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3721. "@attrib": {
  3722. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3723. }
  3724. },
  3725. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3726. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3727. "@attrib": {},
  3728. "@children": {
  3729. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3730. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3731. "@attrib": {
  3732. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3733. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "400"
  3734. }
  3735. }
  3736. }
  3737. },
  3738. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3739. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3740. "@attrib": {},
  3741. "@children": {
  3742. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3743. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3744. "@attrib": {
  3745. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3746. }
  3747. }
  3748. }
  3749. }
  3750. }
  3751. },
  3752. {
  3753. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3754. "@attrib": {
  3755. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "3",
  3756. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3757. },
  3758. "@children": {
  3759. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3760. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3761. "@attrib": {
  3762. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3763. }
  3764. },
  3765. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3766. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3767. "@attrib": {
  3768. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  3769. }
  3770. },
  3771. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3772. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3773. "@attrib": {
  3774. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "5"
  3775. }
  3776. },
  3777. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3778. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3779. "@attrib": {
  3780. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3781. }
  3782. },
  3783. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3784. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3785. "@attrib": {
  3786. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "(%4)"
  3787. }
  3788. },
  3789. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3790. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3791. "@attrib": {
  3792. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3793. }
  3794. },
  3795. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3796. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3797. "@attrib": {},
  3798. "@children": {
  3799. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3800. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3801. "@attrib": {
  3802. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3803. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  3804. }
  3805. }
  3806. }
  3807. },
  3808. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3809. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3810. "@attrib": {},
  3811. "@children": {
  3812. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3813. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3814. "@attrib": {
  3815. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3816. }
  3817. }
  3818. }
  3819. }
  3820. }
  3821. },
  3822. {
  3823. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3824. "@attrib": {
  3825. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "4",
  3826. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3827. },
  3828. "@children": {
  3829. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3830. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3831. "@attrib": {
  3832. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3833. }
  3834. },
  3835. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3836. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3837. "@attrib": {
  3838. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimalEnclosedCircleChinese"
  3839. }
  3840. },
  3841. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3842. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3843. "@attrib": {
  3844. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "6"
  3845. }
  3846. },
  3847. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3848. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3849. "@attrib": {
  3850. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3851. }
  3852. },
  3853. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3854. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3855. "@attrib": {
  3856. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%5"
  3857. }
  3858. },
  3859. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3860. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3861. "@attrib": {
  3862. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3863. }
  3864. },
  3865. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3866. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3867. "@attrib": {},
  3868. "@children": {
  3869. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3870. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3871. "@attrib": {
  3872. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3873. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  3874. }
  3875. }
  3876. }
  3877. },
  3878. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3879. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3880. "@attrib": {},
  3881. "@children": {
  3882. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3883. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3884. "@attrib": {
  3885. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3886. }
  3887. }
  3888. }
  3889. }
  3890. }
  3891. },
  3892. {
  3893. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3894. "@attrib": {
  3895. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "5",
  3896. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3897. },
  3898. "@children": {
  3899. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3900. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3901. "@attrib": {
  3902. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3903. }
  3904. },
  3905. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3906. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3907. "@attrib": {
  3908. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  3909. }
  3910. },
  3911. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3912. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3913. "@attrib": {
  3914. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "7"
  3915. }
  3916. },
  3917. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3918. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3919. "@attrib": {
  3920. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3921. }
  3922. },
  3923. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3924. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3925. "@attrib": {
  3926. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%6)"
  3927. }
  3928. },
  3929. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  3930. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  3931. "@attrib": {
  3932. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  3933. }
  3934. },
  3935. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  3936. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  3937. "@attrib": {},
  3938. "@children": {
  3939. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  3940. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  3941. "@attrib": {
  3942. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  3943. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  3944. }
  3945. }
  3946. }
  3947. },
  3948. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  3949. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  3950. "@attrib": {},
  3951. "@children": {
  3952. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  3953. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  3954. "@attrib": {
  3955. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  3956. }
  3957. }
  3958. }
  3959. }
  3960. }
  3961. },
  3962. {
  3963. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  3964. "@attrib": {
  3965. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "6",
  3966. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  3967. },
  3968. "@children": {
  3969. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  3970. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  3971. "@attrib": {
  3972. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  3973. }
  3974. },
  3975. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  3976. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  3977. "@attrib": {
  3978. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "lowerLetter"
  3979. }
  3980. },
  3981. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  3982. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  3983. "@attrib": {
  3984. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "8"
  3985. }
  3986. },
  3987. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  3988. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  3989. "@attrib": {
  3990. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  3991. }
  3992. },
  3993. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  3994. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  3995. "@attrib": {
  3996. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%7."
  3997. }
  3998. },
  3999. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4000. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4001. "@attrib": {
  4002. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4003. }
  4004. },
  4005. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4006. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4007. "@attrib": {},
  4008. "@children": {
  4009. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4010. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4011. "@attrib": {
  4012. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  4013. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  4014. }
  4015. }
  4016. }
  4017. },
  4018. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4019. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4020. "@attrib": {},
  4021. "@children": {
  4022. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4023. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4024. "@attrib": {
  4025. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  4026. }
  4027. }
  4028. }
  4029. }
  4030. }
  4031. },
  4032. {
  4033. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4034. "@attrib": {
  4035. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "7",
  4036. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4037. },
  4038. "@children": {
  4039. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4040. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4041. "@attrib": {
  4042. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4043. }
  4044. },
  4045. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4046. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4047. "@attrib": {
  4048. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "lowerLetter"
  4049. }
  4050. },
  4051. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  4052. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  4053. "@attrib": {
  4054. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "9"
  4055. }
  4056. },
  4057. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  4058. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  4059. "@attrib": {
  4060. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  4061. }
  4062. },
  4063. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4064. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4065. "@attrib": {
  4066. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%8)"
  4067. }
  4068. },
  4069. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4070. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4071. "@attrib": {
  4072. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4073. }
  4074. },
  4075. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4076. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4077. "@attrib": {},
  4078. "@children": {
  4079. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4080. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4081. "@attrib": {
  4082. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  4083. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  4084. }
  4085. }
  4086. }
  4087. },
  4088. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4089. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4090. "@attrib": {},
  4091. "@children": {
  4092. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4093. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4094. "@attrib": {
  4095. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  4096. }
  4097. }
  4098. }
  4099. }
  4100. }
  4101. },
  4102. {
  4103. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4104. "@attrib": {
  4105. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "8",
  4106. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4107. },
  4108. "@children": {
  4109. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4110. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4111. "@attrib": {
  4112. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4113. }
  4114. },
  4115. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4116. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4117. "@attrib": {
  4118. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "lowerRoman"
  4119. }
  4120. },
  4121. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle": {
  4122. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pStyle",
  4123. "@attrib": {
  4124. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "10"
  4125. }
  4126. },
  4127. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  4128. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  4129. "@attrib": {
  4130. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  4131. }
  4132. },
  4133. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4134. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4135. "@attrib": {
  4136. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%9 "
  4137. }
  4138. },
  4139. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4140. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4141. "@attrib": {
  4142. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4143. }
  4144. },
  4145. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4146. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4147. "@attrib": {},
  4148. "@children": {
  4149. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4150. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4151. "@attrib": {
  4152. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  4153. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "402"
  4154. }
  4155. }
  4156. }
  4157. },
  4158. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4159. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4160. "@attrib": {},
  4161. "@children": {
  4162. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4163. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4164. "@attrib": {
  4165. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  4166. }
  4167. }
  4168. }
  4169. }
  4170. }
  4171. }
  4172. ]
  4173. }
  4174. },
  4175. {
  4176. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4177. "@attrib": {
  4178. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "1"
  4179. },
  4180. "@children": {
  4181. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4182. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4183. "@attrib": {
  4184. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "D039DCDC"
  4185. }
  4186. },
  4187. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4188. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4189. "@attrib": {
  4190. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4191. }
  4192. },
  4193. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4194. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4195. "@attrib": {
  4196. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "D039DCDC"
  4197. }
  4198. },
  4199. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4200. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4201. "@attrib": {
  4202. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4203. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4204. },
  4205. "@children": {
  4206. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4207. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4208. "@attrib": {
  4209. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4210. }
  4211. },
  4212. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4213. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4214. "@attrib": {
  4215. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  4216. }
  4217. },
  4218. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4219. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4220. "@attrib": {
  4221. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%1."
  4222. }
  4223. },
  4224. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4225. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4226. "@attrib": {
  4227. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4228. }
  4229. },
  4230. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4231. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4232. "@attrib": {},
  4233. "@children": {
  4234. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4235. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4236. "@attrib": {
  4237. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "425",
  4238. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hanging": "425"
  4239. }
  4240. }
  4241. }
  4242. },
  4243. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4244. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4245. "@attrib": {},
  4246. "@children": {
  4247. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4248. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4249. "@attrib": {
  4250. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "default"
  4251. }
  4252. }
  4253. }
  4254. }
  4255. }
  4256. }
  4257. }
  4258. },
  4259. {
  4260. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4261. "@attrib": {
  4262. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "2"
  4263. },
  4264. "@children": {
  4265. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4266. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4267. "@attrib": {
  4268. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1017C5A6"
  4269. }
  4270. },
  4271. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4272. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4273. "@attrib": {
  4274. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4275. }
  4276. },
  4277. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4278. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4279. "@attrib": {
  4280. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1017C5A6"
  4281. }
  4282. },
  4283. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4284. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4285. "@attrib": {
  4286. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4287. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4288. },
  4289. "@children": {
  4290. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4291. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4292. "@attrib": {
  4293. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4294. }
  4295. },
  4296. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4297. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4298. "@attrib": {
  4299. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "chineseCounting"
  4300. }
  4301. },
  4302. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  4303. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  4304. "@attrib": {
  4305. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  4306. }
  4307. },
  4308. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4309. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4310. "@attrib": {
  4311. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "(%1)"
  4312. }
  4313. },
  4314. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4315. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4316. "@attrib": {
  4317. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4318. }
  4319. },
  4320. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4321. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4322. "@attrib": {},
  4323. "@children": {
  4324. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4325. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4326. "@attrib": {
  4327. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  4328. }
  4329. }
  4330. }
  4331. }
  4332. }
  4333. }
  4334. }
  4335. },
  4336. {
  4337. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4338. "@attrib": {
  4339. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "3"
  4340. },
  4341. "@children": {
  4342. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4343. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4344. "@attrib": {
  4345. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2B6B031E"
  4346. }
  4347. },
  4348. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4349. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4350. "@attrib": {
  4351. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4352. }
  4353. },
  4354. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4355. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4356. "@attrib": {
  4357. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2B6B031E"
  4358. }
  4359. },
  4360. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4361. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4362. "@attrib": {
  4363. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4364. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4365. },
  4366. "@children": {
  4367. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4368. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4369. "@attrib": {
  4370. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4371. }
  4372. },
  4373. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4374. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4375. "@attrib": {
  4376. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  4377. }
  4378. },
  4379. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4380. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4381. "@attrib": {
  4382. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%1."
  4383. }
  4384. },
  4385. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4386. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4387. "@attrib": {
  4388. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4389. }
  4390. },
  4391. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4392. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4393. "@attrib": {},
  4394. "@children": {
  4395. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4396. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4397. "@attrib": {
  4398. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "425",
  4399. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hanging": "425"
  4400. }
  4401. }
  4402. }
  4403. },
  4404. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4405. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4406. "@attrib": {},
  4407. "@children": {
  4408. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4409. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4410. "@attrib": {
  4411. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "default"
  4412. }
  4413. }
  4414. }
  4415. }
  4416. }
  4417. }
  4418. }
  4419. },
  4420. {
  4421. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4422. "@attrib": {
  4423. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "4"
  4424. },
  4425. "@children": {
  4426. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4427. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4428. "@attrib": {
  4429. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "46B0CFF7"
  4430. }
  4431. },
  4432. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4433. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4434. "@attrib": {
  4435. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4436. }
  4437. },
  4438. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4439. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4440. "@attrib": {
  4441. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "46B0CFF7"
  4442. }
  4443. },
  4444. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4445. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4446. "@attrib": {
  4447. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4448. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4449. },
  4450. "@children": {
  4451. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4452. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4453. "@attrib": {
  4454. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4455. }
  4456. },
  4457. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4458. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4459. "@attrib": {
  4460. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "chineseCounting"
  4461. }
  4462. },
  4463. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff": {
  4464. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}suff",
  4465. "@attrib": {
  4466. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "nothing"
  4467. }
  4468. },
  4469. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4470. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4471. "@attrib": {
  4472. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "(%1)"
  4473. }
  4474. },
  4475. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4476. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4477. "@attrib": {
  4478. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4479. }
  4480. },
  4481. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4482. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4483. "@attrib": {},
  4484. "@children": {
  4485. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4486. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4487. "@attrib": {
  4488. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "0",
  4489. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}firstLine": "420"
  4490. }
  4491. }
  4492. }
  4493. },
  4494. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4495. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4496. "@attrib": {},
  4497. "@children": {
  4498. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4499. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4500. "@attrib": {
  4501. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "eastAsia"
  4502. }
  4503. }
  4504. }
  4505. }
  4506. }
  4507. }
  4508. }
  4509. },
  4510. {
  4511. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4512. "@attrib": {
  4513. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "5"
  4514. },
  4515. "@children": {
  4516. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4517. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4518. "@attrib": {
  4519. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "778710FF"
  4520. }
  4521. },
  4522. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4523. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4524. "@attrib": {
  4525. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4526. }
  4527. },
  4528. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4529. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4530. "@attrib": {
  4531. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "778710FF"
  4532. }
  4533. },
  4534. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4535. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4536. "@attrib": {
  4537. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4538. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4539. },
  4540. "@children": {
  4541. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4542. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4543. "@attrib": {
  4544. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4545. }
  4546. },
  4547. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4548. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4549. "@attrib": {
  4550. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  4551. }
  4552. },
  4553. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4554. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4555. "@attrib": {
  4556. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%1."
  4557. }
  4558. },
  4559. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4560. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4561. "@attrib": {
  4562. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4563. }
  4564. },
  4565. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4566. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4567. "@attrib": {},
  4568. "@children": {
  4569. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind": {
  4570. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ind",
  4571. "@attrib": {
  4572. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}left": "425",
  4573. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hanging": "425"
  4574. }
  4575. }
  4576. }
  4577. },
  4578. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr": {
  4579. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rPr",
  4580. "@attrib": {},
  4581. "@children": {
  4582. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts": {
  4583. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}rFonts",
  4584. "@attrib": {
  4585. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}hint": "default"
  4586. }
  4587. }
  4588. }
  4589. }
  4590. }
  4591. }
  4592. }
  4593. },
  4594. {
  4595. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNum",
  4596. "@attrib": {
  4597. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": "6"
  4598. },
  4599. "@children": {
  4600. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid": {
  4601. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}nsid",
  4602. "@attrib": {
  4603. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "79AB3C67"
  4604. }
  4605. },
  4606. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType": {
  4607. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}multiLevelType",
  4608. "@attrib": {
  4609. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "singleLevel"
  4610. }
  4611. },
  4612. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl": {
  4613. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tmpl",
  4614. "@attrib": {
  4615. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "79AB3C67"
  4616. }
  4617. },
  4618. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl": {
  4619. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvl",
  4620. "@attrib": {
  4621. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0",
  4622. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tentative": "0"
  4623. },
  4624. "@children": {
  4625. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start": {
  4626. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}start",
  4627. "@attrib": {
  4628. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4629. }
  4630. },
  4631. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt": {
  4632. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numFmt",
  4633. "@attrib": {
  4634. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "decimal"
  4635. }
  4636. },
  4637. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText": {
  4638. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlText",
  4639. "@attrib": {
  4640. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "%1."
  4641. }
  4642. },
  4643. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc": {
  4644. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlJc",
  4645. "@attrib": {
  4646. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left"
  4647. }
  4648. },
  4649. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr": {
  4650. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pPr",
  4651. "@attrib": {},
  4652. "@children": {
  4653. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs": {
  4654. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tabs",
  4655. "@attrib": {},
  4656. "@children": {
  4657. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab": {
  4658. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}tab",
  4659. "@attrib": {
  4660. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "left",
  4661. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}pos": "312"
  4662. }
  4663. }
  4664. }
  4665. }
  4666. }
  4667. }
  4668. }
  4669. }
  4670. }
  4671. }
  4672. ],
  4673. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num": [
  4674. {
  4675. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4676. "@attrib": {
  4677. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "1"
  4678. },
  4679. "@children": {
  4680. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4681. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4682. "@attrib": {
  4683. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "0"
  4684. }
  4685. }
  4686. }
  4687. },
  4688. {
  4689. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4690. "@attrib": {
  4691. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "2"
  4692. },
  4693. "@children": {
  4694. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4695. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4696. "@attrib": {
  4697. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "2"
  4698. }
  4699. }
  4700. }
  4701. },
  4702. {
  4703. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4704. "@attrib": {
  4705. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "3"
  4706. },
  4707. "@children": {
  4708. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4709. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4710. "@attrib": {
  4711. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "6"
  4712. }
  4713. }
  4714. }
  4715. },
  4716. {
  4717. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4718. "@attrib": {
  4719. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "4"
  4720. },
  4721. "@children": {
  4722. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4723. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4724. "@attrib": {
  4725. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4726. }
  4727. }
  4728. }
  4729. },
  4730. {
  4731. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4732. "@attrib": {
  4733. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "5"
  4734. },
  4735. "@children": {
  4736. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4737. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4738. "@attrib": {
  4739. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "5"
  4740. }
  4741. }
  4742. }
  4743. },
  4744. {
  4745. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4746. "@attrib": {
  4747. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "6"
  4748. },
  4749. "@children": {
  4750. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4751. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4752. "@attrib": {
  4753. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "4"
  4754. }
  4755. }
  4756. }
  4757. },
  4758. {
  4759. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4760. "@attrib": {
  4761. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "7"
  4762. },
  4763. "@children": {
  4764. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4765. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4766. "@attrib": {
  4767. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "4"
  4768. }
  4769. },
  4770. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlOverride": {
  4771. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}lvlOverride",
  4772. "@attrib": {
  4773. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ilvl": "0"
  4774. },
  4775. "@children": {
  4776. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}startOverride": {
  4777. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}startOverride",
  4778. "@attrib": {
  4779. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "1"
  4780. }
  4781. }
  4782. }
  4783. }
  4784. }
  4785. },
  4786. {
  4787. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}num",
  4788. "@attrib": {
  4789. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}numId": "8"
  4790. },
  4791. "@children": {
  4792. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId": {
  4793. "@tag": "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}abstractNumId",
  4794. "@attrib": {
  4795. "{http://schemas.openxmlformats.org/wordprocessingml/2006/main}val": "3"
  4796. }
  4797. }
  4798. }
  4799. }
  4800. ]
  4801. }
  4802. },
  4803. "page_setup": {
  4804. "sections": [
  4805. {
  4806. "top_margin": 1417,
  4807. "bottom_margin": 1134,
  4808. "left_margin": 1417,
  4809. "right_margin": 1134,
  4810. "gutter": 0,
  4811. "page_width": 11906,
  4812. "page_height": 16838,
  4813. "orientation": "portrait",
  4814. "header_distance": 851,
  4815. "footer_distance": 992,
  4816. "different_first_page": false,
  4817. "grid_type": "lines",
  4818. "chars_per_line": 0,
  4819. "lines_per_page": 312,
  4820. "paper_size_inferred": "A4"
  4821. }
  4822. ]
  4823. }
  4824. }