default.json 202 KB

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